@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
|
@@ -54,16 +54,16 @@ export interface DataLinkSelector extends DataLinkInTableSelector {
|
|
|
54
54
|
}
|
|
55
55
|
export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
56
56
|
id: z.ZodString;
|
|
57
|
-
name: z.ZodString;
|
|
58
57
|
key: z.ZodOptional<z.ZodString>;
|
|
59
58
|
uuid: z.ZodOptional<z.ZodString>;
|
|
60
59
|
description: z.ZodOptional<z.ZodString>;
|
|
60
|
+
name: z.ZodString;
|
|
61
61
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
62
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
62
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
63
63
|
revision: z.ZodOptional<z.ZodString>;
|
|
64
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
65
64
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
66
65
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
66
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
67
67
|
} & {
|
|
68
68
|
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
69
69
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
@@ -74,16 +74,16 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
74
74
|
} & {
|
|
75
75
|
dataLinkTable: z.ZodOptional<z.ZodObject<{
|
|
76
76
|
id: z.ZodString;
|
|
77
|
-
name: z.ZodString;
|
|
78
77
|
key: z.ZodOptional<z.ZodString>;
|
|
79
78
|
uuid: z.ZodOptional<z.ZodString>;
|
|
80
79
|
description: z.ZodOptional<z.ZodString>;
|
|
80
|
+
name: z.ZodString;
|
|
81
81
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
82
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
82
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
83
83
|
revision: z.ZodOptional<z.ZodString>;
|
|
84
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
85
84
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
86
85
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
86
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
87
87
|
} & {
|
|
88
88
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93,12 +93,12 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
93
93
|
uuid?: string | undefined;
|
|
94
94
|
description?: string | undefined;
|
|
95
95
|
state?: import("..").WorkspaceElementState | undefined;
|
|
96
|
-
errors?:
|
|
96
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
97
97
|
revision?: string | undefined;
|
|
98
|
-
isDeactivated?: boolean | undefined;
|
|
99
98
|
createdAt?: string | undefined;
|
|
100
99
|
updatedAt?: string | undefined;
|
|
101
100
|
archivedAt?: string | undefined;
|
|
101
|
+
isDeactivated?: boolean | undefined;
|
|
102
102
|
}, {
|
|
103
103
|
id: string;
|
|
104
104
|
name: string;
|
|
@@ -106,12 +106,12 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
106
106
|
uuid?: string | undefined;
|
|
107
107
|
description?: string | undefined;
|
|
108
108
|
state?: import("..").WorkspaceElementState | undefined;
|
|
109
|
-
errors?:
|
|
109
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
110
110
|
revision?: string | undefined;
|
|
111
|
-
isDeactivated?: boolean | undefined;
|
|
112
111
|
createdAt?: string | undefined;
|
|
113
112
|
updatedAt?: string | undefined;
|
|
114
113
|
archivedAt?: string | undefined;
|
|
114
|
+
isDeactivated?: boolean | undefined;
|
|
115
115
|
}>>;
|
|
116
116
|
connection: z.ZodOptional<z.ZodObject<{
|
|
117
117
|
id: z.ZodString;
|
|
@@ -121,7 +121,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
121
121
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
122
122
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
123
123
|
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
124
|
-
error:
|
|
124
|
+
error: z.ZodOptional<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>>;
|
|
125
125
|
integrationId: z.ZodString;
|
|
126
126
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
127
127
|
createdAt: z.ZodString;
|
|
@@ -131,7 +131,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
131
131
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
132
132
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
133
133
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
134
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
134
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
135
135
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
136
136
|
}, "strip", z.ZodTypeAny, {
|
|
137
137
|
id: string;
|
|
@@ -140,18 +140,18 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
140
140
|
updatedAt: string;
|
|
141
141
|
userId: string;
|
|
142
142
|
integrationId: string;
|
|
143
|
-
error?:
|
|
143
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
144
144
|
state?: import("..").WorkspaceElementState | undefined;
|
|
145
|
-
errors?:
|
|
146
|
-
isDeactivated?: boolean | undefined;
|
|
145
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
147
146
|
archivedAt?: string | undefined;
|
|
147
|
+
isDeactivated?: boolean | undefined;
|
|
148
148
|
authOptionKey?: string | undefined;
|
|
149
149
|
isTest?: boolean | undefined;
|
|
150
|
+
meta?: Record<string, any> | undefined;
|
|
150
151
|
disconnected?: boolean | undefined;
|
|
151
152
|
isDefunct?: boolean | undefined;
|
|
152
153
|
lastActiveAt?: string | undefined;
|
|
153
154
|
nextCredentialsRefreshAt?: string | undefined;
|
|
154
|
-
meta?: Record<string, any> | undefined;
|
|
155
155
|
}, {
|
|
156
156
|
id: string;
|
|
157
157
|
name: string;
|
|
@@ -159,27 +159,27 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
159
159
|
updatedAt: string;
|
|
160
160
|
userId: string;
|
|
161
161
|
integrationId: string;
|
|
162
|
-
error?:
|
|
162
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
163
163
|
state?: import("..").WorkspaceElementState | undefined;
|
|
164
|
-
errors?:
|
|
165
|
-
isDeactivated?: boolean | undefined;
|
|
164
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
166
165
|
archivedAt?: string | undefined;
|
|
166
|
+
isDeactivated?: boolean | undefined;
|
|
167
167
|
authOptionKey?: string | undefined;
|
|
168
168
|
isTest?: boolean | undefined;
|
|
169
|
+
meta?: Record<string, any> | undefined;
|
|
169
170
|
disconnected?: boolean | undefined;
|
|
170
171
|
isDefunct?: boolean | undefined;
|
|
171
172
|
lastActiveAt?: string | undefined;
|
|
172
173
|
nextCredentialsRefreshAt?: string | undefined;
|
|
173
|
-
meta?: Record<string, any> | undefined;
|
|
174
174
|
}>>;
|
|
175
175
|
integration: z.ZodOptional<z.ZodObject<{
|
|
176
176
|
id: z.ZodString;
|
|
177
|
-
name: z.ZodString;
|
|
178
177
|
key: z.ZodOptional<z.ZodString>;
|
|
179
178
|
uuid: z.ZodOptional<z.ZodString>;
|
|
180
179
|
description: z.ZodOptional<z.ZodString>;
|
|
180
|
+
name: z.ZodString;
|
|
181
181
|
state: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
182
|
-
errors: z.ZodOptional<z.ZodArray<
|
|
182
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../..").ErrorDataSchema, z.ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
183
183
|
revision: z.ZodOptional<z.ZodString>;
|
|
184
184
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
185
185
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
@@ -212,14 +212,13 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
212
212
|
uuid?: string | undefined;
|
|
213
213
|
description?: string | undefined;
|
|
214
214
|
state?: import("..").WorkspaceElementState | undefined;
|
|
215
|
-
errors?:
|
|
215
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
216
216
|
revision?: string | undefined;
|
|
217
|
-
isDeactivated?: boolean | undefined;
|
|
218
217
|
createdAt?: string | undefined;
|
|
219
218
|
updatedAt?: string | undefined;
|
|
220
219
|
archivedAt?: string | undefined;
|
|
220
|
+
isDeactivated?: boolean | undefined;
|
|
221
221
|
parameters?: any;
|
|
222
|
-
isTest?: boolean | undefined;
|
|
223
222
|
connectorId?: string | undefined;
|
|
224
223
|
connectorVersion?: string | undefined;
|
|
225
224
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -233,6 +232,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
233
232
|
eventsCount?: number | undefined;
|
|
234
233
|
hasGlobalWebhooks?: boolean | undefined;
|
|
235
234
|
hasUdm?: boolean | undefined;
|
|
235
|
+
isTest?: boolean | undefined;
|
|
236
236
|
appUuid?: string | undefined;
|
|
237
237
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
238
238
|
}, {
|
|
@@ -243,14 +243,13 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
243
243
|
uuid?: string | undefined;
|
|
244
244
|
description?: string | undefined;
|
|
245
245
|
state?: import("..").WorkspaceElementState | undefined;
|
|
246
|
-
errors?:
|
|
246
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
247
247
|
revision?: string | undefined;
|
|
248
|
-
isDeactivated?: boolean | undefined;
|
|
249
248
|
createdAt?: string | undefined;
|
|
250
249
|
updatedAt?: string | undefined;
|
|
251
250
|
archivedAt?: string | undefined;
|
|
251
|
+
isDeactivated?: boolean | undefined;
|
|
252
252
|
parameters?: any;
|
|
253
|
-
isTest?: boolean | undefined;
|
|
254
253
|
connectorId?: string | undefined;
|
|
255
254
|
connectorVersion?: string | undefined;
|
|
256
255
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -264,6 +263,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
264
263
|
eventsCount?: number | undefined;
|
|
265
264
|
hasGlobalWebhooks?: boolean | undefined;
|
|
266
265
|
hasUdm?: boolean | undefined;
|
|
266
|
+
isTest?: boolean | undefined;
|
|
267
267
|
appUuid?: string | undefined;
|
|
268
268
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
269
269
|
}>>;
|
|
@@ -314,18 +314,18 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
314
314
|
updatedAt: string;
|
|
315
315
|
userId: string;
|
|
316
316
|
integrationId: string;
|
|
317
|
-
error?:
|
|
317
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
318
318
|
state?: import("..").WorkspaceElementState | undefined;
|
|
319
|
-
errors?:
|
|
320
|
-
isDeactivated?: boolean | undefined;
|
|
319
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
321
320
|
archivedAt?: string | undefined;
|
|
321
|
+
isDeactivated?: boolean | undefined;
|
|
322
322
|
authOptionKey?: string | undefined;
|
|
323
323
|
isTest?: boolean | undefined;
|
|
324
|
+
meta?: Record<string, any> | undefined;
|
|
324
325
|
disconnected?: boolean | undefined;
|
|
325
326
|
isDefunct?: boolean | undefined;
|
|
326
327
|
lastActiveAt?: string | undefined;
|
|
327
328
|
nextCredentialsRefreshAt?: string | undefined;
|
|
328
|
-
meta?: Record<string, any> | undefined;
|
|
329
329
|
} | undefined;
|
|
330
330
|
integration?: {
|
|
331
331
|
id: string;
|
|
@@ -335,14 +335,13 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
335
335
|
uuid?: string | undefined;
|
|
336
336
|
description?: string | undefined;
|
|
337
337
|
state?: import("..").WorkspaceElementState | undefined;
|
|
338
|
-
errors?:
|
|
338
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
339
339
|
revision?: string | undefined;
|
|
340
|
-
isDeactivated?: boolean | undefined;
|
|
341
340
|
createdAt?: string | undefined;
|
|
342
341
|
updatedAt?: string | undefined;
|
|
343
342
|
archivedAt?: string | undefined;
|
|
343
|
+
isDeactivated?: boolean | undefined;
|
|
344
344
|
parameters?: any;
|
|
345
|
-
isTest?: boolean | undefined;
|
|
346
345
|
connectorId?: string | undefined;
|
|
347
346
|
connectorVersion?: string | undefined;
|
|
348
347
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -356,18 +355,19 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
356
355
|
eventsCount?: number | undefined;
|
|
357
356
|
hasGlobalWebhooks?: boolean | undefined;
|
|
358
357
|
hasUdm?: boolean | undefined;
|
|
358
|
+
isTest?: boolean | undefined;
|
|
359
359
|
appUuid?: string | undefined;
|
|
360
360
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
361
361
|
} | undefined;
|
|
362
362
|
uuid?: string | undefined;
|
|
363
363
|
description?: string | undefined;
|
|
364
364
|
state?: import("..").WorkspaceElementState | undefined;
|
|
365
|
-
errors?:
|
|
365
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
366
366
|
revision?: string | undefined;
|
|
367
|
-
isDeactivated?: boolean | undefined;
|
|
368
367
|
createdAt?: string | undefined;
|
|
369
368
|
updatedAt?: string | undefined;
|
|
370
369
|
archivedAt?: string | undefined;
|
|
370
|
+
isDeactivated?: boolean | undefined;
|
|
371
371
|
instanceKey?: string | undefined;
|
|
372
372
|
connectionId?: string | undefined;
|
|
373
373
|
user?: {
|
|
@@ -390,12 +390,12 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
390
390
|
uuid?: string | undefined;
|
|
391
391
|
description?: string | undefined;
|
|
392
392
|
state?: import("..").WorkspaceElementState | undefined;
|
|
393
|
-
errors?:
|
|
393
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
394
394
|
revision?: string | undefined;
|
|
395
|
-
isDeactivated?: boolean | undefined;
|
|
396
395
|
createdAt?: string | undefined;
|
|
397
396
|
updatedAt?: string | undefined;
|
|
398
397
|
archivedAt?: string | undefined;
|
|
398
|
+
isDeactivated?: boolean | undefined;
|
|
399
399
|
} | undefined;
|
|
400
400
|
}, {
|
|
401
401
|
id: string;
|
|
@@ -410,18 +410,18 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
410
410
|
updatedAt: string;
|
|
411
411
|
userId: string;
|
|
412
412
|
integrationId: string;
|
|
413
|
-
error?:
|
|
413
|
+
error?: import("../..").ErrorDataSchema | undefined;
|
|
414
414
|
state?: import("..").WorkspaceElementState | undefined;
|
|
415
|
-
errors?:
|
|
416
|
-
isDeactivated?: boolean | undefined;
|
|
415
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
417
416
|
archivedAt?: string | undefined;
|
|
417
|
+
isDeactivated?: boolean | undefined;
|
|
418
418
|
authOptionKey?: string | undefined;
|
|
419
419
|
isTest?: boolean | undefined;
|
|
420
|
+
meta?: Record<string, any> | undefined;
|
|
420
421
|
disconnected?: boolean | undefined;
|
|
421
422
|
isDefunct?: boolean | undefined;
|
|
422
423
|
lastActiveAt?: string | undefined;
|
|
423
424
|
nextCredentialsRefreshAt?: string | undefined;
|
|
424
|
-
meta?: Record<string, any> | undefined;
|
|
425
425
|
} | undefined;
|
|
426
426
|
integration?: {
|
|
427
427
|
id: string;
|
|
@@ -431,14 +431,13 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
431
431
|
uuid?: string | undefined;
|
|
432
432
|
description?: string | undefined;
|
|
433
433
|
state?: import("..").WorkspaceElementState | undefined;
|
|
434
|
-
errors?:
|
|
434
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
435
435
|
revision?: string | undefined;
|
|
436
|
-
isDeactivated?: boolean | undefined;
|
|
437
436
|
createdAt?: string | undefined;
|
|
438
437
|
updatedAt?: string | undefined;
|
|
439
438
|
archivedAt?: string | undefined;
|
|
439
|
+
isDeactivated?: boolean | undefined;
|
|
440
440
|
parameters?: any;
|
|
441
|
-
isTest?: boolean | undefined;
|
|
442
441
|
connectorId?: string | undefined;
|
|
443
442
|
connectorVersion?: string | undefined;
|
|
444
443
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -452,18 +451,19 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
452
451
|
eventsCount?: number | undefined;
|
|
453
452
|
hasGlobalWebhooks?: boolean | undefined;
|
|
454
453
|
hasUdm?: boolean | undefined;
|
|
454
|
+
isTest?: boolean | undefined;
|
|
455
455
|
appUuid?: string | undefined;
|
|
456
456
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
457
457
|
} | undefined;
|
|
458
458
|
uuid?: string | undefined;
|
|
459
459
|
description?: string | undefined;
|
|
460
460
|
state?: import("..").WorkspaceElementState | undefined;
|
|
461
|
-
errors?:
|
|
461
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
462
462
|
revision?: string | undefined;
|
|
463
|
-
isDeactivated?: boolean | undefined;
|
|
464
463
|
createdAt?: string | undefined;
|
|
465
464
|
updatedAt?: string | undefined;
|
|
466
465
|
archivedAt?: string | undefined;
|
|
466
|
+
isDeactivated?: boolean | undefined;
|
|
467
467
|
instanceKey?: string | undefined;
|
|
468
468
|
connectionId?: string | undefined;
|
|
469
469
|
user?: {
|
|
@@ -486,12 +486,12 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
486
486
|
uuid?: string | undefined;
|
|
487
487
|
description?: string | undefined;
|
|
488
488
|
state?: import("..").WorkspaceElementState | undefined;
|
|
489
|
-
errors?:
|
|
489
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
490
490
|
revision?: string | undefined;
|
|
491
|
-
isDeactivated?: boolean | undefined;
|
|
492
491
|
createdAt?: string | undefined;
|
|
493
492
|
updatedAt?: string | undefined;
|
|
494
493
|
archivedAt?: string | undefined;
|
|
494
|
+
isDeactivated?: boolean | undefined;
|
|
495
495
|
} | undefined;
|
|
496
496
|
}>;
|
|
497
497
|
export type DataLinkTableInstanceApiResponse = z.infer<typeof DataLinkTableInstanceApiResponse>;
|
|
@@ -6,16 +6,16 @@ export type CreateDataLinkTableRequest = Omit<BaseDataLinkTable, 'id' | 'userId'
|
|
|
6
6
|
export type UpdateDataLinkTableRequest = CreateDataLinkTableRequest;
|
|
7
7
|
export declare const DataLinkTableApiResponse: import("zod").ZodObject<{
|
|
8
8
|
id: import("zod").ZodString;
|
|
9
|
-
name: import("zod").ZodString;
|
|
10
9
|
key: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11
10
|
uuid: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12
11
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12
|
+
name: import("zod").ZodString;
|
|
13
13
|
state: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("..").WorkspaceElementState>>;
|
|
14
|
-
errors: import("zod").ZodOptional<import("zod").ZodArray<
|
|
14
|
+
errors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("../..").ErrorDataSchema, import("zod").ZodTypeDef, import("../..").ErrorDataSchema>, "many">>;
|
|
15
15
|
revision: import("zod").ZodOptional<import("zod").ZodString>;
|
|
16
|
-
isDeactivated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
17
16
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
18
17
|
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
18
|
+
isDeactivated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
19
19
|
} & {
|
|
20
20
|
archivedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
21
21
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -25,12 +25,12 @@ export declare const DataLinkTableApiResponse: import("zod").ZodObject<{
|
|
|
25
25
|
uuid?: string | undefined;
|
|
26
26
|
description?: string | undefined;
|
|
27
27
|
state?: import("..").WorkspaceElementState | undefined;
|
|
28
|
-
errors?:
|
|
28
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
29
29
|
revision?: string | undefined;
|
|
30
|
-
isDeactivated?: boolean | undefined;
|
|
31
30
|
createdAt?: string | undefined;
|
|
32
31
|
updatedAt?: string | undefined;
|
|
33
32
|
archivedAt?: string | undefined;
|
|
33
|
+
isDeactivated?: boolean | undefined;
|
|
34
34
|
}, {
|
|
35
35
|
id: string;
|
|
36
36
|
name: string;
|
|
@@ -38,12 +38,12 @@ export declare const DataLinkTableApiResponse: import("zod").ZodObject<{
|
|
|
38
38
|
uuid?: string | undefined;
|
|
39
39
|
description?: string | undefined;
|
|
40
40
|
state?: import("..").WorkspaceElementState | undefined;
|
|
41
|
-
errors?:
|
|
41
|
+
errors?: import("../..").ErrorDataSchema[] | undefined;
|
|
42
42
|
revision?: string | undefined;
|
|
43
|
-
isDeactivated?: boolean | undefined;
|
|
44
43
|
createdAt?: string | undefined;
|
|
45
44
|
updatedAt?: string | undefined;
|
|
46
45
|
archivedAt?: string | undefined;
|
|
46
|
+
isDeactivated?: boolean | undefined;
|
|
47
47
|
}>;
|
|
48
48
|
export type DataLinkTableApiResponse = typeof DataLinkTableApiResponse._type;
|
|
49
49
|
export type DataLinkTable = DataLinkTableApiResponse;
|