@membranehq/sdk 0.28.1 → 0.28.3
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 +53 -4
- package/dist/bundle.js +75 -9
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/actions-accessors.d.ts +1 -0
- package/dist/dts/accessors/connections-accessors.d.ts +4 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +3 -0
- package/dist/dts/agent/session.d.ts +10 -1
- package/dist/dts/ai-gateway/models.d.ts +43 -0
- package/dist/dts/ai-gateway/models.test.d.ts +1 -0
- package/dist/dts/alerts/types.d.ts +7 -0
- package/dist/dts/api-client.d.ts +22 -3
- package/dist/dts/api-version.generated.d.ts +1 -1
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/membrane-instances/types.d.ts +23 -35
- package/dist/dts/membrane-instances/types.test.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +55 -11
- package/dist/dts/webhooks/types.d.ts +3 -2
- package/dist/dts/workspace-elements/api/act-api.d.ts +33 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +15 -2
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +4 -1
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/index.d.ts +1 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +112 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +1 -0
- package/dist/dts/workspace-elements/base/connection-requests/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/connections/index.d.ts +2 -0
- package/dist/dts/workspace-elements/types.d.ts +4 -1
- package/dist/dts/workspaces/api.d.ts +20 -0
- package/dist/dts/workspaces/compare.d.ts +2 -0
- package/dist/dts/workspaces/types.d.ts +29 -0
- package/dist/index.browser.d.mts +417 -57
- package/dist/index.browser.d.ts +417 -57
- package/dist/index.browser.js +236 -27
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +226 -28
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +417 -57
- package/dist/index.node.d.ts +417 -57
- package/dist/index.node.js +236 -27
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +226 -28
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -29,6 +29,7 @@ export declare const CreateConnectionRequest: z.ZodObject<{
|
|
|
29
29
|
name: z.ZodOptional<z.ZodString>;
|
|
30
30
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
31
31
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
32
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
32
33
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
33
34
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
34
35
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -48,6 +49,7 @@ export declare const UpdateConnectionRequest: z.ZodObject<{
|
|
|
48
49
|
name: z.ZodOptional<z.ZodString>;
|
|
49
50
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
50
51
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
52
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
51
53
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
52
54
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
53
55
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -64,6 +66,7 @@ export declare const UpdateConnectionRequest: z.ZodObject<{
|
|
|
64
66
|
}, z.core.$strip>;
|
|
65
67
|
export type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
66
68
|
export declare const ConnectionExportProperties: z.ZodObject<{
|
|
69
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
67
70
|
name: z.ZodOptional<z.ZodString>;
|
|
68
71
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
69
72
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
@@ -101,11 +104,13 @@ export declare const ConnectionSelector: z.ZodObject<{
|
|
|
101
104
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
102
105
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
103
106
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
107
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
104
108
|
}, z.core.$strip>;
|
|
105
109
|
export type ConnectionSelector = z.infer<typeof ConnectionSelector>;
|
|
106
110
|
export declare const ConnectionApiResponse: z.ZodObject<{
|
|
107
111
|
id: z.ZodString;
|
|
108
112
|
name: z.ZodString;
|
|
113
|
+
key: z.ZodOptional<z.ZodString>;
|
|
109
114
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
110
115
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
111
116
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -203,11 +208,14 @@ export declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
203
208
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
204
209
|
}, z.core.$strip>>>;
|
|
205
210
|
}, z.core.$strip>>;
|
|
211
|
+
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
212
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
206
213
|
}, z.core.$strip>;
|
|
207
214
|
export type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
|
|
208
215
|
export declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
209
216
|
id: z.ZodString;
|
|
210
217
|
name: z.ZodString;
|
|
218
|
+
key: z.ZodOptional<z.ZodString>;
|
|
211
219
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
212
220
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
213
221
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -305,9 +313,9 @@ export declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
305
313
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
306
314
|
}, z.core.$strip>>>;
|
|
307
315
|
}, z.core.$strip>>;
|
|
308
|
-
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
309
|
-
input: z.ZodOptional<z.ZodUnknown>;
|
|
310
316
|
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
317
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
318
|
+
credentials: z.ZodOptional<z.ZodUnknown>;
|
|
311
319
|
}, z.core.$strip>;
|
|
312
320
|
export type ConnectionApiResponseWithSecrets = z.infer<typeof ConnectionApiResponseWithSecrets>;
|
|
313
321
|
export type Connection = ConnectionApiResponse;
|
|
@@ -318,6 +326,7 @@ export declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
318
326
|
connection: z.ZodObject<{
|
|
319
327
|
id: z.ZodString;
|
|
320
328
|
name: z.ZodString;
|
|
329
|
+
key: z.ZodOptional<z.ZodString>;
|
|
321
330
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
322
331
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
323
332
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -415,6 +424,8 @@ export declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
415
424
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
416
425
|
}, z.core.$strip>>>;
|
|
417
426
|
}, z.core.$strip>>;
|
|
427
|
+
connectorParameters: z.ZodOptional<z.ZodUnknown>;
|
|
428
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
418
429
|
}, z.core.$strip>;
|
|
419
430
|
}, z.core.$strip>, z.ZodObject<{
|
|
420
431
|
source: z.ZodString;
|
|
@@ -443,6 +454,7 @@ export declare const ConnectPayload: z.ZodObject<{
|
|
|
443
454
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
444
455
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
445
456
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
457
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
446
458
|
name: z.ZodOptional<z.ZodString>;
|
|
447
459
|
input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
448
460
|
connectionParameters: z.ZodOptional<z.ZodAny>;
|
|
@@ -461,6 +473,7 @@ export declare const ConnectUIOptions: z.ZodObject<{
|
|
|
461
473
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
462
474
|
name: z.ZodOptional<z.ZodString>;
|
|
463
475
|
intent: z.ZodOptional<z.ZodString>;
|
|
476
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
464
477
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
465
478
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
466
479
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
@@ -81,6 +81,7 @@ export declare const FindDataLinkTableInstanceLinksQuery: z.ZodObject<{
|
|
|
81
81
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
82
82
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
83
83
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
84
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
84
85
|
id: z.ZodOptional<z.ZodString>;
|
|
85
86
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
86
87
|
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
@@ -141,6 +142,7 @@ export declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
141
142
|
connection: z.ZodOptional<z.ZodObject<{
|
|
142
143
|
id: z.ZodString;
|
|
143
144
|
name: z.ZodString;
|
|
145
|
+
key: z.ZodOptional<z.ZodString>;
|
|
144
146
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
145
147
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
146
148
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -416,6 +416,7 @@ export declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
416
416
|
connection: z.ZodOptional<z.ZodObject<{
|
|
417
417
|
id: z.ZodString;
|
|
418
418
|
name: z.ZodString;
|
|
419
|
+
key: z.ZodOptional<z.ZodString>;
|
|
419
420
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
420
421
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
421
422
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1021,6 +1022,7 @@ export declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
1021
1022
|
connection: z.ZodOptional<z.ZodObject<{
|
|
1022
1023
|
id: z.ZodString;
|
|
1023
1024
|
name: z.ZodString;
|
|
1025
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1024
1026
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
1025
1027
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
1026
1028
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1230,6 +1232,7 @@ export declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
1230
1232
|
integration: "integration";
|
|
1231
1233
|
universal: "universal";
|
|
1232
1234
|
}>>;
|
|
1235
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
1233
1236
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
1234
1237
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
1235
1238
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -1253,6 +1256,7 @@ export declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
|
1253
1256
|
integration: "integration";
|
|
1254
1257
|
universal: "universal";
|
|
1255
1258
|
}>>;
|
|
1259
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
1256
1260
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
1257
1261
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
1258
1262
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -46,6 +46,7 @@ export declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
46
46
|
connection: z.ZodOptional<z.ZodObject<{
|
|
47
47
|
id: z.ZodString;
|
|
48
48
|
name: z.ZodString;
|
|
49
|
+
key: z.ZodOptional<z.ZodString>;
|
|
49
50
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
50
51
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
51
52
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -130,6 +130,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
130
130
|
connection: z.ZodOptional<z.ZodObject<{
|
|
131
131
|
id: z.ZodString;
|
|
132
132
|
name: z.ZodString;
|
|
133
|
+
key: z.ZodOptional<z.ZodString>;
|
|
133
134
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
134
135
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
135
136
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -143,6 +143,7 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
143
143
|
connection: z.ZodOptional<z.ZodObject<{
|
|
144
144
|
id: z.ZodString;
|
|
145
145
|
name: z.ZodString;
|
|
146
|
+
key: z.ZodOptional<z.ZodString>;
|
|
146
147
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
147
148
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
148
149
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { ExternalEventSubscriptionStatus } from '../base/external-event-subscriptions';
|
|
2
3
|
export declare const ListExternalEventSubscriptionsQuery: z.ZodObject<{
|
|
3
4
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4
5
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -8,6 +9,7 @@ export declare const ListExternalEventSubscriptionsQuery: z.ZodObject<{
|
|
|
8
9
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
9
10
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
10
11
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12
|
+
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventSubscriptionStatus>>;
|
|
11
13
|
}, z.core.$strip>;
|
|
12
14
|
export type ListExternalEventSubscriptionsQuery = z.infer<typeof ListExternalEventSubscriptionsQuery>;
|
|
13
15
|
export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
@@ -32,7 +34,7 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
32
34
|
eventKey: z.ZodOptional<z.ZodString>;
|
|
33
35
|
eventParameters: z.ZodOptional<z.ZodAny>;
|
|
34
36
|
}, z.core.$strip>>;
|
|
35
|
-
status: z.ZodOptional<z.ZodEnum<typeof
|
|
37
|
+
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventSubscriptionStatus>>;
|
|
36
38
|
error: z.ZodOptional<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>;
|
|
37
39
|
isRealTime: z.ZodOptional<z.ZodBoolean>;
|
|
38
40
|
requiresPull: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -66,6 +68,7 @@ export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
66
68
|
connection: z.ZodOptional<z.ZodObject<{
|
|
67
69
|
id: z.ZodString;
|
|
68
70
|
name: z.ZodString;
|
|
71
|
+
key: z.ZodOptional<z.ZodString>;
|
|
69
72
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
70
73
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
71
74
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -216,6 +216,7 @@ export declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
216
216
|
connection: z.ZodOptional<z.ZodObject<{
|
|
217
217
|
id: z.ZodString;
|
|
218
218
|
name: z.ZodString;
|
|
219
|
+
key: z.ZodOptional<z.ZodString>;
|
|
219
220
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
220
221
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
221
222
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -520,6 +521,7 @@ export declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
520
521
|
connection: z.ZodOptional<z.ZodObject<{
|
|
521
522
|
id: z.ZodString;
|
|
522
523
|
name: z.ZodString;
|
|
524
|
+
key: z.ZodOptional<z.ZodString>;
|
|
523
525
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
524
526
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
525
527
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -626,6 +628,7 @@ export declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
626
628
|
integration: "integration";
|
|
627
629
|
universal: "universal";
|
|
628
630
|
}>>;
|
|
631
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
629
632
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
630
633
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
631
634
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -649,6 +652,7 @@ export declare const FindFieldMappingInstancesQuery: z.ZodObject<{
|
|
|
649
652
|
integration: "integration";
|
|
650
653
|
universal: "universal";
|
|
651
654
|
}>>;
|
|
655
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
652
656
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
653
657
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
654
658
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -133,6 +133,7 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
133
133
|
connection: z.ZodOptional<z.ZodObject<{
|
|
134
134
|
id: z.ZodString;
|
|
135
135
|
name: z.ZodString;
|
|
136
|
+
key: z.ZodOptional<z.ZodString>;
|
|
136
137
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
137
138
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
138
139
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -337,6 +338,7 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
337
338
|
connection: z.ZodOptional<z.ZodObject<{
|
|
338
339
|
id: z.ZodString;
|
|
339
340
|
name: z.ZodString;
|
|
341
|
+
key: z.ZodOptional<z.ZodString>;
|
|
340
342
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
341
343
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
342
344
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -253,6 +253,7 @@ export declare const FlowApiResponse: z.ZodObject<{
|
|
|
253
253
|
connection: z.ZodOptional<z.ZodObject<{
|
|
254
254
|
id: z.ZodString;
|
|
255
255
|
name: z.ZodString;
|
|
256
|
+
key: z.ZodOptional<z.ZodString>;
|
|
256
257
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
257
258
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
258
259
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -613,6 +614,7 @@ export declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
613
614
|
connection: z.ZodOptional<z.ZodObject<{
|
|
614
615
|
id: z.ZodString;
|
|
615
616
|
name: z.ZodString;
|
|
617
|
+
key: z.ZodOptional<z.ZodString>;
|
|
616
618
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
617
619
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
618
620
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -740,6 +742,7 @@ export declare const FindFlowsQuery: z.ZodObject<{
|
|
|
740
742
|
integration: "integration";
|
|
741
743
|
universal: "universal";
|
|
742
744
|
}>>;
|
|
745
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
743
746
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
744
747
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
745
748
|
flowId: z.ZodOptional<z.ZodString>;
|
|
@@ -44,6 +44,7 @@ export declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
44
44
|
connection: z.ZodOptional<z.ZodObject<{
|
|
45
45
|
id: z.ZodString;
|
|
46
46
|
name: z.ZodString;
|
|
47
|
+
key: z.ZodOptional<z.ZodString>;
|
|
47
48
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
48
49
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
49
50
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -50,6 +50,9 @@ export declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
50
50
|
export type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
51
51
|
export declare const FindIntegrationsQuery: z.ZodObject<{
|
|
52
52
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
53
|
+
connectors: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
54
|
+
externalApps: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
55
|
+
websearch: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
53
56
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
54
57
|
cursor: z.ZodOptional<z.ZodString>;
|
|
55
58
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -135,6 +138,7 @@ export declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
135
138
|
connection: z.ZodOptional<z.ZodObject<{
|
|
136
139
|
id: z.ZodString;
|
|
137
140
|
name: z.ZodString;
|
|
141
|
+
key: z.ZodOptional<z.ZodString>;
|
|
138
142
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
139
143
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
140
144
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -193,4 +197,112 @@ export declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
193
197
|
}, z.core.$strip>>>;
|
|
194
198
|
}, z.core.$strip>;
|
|
195
199
|
export type IntegrationApiResponse = z.infer<typeof IntegrationApiResponse>;
|
|
200
|
+
export declare const IntegrationListItem: z.ZodObject<{
|
|
201
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
202
|
+
key: z.ZodOptional<z.ZodString>;
|
|
203
|
+
description: z.ZodOptional<z.ZodString>;
|
|
204
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
205
|
+
name: z.ZodString;
|
|
206
|
+
state: z.ZodOptional<z.ZodEnum<typeof import("..").WorkspaceElementState>>;
|
|
207
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>>;
|
|
208
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
209
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
210
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
211
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
212
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
213
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
214
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
215
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
216
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
217
|
+
hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
|
|
218
|
+
hasDocumentation: z.ZodOptional<z.ZodBoolean>;
|
|
219
|
+
hasOperations: z.ZodOptional<z.ZodBoolean>;
|
|
220
|
+
operationsCount: z.ZodOptional<z.ZodNumber>;
|
|
221
|
+
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
222
|
+
dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
|
|
223
|
+
hasEvents: z.ZodOptional<z.ZodBoolean>;
|
|
224
|
+
eventsCount: z.ZodOptional<z.ZodNumber>;
|
|
225
|
+
hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
|
|
226
|
+
hasUdm: z.ZodOptional<z.ZodBoolean>;
|
|
227
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
228
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
229
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
230
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
231
|
+
authType: z.ZodOptional<z.ZodEnum<{
|
|
232
|
+
proxy: "proxy";
|
|
233
|
+
"integration-app-token": "integration-app-token";
|
|
234
|
+
"membrane-token": "membrane-token";
|
|
235
|
+
oauth2: "oauth2";
|
|
236
|
+
oauth1: "oauth1";
|
|
237
|
+
"client-credentials": "client-credentials";
|
|
238
|
+
}>>;
|
|
239
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
240
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
241
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
242
|
+
}, z.core.$strip>>>;
|
|
243
|
+
connection: z.ZodOptional<z.ZodObject<{
|
|
244
|
+
id: z.ZodString;
|
|
245
|
+
name: z.ZodString;
|
|
246
|
+
key: z.ZodOptional<z.ZodString>;
|
|
247
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
248
|
+
connected: z.ZodOptional<z.ZodBoolean>;
|
|
249
|
+
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
250
|
+
isDefunct: z.ZodOptional<z.ZodBoolean>;
|
|
251
|
+
state: z.ZodOptional<z.ZodEnum<typeof import("..").WorkspaceElementState>>;
|
|
252
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>>;
|
|
253
|
+
requestError: z.ZodOptional<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>;
|
|
254
|
+
error: z.ZodOptional<z.ZodType<import("../../errors").ErrorDataSchema, unknown, z.core.$ZodTypeInternals<import("../../errors").ErrorDataSchema, unknown>>>;
|
|
255
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
256
|
+
connectorId: z.ZodOptional<z.ZodString>;
|
|
257
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
258
|
+
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
259
|
+
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
260
|
+
createdAt: z.ZodString;
|
|
261
|
+
updatedAt: z.ZodString;
|
|
262
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
263
|
+
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
264
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
265
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
266
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
267
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
268
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
269
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
270
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
271
|
+
buildingAgentSessionId: z.ZodOptional<z.ZodString>;
|
|
272
|
+
clientAction: z.ZodOptional<z.ZodObject<{
|
|
273
|
+
type: z.ZodEnum<{
|
|
274
|
+
connect: "connect";
|
|
275
|
+
"provide-input": "provide-input";
|
|
276
|
+
}>;
|
|
277
|
+
description: z.ZodString;
|
|
278
|
+
uiUrl: z.ZodOptional<z.ZodString>;
|
|
279
|
+
agentInstructions: z.ZodOptional<z.ZodString>;
|
|
280
|
+
}, z.core.$strip>>;
|
|
281
|
+
userId: z.ZodString;
|
|
282
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
283
|
+
}, z.core.$strip>>;
|
|
284
|
+
spec: z.ZodOptional<z.ZodAny>;
|
|
285
|
+
authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
286
|
+
key: z.ZodString;
|
|
287
|
+
type: z.ZodEnum<{
|
|
288
|
+
proxy: "proxy";
|
|
289
|
+
"integration-app-token": "integration-app-token";
|
|
290
|
+
"membrane-token": "membrane-token";
|
|
291
|
+
oauth2: "oauth2";
|
|
292
|
+
oauth1: "oauth1";
|
|
293
|
+
"client-credentials": "client-credentials";
|
|
294
|
+
}>;
|
|
295
|
+
title: z.ZodOptional<z.ZodString>;
|
|
296
|
+
description: z.ZodOptional<z.ZodString>;
|
|
297
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
298
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
299
|
+
schema: z.ZodOptional<z.ZodAny>;
|
|
300
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
301
|
+
}, z.core.$strip>>;
|
|
302
|
+
}, z.core.$strip>>>;
|
|
303
|
+
id: z.ZodOptional<z.ZodString>;
|
|
304
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
305
|
+
appUri: z.ZodOptional<z.ZodString>;
|
|
306
|
+
}, z.core.$strip>;
|
|
307
|
+
export type IntegrationListItem = z.infer<typeof IntegrationListItem>;
|
|
196
308
|
export type Integration = IntegrationApiResponse;
|
|
@@ -10,6 +10,7 @@ export declare const FindPackagesQuery: z.ZodObject<{
|
|
|
10
10
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
11
11
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12
12
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
13
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
13
14
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
14
15
|
search: z.ZodOptional<z.ZodString>;
|
|
15
16
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -11,6 +11,7 @@ export declare const CreateConnectionRequestPayload: z.ZodObject<{
|
|
|
11
11
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
12
12
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
13
13
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
14
15
|
name: z.ZodOptional<z.ZodString>;
|
|
15
16
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
16
17
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -29,6 +30,7 @@ export declare const ConnectionRequest: z.ZodObject<{
|
|
|
29
30
|
connectorKey: z.ZodOptional<z.ZodString>;
|
|
30
31
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
31
32
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
33
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
32
34
|
name: z.ZodOptional<z.ZodString>;
|
|
33
35
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
34
36
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -6,6 +6,7 @@ export declare const ConnectionEditableProperties: z.ZodObject<{
|
|
|
6
6
|
name: z.ZodOptional<z.ZodString>;
|
|
7
7
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
8
8
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
9
|
+
key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9
10
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
10
11
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
11
12
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
@@ -33,6 +34,7 @@ export type ConnectionClientAction = z.infer<typeof ConnectionClientAction>;
|
|
|
33
34
|
export declare const BaseConnection: z.ZodObject<{
|
|
34
35
|
id: z.ZodString;
|
|
35
36
|
name: z.ZodString;
|
|
37
|
+
key: z.ZodOptional<z.ZodString>;
|
|
36
38
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
37
39
|
connected: z.ZodOptional<z.ZodBoolean>;
|
|
38
40
|
disconnected: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -58,7 +58,8 @@ export declare enum WorkspaceElementState {
|
|
|
58
58
|
CLIENT_ACTION_REQUIRED = "CLIENT_ACTION_REQUIRED",
|
|
59
59
|
CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
|
|
60
60
|
SETUP_FAILED = "SETUP_FAILED",
|
|
61
|
-
READY = "READY"
|
|
61
|
+
READY = "READY",
|
|
62
|
+
DISCONNECTING = "DISCONNECTING"
|
|
62
63
|
}
|
|
63
64
|
export declare enum WorkspaceElementDependencyType {
|
|
64
65
|
Configuration = "CONFIGURATION",
|
|
@@ -173,6 +174,7 @@ export declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject
|
|
|
173
174
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
174
175
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
175
176
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
177
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
176
178
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
177
179
|
}, z.core.$strip>;
|
|
178
180
|
export type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
|
|
@@ -180,6 +182,7 @@ export declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
|
|
|
180
182
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
181
183
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
182
184
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
185
|
+
connectionKey: z.ZodOptional<z.ZodString>;
|
|
183
186
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
184
187
|
search: z.ZodOptional<z.ZodString>;
|
|
185
188
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -11,6 +11,9 @@ export declare const CreateWorkspaceRequest: z.ZodObject<{
|
|
|
11
11
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
12
12
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
13
13
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
14
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
15
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
16
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
14
17
|
}, z.core.$strip>>;
|
|
15
18
|
}, z.core.$strip>;
|
|
16
19
|
export type CreateWorkspaceRequest = z.infer<typeof CreateWorkspaceRequest>;
|
|
@@ -39,6 +42,9 @@ export declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
|
39
42
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
40
43
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
41
44
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
45
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
47
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
42
48
|
}, z.core.$strip>>;
|
|
43
49
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
44
50
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -58,6 +64,7 @@ export declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
|
58
64
|
parallelApiRequestsPerCustomer: import("../alerts").AlertType.parallelApiRequestsPerCustomer;
|
|
59
65
|
engineCreditsExhaustionProjected: import("../alerts").AlertType.engineCreditsExhaustionProjected;
|
|
60
66
|
engineCreditsExhaustionActual: import("../alerts").AlertType.engineCreditsExhaustionActual;
|
|
67
|
+
aiCreditsDebtAccumulated: import("../alerts").AlertType.aiCreditsDebtAccumulated;
|
|
61
68
|
totalNumberOfDatabaseEntitiesPerCustomer: import("../alerts").AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
62
69
|
totalNumberOfCustomers: import("../alerts").AlertType.totalNumberOfCustomers;
|
|
63
70
|
totalNumberOfConnections: import("../alerts").AlertType.totalNumberOfConnections;
|
|
@@ -226,6 +233,11 @@ export declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
|
|
|
226
233
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
227
234
|
unit: z.ZodEnum<typeof import("./types").LimitUnits>;
|
|
228
235
|
}, z.core.$strip>>>;
|
|
236
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
237
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
238
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
239
|
+
unit: z.ZodEnum<typeof import("./types").LimitUnits>;
|
|
240
|
+
}, z.core.$strip>>>;
|
|
229
241
|
instantTasksQueueSize: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
230
242
|
value: z.ZodOptional<z.ZodNumber>;
|
|
231
243
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -311,3 +323,11 @@ export declare const GetWorkspaceQuery: z.ZodObject<{
|
|
|
311
323
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
312
324
|
}, z.core.$strip>;
|
|
313
325
|
export type GetWorkspaceQuery = z.infer<typeof GetWorkspaceQuery>;
|
|
326
|
+
export declare const MembraneCredentials: z.ZodObject<{
|
|
327
|
+
apiUri: z.ZodString;
|
|
328
|
+
workspaceKey: z.ZodString;
|
|
329
|
+
workspaceSecret: z.ZodOptional<z.ZodString>;
|
|
330
|
+
tenantKey: z.ZodOptional<z.ZodString>;
|
|
331
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
332
|
+
}, z.core.$strip>;
|
|
333
|
+
export type MembraneCredentials = z.infer<typeof MembraneCredentials>;
|
|
@@ -21,6 +21,7 @@ export interface WorkspaceElementChangeInfo {
|
|
|
21
21
|
export interface WorkspaceExportComparisonResult {
|
|
22
22
|
comparison: WorkspaceExportComparison;
|
|
23
23
|
changes: Record<string, WorkspaceElementChangeInfo>;
|
|
24
|
+
baseUuidByTargetUuid: Map<string, string>;
|
|
24
25
|
diff?: string;
|
|
25
26
|
}
|
|
26
27
|
export interface WorkspaceExportComparisonOptions {
|
|
@@ -28,3 +29,4 @@ export interface WorkspaceExportComparisonOptions {
|
|
|
28
29
|
includeDiff?: boolean;
|
|
29
30
|
}
|
|
30
31
|
export declare function compareWorkspaceExports(baseExport: Partial<WorkspaceExport>, targetExport: Partial<WorkspaceExport>, options?: WorkspaceExportComparisonOptions): WorkspaceExportComparisonResult;
|
|
32
|
+
export declare function getElementSelector(type: WorkspaceElementType, key: string, integrationIdentifier?: string): string;
|
|
@@ -224,6 +224,11 @@ export declare const WorkspaceLimitsSchema: z.ZodObject<{
|
|
|
224
224
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
225
225
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
226
226
|
}, z.core.$strip>>;
|
|
227
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
228
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
229
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
230
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
231
|
+
}, z.core.$strip>>;
|
|
227
232
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
228
233
|
value: z.ZodOptional<z.ZodNumber>;
|
|
229
234
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -303,6 +308,9 @@ export declare const WorkspaceSettingsSchema: z.ZodObject<{
|
|
|
303
308
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
304
309
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
305
310
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
311
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
312
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
313
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
306
314
|
}, z.core.$strip>;
|
|
307
315
|
export declare const EngineWorkspaceSettingsSchema: z.ZodObject<{
|
|
308
316
|
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -311,6 +319,9 @@ export declare const EngineWorkspaceSettingsSchema: z.ZodObject<{
|
|
|
311
319
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
312
320
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
313
321
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
322
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
323
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
324
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
314
325
|
}, z.core.$strip>;
|
|
315
326
|
export declare const WorkspacePublicKey: z.ZodObject<{
|
|
316
327
|
name: z.ZodString;
|
|
@@ -479,6 +490,11 @@ export declare const Workspace: z.ZodObject<{
|
|
|
479
490
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
480
491
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
481
492
|
}, z.core.$strip>>;
|
|
493
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
494
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
495
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
496
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
497
|
+
}, z.core.$strip>>;
|
|
482
498
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
483
499
|
value: z.ZodOptional<z.ZodNumber>;
|
|
484
500
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -547,6 +563,9 @@ export declare const Workspace: z.ZodObject<{
|
|
|
547
563
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
548
564
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
549
565
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
566
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
567
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
568
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
550
569
|
}, z.core.$strip>>;
|
|
551
570
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
552
571
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -566,6 +585,7 @@ export declare const Workspace: z.ZodObject<{
|
|
|
566
585
|
parallelApiRequestsPerCustomer: import("../alerts").AlertType.parallelApiRequestsPerCustomer;
|
|
567
586
|
engineCreditsExhaustionProjected: import("../alerts").AlertType.engineCreditsExhaustionProjected;
|
|
568
587
|
engineCreditsExhaustionActual: import("../alerts").AlertType.engineCreditsExhaustionActual;
|
|
588
|
+
aiCreditsDebtAccumulated: import("../alerts").AlertType.aiCreditsDebtAccumulated;
|
|
569
589
|
totalNumberOfDatabaseEntitiesPerCustomer: import("../alerts").AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
570
590
|
totalNumberOfCustomers: import("../alerts").AlertType.totalNumberOfCustomers;
|
|
571
591
|
totalNumberOfConnections: import("../alerts").AlertType.totalNumberOfConnections;
|
|
@@ -759,6 +779,11 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
759
779
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
760
780
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
761
781
|
}, z.core.$strip>>;
|
|
782
|
+
flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
|
|
783
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
784
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
785
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
786
|
+
}, z.core.$strip>>;
|
|
762
787
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
763
788
|
value: z.ZodOptional<z.ZodNumber>;
|
|
764
789
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -827,6 +852,9 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
827
852
|
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
828
853
|
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
829
854
|
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
855
|
+
autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
|
|
856
|
+
autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
|
|
857
|
+
autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
|
|
830
858
|
}, z.core.$strip>>;
|
|
831
859
|
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
832
860
|
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
@@ -846,6 +874,7 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
846
874
|
parallelApiRequestsPerCustomer: import("../alerts").AlertType.parallelApiRequestsPerCustomer;
|
|
847
875
|
engineCreditsExhaustionProjected: import("../alerts").AlertType.engineCreditsExhaustionProjected;
|
|
848
876
|
engineCreditsExhaustionActual: import("../alerts").AlertType.engineCreditsExhaustionActual;
|
|
877
|
+
aiCreditsDebtAccumulated: import("../alerts").AlertType.aiCreditsDebtAccumulated;
|
|
849
878
|
totalNumberOfDatabaseEntitiesPerCustomer: import("../alerts").AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
850
879
|
totalNumberOfCustomers: import("../alerts").AlertType.totalNumberOfCustomers;
|
|
851
880
|
totalNumberOfConnections: import("../alerts").AlertType.totalNumberOfConnections;
|