@membranehq/sdk 0.5.1 → 0.6.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/dist/bundle.d.ts +1949 -3947
- package/dist/bundle.js +9 -4
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/action-instances-accessors.d.ts +5 -2
- package/dist/dts/accessors/actions-accessors.d.ts +2 -2
- package/dist/dts/accessors/connections-accessors.d.ts +8 -22
- package/dist/dts/accessors/integrations-accessors.d.ts +8 -22
- package/dist/dts/errors/index.d.ts +10 -1
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +122 -68
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +74 -189
- package/dist/dts/workspace-elements/api/actions-api.d.ts +253 -531
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +21 -21
- package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +7 -7
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +22 -22
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +18 -18
- package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +7 -7
- package/dist/dts/workspace-elements/api/connections-api.d.ts +354 -273
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +55 -149
- package/dist/dts/workspace-elements/api/data-link-tables-api.d.ts +7 -7
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +60 -154
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +62 -254
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +45 -139
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +45 -139
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +40 -134
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +20 -128
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +158 -374
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +56 -248
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +140 -356
- package/dist/dts/workspace-elements/api/flows-api.d.ts +265 -753
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +135 -101
- package/dist/dts/workspace-elements/api/scenarios-api.d.ts +21 -105
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +13 -13
- package/dist/dts/workspace-elements/base/action-run-log-records/types.d.ts +4 -3
- package/dist/dts/workspace-elements/base/actions/index.d.ts +111 -1
- package/dist/dts/workspace-elements/base/app-data-schema-instances/types.d.ts +11 -10
- package/dist/dts/workspace-elements/base/app-data-schemas/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/app-event-subscriptions/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/app-event-types/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/connections/types.d.ts +14 -19
- package/dist/dts/workspace-elements/base/data-link-table-instances/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/data-link-tables/types.d.ts +7 -7
- package/dist/dts/workspace-elements/base/data-source-instances/types.d.ts +10 -9
- package/dist/dts/workspace-elements/base/data-sources/types.d.ts +8 -8
- package/dist/dts/workspace-elements/base/external-event-log-records/types.d.ts +4 -3
- package/dist/dts/workspace-elements/base/external-event-pulls/types.d.ts +4 -3
- package/dist/dts/workspace-elements/base/external-event-subscriptions/types.d.ts +4 -3
- package/dist/dts/workspace-elements/base/field-mapping-instances/types.d.ts +11 -10
- package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +9 -9
- package/dist/dts/workspace-elements/base/flow-instances/schemas.d.ts +12 -12
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +17 -16
- package/dist/dts/workspace-elements/base/flow-runs/flow-node-runs.d.ts +16 -16
- package/dist/dts/workspace-elements/base/flow-runs/types.d.ts +6 -5
- package/dist/dts/workspace-elements/base/flows/types.d.ts +21 -21
- package/dist/dts/workspace-elements/base/integrations/types.d.ts +48 -455
- package/dist/dts/workspace-elements/base/scenarios/types.d.ts +7 -7
- package/dist/dts/workspace-elements/types.d.ts +53 -9
- package/dist/dts/workspace-elements-catalog/index.d.ts +3 -0
- package/dist/dts/workspaces/types.d.ts +3 -1
- package/dist/index.d.ts +2791 -5337
- package/dist/index.js +70 -66
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +2791 -5337
- package/dist/index.module.mjs +67 -66
- package/dist/index.module.mjs.map +1 -1
- package/package.json +1 -3
- package/dist/dts/workspace-elements/base/actions/types.d.ts +0 -85
|
@@ -11,97 +11,84 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
11
11
|
status: z.ZodNativeEnum<typeof import("../base/action-run-log-records").ActionRunLogStatus>;
|
|
12
12
|
createdAt: z.ZodString;
|
|
13
13
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
14
|
-
error:
|
|
14
|
+
error: z.ZodOptional<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>>;
|
|
15
15
|
} & {
|
|
16
16
|
action: z.ZodOptional<z.ZodObject<{
|
|
17
17
|
id: z.ZodString;
|
|
18
|
-
name: z.ZodString;
|
|
19
|
-
} & {
|
|
20
|
-
key: z.ZodOptional<z.ZodString>;
|
|
21
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
22
|
-
description: z.ZodOptional<z.ZodString>;
|
|
23
18
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
24
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
19
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
25
20
|
revision: z.ZodOptional<z.ZodString>;
|
|
26
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
27
21
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
28
22
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
29
23
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
30
|
-
|
|
24
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
25
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
26
|
+
description: z.ZodOptional<z.ZodString>;
|
|
31
27
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
32
28
|
parentId: z.ZodOptional<z.ZodString>;
|
|
33
|
-
parentRevision: z.ZodOptional<z.ZodString>;
|
|
34
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
35
|
-
type: z.ZodNativeEnum<typeof import("../base/actions").ActionType>;
|
|
36
29
|
inputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
|
|
30
|
+
type: z.ZodOptional<z.ZodNativeEnum<typeof import("../base/actions").ActionType>>;
|
|
37
31
|
config: z.ZodOptional<z.ZodAny>;
|
|
38
32
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
39
33
|
customOutputSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
34
|
+
} & {
|
|
35
|
+
key: z.ZodString;
|
|
36
|
+
name: z.ZodString;
|
|
37
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
38
|
+
parentRevision: z.ZodOptional<z.ZodString>;
|
|
44
39
|
}, "strip", z.ZodTypeAny, {
|
|
45
|
-
|
|
40
|
+
key: string;
|
|
46
41
|
id: string;
|
|
47
42
|
name: string;
|
|
48
|
-
|
|
43
|
+
type?: import("../base/actions").ActionType | undefined;
|
|
49
44
|
uuid?: string | undefined;
|
|
50
45
|
description?: string | undefined;
|
|
51
46
|
state?: import("..").WorkspaceElementState | undefined;
|
|
52
|
-
errors?:
|
|
47
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
53
48
|
revision?: string | undefined;
|
|
54
|
-
isDeactivated?: boolean | undefined;
|
|
55
49
|
createdAt?: string | undefined;
|
|
56
50
|
updatedAt?: string | undefined;
|
|
57
51
|
archivedAt?: string | undefined;
|
|
52
|
+
isDeactivated?: boolean | undefined;
|
|
58
53
|
integrationId?: string | undefined;
|
|
59
54
|
parentId?: string | undefined;
|
|
60
|
-
parentRevision?: string | undefined;
|
|
61
|
-
isCustomized?: boolean | undefined;
|
|
62
55
|
inputSchema?: import("../..").DataSchema | undefined;
|
|
63
56
|
config?: any;
|
|
64
57
|
outputMapping?: any;
|
|
65
58
|
customOutputSchema?: import("../..").DataSchema | undefined;
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
outputSchema?: import("../..").DataSchema | undefined;
|
|
69
|
-
dependencies?: any[] | undefined;
|
|
59
|
+
isCustomized?: boolean | undefined;
|
|
60
|
+
parentRevision?: string | undefined;
|
|
70
61
|
}, {
|
|
71
|
-
|
|
62
|
+
key: string;
|
|
72
63
|
id: string;
|
|
73
64
|
name: string;
|
|
74
|
-
|
|
65
|
+
type?: import("../base/actions").ActionType | undefined;
|
|
75
66
|
uuid?: string | undefined;
|
|
76
67
|
description?: string | undefined;
|
|
77
68
|
state?: import("..").WorkspaceElementState | undefined;
|
|
78
|
-
errors?:
|
|
69
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
79
70
|
revision?: string | undefined;
|
|
80
|
-
isDeactivated?: boolean | undefined;
|
|
81
71
|
createdAt?: string | undefined;
|
|
82
72
|
updatedAt?: string | undefined;
|
|
83
73
|
archivedAt?: string | undefined;
|
|
74
|
+
isDeactivated?: boolean | undefined;
|
|
84
75
|
integrationId?: string | undefined;
|
|
85
76
|
parentId?: string | undefined;
|
|
86
|
-
parentRevision?: string | undefined;
|
|
87
|
-
isCustomized?: boolean | undefined;
|
|
88
77
|
inputSchema?: import("../..").DataSchema | undefined;
|
|
89
78
|
config?: any;
|
|
90
79
|
outputMapping?: any;
|
|
91
80
|
customOutputSchema?: import("../..").DataSchema | undefined;
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
outputSchema?: import("../..").DataSchema | undefined;
|
|
95
|
-
dependencies?: any[] | undefined;
|
|
81
|
+
isCustomized?: boolean | undefined;
|
|
82
|
+
parentRevision?: string | undefined;
|
|
96
83
|
}>>;
|
|
97
84
|
integration: z.ZodOptional<z.ZodObject<{
|
|
98
85
|
id: z.ZodString;
|
|
99
|
-
name: z.ZodString;
|
|
100
86
|
key: z.ZodOptional<z.ZodString>;
|
|
101
87
|
uuid: z.ZodOptional<z.ZodString>;
|
|
102
88
|
description: z.ZodOptional<z.ZodString>;
|
|
89
|
+
name: z.ZodString;
|
|
103
90
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
104
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
91
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
105
92
|
revision: z.ZodOptional<z.ZodString>;
|
|
106
93
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
107
94
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -109,44 +96,8 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
109
96
|
logoUri: z.ZodString;
|
|
110
97
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
111
98
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
112
|
-
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
113
|
-
key: z.ZodString;
|
|
114
|
-
type: z.ZodEnum<["integration-app-token", "membrane-token", "oauth2", "oauth1", "client-credentials", "proxy"]>;
|
|
115
|
-
title: z.ZodOptional<z.ZodString>;
|
|
116
|
-
description: z.ZodOptional<z.ZodString>;
|
|
117
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
118
|
-
schema: z.ZodOptional<z.ZodAny>;
|
|
119
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
120
|
-
}, "strip", z.ZodTypeAny, {
|
|
121
|
-
schema?: any;
|
|
122
|
-
helpUri?: string | undefined;
|
|
123
|
-
}, {
|
|
124
|
-
schema?: any;
|
|
125
|
-
helpUri?: string | undefined;
|
|
126
|
-
}>>;
|
|
127
|
-
}, "strip", z.ZodTypeAny, {
|
|
128
|
-
key: string;
|
|
129
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
130
|
-
description?: string | undefined;
|
|
131
|
-
title?: string | undefined;
|
|
132
|
-
ui?: {
|
|
133
|
-
schema?: any;
|
|
134
|
-
helpUri?: string | undefined;
|
|
135
|
-
} | undefined;
|
|
136
|
-
}, {
|
|
137
|
-
key: string;
|
|
138
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
139
|
-
description?: string | undefined;
|
|
140
|
-
title?: string | undefined;
|
|
141
|
-
ui?: {
|
|
142
|
-
schema?: any;
|
|
143
|
-
helpUri?: string | undefined;
|
|
144
|
-
} | undefined;
|
|
145
|
-
}>, "many">>;
|
|
146
99
|
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
147
|
-
parametersSchema: z.ZodOptional<z.ZodType<import("../..").DataSchema, z.ZodTypeDef, import("../..").DataSchema>>;
|
|
148
100
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
149
|
-
baseUri: z.ZodString;
|
|
150
101
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
151
102
|
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
152
103
|
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -165,33 +116,20 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
165
116
|
}, "strip", z.ZodTypeAny, {
|
|
166
117
|
id: string;
|
|
167
118
|
name: string;
|
|
168
|
-
baseUri: string;
|
|
169
119
|
logoUri: string;
|
|
170
120
|
key?: string | undefined;
|
|
171
121
|
uuid?: string | undefined;
|
|
172
122
|
description?: string | undefined;
|
|
173
123
|
state?: import("..").WorkspaceElementState | undefined;
|
|
174
|
-
errors?:
|
|
124
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
175
125
|
revision?: string | undefined;
|
|
176
|
-
isDeactivated?: boolean | undefined;
|
|
177
126
|
createdAt?: string | undefined;
|
|
178
127
|
updatedAt?: string | undefined;
|
|
179
128
|
archivedAt?: string | undefined;
|
|
129
|
+
isDeactivated?: boolean | undefined;
|
|
180
130
|
parameters?: any;
|
|
181
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
182
|
-
isTest?: boolean | undefined;
|
|
183
131
|
connectorId?: string | undefined;
|
|
184
132
|
connectorVersion?: string | undefined;
|
|
185
|
-
authOptions?: {
|
|
186
|
-
key: string;
|
|
187
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
188
|
-
description?: string | undefined;
|
|
189
|
-
title?: string | undefined;
|
|
190
|
-
ui?: {
|
|
191
|
-
schema?: any;
|
|
192
|
-
helpUri?: string | undefined;
|
|
193
|
-
} | undefined;
|
|
194
|
-
}[] | undefined;
|
|
195
133
|
oAuthCallbackUri?: string | undefined;
|
|
196
134
|
hasMissingParameters?: boolean | undefined;
|
|
197
135
|
hasDocumentation?: boolean | undefined;
|
|
@@ -203,38 +141,26 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
203
141
|
eventsCount?: number | undefined;
|
|
204
142
|
hasGlobalWebhooks?: boolean | undefined;
|
|
205
143
|
hasUdm?: boolean | undefined;
|
|
144
|
+
isTest?: boolean | undefined;
|
|
206
145
|
appUuid?: string | undefined;
|
|
207
146
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
208
147
|
}, {
|
|
209
148
|
id: string;
|
|
210
149
|
name: string;
|
|
211
|
-
baseUri: string;
|
|
212
150
|
logoUri: string;
|
|
213
151
|
key?: string | undefined;
|
|
214
152
|
uuid?: string | undefined;
|
|
215
153
|
description?: string | undefined;
|
|
216
154
|
state?: import("..").WorkspaceElementState | undefined;
|
|
217
|
-
errors?:
|
|
155
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
218
156
|
revision?: string | undefined;
|
|
219
|
-
isDeactivated?: boolean | undefined;
|
|
220
157
|
createdAt?: string | undefined;
|
|
221
158
|
updatedAt?: string | undefined;
|
|
222
159
|
archivedAt?: string | undefined;
|
|
160
|
+
isDeactivated?: boolean | undefined;
|
|
223
161
|
parameters?: any;
|
|
224
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
225
|
-
isTest?: boolean | undefined;
|
|
226
162
|
connectorId?: string | undefined;
|
|
227
163
|
connectorVersion?: string | undefined;
|
|
228
|
-
authOptions?: {
|
|
229
|
-
key: string;
|
|
230
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
231
|
-
description?: string | undefined;
|
|
232
|
-
title?: string | undefined;
|
|
233
|
-
ui?: {
|
|
234
|
-
schema?: any;
|
|
235
|
-
helpUri?: string | undefined;
|
|
236
|
-
} | undefined;
|
|
237
|
-
}[] | undefined;
|
|
238
164
|
oAuthCallbackUri?: string | undefined;
|
|
239
165
|
hasMissingParameters?: boolean | undefined;
|
|
240
166
|
hasDocumentation?: boolean | undefined;
|
|
@@ -246,6 +172,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
246
172
|
eventsCount?: number | undefined;
|
|
247
173
|
hasGlobalWebhooks?: boolean | undefined;
|
|
248
174
|
hasUdm?: boolean | undefined;
|
|
175
|
+
isTest?: boolean | undefined;
|
|
249
176
|
appUuid?: string | undefined;
|
|
250
177
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
251
178
|
}>>;
|
|
@@ -257,11 +184,9 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
257
184
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
258
185
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
259
186
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
260
|
-
error:
|
|
187
|
+
error: z.ZodOptional<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>>;
|
|
261
188
|
integrationId: z.ZodString;
|
|
262
|
-
|
|
263
|
-
parameters: z.ZodOptional<z.ZodUnknown>;
|
|
264
|
-
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
189
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
265
190
|
createdAt: z.ZodString;
|
|
266
191
|
updatedAt: z.ZodString;
|
|
267
192
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
@@ -269,7 +194,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
269
194
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
270
195
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
271
196
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
272
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
197
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
273
198
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
274
199
|
}, "strip", z.ZodTypeAny, {
|
|
275
200
|
id: string;
|
|
@@ -278,20 +203,18 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
278
203
|
updatedAt: string;
|
|
279
204
|
userId: string;
|
|
280
205
|
integrationId: string;
|
|
281
|
-
error?:
|
|
206
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
282
207
|
state?: import("..").WorkspaceElementState | undefined;
|
|
283
|
-
errors?:
|
|
284
|
-
isDeactivated?: boolean | undefined;
|
|
208
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
285
209
|
archivedAt?: string | undefined;
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
connectorParameters?: unknown;
|
|
210
|
+
isDeactivated?: boolean | undefined;
|
|
211
|
+
authOptionKey?: string | undefined;
|
|
289
212
|
isTest?: boolean | undefined;
|
|
213
|
+
meta?: Record<string, any> | undefined;
|
|
290
214
|
disconnected?: boolean | undefined;
|
|
291
215
|
isDefunct?: boolean | undefined;
|
|
292
216
|
lastActiveAt?: string | undefined;
|
|
293
217
|
nextCredentialsRefreshAt?: string | undefined;
|
|
294
|
-
meta?: Record<string, any> | undefined;
|
|
295
218
|
}, {
|
|
296
219
|
id: string;
|
|
297
220
|
name: string;
|
|
@@ -299,20 +222,18 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
299
222
|
updatedAt: string;
|
|
300
223
|
userId: string;
|
|
301
224
|
integrationId: string;
|
|
302
|
-
error?:
|
|
225
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
303
226
|
state?: import("..").WorkspaceElementState | undefined;
|
|
304
|
-
errors?:
|
|
305
|
-
isDeactivated?: boolean | undefined;
|
|
227
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
306
228
|
archivedAt?: string | undefined;
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
connectorParameters?: unknown;
|
|
229
|
+
isDeactivated?: boolean | undefined;
|
|
230
|
+
authOptionKey?: string | undefined;
|
|
310
231
|
isTest?: boolean | undefined;
|
|
232
|
+
meta?: Record<string, any> | undefined;
|
|
311
233
|
disconnected?: boolean | undefined;
|
|
312
234
|
isDefunct?: boolean | undefined;
|
|
313
235
|
lastActiveAt?: string | undefined;
|
|
314
236
|
nextCredentialsRefreshAt?: string | undefined;
|
|
315
|
-
meta?: Record<string, any> | undefined;
|
|
316
237
|
}>>;
|
|
317
238
|
}, "strip", z.ZodTypeAny, {
|
|
318
239
|
status: import("../base/action-run-log-records").ActionRunLogStatus;
|
|
@@ -329,52 +250,37 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
329
250
|
updatedAt: string;
|
|
330
251
|
userId: string;
|
|
331
252
|
integrationId: string;
|
|
332
|
-
error?:
|
|
253
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
333
254
|
state?: import("..").WorkspaceElementState | undefined;
|
|
334
|
-
errors?:
|
|
335
|
-
isDeactivated?: boolean | undefined;
|
|
255
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
336
256
|
archivedAt?: string | undefined;
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
connectorParameters?: unknown;
|
|
257
|
+
isDeactivated?: boolean | undefined;
|
|
258
|
+
authOptionKey?: string | undefined;
|
|
340
259
|
isTest?: boolean | undefined;
|
|
260
|
+
meta?: Record<string, any> | undefined;
|
|
341
261
|
disconnected?: boolean | undefined;
|
|
342
262
|
isDefunct?: boolean | undefined;
|
|
343
263
|
lastActiveAt?: string | undefined;
|
|
344
264
|
nextCredentialsRefreshAt?: string | undefined;
|
|
345
|
-
meta?: Record<string, any> | undefined;
|
|
346
265
|
} | undefined;
|
|
347
|
-
error?:
|
|
266
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
348
267
|
integration?: {
|
|
349
268
|
id: string;
|
|
350
269
|
name: string;
|
|
351
|
-
baseUri: string;
|
|
352
270
|
logoUri: string;
|
|
353
271
|
key?: string | undefined;
|
|
354
272
|
uuid?: string | undefined;
|
|
355
273
|
description?: string | undefined;
|
|
356
274
|
state?: import("..").WorkspaceElementState | undefined;
|
|
357
|
-
errors?:
|
|
275
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
358
276
|
revision?: string | undefined;
|
|
359
|
-
isDeactivated?: boolean | undefined;
|
|
360
277
|
createdAt?: string | undefined;
|
|
361
278
|
updatedAt?: string | undefined;
|
|
362
279
|
archivedAt?: string | undefined;
|
|
280
|
+
isDeactivated?: boolean | undefined;
|
|
363
281
|
parameters?: any;
|
|
364
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
365
|
-
isTest?: boolean | undefined;
|
|
366
282
|
connectorId?: string | undefined;
|
|
367
283
|
connectorVersion?: string | undefined;
|
|
368
|
-
authOptions?: {
|
|
369
|
-
key: string;
|
|
370
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
371
|
-
description?: string | undefined;
|
|
372
|
-
title?: string | undefined;
|
|
373
|
-
ui?: {
|
|
374
|
-
schema?: any;
|
|
375
|
-
helpUri?: string | undefined;
|
|
376
|
-
} | undefined;
|
|
377
|
-
}[] | undefined;
|
|
378
284
|
oAuthCallbackUri?: string | undefined;
|
|
379
285
|
hasMissingParameters?: boolean | undefined;
|
|
380
286
|
hasDocumentation?: boolean | undefined;
|
|
@@ -386,35 +292,32 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
386
292
|
eventsCount?: number | undefined;
|
|
387
293
|
hasGlobalWebhooks?: boolean | undefined;
|
|
388
294
|
hasUdm?: boolean | undefined;
|
|
295
|
+
isTest?: boolean | undefined;
|
|
389
296
|
appUuid?: string | undefined;
|
|
390
297
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
391
298
|
} | undefined;
|
|
392
299
|
action?: {
|
|
393
|
-
|
|
300
|
+
key: string;
|
|
394
301
|
id: string;
|
|
395
302
|
name: string;
|
|
396
|
-
|
|
303
|
+
type?: import("../base/actions").ActionType | undefined;
|
|
397
304
|
uuid?: string | undefined;
|
|
398
305
|
description?: string | undefined;
|
|
399
306
|
state?: import("..").WorkspaceElementState | undefined;
|
|
400
|
-
errors?:
|
|
307
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
401
308
|
revision?: string | undefined;
|
|
402
|
-
isDeactivated?: boolean | undefined;
|
|
403
309
|
createdAt?: string | undefined;
|
|
404
310
|
updatedAt?: string | undefined;
|
|
405
311
|
archivedAt?: string | undefined;
|
|
312
|
+
isDeactivated?: boolean | undefined;
|
|
406
313
|
integrationId?: string | undefined;
|
|
407
314
|
parentId?: string | undefined;
|
|
408
|
-
parentRevision?: string | undefined;
|
|
409
|
-
isCustomized?: boolean | undefined;
|
|
410
315
|
inputSchema?: import("../..").DataSchema | undefined;
|
|
411
316
|
config?: any;
|
|
412
317
|
outputMapping?: any;
|
|
413
318
|
customOutputSchema?: import("../..").DataSchema | undefined;
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
outputSchema?: import("../..").DataSchema | undefined;
|
|
417
|
-
dependencies?: any[] | undefined;
|
|
319
|
+
isCustomized?: boolean | undefined;
|
|
320
|
+
parentRevision?: string | undefined;
|
|
418
321
|
} | undefined;
|
|
419
322
|
input?: any;
|
|
420
323
|
output?: any;
|
|
@@ -434,52 +337,37 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
434
337
|
updatedAt: string;
|
|
435
338
|
userId: string;
|
|
436
339
|
integrationId: string;
|
|
437
|
-
error?:
|
|
340
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
438
341
|
state?: import("..").WorkspaceElementState | undefined;
|
|
439
|
-
errors?:
|
|
440
|
-
isDeactivated?: boolean | undefined;
|
|
342
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
441
343
|
archivedAt?: string | undefined;
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
connectorParameters?: unknown;
|
|
344
|
+
isDeactivated?: boolean | undefined;
|
|
345
|
+
authOptionKey?: string | undefined;
|
|
445
346
|
isTest?: boolean | undefined;
|
|
347
|
+
meta?: Record<string, any> | undefined;
|
|
446
348
|
disconnected?: boolean | undefined;
|
|
447
349
|
isDefunct?: boolean | undefined;
|
|
448
350
|
lastActiveAt?: string | undefined;
|
|
449
351
|
nextCredentialsRefreshAt?: string | undefined;
|
|
450
|
-
meta?: Record<string, any> | undefined;
|
|
451
352
|
} | undefined;
|
|
452
|
-
error?:
|
|
353
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
453
354
|
integration?: {
|
|
454
355
|
id: string;
|
|
455
356
|
name: string;
|
|
456
|
-
baseUri: string;
|
|
457
357
|
logoUri: string;
|
|
458
358
|
key?: string | undefined;
|
|
459
359
|
uuid?: string | undefined;
|
|
460
360
|
description?: string | undefined;
|
|
461
361
|
state?: import("..").WorkspaceElementState | undefined;
|
|
462
|
-
errors?:
|
|
362
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
463
363
|
revision?: string | undefined;
|
|
464
|
-
isDeactivated?: boolean | undefined;
|
|
465
364
|
createdAt?: string | undefined;
|
|
466
365
|
updatedAt?: string | undefined;
|
|
467
366
|
archivedAt?: string | undefined;
|
|
367
|
+
isDeactivated?: boolean | undefined;
|
|
468
368
|
parameters?: any;
|
|
469
|
-
parametersSchema?: import("../..").DataSchema | undefined;
|
|
470
|
-
isTest?: boolean | undefined;
|
|
471
369
|
connectorId?: string | undefined;
|
|
472
370
|
connectorVersion?: string | undefined;
|
|
473
|
-
authOptions?: {
|
|
474
|
-
key: string;
|
|
475
|
-
type: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials";
|
|
476
|
-
description?: string | undefined;
|
|
477
|
-
title?: string | undefined;
|
|
478
|
-
ui?: {
|
|
479
|
-
schema?: any;
|
|
480
|
-
helpUri?: string | undefined;
|
|
481
|
-
} | undefined;
|
|
482
|
-
}[] | undefined;
|
|
483
371
|
oAuthCallbackUri?: string | undefined;
|
|
484
372
|
hasMissingParameters?: boolean | undefined;
|
|
485
373
|
hasDocumentation?: boolean | undefined;
|
|
@@ -491,35 +379,32 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
491
379
|
eventsCount?: number | undefined;
|
|
492
380
|
hasGlobalWebhooks?: boolean | undefined;
|
|
493
381
|
hasUdm?: boolean | undefined;
|
|
382
|
+
isTest?: boolean | undefined;
|
|
494
383
|
appUuid?: string | undefined;
|
|
495
384
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
496
385
|
} | undefined;
|
|
497
386
|
action?: {
|
|
498
|
-
|
|
387
|
+
key: string;
|
|
499
388
|
id: string;
|
|
500
389
|
name: string;
|
|
501
|
-
|
|
390
|
+
type?: import("../base/actions").ActionType | undefined;
|
|
502
391
|
uuid?: string | undefined;
|
|
503
392
|
description?: string | undefined;
|
|
504
393
|
state?: import("..").WorkspaceElementState | undefined;
|
|
505
|
-
errors?:
|
|
394
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
506
395
|
revision?: string | undefined;
|
|
507
|
-
isDeactivated?: boolean | undefined;
|
|
508
396
|
createdAt?: string | undefined;
|
|
509
397
|
updatedAt?: string | undefined;
|
|
510
398
|
archivedAt?: string | undefined;
|
|
399
|
+
isDeactivated?: boolean | undefined;
|
|
511
400
|
integrationId?: string | undefined;
|
|
512
401
|
parentId?: string | undefined;
|
|
513
|
-
parentRevision?: string | undefined;
|
|
514
|
-
isCustomized?: boolean | undefined;
|
|
515
402
|
inputSchema?: import("../..").DataSchema | undefined;
|
|
516
403
|
config?: any;
|
|
517
404
|
outputMapping?: any;
|
|
518
405
|
customOutputSchema?: import("../..").DataSchema | undefined;
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
outputSchema?: import("../..").DataSchema | undefined;
|
|
522
|
-
dependencies?: any[] | undefined;
|
|
406
|
+
isCustomized?: boolean | undefined;
|
|
407
|
+
parentRevision?: string | undefined;
|
|
523
408
|
} | undefined;
|
|
524
409
|
input?: any;
|
|
525
410
|
output?: any;
|