@membranehq/sdk 0.5.2 → 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 +1661 -1666
- 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 +7 -7
- package/dist/dts/accessors/integrations-accessors.d.ts +7 -7
- package/dist/dts/errors/index.d.ts +10 -1
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +119 -65
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +69 -90
- package/dist/dts/workspace-elements/api/actions-api.d.ts +253 -339
- 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 +90 -89
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +50 -50
- 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 +55 -55
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +62 -62
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +40 -40
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +40 -40
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +35 -35
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +20 -20
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +146 -146
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +56 -56
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +128 -128
- package/dist/dts/workspace-elements/api/flows-api.d.ts +223 -223
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +26 -26
- package/dist/dts/workspace-elements/api/scenarios-api.d.ts +21 -21
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +10 -10
- 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 +11 -10
- 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 +8 -8
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +15 -14
- 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 +15 -15
- package/dist/dts/workspace-elements/base/integrations/types.d.ts +48 -48
- 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 +2 -0
- package/dist/index.d.ts +2269 -2236
- package/dist/index.js +48 -48
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +2269 -2236
- package/dist/index.module.mjs +46 -48
- 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>;
|
|
@@ -134,14 +121,13 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
134
121
|
uuid?: string | undefined;
|
|
135
122
|
description?: string | undefined;
|
|
136
123
|
state?: import("..").WorkspaceElementState | undefined;
|
|
137
|
-
errors?:
|
|
124
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
138
125
|
revision?: string | undefined;
|
|
139
|
-
isDeactivated?: boolean | undefined;
|
|
140
126
|
createdAt?: string | undefined;
|
|
141
127
|
updatedAt?: string | undefined;
|
|
142
128
|
archivedAt?: string | undefined;
|
|
129
|
+
isDeactivated?: boolean | undefined;
|
|
143
130
|
parameters?: any;
|
|
144
|
-
isTest?: boolean | undefined;
|
|
145
131
|
connectorId?: string | undefined;
|
|
146
132
|
connectorVersion?: string | undefined;
|
|
147
133
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -155,6 +141,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
155
141
|
eventsCount?: number | undefined;
|
|
156
142
|
hasGlobalWebhooks?: boolean | undefined;
|
|
157
143
|
hasUdm?: boolean | undefined;
|
|
144
|
+
isTest?: boolean | undefined;
|
|
158
145
|
appUuid?: string | undefined;
|
|
159
146
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
160
147
|
}, {
|
|
@@ -165,14 +152,13 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
165
152
|
uuid?: string | undefined;
|
|
166
153
|
description?: string | undefined;
|
|
167
154
|
state?: import("..").WorkspaceElementState | undefined;
|
|
168
|
-
errors?:
|
|
155
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
169
156
|
revision?: string | undefined;
|
|
170
|
-
isDeactivated?: boolean | undefined;
|
|
171
157
|
createdAt?: string | undefined;
|
|
172
158
|
updatedAt?: string | undefined;
|
|
173
159
|
archivedAt?: string | undefined;
|
|
160
|
+
isDeactivated?: boolean | undefined;
|
|
174
161
|
parameters?: any;
|
|
175
|
-
isTest?: boolean | undefined;
|
|
176
162
|
connectorId?: string | undefined;
|
|
177
163
|
connectorVersion?: string | undefined;
|
|
178
164
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -186,6 +172,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
186
172
|
eventsCount?: number | undefined;
|
|
187
173
|
hasGlobalWebhooks?: boolean | undefined;
|
|
188
174
|
hasUdm?: boolean | undefined;
|
|
175
|
+
isTest?: boolean | undefined;
|
|
189
176
|
appUuid?: string | undefined;
|
|
190
177
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
191
178
|
}>>;
|
|
@@ -197,7 +184,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
197
184
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
198
185
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
199
186
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
200
|
-
error:
|
|
187
|
+
error: z.ZodOptional<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>>;
|
|
201
188
|
integrationId: z.ZodString;
|
|
202
189
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
203
190
|
createdAt: z.ZodString;
|
|
@@ -207,7 +194,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
207
194
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
208
195
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
209
196
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
210
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
197
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
211
198
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
212
199
|
}, "strip", z.ZodTypeAny, {
|
|
213
200
|
id: string;
|
|
@@ -216,18 +203,18 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
216
203
|
updatedAt: string;
|
|
217
204
|
userId: string;
|
|
218
205
|
integrationId: string;
|
|
219
|
-
error?:
|
|
206
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
220
207
|
state?: import("..").WorkspaceElementState | undefined;
|
|
221
|
-
errors?:
|
|
222
|
-
isDeactivated?: boolean | undefined;
|
|
208
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
223
209
|
archivedAt?: string | undefined;
|
|
210
|
+
isDeactivated?: boolean | undefined;
|
|
224
211
|
authOptionKey?: string | undefined;
|
|
225
212
|
isTest?: boolean | undefined;
|
|
213
|
+
meta?: Record<string, any> | undefined;
|
|
226
214
|
disconnected?: boolean | undefined;
|
|
227
215
|
isDefunct?: boolean | undefined;
|
|
228
216
|
lastActiveAt?: string | undefined;
|
|
229
217
|
nextCredentialsRefreshAt?: string | undefined;
|
|
230
|
-
meta?: Record<string, any> | undefined;
|
|
231
218
|
}, {
|
|
232
219
|
id: string;
|
|
233
220
|
name: string;
|
|
@@ -235,18 +222,18 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
235
222
|
updatedAt: string;
|
|
236
223
|
userId: string;
|
|
237
224
|
integrationId: string;
|
|
238
|
-
error?:
|
|
225
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
239
226
|
state?: import("..").WorkspaceElementState | undefined;
|
|
240
|
-
errors?:
|
|
241
|
-
isDeactivated?: boolean | undefined;
|
|
227
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
242
228
|
archivedAt?: string | undefined;
|
|
229
|
+
isDeactivated?: boolean | undefined;
|
|
243
230
|
authOptionKey?: string | undefined;
|
|
244
231
|
isTest?: boolean | undefined;
|
|
232
|
+
meta?: Record<string, any> | undefined;
|
|
245
233
|
disconnected?: boolean | undefined;
|
|
246
234
|
isDefunct?: boolean | undefined;
|
|
247
235
|
lastActiveAt?: string | undefined;
|
|
248
236
|
nextCredentialsRefreshAt?: string | undefined;
|
|
249
|
-
meta?: Record<string, any> | undefined;
|
|
250
237
|
}>>;
|
|
251
238
|
}, "strip", z.ZodTypeAny, {
|
|
252
239
|
status: import("../base/action-run-log-records").ActionRunLogStatus;
|
|
@@ -263,20 +250,20 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
263
250
|
updatedAt: string;
|
|
264
251
|
userId: string;
|
|
265
252
|
integrationId: string;
|
|
266
|
-
error?:
|
|
253
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
267
254
|
state?: import("..").WorkspaceElementState | undefined;
|
|
268
|
-
errors?:
|
|
269
|
-
isDeactivated?: boolean | undefined;
|
|
255
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
270
256
|
archivedAt?: string | undefined;
|
|
257
|
+
isDeactivated?: boolean | undefined;
|
|
271
258
|
authOptionKey?: string | undefined;
|
|
272
259
|
isTest?: boolean | undefined;
|
|
260
|
+
meta?: Record<string, any> | undefined;
|
|
273
261
|
disconnected?: boolean | undefined;
|
|
274
262
|
isDefunct?: boolean | undefined;
|
|
275
263
|
lastActiveAt?: string | undefined;
|
|
276
264
|
nextCredentialsRefreshAt?: string | undefined;
|
|
277
|
-
meta?: Record<string, any> | undefined;
|
|
278
265
|
} | undefined;
|
|
279
|
-
error?:
|
|
266
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
280
267
|
integration?: {
|
|
281
268
|
id: string;
|
|
282
269
|
name: string;
|
|
@@ -285,14 +272,13 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
285
272
|
uuid?: string | undefined;
|
|
286
273
|
description?: string | undefined;
|
|
287
274
|
state?: import("..").WorkspaceElementState | undefined;
|
|
288
|
-
errors?:
|
|
275
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
289
276
|
revision?: string | undefined;
|
|
290
|
-
isDeactivated?: boolean | undefined;
|
|
291
277
|
createdAt?: string | undefined;
|
|
292
278
|
updatedAt?: string | undefined;
|
|
293
279
|
archivedAt?: string | undefined;
|
|
280
|
+
isDeactivated?: boolean | undefined;
|
|
294
281
|
parameters?: any;
|
|
295
|
-
isTest?: boolean | undefined;
|
|
296
282
|
connectorId?: string | undefined;
|
|
297
283
|
connectorVersion?: string | undefined;
|
|
298
284
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -306,35 +292,32 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
306
292
|
eventsCount?: number | undefined;
|
|
307
293
|
hasGlobalWebhooks?: boolean | undefined;
|
|
308
294
|
hasUdm?: boolean | undefined;
|
|
295
|
+
isTest?: boolean | undefined;
|
|
309
296
|
appUuid?: string | undefined;
|
|
310
297
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
311
298
|
} | undefined;
|
|
312
299
|
action?: {
|
|
313
|
-
|
|
300
|
+
key: string;
|
|
314
301
|
id: string;
|
|
315
302
|
name: string;
|
|
316
|
-
|
|
303
|
+
type?: import("../base/actions").ActionType | undefined;
|
|
317
304
|
uuid?: string | undefined;
|
|
318
305
|
description?: string | undefined;
|
|
319
306
|
state?: import("..").WorkspaceElementState | undefined;
|
|
320
|
-
errors?:
|
|
307
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
321
308
|
revision?: string | undefined;
|
|
322
|
-
isDeactivated?: boolean | undefined;
|
|
323
309
|
createdAt?: string | undefined;
|
|
324
310
|
updatedAt?: string | undefined;
|
|
325
311
|
archivedAt?: string | undefined;
|
|
312
|
+
isDeactivated?: boolean | undefined;
|
|
326
313
|
integrationId?: string | undefined;
|
|
327
314
|
parentId?: string | undefined;
|
|
328
|
-
parentRevision?: string | undefined;
|
|
329
|
-
isCustomized?: boolean | undefined;
|
|
330
315
|
inputSchema?: import("../..").DataSchema | undefined;
|
|
331
316
|
config?: any;
|
|
332
317
|
outputMapping?: any;
|
|
333
318
|
customOutputSchema?: import("../..").DataSchema | undefined;
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
outputSchema?: import("../..").DataSchema | undefined;
|
|
337
|
-
dependencies?: any[] | undefined;
|
|
319
|
+
isCustomized?: boolean | undefined;
|
|
320
|
+
parentRevision?: string | undefined;
|
|
338
321
|
} | undefined;
|
|
339
322
|
input?: any;
|
|
340
323
|
output?: any;
|
|
@@ -354,20 +337,20 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
354
337
|
updatedAt: string;
|
|
355
338
|
userId: string;
|
|
356
339
|
integrationId: string;
|
|
357
|
-
error?:
|
|
340
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
358
341
|
state?: import("..").WorkspaceElementState | undefined;
|
|
359
|
-
errors?:
|
|
360
|
-
isDeactivated?: boolean | undefined;
|
|
342
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
361
343
|
archivedAt?: string | undefined;
|
|
344
|
+
isDeactivated?: boolean | undefined;
|
|
362
345
|
authOptionKey?: string | undefined;
|
|
363
346
|
isTest?: boolean | undefined;
|
|
347
|
+
meta?: Record<string, any> | undefined;
|
|
364
348
|
disconnected?: boolean | undefined;
|
|
365
349
|
isDefunct?: boolean | undefined;
|
|
366
350
|
lastActiveAt?: string | undefined;
|
|
367
351
|
nextCredentialsRefreshAt?: string | undefined;
|
|
368
|
-
meta?: Record<string, any> | undefined;
|
|
369
352
|
} | undefined;
|
|
370
|
-
error?:
|
|
353
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
371
354
|
integration?: {
|
|
372
355
|
id: string;
|
|
373
356
|
name: string;
|
|
@@ -376,14 +359,13 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
376
359
|
uuid?: string | undefined;
|
|
377
360
|
description?: string | undefined;
|
|
378
361
|
state?: import("..").WorkspaceElementState | undefined;
|
|
379
|
-
errors?:
|
|
362
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
380
363
|
revision?: string | undefined;
|
|
381
|
-
isDeactivated?: boolean | undefined;
|
|
382
364
|
createdAt?: string | undefined;
|
|
383
365
|
updatedAt?: string | undefined;
|
|
384
366
|
archivedAt?: string | undefined;
|
|
367
|
+
isDeactivated?: boolean | undefined;
|
|
385
368
|
parameters?: any;
|
|
386
|
-
isTest?: boolean | undefined;
|
|
387
369
|
connectorId?: string | undefined;
|
|
388
370
|
connectorVersion?: string | undefined;
|
|
389
371
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -397,35 +379,32 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
397
379
|
eventsCount?: number | undefined;
|
|
398
380
|
hasGlobalWebhooks?: boolean | undefined;
|
|
399
381
|
hasUdm?: boolean | undefined;
|
|
382
|
+
isTest?: boolean | undefined;
|
|
400
383
|
appUuid?: string | undefined;
|
|
401
384
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
402
385
|
} | undefined;
|
|
403
386
|
action?: {
|
|
404
|
-
|
|
387
|
+
key: string;
|
|
405
388
|
id: string;
|
|
406
389
|
name: string;
|
|
407
|
-
|
|
390
|
+
type?: import("../base/actions").ActionType | undefined;
|
|
408
391
|
uuid?: string | undefined;
|
|
409
392
|
description?: string | undefined;
|
|
410
393
|
state?: import("..").WorkspaceElementState | undefined;
|
|
411
|
-
errors?:
|
|
394
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
412
395
|
revision?: string | undefined;
|
|
413
|
-
isDeactivated?: boolean | undefined;
|
|
414
396
|
createdAt?: string | undefined;
|
|
415
397
|
updatedAt?: string | undefined;
|
|
416
398
|
archivedAt?: string | undefined;
|
|
399
|
+
isDeactivated?: boolean | undefined;
|
|
417
400
|
integrationId?: string | undefined;
|
|
418
401
|
parentId?: string | undefined;
|
|
419
|
-
parentRevision?: string | undefined;
|
|
420
|
-
isCustomized?: boolean | undefined;
|
|
421
402
|
inputSchema?: import("../..").DataSchema | undefined;
|
|
422
403
|
config?: any;
|
|
423
404
|
outputMapping?: any;
|
|
424
405
|
customOutputSchema?: import("../..").DataSchema | undefined;
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
outputSchema?: import("../..").DataSchema | undefined;
|
|
428
|
-
dependencies?: any[] | undefined;
|
|
406
|
+
isCustomized?: boolean | undefined;
|
|
407
|
+
parentRevision?: string | undefined;
|
|
429
408
|
} | undefined;
|
|
430
409
|
input?: any;
|
|
431
410
|
output?: any;
|