Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
489 changes: 488 additions & 1 deletion integrations/.nango/nango.json

Large diffs are not rendered by default.

1,841 changes: 1,841 additions & 0 deletions integrations/.nango/schema.json

Large diffs are not rendered by default.

334 changes: 334 additions & 0 deletions integrations/.nango/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1257,6 +1257,340 @@ export interface AttioPerson {
country_code?: string | undefined;};
};

export interface ActionInput_attio_createcompany {
name: string;
domains?: string[] | undefined;
description?: string | undefined;
};

export interface ActionOutput_attio_createcompany {
id: { workspace_id: string;
object_id: string;
record_id: string;};
name: string | null;
domains: string[];
description: string | null;
created_at: string;
web_url: string;
};

export interface ActionInput_attio_createlistentry {
list_id: string;
record_id: string;
};

export interface ActionOutput_attio_createlistentry {
data: { id: { workspace_id: string;
list_id: string;
entry_id: string;};
record_id: string;
created_at: string;};
};

export interface ActionInput_attio_createnote {
parent_object: string;
parent_record_id: string;
title: string;
content: string;
};

export interface ActionOutput_attio_createnote {
data: { id: { workspace_id: string;
note_id: string;};
title: string;
content_plaintext: string;
parent_object: string;
parent_record_id: string;
created_at: string;};
};

export interface ActionInput_attio_createperson {
first_name: string;
last_name: string;
email_addresses?: string[] | undefined;
phone_numbers?: string[] | undefined;
job_title?: string | undefined;
};

export interface ActionOutput_attio_createperson {
id: { workspace_id: string;
object_id: string;
record_id: string;};
name: string | null;
email: string | null;
phone: string | null;
job_title: string | null;
created_at: string;
web_url: string;
};

export interface ActionInput_attio_createrecord {
object_slug: string;
values: { [key: string]: any | undefined;};
};

export interface ActionOutput_attio_createrecord {
data: { id: { workspace_id: string;
object_id: string;
record_id: string;};
created_at: string;
values: { [key: string]: any | undefined;};};
};

export interface ActionInput_attio_createtask {
content: string;
deadline?: string | undefined;
assignee_ids?: string[] | undefined;
linked_records?: ({ target_object: string;
target_record_id: string;})[] | undefined;
};

export interface ActionOutput_attio_createtask {
data: { id: { workspace_id: string;
task_id: string;};
content_plaintext: string;
deadline_at: string | null;
is_completed: boolean;
created_at: string;};
};

export interface ActionInput_attio_createwebhook {
target_url: string;
subscriptions: ({ event_type: string;
filter?: { "$and"?: ({ field: string;
operator: string;
value: string;})[] | undefined;
"$or"?: ({ field: string;
operator: string;
value: string;})[] | undefined;} | null;})[];
};

export interface ActionOutput_attio_createwebhook {
target_url: string;
subscriptions: ({ event_type: string;
filter: { "$and"?: ({ field: string;
operator: string;
value: string;})[] | undefined;
"$or"?: ({ field: string;
operator: string;
value: string;})[] | undefined;} | null;})[];
id: { workspace_id: string;
webhook_id: string;};
status: 'active' | 'degraded' | 'inactive';
created_at: string;
secret: string;
};

export interface ActionInput_attio_deletelistentry {
list_id: string;
entry_id: string;
};

export interface ActionOutput_attio_deletelistentry {
success: boolean;
};

export interface ActionInput_attio_deletenote {
note_id: string;
};

export interface ActionOutput_attio_deletenote {
success: boolean;
};

export interface ActionInput_attio_deleterecord {
object_slug: string;
record_id: string;
};

export interface ActionOutput_attio_deleterecord {
success: boolean;
};

export interface ActionInput_attio_deletewebhook {
webhook_id: string;
};

export interface ActionOutput_attio_deletewebhook {
success: boolean;
};

export interface ActionInput_attio_getobject {
object_id: string;
};

export interface ActionOutput_attio_getobject {
data: { id: { workspace_id: string;
object_id: string;};
api_slug: string;
singular_noun: string;
plural_noun: string;
created_at: string;};
};

export interface ActionInput_attio_getrecord {
object_slug: string;
record_id: string;
};

export interface ActionOutput_attio_getrecord {
data: { id: { workspace_id: string;
object_id: string;
record_id: string;};
created_at: string;
values: { [key: string]: any | undefined;};};
};

export interface ActionInput_attio_getwebhook {
webhook_id: string;
};

export interface ActionOutput_attio_getwebhook {
target_url: string;
subscriptions: ({ event_type: string;
filter: { "$and"?: ({ field: string;
operator: string;
value: string;})[] | undefined;
"$or"?: ({ field: string;
operator: string;
value: string;})[] | undefined;} | null;})[];
id: { workspace_id: string;
webhook_id: string;};
status: 'active' | 'degraded' | 'inactive';
created_at: string;
};

export interface ActionInput_attio_listlists {
};

export interface ActionOutput_attio_listlists {
data: ({ id: { workspace_id: string;
list_id: string;};
api_slug: string;
name: string;
parent_object: string[];
created_at: string;})[];
};

export interface ActionInput_attio_listnotes {
parent_object: string;
parent_record_id: string;
limit?: number | undefined;
offset?: number | undefined;
};

export interface ActionOutput_attio_listnotes {
data: ({ id: { workspace_id: string;
note_id: string;};
title: string | null;
content_plaintext: string;
parent_object: string;
parent_record_id: string;
created_at: string;})[];
};

export interface ActionInput_attio_listobjects {
};

export interface ActionOutput_attio_listobjects {
data: ({ id: { workspace_id: string;
object_id: string;};
api_slug: string;
singular_noun: string;
plural_noun: string;
created_at: string;})[];
};

export interface ActionInput_attio_listrecords {
object_slug: string;
limit?: number | undefined;
offset?: number | undefined;
};

export interface ActionOutput_attio_listrecords {
data: ({ id: { workspace_id: string;
object_id: string;
record_id: string;};
created_at: string;
values: { [key: string]: any | undefined;};})[];
};

export interface ActionInput_attio_listtasks {
limit?: number | undefined;
offset?: number | undefined;
};

export interface ActionOutput_attio_listtasks {
data: ({ id: { workspace_id: string;
task_id: string;};
content_plaintext: string;
deadline_at: string | null;
is_completed: boolean;
created_at: string;})[];
};

export interface ActionInput_attio_listwebhooks {
limit?: number | undefined;
cursor?: string | undefined;
};

export interface ActionOutput_attio_listwebhooks {
webhooks: ({ target_url: string;
subscriptions: ({ event_type: string;
filter: { "$and"?: ({ field: string;
operator: string;
value: string;})[] | undefined;
"$or"?: ({ field: string;
operator: string;
value: string;})[] | undefined;} | null;})[];
id: { workspace_id: string;
webhook_id: string;};
status: 'active' | 'degraded' | 'inactive';
created_at: string;})[];
next_cursor: string | null;
};

export interface ActionInput_attio_updaterecord {
object_slug: string;
record_id: string;
values: { [key: string]: any | undefined;};
};

export interface ActionOutput_attio_updaterecord {
data: { id: { workspace_id: string;
object_id: string;
record_id: string;};
created_at: string;
values: { [key: string]: any | undefined;};};
};

export interface ActionInput_attio_updatewebhook {
webhook_id: string;
target_url?: string | undefined;
subscriptions?: ({ event_type: string;
filter?: { "$and"?: ({ field: string;
operator: string;
value: string;})[] | undefined;
"$or"?: ({ field: string;
operator: string;
value: string;})[] | undefined;} | null;})[];
};

export interface ActionOutput_attio_updatewebhook {
target_url: string;
subscriptions: ({ event_type: string;
filter: { "$and"?: ({ field: string;
operator: string;
value: string;})[] | undefined;
"$or"?: ({ field: string;
operator: string;
value: string;})[] | undefined;} | null;})[];
id: { workspace_id: string;
webhook_id: string;};
status: 'active' | 'degraded' | 'inactive';
created_at: string;
};

export interface SyncMetadata_avalara_transactions {
company: string;
backfillPeriodMs?: number | undefined;
Expand Down
Loading
Loading