@zapier/zapier-sdk 0.95.0 → 0.97.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +101 -19
- package/dist/{chunk-Z7BGM75G.cjs → chunk-H24FJYFA.cjs} +352 -22
- package/dist/{chunk-JZDH3POI.mjs → chunk-RTT7PDNL.mjs} +352 -22
- package/dist/experimental.cjs +735 -382
- package/dist/experimental.d.mts +134 -1
- package/dist/experimental.d.ts +134 -1
- package/dist/experimental.mjs +357 -4
- package/dist/index.cjs +276 -276
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/experimental.d.mts
CHANGED
|
@@ -3387,6 +3387,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
3387
3387
|
implementation_name?: string | undefined;
|
|
3388
3388
|
version?: string | undefined;
|
|
3389
3389
|
}> | null | undefined;
|
|
3390
|
+
manual?: boolean | undefined;
|
|
3390
3391
|
}, Promise<{
|
|
3391
3392
|
data: {
|
|
3392
3393
|
id: string;
|
|
@@ -3463,6 +3464,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
3463
3464
|
draft: string;
|
|
3464
3465
|
enabled?: boolean | undefined;
|
|
3465
3466
|
draftRevision?: number | undefined;
|
|
3467
|
+
manual?: boolean | undefined;
|
|
3466
3468
|
}, Promise<{
|
|
3467
3469
|
data: {
|
|
3468
3470
|
draft: {
|
|
@@ -3748,7 +3750,72 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
3748
3750
|
};
|
|
3749
3751
|
meta?: ResponseMeta;
|
|
3750
3752
|
}>, readonly []> & LeafSummary<"", "getTriggerRun", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
3751
|
-
}
|
|
3753
|
+
} & {
|
|
3754
|
+
createForm: MethodPlugin<"createForm", {
|
|
3755
|
+
title: string;
|
|
3756
|
+
description?: string | undefined;
|
|
3757
|
+
fields?: {
|
|
3758
|
+
label: string;
|
|
3759
|
+
type: "number" | "url" | "date" | "email" | "currency" | "phone_number" | "short_text" | "long_text" | "yes_no" | "date_range" | "dropdown" | "integration_backed";
|
|
3760
|
+
required?: boolean | undefined;
|
|
3761
|
+
disabled?: boolean | undefined;
|
|
3762
|
+
variant?: "checkbox" | "radio" | undefined;
|
|
3763
|
+
multiUrl?: boolean | undefined;
|
|
3764
|
+
includeTime?: boolean | undefined;
|
|
3765
|
+
currencyFormat?: string | undefined;
|
|
3766
|
+
decimals?: 0 | 2 | undefined;
|
|
3767
|
+
defaultCountry?: string | undefined;
|
|
3768
|
+
phoneNumberFormat?: "national" | "international" | undefined;
|
|
3769
|
+
acceptedCountries?: string[] | undefined;
|
|
3770
|
+
options?: {
|
|
3771
|
+
value: string;
|
|
3772
|
+
label: string;
|
|
3773
|
+
}[] | undefined;
|
|
3774
|
+
multiSelect?: boolean | undefined;
|
|
3775
|
+
dataSource?: {
|
|
3776
|
+
app: string;
|
|
3777
|
+
actionType: "read" | "read_bulk";
|
|
3778
|
+
resource: string;
|
|
3779
|
+
valueKey?: string | undefined;
|
|
3780
|
+
labelKey?: string | undefined;
|
|
3781
|
+
} | undefined;
|
|
3782
|
+
}[] | undefined;
|
|
3783
|
+
draft?: boolean | undefined;
|
|
3784
|
+
confirmationTitle?: string | undefined;
|
|
3785
|
+
confirmationMessage?: string | undefined;
|
|
3786
|
+
callbackUrl?: string | undefined;
|
|
3787
|
+
consumerAuth?: "zapier" | "none" | undefined;
|
|
3788
|
+
document?: {
|
|
3789
|
+
[x: string]: unknown;
|
|
3790
|
+
id: string;
|
|
3791
|
+
type: "root";
|
|
3792
|
+
attrs: {
|
|
3793
|
+
[x: string]: unknown;
|
|
3794
|
+
schema_version: number;
|
|
3795
|
+
title: string;
|
|
3796
|
+
};
|
|
3797
|
+
children?: unknown[] | undefined;
|
|
3798
|
+
} | undefined;
|
|
3799
|
+
}, Promise<{
|
|
3800
|
+
data: {
|
|
3801
|
+
[x: string]: unknown;
|
|
3802
|
+
id: string;
|
|
3803
|
+
title: string;
|
|
3804
|
+
hosted_url: string;
|
|
3805
|
+
submission_count: number;
|
|
3806
|
+
account_id: number;
|
|
3807
|
+
owner_id: string;
|
|
3808
|
+
created_at: string;
|
|
3809
|
+
updated_at: string;
|
|
3810
|
+
document: unknown;
|
|
3811
|
+
last_published_at: string | null;
|
|
3812
|
+
consumer_auth: unknown;
|
|
3813
|
+
callback_url: unknown;
|
|
3814
|
+
description?: string | null | undefined;
|
|
3815
|
+
};
|
|
3816
|
+
meta?: ResponseMeta;
|
|
3817
|
+
}>, readonly []> & LeafSummary<"", "createForm", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
3818
|
+
}> & PluginSummary<never, "fetch" | "zapier/api" | "zapier/manifest" | "zapier/eventEmission" | "zapier/resolveCredentials" | "zapier/connections" | "zapier/capabilities" | "getProfile" | "listApps" | "apps" | "getApp" | "listActions" | "getAction" | "listConnections" | "getConnection" | "findFirstConnection" | "findUniqueConnection" | "listAuthentications" | "getAuthentication" | "findFirstAuthentication" | "findUniqueAuthentication" | "listClientCredentials" | "createClientCredentials" | "deleteClientCredentials" | "getConnectionStartUrl" | "waitForNewConnection" | "createConnection" | "listActionInputFields" | "getActionInputFieldsSchema" | "listActionInputFieldChoices" | "listInputFields" | "getInputFieldsSchema" | "listInputFieldChoices" | "createActionRun" | "getActionRun" | "runAction" | "request" | "listTriggerInboxes" | "createTriggerInbox" | "ensureTriggerInbox" | "getTriggerInbox" | "updateTriggerInbox" | "deleteTriggerInbox" | "pauseTriggerInbox" | "resumeTriggerInbox" | "listTriggerInboxMessages" | "leaseTriggerInboxMessages" | "ackTriggerInboxMessages" | "releaseTriggerInboxMessages" | "drainTriggerInbox" | "watchTriggerInbox" | "listTriggers" | "listTriggerInputFields" | "listTriggerInputFieldChoices" | "getTriggerInputFieldsSchema" | "listTables" | "listTablesInternal" | "getTable" | "deleteTable" | "createTable" | "listTableFields" | "createTableFields" | "deleteTableFields" | "listTableRecords" | "getTableRecord" | "createTableRecords" | "deleteTableRecords" | "updateTableRecords" | "kitcore/getRegistry" | "listWorkflows" | "getWorkflow" | "createWorkflow" | "updateWorkflow" | "enableWorkflow" | "disableWorkflow" | "deleteWorkflow" | "listWorkflowVersions" | "getWorkflowVersion" | "publishWorkflowVersion" | "listWorkflowDrafts" | "getWorkflowDraft" | "createWorkflowDraft" | "updateWorkflowDraft" | "discardWorkflowDraft" | "publishWorkflowDraft" | "listWorkflowRuns" | "getWorkflowRun" | "listDurableRuns" | "getDurableRun" | "runDurable" | "cancelDurableRun" | "triggerWorkflow" | "getTriggerRun" | "createForm" | "zapier/sdk" | "zapier/experimental-sdk">;
|
|
3752
3819
|
declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
3753
3820
|
getRegistry: (input?: {
|
|
3754
3821
|
package?: string | undefined;
|
|
@@ -5660,6 +5727,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
5660
5727
|
implementation_name?: string | undefined;
|
|
5661
5728
|
version?: string | undefined;
|
|
5662
5729
|
}> | null | undefined;
|
|
5730
|
+
manual?: boolean | undefined;
|
|
5663
5731
|
}) => Promise<{
|
|
5664
5732
|
data: {
|
|
5665
5733
|
id: string;
|
|
@@ -5734,6 +5802,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
5734
5802
|
draft: string;
|
|
5735
5803
|
enabled?: boolean | undefined;
|
|
5736
5804
|
draftRevision?: number | undefined;
|
|
5805
|
+
manual?: boolean | undefined;
|
|
5737
5806
|
}) => Promise<{
|
|
5738
5807
|
data: {
|
|
5739
5808
|
draft: {
|
|
@@ -6011,6 +6080,70 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
6011
6080
|
};
|
|
6012
6081
|
meta?: ResponseMeta;
|
|
6013
6082
|
}>;
|
|
6083
|
+
createForm: (input: {
|
|
6084
|
+
title: string;
|
|
6085
|
+
description?: string | undefined;
|
|
6086
|
+
fields?: {
|
|
6087
|
+
label: string;
|
|
6088
|
+
type: "number" | "url" | "date" | "email" | "currency" | "phone_number" | "short_text" | "long_text" | "yes_no" | "date_range" | "dropdown" | "integration_backed";
|
|
6089
|
+
required?: boolean | undefined;
|
|
6090
|
+
disabled?: boolean | undefined;
|
|
6091
|
+
variant?: "checkbox" | "radio" | undefined;
|
|
6092
|
+
multiUrl?: boolean | undefined;
|
|
6093
|
+
includeTime?: boolean | undefined;
|
|
6094
|
+
currencyFormat?: string | undefined;
|
|
6095
|
+
decimals?: 0 | 2 | undefined;
|
|
6096
|
+
defaultCountry?: string | undefined;
|
|
6097
|
+
phoneNumberFormat?: "national" | "international" | undefined;
|
|
6098
|
+
acceptedCountries?: string[] | undefined;
|
|
6099
|
+
options?: {
|
|
6100
|
+
value: string;
|
|
6101
|
+
label: string;
|
|
6102
|
+
}[] | undefined;
|
|
6103
|
+
multiSelect?: boolean | undefined;
|
|
6104
|
+
dataSource?: {
|
|
6105
|
+
app: string;
|
|
6106
|
+
actionType: "read" | "read_bulk";
|
|
6107
|
+
resource: string;
|
|
6108
|
+
valueKey?: string | undefined;
|
|
6109
|
+
labelKey?: string | undefined;
|
|
6110
|
+
} | undefined;
|
|
6111
|
+
}[] | undefined;
|
|
6112
|
+
draft?: boolean | undefined;
|
|
6113
|
+
confirmationTitle?: string | undefined;
|
|
6114
|
+
confirmationMessage?: string | undefined;
|
|
6115
|
+
callbackUrl?: string | undefined;
|
|
6116
|
+
consumerAuth?: "zapier" | "none" | undefined;
|
|
6117
|
+
document?: {
|
|
6118
|
+
[x: string]: unknown;
|
|
6119
|
+
id: string;
|
|
6120
|
+
type: "root";
|
|
6121
|
+
attrs: {
|
|
6122
|
+
[x: string]: unknown;
|
|
6123
|
+
schema_version: number;
|
|
6124
|
+
title: string;
|
|
6125
|
+
};
|
|
6126
|
+
children?: unknown[] | undefined;
|
|
6127
|
+
} | undefined;
|
|
6128
|
+
}) => Promise<{
|
|
6129
|
+
data: {
|
|
6130
|
+
[x: string]: unknown;
|
|
6131
|
+
id: string;
|
|
6132
|
+
title: string;
|
|
6133
|
+
hosted_url: string;
|
|
6134
|
+
submission_count: number;
|
|
6135
|
+
account_id: number;
|
|
6136
|
+
owner_id: string;
|
|
6137
|
+
created_at: string;
|
|
6138
|
+
updated_at: string;
|
|
6139
|
+
document: unknown;
|
|
6140
|
+
last_published_at: string | null;
|
|
6141
|
+
consumer_auth: unknown;
|
|
6142
|
+
callback_url: unknown;
|
|
6143
|
+
description?: string | null | undefined;
|
|
6144
|
+
};
|
|
6145
|
+
meta?: ResponseMeta;
|
|
6146
|
+
}>;
|
|
6014
6147
|
} & {
|
|
6015
6148
|
context: SdkContext;
|
|
6016
6149
|
};
|
package/dist/experimental.d.ts
CHANGED
|
@@ -3387,6 +3387,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
3387
3387
|
implementation_name?: string | undefined;
|
|
3388
3388
|
version?: string | undefined;
|
|
3389
3389
|
}> | null | undefined;
|
|
3390
|
+
manual?: boolean | undefined;
|
|
3390
3391
|
}, Promise<{
|
|
3391
3392
|
data: {
|
|
3392
3393
|
id: string;
|
|
@@ -3463,6 +3464,7 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
3463
3464
|
draft: string;
|
|
3464
3465
|
enabled?: boolean | undefined;
|
|
3465
3466
|
draftRevision?: number | undefined;
|
|
3467
|
+
manual?: boolean | undefined;
|
|
3466
3468
|
}, Promise<{
|
|
3467
3469
|
data: {
|
|
3468
3470
|
draft: {
|
|
@@ -3748,7 +3750,72 @@ declare const zapierExperimentalSdkPlugin: AggregatePlugin<"experimental-sdk", {
|
|
|
3748
3750
|
};
|
|
3749
3751
|
meta?: ResponseMeta;
|
|
3750
3752
|
}>, readonly []> & LeafSummary<"", "getTriggerRun", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
3751
|
-
}
|
|
3753
|
+
} & {
|
|
3754
|
+
createForm: MethodPlugin<"createForm", {
|
|
3755
|
+
title: string;
|
|
3756
|
+
description?: string | undefined;
|
|
3757
|
+
fields?: {
|
|
3758
|
+
label: string;
|
|
3759
|
+
type: "number" | "url" | "date" | "email" | "currency" | "phone_number" | "short_text" | "long_text" | "yes_no" | "date_range" | "dropdown" | "integration_backed";
|
|
3760
|
+
required?: boolean | undefined;
|
|
3761
|
+
disabled?: boolean | undefined;
|
|
3762
|
+
variant?: "checkbox" | "radio" | undefined;
|
|
3763
|
+
multiUrl?: boolean | undefined;
|
|
3764
|
+
includeTime?: boolean | undefined;
|
|
3765
|
+
currencyFormat?: string | undefined;
|
|
3766
|
+
decimals?: 0 | 2 | undefined;
|
|
3767
|
+
defaultCountry?: string | undefined;
|
|
3768
|
+
phoneNumberFormat?: "national" | "international" | undefined;
|
|
3769
|
+
acceptedCountries?: string[] | undefined;
|
|
3770
|
+
options?: {
|
|
3771
|
+
value: string;
|
|
3772
|
+
label: string;
|
|
3773
|
+
}[] | undefined;
|
|
3774
|
+
multiSelect?: boolean | undefined;
|
|
3775
|
+
dataSource?: {
|
|
3776
|
+
app: string;
|
|
3777
|
+
actionType: "read" | "read_bulk";
|
|
3778
|
+
resource: string;
|
|
3779
|
+
valueKey?: string | undefined;
|
|
3780
|
+
labelKey?: string | undefined;
|
|
3781
|
+
} | undefined;
|
|
3782
|
+
}[] | undefined;
|
|
3783
|
+
draft?: boolean | undefined;
|
|
3784
|
+
confirmationTitle?: string | undefined;
|
|
3785
|
+
confirmationMessage?: string | undefined;
|
|
3786
|
+
callbackUrl?: string | undefined;
|
|
3787
|
+
consumerAuth?: "zapier" | "none" | undefined;
|
|
3788
|
+
document?: {
|
|
3789
|
+
[x: string]: unknown;
|
|
3790
|
+
id: string;
|
|
3791
|
+
type: "root";
|
|
3792
|
+
attrs: {
|
|
3793
|
+
[x: string]: unknown;
|
|
3794
|
+
schema_version: number;
|
|
3795
|
+
title: string;
|
|
3796
|
+
};
|
|
3797
|
+
children?: unknown[] | undefined;
|
|
3798
|
+
} | undefined;
|
|
3799
|
+
}, Promise<{
|
|
3800
|
+
data: {
|
|
3801
|
+
[x: string]: unknown;
|
|
3802
|
+
id: string;
|
|
3803
|
+
title: string;
|
|
3804
|
+
hosted_url: string;
|
|
3805
|
+
submission_count: number;
|
|
3806
|
+
account_id: number;
|
|
3807
|
+
owner_id: string;
|
|
3808
|
+
created_at: string;
|
|
3809
|
+
updated_at: string;
|
|
3810
|
+
document: unknown;
|
|
3811
|
+
last_published_at: string | null;
|
|
3812
|
+
consumer_auth: unknown;
|
|
3813
|
+
callback_url: unknown;
|
|
3814
|
+
description?: string | null | undefined;
|
|
3815
|
+
};
|
|
3816
|
+
meta?: ResponseMeta;
|
|
3817
|
+
}>, readonly []> & LeafSummary<"", "createForm", readonly [PropertyPlugin<"api", ApiClient> & PluginSummary<"zapier/api", never>]>;
|
|
3818
|
+
}> & PluginSummary<never, "fetch" | "zapier/api" | "zapier/manifest" | "zapier/eventEmission" | "zapier/resolveCredentials" | "zapier/connections" | "zapier/capabilities" | "getProfile" | "listApps" | "apps" | "getApp" | "listActions" | "getAction" | "listConnections" | "getConnection" | "findFirstConnection" | "findUniqueConnection" | "listAuthentications" | "getAuthentication" | "findFirstAuthentication" | "findUniqueAuthentication" | "listClientCredentials" | "createClientCredentials" | "deleteClientCredentials" | "getConnectionStartUrl" | "waitForNewConnection" | "createConnection" | "listActionInputFields" | "getActionInputFieldsSchema" | "listActionInputFieldChoices" | "listInputFields" | "getInputFieldsSchema" | "listInputFieldChoices" | "createActionRun" | "getActionRun" | "runAction" | "request" | "listTriggerInboxes" | "createTriggerInbox" | "ensureTriggerInbox" | "getTriggerInbox" | "updateTriggerInbox" | "deleteTriggerInbox" | "pauseTriggerInbox" | "resumeTriggerInbox" | "listTriggerInboxMessages" | "leaseTriggerInboxMessages" | "ackTriggerInboxMessages" | "releaseTriggerInboxMessages" | "drainTriggerInbox" | "watchTriggerInbox" | "listTriggers" | "listTriggerInputFields" | "listTriggerInputFieldChoices" | "getTriggerInputFieldsSchema" | "listTables" | "listTablesInternal" | "getTable" | "deleteTable" | "createTable" | "listTableFields" | "createTableFields" | "deleteTableFields" | "listTableRecords" | "getTableRecord" | "createTableRecords" | "deleteTableRecords" | "updateTableRecords" | "kitcore/getRegistry" | "listWorkflows" | "getWorkflow" | "createWorkflow" | "updateWorkflow" | "enableWorkflow" | "disableWorkflow" | "deleteWorkflow" | "listWorkflowVersions" | "getWorkflowVersion" | "publishWorkflowVersion" | "listWorkflowDrafts" | "getWorkflowDraft" | "createWorkflowDraft" | "updateWorkflowDraft" | "discardWorkflowDraft" | "publishWorkflowDraft" | "listWorkflowRuns" | "getWorkflowRun" | "listDurableRuns" | "getDurableRun" | "runDurable" | "cancelDurableRun" | "triggerWorkflow" | "getTriggerRun" | "createForm" | "zapier/sdk" | "zapier/experimental-sdk">;
|
|
3752
3819
|
declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
3753
3820
|
getRegistry: (input?: {
|
|
3754
3821
|
package?: string | undefined;
|
|
@@ -5660,6 +5727,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
5660
5727
|
implementation_name?: string | undefined;
|
|
5661
5728
|
version?: string | undefined;
|
|
5662
5729
|
}> | null | undefined;
|
|
5730
|
+
manual?: boolean | undefined;
|
|
5663
5731
|
}) => Promise<{
|
|
5664
5732
|
data: {
|
|
5665
5733
|
id: string;
|
|
@@ -5734,6 +5802,7 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
5734
5802
|
draft: string;
|
|
5735
5803
|
enabled?: boolean | undefined;
|
|
5736
5804
|
draftRevision?: number | undefined;
|
|
5805
|
+
manual?: boolean | undefined;
|
|
5737
5806
|
}) => Promise<{
|
|
5738
5807
|
data: {
|
|
5739
5808
|
draft: {
|
|
@@ -6011,6 +6080,70 @@ declare function createZapierSdk(options?: ZapierSdkOptions): {
|
|
|
6011
6080
|
};
|
|
6012
6081
|
meta?: ResponseMeta;
|
|
6013
6082
|
}>;
|
|
6083
|
+
createForm: (input: {
|
|
6084
|
+
title: string;
|
|
6085
|
+
description?: string | undefined;
|
|
6086
|
+
fields?: {
|
|
6087
|
+
label: string;
|
|
6088
|
+
type: "number" | "url" | "date" | "email" | "currency" | "phone_number" | "short_text" | "long_text" | "yes_no" | "date_range" | "dropdown" | "integration_backed";
|
|
6089
|
+
required?: boolean | undefined;
|
|
6090
|
+
disabled?: boolean | undefined;
|
|
6091
|
+
variant?: "checkbox" | "radio" | undefined;
|
|
6092
|
+
multiUrl?: boolean | undefined;
|
|
6093
|
+
includeTime?: boolean | undefined;
|
|
6094
|
+
currencyFormat?: string | undefined;
|
|
6095
|
+
decimals?: 0 | 2 | undefined;
|
|
6096
|
+
defaultCountry?: string | undefined;
|
|
6097
|
+
phoneNumberFormat?: "national" | "international" | undefined;
|
|
6098
|
+
acceptedCountries?: string[] | undefined;
|
|
6099
|
+
options?: {
|
|
6100
|
+
value: string;
|
|
6101
|
+
label: string;
|
|
6102
|
+
}[] | undefined;
|
|
6103
|
+
multiSelect?: boolean | undefined;
|
|
6104
|
+
dataSource?: {
|
|
6105
|
+
app: string;
|
|
6106
|
+
actionType: "read" | "read_bulk";
|
|
6107
|
+
resource: string;
|
|
6108
|
+
valueKey?: string | undefined;
|
|
6109
|
+
labelKey?: string | undefined;
|
|
6110
|
+
} | undefined;
|
|
6111
|
+
}[] | undefined;
|
|
6112
|
+
draft?: boolean | undefined;
|
|
6113
|
+
confirmationTitle?: string | undefined;
|
|
6114
|
+
confirmationMessage?: string | undefined;
|
|
6115
|
+
callbackUrl?: string | undefined;
|
|
6116
|
+
consumerAuth?: "zapier" | "none" | undefined;
|
|
6117
|
+
document?: {
|
|
6118
|
+
[x: string]: unknown;
|
|
6119
|
+
id: string;
|
|
6120
|
+
type: "root";
|
|
6121
|
+
attrs: {
|
|
6122
|
+
[x: string]: unknown;
|
|
6123
|
+
schema_version: number;
|
|
6124
|
+
title: string;
|
|
6125
|
+
};
|
|
6126
|
+
children?: unknown[] | undefined;
|
|
6127
|
+
} | undefined;
|
|
6128
|
+
}) => Promise<{
|
|
6129
|
+
data: {
|
|
6130
|
+
[x: string]: unknown;
|
|
6131
|
+
id: string;
|
|
6132
|
+
title: string;
|
|
6133
|
+
hosted_url: string;
|
|
6134
|
+
submission_count: number;
|
|
6135
|
+
account_id: number;
|
|
6136
|
+
owner_id: string;
|
|
6137
|
+
created_at: string;
|
|
6138
|
+
updated_at: string;
|
|
6139
|
+
document: unknown;
|
|
6140
|
+
last_published_at: string | null;
|
|
6141
|
+
consumer_auth: unknown;
|
|
6142
|
+
callback_url: unknown;
|
|
6143
|
+
description?: string | null | undefined;
|
|
6144
|
+
};
|
|
6145
|
+
meta?: ResponseMeta;
|
|
6146
|
+
}>;
|
|
6014
6147
|
} & {
|
|
6015
6148
|
context: SdkContext;
|
|
6016
6149
|
};
|