@membranehq/sdk 0.15.5 → 0.16.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 +51 -2
- package/dist/bundle.js +94 -30
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +1 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +1 -0
- package/dist/dts/auth/auth-context-permissions.d.ts +59 -0
- package/dist/dts/auth/index.d.ts +1 -0
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +27 -0
- package/dist/dts/self-hosting-tokens/index.d.ts +1 -0
- package/dist/dts/self-hosting-tokens/types.d.ts +38 -0
- package/dist/dts/ui.test.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +10 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +16 -0
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/app-data-schemas-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/app-event-types-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +8 -0
- package/dist/dts/workspace-elements/api/connections-api.test.d.ts +1 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/data-link-tables-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +12 -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 +1 -0
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +32 -10
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +11 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/packages-api.d.ts +3 -0
- package/dist/dts/workspace-elements/base/action-instances/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +4 -0
- package/dist/dts/workspace-elements/base/app-data-schemas/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/app-event-subscriptions/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/app-event-types/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +0 -4
- package/dist/dts/workspace-elements/base/data-link-tables/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/packages/index.d.ts +1 -0
- package/dist/dts/workspace-elements/types.d.ts +5 -0
- package/dist/dts/workspace-elements/utils/index.d.ts +1 -0
- package/dist/dts/workspace-elements/utils/zod-schema-utils.d.ts +2 -0
- package/dist/dts/workspace-elements/utils/zod-schema-utils.test.d.ts +1 -0
- package/dist/index.browser.d.mts +257 -6
- package/dist/index.browser.d.ts +257 -6
- package/dist/index.browser.js +199 -38
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +190 -39
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +257 -6
- package/dist/index.node.d.ts +257 -6
- package/dist/index.node.js +199 -38
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +190 -39
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.browser.d.mts
CHANGED
|
@@ -196,6 +196,7 @@ declare const BaseMembraneInterfaceReadOnlyProperties: z.ZodObject<{
|
|
|
196
196
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
197
197
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
198
198
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
199
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
199
200
|
}, z.core.$strip>;
|
|
200
201
|
declare const BaseMembraneInterface: z.ZodObject<{
|
|
201
202
|
id: z.ZodString;
|
|
@@ -211,6 +212,7 @@ declare const BaseMembraneInterface: z.ZodObject<{
|
|
|
211
212
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
212
213
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
213
214
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
215
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
214
216
|
}, z.core.$strip>;
|
|
215
217
|
type BaseMembraneInterface = z.infer<typeof BaseMembraneInterface>;
|
|
216
218
|
declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObject<{
|
|
@@ -237,6 +239,7 @@ declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObje
|
|
|
237
239
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
238
240
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
239
241
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
242
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
240
243
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
241
244
|
}, z.core.$strip>;
|
|
242
245
|
type BaseIntegrationLevelMembraneInterfaceReadOnlyProperties = z.infer<typeof BaseIntegrationLevelMembraneInterfaceReadOnlyProperties>;
|
|
@@ -289,6 +292,7 @@ declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
|
|
|
289
292
|
integration: "integration";
|
|
290
293
|
universal: "universal";
|
|
291
294
|
}>>;
|
|
295
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
292
296
|
}, z.core.$strip>;
|
|
293
297
|
type FindIntegrationLevelMembraneInterfaceQuery = z.infer<typeof FindIntegrationLevelMembraneInterfaceQuery>;
|
|
294
298
|
declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
|
|
@@ -312,6 +316,7 @@ declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
|
|
|
312
316
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
313
317
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
314
318
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
319
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
315
320
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
316
321
|
}, z.core.$strip>;
|
|
317
322
|
type BaseIntegrationLevelMembraneInterface = z.infer<typeof BaseIntegrationLevelMembraneInterface>;
|
|
@@ -496,6 +501,7 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
496
501
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
497
502
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
498
503
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
504
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
499
505
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
500
506
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
501
507
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -552,6 +558,7 @@ declare const BaseFieldMappingInstance: z.ZodObject<{
|
|
|
552
558
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
553
559
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
554
560
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
561
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
555
562
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
556
563
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
557
564
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -664,10 +671,12 @@ declare const BaseAction: z.ZodObject<{
|
|
|
664
671
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
665
672
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
666
673
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
674
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
667
675
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
668
676
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
669
677
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
670
678
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
679
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
671
680
|
userId: z.ZodOptional<z.ZodString>;
|
|
672
681
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
673
682
|
}, z.core.$strip>;
|
|
@@ -698,10 +707,12 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
698
707
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
699
708
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
700
709
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
710
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
701
711
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
702
712
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
703
713
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
704
714
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
715
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
705
716
|
userId: z.ZodOptional<z.ZodString>;
|
|
706
717
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
707
718
|
}, z.core.$strip>;
|
|
@@ -3614,9 +3625,7 @@ type ConnectorApiType = 'openapi' | 'graphql';
|
|
|
3614
3625
|
declare const ConnectorSpec: z.ZodObject<{
|
|
3615
3626
|
key: z.ZodOptional<z.ZodString>;
|
|
3616
3627
|
name: z.ZodOptional<z.ZodString>;
|
|
3617
|
-
appUri: z.ZodOptional<z.ZodString>;
|
|
3618
3628
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
3619
|
-
apiDocsUri: z.ZodOptional<z.ZodString>;
|
|
3620
3629
|
api: z.ZodOptional<z.ZodObject<{
|
|
3621
3630
|
type: z.ZodEnum<{
|
|
3622
3631
|
openapi: "openapi";
|
|
@@ -7242,8 +7251,6 @@ declare const BaseConnector: z.ZodObject<{
|
|
|
7242
7251
|
}, z.core.$strip>;
|
|
7243
7252
|
type BaseConnector = z.infer<typeof BaseConnector>;
|
|
7244
7253
|
declare const Connector: z.ZodObject<{
|
|
7245
|
-
appUri: z.ZodOptional<z.ZodString>;
|
|
7246
|
-
apiDocsUri: z.ZodOptional<z.ZodString>;
|
|
7247
7254
|
api: z.ZodOptional<z.ZodObject<{
|
|
7248
7255
|
type: z.ZodEnum<{
|
|
7249
7256
|
openapi: "openapi";
|
|
@@ -10257,6 +10264,7 @@ declare const BaseDataSource: z.ZodObject<{
|
|
|
10257
10264
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10258
10265
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10259
10266
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
10267
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
10260
10268
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
10261
10269
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
10262
10270
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -10403,6 +10411,7 @@ declare const BaseDataSourceInstance: z.ZodObject<{
|
|
|
10403
10411
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10404
10412
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10405
10413
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
10414
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
10406
10415
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
10407
10416
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
10408
10417
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -10994,6 +11003,7 @@ declare const BaseFlow: z.ZodObject<{
|
|
|
10994
11003
|
revision: z.ZodOptional<z.ZodString>;
|
|
10995
11004
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10996
11005
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11006
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
10997
11007
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
10998
11008
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
10999
11009
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -11059,6 +11069,7 @@ declare const BaseFlowInstance: z.ZodObject<{
|
|
|
11059
11069
|
revision: z.ZodOptional<z.ZodString>;
|
|
11060
11070
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11061
11071
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11072
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11062
11073
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
11063
11074
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
11064
11075
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -11158,6 +11169,7 @@ declare const BaseIntegration: z.ZodObject<{
|
|
|
11158
11169
|
revision: z.ZodOptional<z.ZodString>;
|
|
11159
11170
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11160
11171
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11172
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11161
11173
|
logoUri: z.ZodString;
|
|
11162
11174
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
11163
11175
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -11248,6 +11260,7 @@ declare const AppliedToIntegrations: <Element extends z.ZodType>(elementSchema:
|
|
|
11248
11260
|
revision: z.ZodOptional<z.ZodString>;
|
|
11249
11261
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11250
11262
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11263
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11251
11264
|
logoUri: z.ZodString;
|
|
11252
11265
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
11253
11266
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -11352,6 +11365,7 @@ declare const BasePackage: z.ZodObject<{
|
|
|
11352
11365
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11353
11366
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11354
11367
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11368
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11355
11369
|
uuid: z.ZodOptional<z.ZodString>;
|
|
11356
11370
|
description: z.ZodOptional<z.ZodString>;
|
|
11357
11371
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -11484,6 +11498,7 @@ declare const BaseDataLinkTable: z.ZodObject<{
|
|
|
11484
11498
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11485
11499
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11486
11500
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11501
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11487
11502
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11488
11503
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11489
11504
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11507,6 +11522,7 @@ declare const BaseDataLinkTableInstance: z.ZodObject<{
|
|
|
11507
11522
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11508
11523
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11509
11524
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11525
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11510
11526
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11511
11527
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11512
11528
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11539,6 +11555,7 @@ declare const BaseAppEventType: z.ZodObject<{
|
|
|
11539
11555
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11540
11556
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11541
11557
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11558
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11542
11559
|
revision: z.ZodString;
|
|
11543
11560
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11544
11561
|
webhookKey: z.ZodString;
|
|
@@ -11596,6 +11613,7 @@ declare const BaseAppEventSubscription: z.ZodObject<{
|
|
|
11596
11613
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11597
11614
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11598
11615
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11616
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11599
11617
|
revision: z.ZodString;
|
|
11600
11618
|
appEventTypeId: z.ZodString;
|
|
11601
11619
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -11657,6 +11675,7 @@ declare const BaseAppDataSchema: z.ZodObject<{
|
|
|
11657
11675
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11658
11676
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11659
11677
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11678
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11660
11679
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
11661
11680
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11662
11681
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11682,6 +11701,7 @@ declare const BaseAppDataSchemaInstance: z.ZodObject<{
|
|
|
11682
11701
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11683
11702
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11684
11703
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11704
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11685
11705
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
11686
11706
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11687
11707
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12012,6 +12032,7 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
12012
12032
|
revision: z.ZodOptional<z.ZodString>;
|
|
12013
12033
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12014
12034
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12035
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12015
12036
|
logoUri: z.ZodString;
|
|
12016
12037
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12017
12038
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12097,6 +12118,7 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
12097
12118
|
revision: z.ZodOptional<z.ZodString>;
|
|
12098
12119
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12099
12120
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12121
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12100
12122
|
logoUri: z.ZodString;
|
|
12101
12123
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12102
12124
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12190,6 +12212,7 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12190
12212
|
revision: z.ZodOptional<z.ZodString>;
|
|
12191
12213
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12192
12214
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12215
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12193
12216
|
logoUri: z.ZodString;
|
|
12194
12217
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12195
12218
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12271,6 +12294,11 @@ declare const ConnectUIOptions: z.ZodObject<{
|
|
|
12271
12294
|
connectionParameters: z.ZodOptional<z.ZodAny>;
|
|
12272
12295
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
12273
12296
|
customState: z.ZodOptional<z.ZodString>;
|
|
12297
|
+
theme: z.ZodOptional<z.ZodEnum<{
|
|
12298
|
+
light: "light";
|
|
12299
|
+
dark: "dark";
|
|
12300
|
+
auto: "auto";
|
|
12301
|
+
}>>;
|
|
12274
12302
|
}, z.core.$strip>;
|
|
12275
12303
|
type ConnectUIOptions = z.infer<typeof ConnectUIOptions>;
|
|
12276
12304
|
type ConnectOptions = ConnectPayload & {
|
|
@@ -12632,6 +12660,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12632
12660
|
revision: z.ZodOptional<z.ZodString>;
|
|
12633
12661
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12634
12662
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12663
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12635
12664
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12636
12665
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
12637
12666
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -12684,6 +12713,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12684
12713
|
revision: z.ZodOptional<z.ZodString>;
|
|
12685
12714
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12686
12715
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12716
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12687
12717
|
logoUri: z.ZodString;
|
|
12688
12718
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12689
12719
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12809,6 +12839,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
12809
12839
|
revision: z.ZodOptional<z.ZodString>;
|
|
12810
12840
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12811
12841
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12842
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12812
12843
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12813
12844
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
12814
12845
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -12861,6 +12892,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
12861
12892
|
revision: z.ZodOptional<z.ZodString>;
|
|
12862
12893
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12863
12894
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12895
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12864
12896
|
logoUri: z.ZodString;
|
|
12865
12897
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12866
12898
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12963,6 +12995,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12963
12995
|
revision: z.ZodOptional<z.ZodString>;
|
|
12964
12996
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12965
12997
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12998
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12966
12999
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12967
13000
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
12968
13001
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -12988,6 +13021,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12988
13021
|
revision: z.ZodOptional<z.ZodString>;
|
|
12989
13022
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12990
13023
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13024
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12991
13025
|
logoUri: z.ZodString;
|
|
12992
13026
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12993
13027
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13071,6 +13105,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13071
13105
|
revision: z.ZodOptional<z.ZodString>;
|
|
13072
13106
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13073
13107
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13108
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13074
13109
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13075
13110
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13076
13111
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13097,6 +13132,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13097
13132
|
revision: z.ZodOptional<z.ZodString>;
|
|
13098
13133
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13099
13134
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13135
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13100
13136
|
logoUri: z.ZodString;
|
|
13101
13137
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13102
13138
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13220,6 +13256,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13220
13256
|
revision: z.ZodOptional<z.ZodString>;
|
|
13221
13257
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13222
13258
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13259
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13223
13260
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13224
13261
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13225
13262
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13286,6 +13323,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13286
13323
|
revision: z.ZodOptional<z.ZodString>;
|
|
13287
13324
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13288
13325
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13326
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13289
13327
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13290
13328
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13291
13329
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13311,6 +13349,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13311
13349
|
revision: z.ZodOptional<z.ZodString>;
|
|
13312
13350
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13313
13351
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13352
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13314
13353
|
logoUri: z.ZodString;
|
|
13315
13354
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13316
13355
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13394,6 +13433,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13394
13433
|
revision: z.ZodOptional<z.ZodString>;
|
|
13395
13434
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13396
13435
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13436
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13397
13437
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13398
13438
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13399
13439
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13420,6 +13460,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13420
13460
|
revision: z.ZodOptional<z.ZodString>;
|
|
13421
13461
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13422
13462
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13463
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13423
13464
|
logoUri: z.ZodString;
|
|
13424
13465
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13425
13466
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13543,6 +13584,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13543
13584
|
revision: z.ZodOptional<z.ZodString>;
|
|
13544
13585
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13545
13586
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13587
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13546
13588
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13547
13589
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13548
13590
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13579,6 +13621,7 @@ declare const FindFlowsQuery: z.ZodObject<{
|
|
|
13579
13621
|
}>>;
|
|
13580
13622
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13581
13623
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13624
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13582
13625
|
flowId: z.ZodOptional<z.ZodString>;
|
|
13583
13626
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
13584
13627
|
}, z.core.$strip>;
|
|
@@ -13770,6 +13813,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13770
13813
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13771
13814
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13772
13815
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13816
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13773
13817
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13774
13818
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13775
13819
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -13900,6 +13944,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13900
13944
|
revision: z.ZodOptional<z.ZodString>;
|
|
13901
13945
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13902
13946
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13947
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13903
13948
|
logoUri: z.ZodString;
|
|
13904
13949
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13905
13950
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13959,6 +14004,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13959
14004
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13960
14005
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13961
14006
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14007
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13962
14008
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13963
14009
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13964
14010
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14090,6 +14136,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14090
14136
|
revision: z.ZodOptional<z.ZodString>;
|
|
14091
14137
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14092
14138
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14139
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14093
14140
|
logoUri: z.ZodString;
|
|
14094
14141
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
14095
14142
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -14189,6 +14236,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14189
14236
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14190
14237
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14191
14238
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14239
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14192
14240
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14193
14241
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14194
14242
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14338,6 +14386,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14338
14386
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14339
14387
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14340
14388
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14389
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14341
14390
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14342
14391
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14343
14392
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14468,6 +14517,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14468
14517
|
revision: z.ZodOptional<z.ZodString>;
|
|
14469
14518
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14470
14519
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14520
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14471
14521
|
logoUri: z.ZodString;
|
|
14472
14522
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
14473
14523
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -14527,6 +14577,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14527
14577
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14528
14578
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14529
14579
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14580
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14530
14581
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14531
14582
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14532
14583
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14658,6 +14709,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14658
14709
|
revision: z.ZodOptional<z.ZodString>;
|
|
14659
14710
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14660
14711
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14712
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14661
14713
|
logoUri: z.ZodString;
|
|
14662
14714
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
14663
14715
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -14757,6 +14809,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14757
14809
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14758
14810
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14759
14811
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14812
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14760
14813
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14761
14814
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14762
14815
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14899,6 +14952,7 @@ declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
14899
14952
|
}>>;
|
|
14900
14953
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14901
14954
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14955
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14902
14956
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
14903
14957
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
14904
14958
|
}, z.core.$strip>;
|
|
@@ -14921,6 +14975,7 @@ declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
|
14921
14975
|
}>>;
|
|
14922
14976
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14923
14977
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14978
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14924
14979
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
14925
14980
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
14926
14981
|
}, z.core.$strip>;
|
|
@@ -15246,6 +15301,7 @@ declare class ConnectionAccessor {
|
|
|
15246
15301
|
revision?: string | undefined;
|
|
15247
15302
|
createdAt?: string | undefined;
|
|
15248
15303
|
updatedAt?: string | undefined;
|
|
15304
|
+
isReadOnly?: boolean | undefined;
|
|
15249
15305
|
connectorId?: string | undefined;
|
|
15250
15306
|
connectorVersion?: string | undefined;
|
|
15251
15307
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -15409,6 +15465,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15409
15465
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15410
15466
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15411
15467
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15468
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15412
15469
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15413
15470
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15414
15471
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15430,6 +15487,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15430
15487
|
revision: z.ZodOptional<z.ZodString>;
|
|
15431
15488
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15432
15489
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15490
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15433
15491
|
logoUri: z.ZodString;
|
|
15434
15492
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15435
15493
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15496,6 +15554,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15496
15554
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15497
15555
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15498
15556
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15557
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15499
15558
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15500
15559
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15501
15560
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15518,6 +15577,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15518
15577
|
revision: z.ZodOptional<z.ZodString>;
|
|
15519
15578
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15520
15579
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15580
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15521
15581
|
logoUri: z.ZodString;
|
|
15522
15582
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15523
15583
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15624,6 +15684,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15624
15684
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15625
15685
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15626
15686
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15687
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15627
15688
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15628
15689
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15629
15690
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15670,6 +15731,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15670
15731
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15671
15732
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15672
15733
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15734
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15673
15735
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15674
15736
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15675
15737
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15691,6 +15753,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15691
15753
|
revision: z.ZodOptional<z.ZodString>;
|
|
15692
15754
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15693
15755
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15756
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15694
15757
|
logoUri: z.ZodString;
|
|
15695
15758
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15696
15759
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15757,6 +15820,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15757
15820
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15758
15821
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15759
15822
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15823
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15760
15824
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15761
15825
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15762
15826
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15779,6 +15843,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15779
15843
|
revision: z.ZodOptional<z.ZodString>;
|
|
15780
15844
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15781
15845
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15846
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15782
15847
|
logoUri: z.ZodString;
|
|
15783
15848
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15784
15849
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15885,6 +15950,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15885
15950
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15886
15951
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15887
15952
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15953
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15888
15954
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15889
15955
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15890
15956
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15915,6 +15981,7 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
15915
15981
|
}>>;
|
|
15916
15982
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15917
15983
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15984
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15918
15985
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15919
15986
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15920
15987
|
}, z.core.$strip>;
|
|
@@ -15937,6 +16004,7 @@ declare const FindFieldMappingInstancesQuery: z.ZodObject<{
|
|
|
15937
16004
|
}>>;
|
|
15938
16005
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15939
16006
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16007
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15940
16008
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15941
16009
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15942
16010
|
}, z.core.$strip>;
|
|
@@ -16064,6 +16132,15 @@ interface FieldMappingInstanceSelector extends ConnectionSelector, FlowInstanceS
|
|
|
16064
16132
|
interface ListFieldMappingsForIntegrationQuery extends Omit<FindFieldMappingsQuery, 'integrationId' | 'integrationKey'> {
|
|
16065
16133
|
}
|
|
16066
16134
|
type ListFieldMappingInstancesForConnectionQuery = FindFieldMappingsQuery;
|
|
16135
|
+
declare const RunFieldMappingRequest: z.ZodObject<{
|
|
16136
|
+
direction: z.ZodOptional<z.ZodEnum<typeof FieldMappingDirection>>;
|
|
16137
|
+
input: z.ZodOptional<z.ZodAny>;
|
|
16138
|
+
}, z.core.$strip>;
|
|
16139
|
+
type RunFieldMappingRequest = z.infer<typeof RunFieldMappingRequest>;
|
|
16140
|
+
declare const RunFieldMappingResponse: z.ZodObject<{
|
|
16141
|
+
output: z.ZodOptional<z.ZodAny>;
|
|
16142
|
+
}, z.core.$strip>;
|
|
16143
|
+
type RunFieldMappingResponse = z.infer<typeof RunFieldMappingResponse>;
|
|
16067
16144
|
|
|
16068
16145
|
declare class FieldMappingsAccessor extends ElementListAccessor<FieldMappingApiResponse, FindFieldMappingsQuery, CreateFieldMappingRequest> {
|
|
16069
16146
|
constructor(client: MembraneApiClient);
|
|
@@ -16127,6 +16204,7 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
16127
16204
|
}, z.core.$strip>;
|
|
16128
16205
|
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
16129
16206
|
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
16207
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
16130
16208
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
16131
16209
|
cursor: z.ZodOptional<z.ZodString>;
|
|
16132
16210
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -16175,6 +16253,7 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
16175
16253
|
revision: z.ZodOptional<z.ZodString>;
|
|
16176
16254
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16177
16255
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16256
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16178
16257
|
logoUri: z.ZodString;
|
|
16179
16258
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
16180
16259
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -16344,6 +16423,7 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
16344
16423
|
revision?: string | undefined;
|
|
16345
16424
|
createdAt?: string | undefined;
|
|
16346
16425
|
updatedAt?: string | undefined;
|
|
16426
|
+
isReadOnly?: boolean | undefined;
|
|
16347
16427
|
connectorId?: string | undefined;
|
|
16348
16428
|
connectorVersion?: string | undefined;
|
|
16349
16429
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -16460,6 +16540,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16460
16540
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16461
16541
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16462
16542
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16543
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16463
16544
|
uuid: z.ZodOptional<z.ZodString>;
|
|
16464
16545
|
description: z.ZodOptional<z.ZodString>;
|
|
16465
16546
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -16494,6 +16575,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16494
16575
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16495
16576
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16496
16577
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16578
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16497
16579
|
uuid: z.ZodOptional<z.ZodString>;
|
|
16498
16580
|
description: z.ZodOptional<z.ZodString>;
|
|
16499
16581
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -16528,6 +16610,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16528
16610
|
revision: z.ZodOptional<z.ZodString>;
|
|
16529
16611
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16530
16612
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16613
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16531
16614
|
logoUri: z.ZodString;
|
|
16532
16615
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
16533
16616
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -16775,6 +16858,7 @@ declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16775
16858
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16776
16859
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16777
16860
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16861
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16778
16862
|
revision: z.ZodString;
|
|
16779
16863
|
appEventTypeId: z.ZodString;
|
|
16780
16864
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -16804,6 +16888,7 @@ declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16804
16888
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16805
16889
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16806
16890
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16891
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16807
16892
|
revision: z.ZodString;
|
|
16808
16893
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16809
16894
|
webhookKey: z.ZodString;
|
|
@@ -16961,6 +17046,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16961
17046
|
revision: z.ZodOptional<z.ZodString>;
|
|
16962
17047
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16963
17048
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17049
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16964
17050
|
logoUri: z.ZodString;
|
|
16965
17051
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
16966
17052
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17100,6 +17186,7 @@ declare const ExternalEvent: z.ZodObject<{
|
|
|
17100
17186
|
revision: z.ZodOptional<z.ZodString>;
|
|
17101
17187
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17102
17188
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17189
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17103
17190
|
logoUri: z.ZodString;
|
|
17104
17191
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17105
17192
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17179,9 +17266,11 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17179
17266
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17180
17267
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17181
17268
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17269
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17182
17270
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17183
17271
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17184
17272
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17273
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17185
17274
|
userId: z.ZodOptional<z.ZodString>;
|
|
17186
17275
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17187
17276
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -17196,6 +17285,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17196
17285
|
revision: z.ZodOptional<z.ZodString>;
|
|
17197
17286
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17198
17287
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17288
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17199
17289
|
logoUri: z.ZodString;
|
|
17200
17290
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17201
17291
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17268,10 +17358,12 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17268
17358
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17269
17359
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17270
17360
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17361
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17271
17362
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17272
17363
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17273
17364
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17274
17365
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17366
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17275
17367
|
userId: z.ZodOptional<z.ZodString>;
|
|
17276
17368
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17277
17369
|
}, z.core.$strip>>;
|
|
@@ -17302,10 +17394,12 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17302
17394
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17303
17395
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17304
17396
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17397
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17305
17398
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17306
17399
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17307
17400
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17308
17401
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17402
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17309
17403
|
userId: z.ZodOptional<z.ZodString>;
|
|
17310
17404
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17311
17405
|
}, z.core.$strip>;
|
|
@@ -17321,6 +17415,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17321
17415
|
revision: z.ZodOptional<z.ZodString>;
|
|
17322
17416
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17323
17417
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17418
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17324
17419
|
logoUri: z.ZodString;
|
|
17325
17420
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17326
17421
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17502,9 +17597,11 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17502
17597
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17503
17598
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17504
17599
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17600
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17505
17601
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17506
17602
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17507
17603
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17604
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17508
17605
|
userId: z.ZodOptional<z.ZodString>;
|
|
17509
17606
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17510
17607
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -17519,6 +17616,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17519
17616
|
revision: z.ZodOptional<z.ZodString>;
|
|
17520
17617
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17521
17618
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17619
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17522
17620
|
logoUri: z.ZodString;
|
|
17523
17621
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17524
17622
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17591,10 +17689,12 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17591
17689
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17592
17690
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17593
17691
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17692
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17594
17693
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17595
17694
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17596
17695
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17597
17696
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17697
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17598
17698
|
userId: z.ZodOptional<z.ZodString>;
|
|
17599
17699
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17600
17700
|
}, z.core.$strip>>;
|
|
@@ -17625,10 +17725,12 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17625
17725
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17626
17726
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17627
17727
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17728
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17628
17729
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17629
17730
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17630
17731
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17631
17732
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17733
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17632
17734
|
userId: z.ZodOptional<z.ZodString>;
|
|
17633
17735
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17634
17736
|
}, z.core.$strip>;
|
|
@@ -17644,6 +17746,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17644
17746
|
revision: z.ZodOptional<z.ZodString>;
|
|
17645
17747
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17646
17748
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17749
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17647
17750
|
logoUri: z.ZodString;
|
|
17648
17751
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17649
17752
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17778,10 +17881,12 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17778
17881
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17779
17882
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17780
17883
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17884
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17781
17885
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17782
17886
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17783
17887
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17784
17888
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17889
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17785
17890
|
userId: z.ZodOptional<z.ZodString>;
|
|
17786
17891
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17787
17892
|
}, z.core.$strip>>;
|
|
@@ -17811,10 +17916,12 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17811
17916
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17812
17917
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17813
17918
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17919
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17814
17920
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17815
17921
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17816
17922
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17817
17923
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17924
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17818
17925
|
userId: z.ZodOptional<z.ZodString>;
|
|
17819
17926
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17820
17927
|
}, z.core.$strip>>;
|
|
@@ -17830,6 +17937,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17830
17937
|
revision: z.ZodOptional<z.ZodString>;
|
|
17831
17938
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17832
17939
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17940
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17833
17941
|
logoUri: z.ZodString;
|
|
17834
17942
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17835
17943
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17961,10 +18069,12 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17961
18069
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17962
18070
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17963
18071
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18072
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17964
18073
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17965
18074
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17966
18075
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17967
18076
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
18077
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17968
18078
|
userId: z.ZodOptional<z.ZodString>;
|
|
17969
18079
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17970
18080
|
}, z.core.$strip>>;
|
|
@@ -17994,10 +18104,12 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17994
18104
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17995
18105
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17996
18106
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18107
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17997
18108
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17998
18109
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17999
18110
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18000
18111
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
18112
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
18001
18113
|
userId: z.ZodOptional<z.ZodString>;
|
|
18002
18114
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18003
18115
|
}, z.core.$strip>>;
|
|
@@ -18013,6 +18125,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18013
18125
|
revision: z.ZodOptional<z.ZodString>;
|
|
18014
18126
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18015
18127
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18128
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18016
18129
|
logoUri: z.ZodString;
|
|
18017
18130
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18018
18131
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18202,6 +18315,7 @@ declare const DataLinkTableApiResponse: z.ZodObject<{
|
|
|
18202
18315
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18203
18316
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18204
18317
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18318
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18205
18319
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18206
18320
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18207
18321
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18320,6 +18434,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18320
18434
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18321
18435
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18322
18436
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18437
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18323
18438
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18324
18439
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18325
18440
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18341,6 +18456,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18341
18456
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18342
18457
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18343
18458
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18459
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18344
18460
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18345
18461
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18346
18462
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18385,6 +18501,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18385
18501
|
revision: z.ZodOptional<z.ZodString>;
|
|
18386
18502
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18387
18503
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18504
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18388
18505
|
logoUri: z.ZodString;
|
|
18389
18506
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18390
18507
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18480,6 +18597,7 @@ declare const AppEventTypeApiResponse: z.ZodObject<{
|
|
|
18480
18597
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18481
18598
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18482
18599
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18600
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18483
18601
|
revision: z.ZodString;
|
|
18484
18602
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18485
18603
|
webhookKey: z.ZodString;
|
|
@@ -18541,6 +18659,7 @@ declare const AppDataSchemaApiResponse: z.ZodObject<{
|
|
|
18541
18659
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18542
18660
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18543
18661
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18662
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18544
18663
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
18545
18664
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18546
18665
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18591,6 +18710,7 @@ declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
18591
18710
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18592
18711
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18593
18712
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18713
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18594
18714
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
18595
18715
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18596
18716
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18628,6 +18748,7 @@ declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
18628
18748
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18629
18749
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18630
18750
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18751
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18631
18752
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
18632
18753
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18633
18754
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18727,6 +18848,7 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18727
18848
|
revision: z.ZodOptional<z.ZodString>;
|
|
18728
18849
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18729
18850
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18851
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18730
18852
|
logoUri: z.ZodString;
|
|
18731
18853
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18732
18854
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18890,6 +19012,7 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
18890
19012
|
revision: z.ZodOptional<z.ZodString>;
|
|
18891
19013
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18892
19014
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19015
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18893
19016
|
logoUri: z.ZodString;
|
|
18894
19017
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18895
19018
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18995,6 +19118,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18995
19118
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18996
19119
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18997
19120
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19121
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18998
19122
|
revision: z.ZodString;
|
|
18999
19123
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19000
19124
|
webhookKey: z.ZodString;
|
|
@@ -19024,6 +19148,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
19024
19148
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19025
19149
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19026
19150
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19151
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
19027
19152
|
revision: z.ZodString;
|
|
19028
19153
|
appEventTypeId: z.ZodString;
|
|
19029
19154
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -19128,6 +19253,7 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
19128
19253
|
revision: z.ZodOptional<z.ZodString>;
|
|
19129
19254
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19130
19255
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19256
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
19131
19257
|
logoUri: z.ZodString;
|
|
19132
19258
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
19133
19259
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -19354,6 +19480,8 @@ declare function getParentNodeKeys(flow: FlowApiResponse, nodeKey: string): stri
|
|
|
19354
19480
|
declare function getUpstreamNodeKeys(flow: FlowApiResponse, nodeKey: string): string[];
|
|
19355
19481
|
declare function hasCycles(nodes?: Record<string, FlowNode>): boolean;
|
|
19356
19482
|
|
|
19483
|
+
declare function getSchemaDescription(schema: z.ZodTypeAny): string | undefined;
|
|
19484
|
+
|
|
19357
19485
|
declare function setEditablePropertiesForWorkspaceElement<T extends Record<string, unknown>>(currentElement: T, newEditableFields: Record<string, unknown>, exportSchema: z.ZodTypeAny): T;
|
|
19358
19486
|
|
|
19359
19487
|
declare const REFERENCE_ELEMENT_TYPE_SELF: "self";
|
|
@@ -21342,6 +21470,33 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21342
21470
|
engineAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
21343
21471
|
}, z.core.$strip>>>;
|
|
21344
21472
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21473
|
+
authContextPermissions: z.ZodOptional<z.ZodObject<{
|
|
21474
|
+
platformUser: z.ZodObject<{
|
|
21475
|
+
isEngineAdmin: z.ZodBoolean;
|
|
21476
|
+
isPlatformAdmin: z.ZodBoolean;
|
|
21477
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
21478
|
+
}, z.core.$strip>;
|
|
21479
|
+
org: z.ZodOptional<z.ZodObject<{
|
|
21480
|
+
orgId: z.ZodString;
|
|
21481
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
21482
|
+
admin: "admin";
|
|
21483
|
+
member: "member";
|
|
21484
|
+
}>>;
|
|
21485
|
+
canRead: z.ZodBoolean;
|
|
21486
|
+
canWrite: z.ZodBoolean;
|
|
21487
|
+
}, z.core.$strip>>;
|
|
21488
|
+
workspace: z.ZodOptional<z.ZodObject<{
|
|
21489
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21490
|
+
isWorkspaceManager: z.ZodBoolean;
|
|
21491
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
21492
|
+
}, z.core.$strip>>;
|
|
21493
|
+
tenant: z.ZodOptional<z.ZodObject<{
|
|
21494
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21495
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21496
|
+
canRead: z.ZodBoolean;
|
|
21497
|
+
canWrite: z.ZodBoolean;
|
|
21498
|
+
}, z.core.$strip>>;
|
|
21499
|
+
}, z.core.$strip>>;
|
|
21345
21500
|
featureFlags: z.ZodOptional<z.ZodAny>;
|
|
21346
21501
|
message: z.ZodOptional<z.ZodString>;
|
|
21347
21502
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -21356,6 +21511,64 @@ declare class SelfAccessor {
|
|
|
21356
21511
|
}>): Promise<CustomerApiResponse>;
|
|
21357
21512
|
}
|
|
21358
21513
|
|
|
21514
|
+
declare const PlatformUserPermissionsSchema: z.ZodObject<{
|
|
21515
|
+
isEngineAdmin: z.ZodBoolean;
|
|
21516
|
+
isPlatformAdmin: z.ZodBoolean;
|
|
21517
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
21518
|
+
}, z.core.$strip>;
|
|
21519
|
+
declare const OrgPermissionsSchema: z.ZodObject<{
|
|
21520
|
+
orgId: z.ZodString;
|
|
21521
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
21522
|
+
admin: "admin";
|
|
21523
|
+
member: "member";
|
|
21524
|
+
}>>;
|
|
21525
|
+
canRead: z.ZodBoolean;
|
|
21526
|
+
canWrite: z.ZodBoolean;
|
|
21527
|
+
}, z.core.$strip>;
|
|
21528
|
+
declare const WorkspacePermissionsSchema: z.ZodObject<{
|
|
21529
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21530
|
+
isWorkspaceManager: z.ZodBoolean;
|
|
21531
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
21532
|
+
}, z.core.$strip>;
|
|
21533
|
+
declare const TenantPermissionsSchema: z.ZodObject<{
|
|
21534
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21535
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21536
|
+
canRead: z.ZodBoolean;
|
|
21537
|
+
canWrite: z.ZodBoolean;
|
|
21538
|
+
}, z.core.$strip>;
|
|
21539
|
+
declare const AuthContextPermissionsSchema: z.ZodObject<{
|
|
21540
|
+
platformUser: z.ZodObject<{
|
|
21541
|
+
isEngineAdmin: z.ZodBoolean;
|
|
21542
|
+
isPlatformAdmin: z.ZodBoolean;
|
|
21543
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
21544
|
+
}, z.core.$strip>;
|
|
21545
|
+
org: z.ZodOptional<z.ZodObject<{
|
|
21546
|
+
orgId: z.ZodString;
|
|
21547
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
21548
|
+
admin: "admin";
|
|
21549
|
+
member: "member";
|
|
21550
|
+
}>>;
|
|
21551
|
+
canRead: z.ZodBoolean;
|
|
21552
|
+
canWrite: z.ZodBoolean;
|
|
21553
|
+
}, z.core.$strip>>;
|
|
21554
|
+
workspace: z.ZodOptional<z.ZodObject<{
|
|
21555
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21556
|
+
isWorkspaceManager: z.ZodBoolean;
|
|
21557
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
21558
|
+
}, z.core.$strip>>;
|
|
21559
|
+
tenant: z.ZodOptional<z.ZodObject<{
|
|
21560
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21561
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21562
|
+
canRead: z.ZodBoolean;
|
|
21563
|
+
canWrite: z.ZodBoolean;
|
|
21564
|
+
}, z.core.$strip>>;
|
|
21565
|
+
}, z.core.$strip>;
|
|
21566
|
+
type PlatformUserPermissions = z.infer<typeof PlatformUserPermissionsSchema>;
|
|
21567
|
+
type OrgPermissions = z.infer<typeof OrgPermissionsSchema>;
|
|
21568
|
+
type WorkspacePermissions = z.infer<typeof WorkspacePermissionsSchema>;
|
|
21569
|
+
type TenantPermissions = z.infer<typeof TenantPermissionsSchema>;
|
|
21570
|
+
type AuthContextPermissions = z.infer<typeof AuthContextPermissionsSchema>;
|
|
21571
|
+
|
|
21359
21572
|
interface Self {
|
|
21360
21573
|
user: CustomerApiResponse;
|
|
21361
21574
|
workspace: OrgWorkspace;
|
|
@@ -22671,6 +22884,44 @@ declare const AsyncRequestTriggerResponse: z.ZodObject<{
|
|
|
22671
22884
|
}, z.core.$strip>;
|
|
22672
22885
|
type AsyncRequestTriggerResponse = z.infer<typeof AsyncRequestTriggerResponse>;
|
|
22673
22886
|
|
|
22887
|
+
declare const SelfHostingToken: z.ZodObject<{
|
|
22888
|
+
id: z.ZodString;
|
|
22889
|
+
name: z.ZodString;
|
|
22890
|
+
orgId: z.ZodString;
|
|
22891
|
+
tokenPrefix: z.ZodString;
|
|
22892
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
22893
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
22894
|
+
lastUsedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
22895
|
+
}, z.core.$strip>;
|
|
22896
|
+
type SelfHostingToken = z.infer<typeof SelfHostingToken>;
|
|
22897
|
+
declare const CreateSelfHostingTokenRequest: z.ZodObject<{
|
|
22898
|
+
name: z.ZodString;
|
|
22899
|
+
}, z.core.$strip>;
|
|
22900
|
+
type CreateSelfHostingTokenRequest = z.infer<typeof CreateSelfHostingTokenRequest>;
|
|
22901
|
+
declare const CreateSelfHostingTokenResponse: z.ZodObject<{
|
|
22902
|
+
id: z.ZodString;
|
|
22903
|
+
name: z.ZodString;
|
|
22904
|
+
orgId: z.ZodString;
|
|
22905
|
+
tokenPrefix: z.ZodString;
|
|
22906
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
22907
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
22908
|
+
lastUsedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
22909
|
+
token: z.ZodString;
|
|
22910
|
+
}, z.core.$strip>;
|
|
22911
|
+
type CreateSelfHostingTokenResponse = z.infer<typeof CreateSelfHostingTokenResponse>;
|
|
22912
|
+
declare const UpdateSelfHostingTokenRequest: z.ZodObject<{
|
|
22913
|
+
name: z.ZodString;
|
|
22914
|
+
}, z.core.$strip>;
|
|
22915
|
+
type UpdateSelfHostingTokenRequest = z.infer<typeof UpdateSelfHostingTokenRequest>;
|
|
22916
|
+
declare const ValidateSelfHostingTokenRequest: z.ZodObject<{}, z.core.$strip>;
|
|
22917
|
+
type ValidateSelfHostingTokenRequest = z.infer<typeof ValidateSelfHostingTokenRequest>;
|
|
22918
|
+
declare const ValidateSelfHostingTokenResponse: z.ZodObject<{
|
|
22919
|
+
valid: z.ZodBoolean;
|
|
22920
|
+
orgId: z.ZodOptional<z.ZodString>;
|
|
22921
|
+
orgName: z.ZodOptional<z.ZodString>;
|
|
22922
|
+
}, z.core.$strip>;
|
|
22923
|
+
type ValidateSelfHostingTokenResponse = z.infer<typeof ValidateSelfHostingTokenResponse>;
|
|
22924
|
+
|
|
22674
22925
|
declare const CONSOLE_ACCOUNT_API_TOKEN_PATH = "settings/account/api-token";
|
|
22675
22926
|
|
|
22676
22927
|
declare class UI {
|
|
@@ -22733,5 +22984,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
22733
22984
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
22734
22985
|
}
|
|
22735
22986
|
|
|
22736
|
-
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExport, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateConnectionRequest, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, StatsFilterQuery, TenantLayerElement, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
22737
|
-
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|
|
22987
|
+
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExport, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateConnectionRequest, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, StatsFilterQuery, TenantLayerElement, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
22988
|
+
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|