@membranehq/sdk 0.15.5 → 0.15.6
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 +46 -2
- package/dist/bundle.js +36 -0
- 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/orgs/types.d.ts +27 -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 +3 -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/index.browser.d.mts +212 -6
- package/dist/index.browser.d.ts +212 -6
- package/dist/index.browser.js +56 -4
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +54 -5
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +212 -6
- package/dist/index.node.d.ts +212 -6
- package/dist/index.node.js +56 -4
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +54 -5
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.node.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>;
|
|
@@ -12632,6 +12655,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12632
12655
|
revision: z.ZodOptional<z.ZodString>;
|
|
12633
12656
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12634
12657
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12658
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12635
12659
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12636
12660
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
12637
12661
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -12684,6 +12708,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12684
12708
|
revision: z.ZodOptional<z.ZodString>;
|
|
12685
12709
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12686
12710
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12711
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12687
12712
|
logoUri: z.ZodString;
|
|
12688
12713
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12689
12714
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12809,6 +12834,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
12809
12834
|
revision: z.ZodOptional<z.ZodString>;
|
|
12810
12835
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12811
12836
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12837
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12812
12838
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12813
12839
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
12814
12840
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -12861,6 +12887,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
12861
12887
|
revision: z.ZodOptional<z.ZodString>;
|
|
12862
12888
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12863
12889
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12890
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12864
12891
|
logoUri: z.ZodString;
|
|
12865
12892
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12866
12893
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12963,6 +12990,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12963
12990
|
revision: z.ZodOptional<z.ZodString>;
|
|
12964
12991
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12965
12992
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12993
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12966
12994
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12967
12995
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
12968
12996
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -12988,6 +13016,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12988
13016
|
revision: z.ZodOptional<z.ZodString>;
|
|
12989
13017
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12990
13018
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13019
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12991
13020
|
logoUri: z.ZodString;
|
|
12992
13021
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12993
13022
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13071,6 +13100,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13071
13100
|
revision: z.ZodOptional<z.ZodString>;
|
|
13072
13101
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13073
13102
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13103
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13074
13104
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13075
13105
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13076
13106
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13097,6 +13127,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13097
13127
|
revision: z.ZodOptional<z.ZodString>;
|
|
13098
13128
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13099
13129
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13130
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13100
13131
|
logoUri: z.ZodString;
|
|
13101
13132
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13102
13133
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13220,6 +13251,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13220
13251
|
revision: z.ZodOptional<z.ZodString>;
|
|
13221
13252
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13222
13253
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13254
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13223
13255
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13224
13256
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13225
13257
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13286,6 +13318,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13286
13318
|
revision: z.ZodOptional<z.ZodString>;
|
|
13287
13319
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13288
13320
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13321
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13289
13322
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13290
13323
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13291
13324
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13311,6 +13344,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13311
13344
|
revision: z.ZodOptional<z.ZodString>;
|
|
13312
13345
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13313
13346
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13347
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13314
13348
|
logoUri: z.ZodString;
|
|
13315
13349
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13316
13350
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13394,6 +13428,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13394
13428
|
revision: z.ZodOptional<z.ZodString>;
|
|
13395
13429
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13396
13430
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13431
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13397
13432
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13398
13433
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13399
13434
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13420,6 +13455,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13420
13455
|
revision: z.ZodOptional<z.ZodString>;
|
|
13421
13456
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13422
13457
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13458
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13423
13459
|
logoUri: z.ZodString;
|
|
13424
13460
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13425
13461
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13543,6 +13579,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13543
13579
|
revision: z.ZodOptional<z.ZodString>;
|
|
13544
13580
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13545
13581
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13582
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13546
13583
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13547
13584
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13548
13585
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13579,6 +13616,7 @@ declare const FindFlowsQuery: z.ZodObject<{
|
|
|
13579
13616
|
}>>;
|
|
13580
13617
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13581
13618
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13619
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13582
13620
|
flowId: z.ZodOptional<z.ZodString>;
|
|
13583
13621
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
13584
13622
|
}, z.core.$strip>;
|
|
@@ -13770,6 +13808,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13770
13808
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13771
13809
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13772
13810
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13811
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13773
13812
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13774
13813
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13775
13814
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -13900,6 +13939,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13900
13939
|
revision: z.ZodOptional<z.ZodString>;
|
|
13901
13940
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13902
13941
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13942
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13903
13943
|
logoUri: z.ZodString;
|
|
13904
13944
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13905
13945
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13959,6 +13999,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13959
13999
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13960
14000
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13961
14001
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14002
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13962
14003
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13963
14004
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13964
14005
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14090,6 +14131,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14090
14131
|
revision: z.ZodOptional<z.ZodString>;
|
|
14091
14132
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14092
14133
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14134
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14093
14135
|
logoUri: z.ZodString;
|
|
14094
14136
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
14095
14137
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -14189,6 +14231,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14189
14231
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14190
14232
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14191
14233
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14234
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14192
14235
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14193
14236
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14194
14237
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14338,6 +14381,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14338
14381
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14339
14382
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14340
14383
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14384
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14341
14385
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14342
14386
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14343
14387
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14468,6 +14512,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14468
14512
|
revision: z.ZodOptional<z.ZodString>;
|
|
14469
14513
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14470
14514
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14515
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14471
14516
|
logoUri: z.ZodString;
|
|
14472
14517
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
14473
14518
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -14527,6 +14572,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14527
14572
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14528
14573
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14529
14574
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14575
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14530
14576
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14531
14577
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14532
14578
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14658,6 +14704,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14658
14704
|
revision: z.ZodOptional<z.ZodString>;
|
|
14659
14705
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14660
14706
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14707
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14661
14708
|
logoUri: z.ZodString;
|
|
14662
14709
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
14663
14710
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -14757,6 +14804,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14757
14804
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14758
14805
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14759
14806
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14807
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14760
14808
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14761
14809
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14762
14810
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14899,6 +14947,7 @@ declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
14899
14947
|
}>>;
|
|
14900
14948
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14901
14949
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14950
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14902
14951
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
14903
14952
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
14904
14953
|
}, z.core.$strip>;
|
|
@@ -14921,6 +14970,7 @@ declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
|
14921
14970
|
}>>;
|
|
14922
14971
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14923
14972
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14973
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14924
14974
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
14925
14975
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
14926
14976
|
}, z.core.$strip>;
|
|
@@ -15246,6 +15296,7 @@ declare class ConnectionAccessor {
|
|
|
15246
15296
|
revision?: string | undefined;
|
|
15247
15297
|
createdAt?: string | undefined;
|
|
15248
15298
|
updatedAt?: string | undefined;
|
|
15299
|
+
isReadOnly?: boolean | undefined;
|
|
15249
15300
|
connectorId?: string | undefined;
|
|
15250
15301
|
connectorVersion?: string | undefined;
|
|
15251
15302
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -15409,6 +15460,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15409
15460
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15410
15461
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15411
15462
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15463
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15412
15464
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15413
15465
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15414
15466
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15430,6 +15482,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15430
15482
|
revision: z.ZodOptional<z.ZodString>;
|
|
15431
15483
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15432
15484
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15485
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15433
15486
|
logoUri: z.ZodString;
|
|
15434
15487
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15435
15488
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15496,6 +15549,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15496
15549
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15497
15550
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15498
15551
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15552
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15499
15553
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15500
15554
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15501
15555
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15518,6 +15572,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15518
15572
|
revision: z.ZodOptional<z.ZodString>;
|
|
15519
15573
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15520
15574
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15575
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15521
15576
|
logoUri: z.ZodString;
|
|
15522
15577
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15523
15578
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15624,6 +15679,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15624
15679
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15625
15680
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15626
15681
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15682
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15627
15683
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15628
15684
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15629
15685
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15670,6 +15726,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15670
15726
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15671
15727
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15672
15728
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15729
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15673
15730
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15674
15731
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15675
15732
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15691,6 +15748,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15691
15748
|
revision: z.ZodOptional<z.ZodString>;
|
|
15692
15749
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15693
15750
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15751
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15694
15752
|
logoUri: z.ZodString;
|
|
15695
15753
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15696
15754
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15757,6 +15815,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15757
15815
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15758
15816
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15759
15817
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15818
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15760
15819
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15761
15820
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15762
15821
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15779,6 +15838,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15779
15838
|
revision: z.ZodOptional<z.ZodString>;
|
|
15780
15839
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15781
15840
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15841
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15782
15842
|
logoUri: z.ZodString;
|
|
15783
15843
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15784
15844
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15885,6 +15945,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15885
15945
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15886
15946
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15887
15947
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15948
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15888
15949
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15889
15950
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15890
15951
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15915,6 +15976,7 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
15915
15976
|
}>>;
|
|
15916
15977
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15917
15978
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15979
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15918
15980
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15919
15981
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15920
15982
|
}, z.core.$strip>;
|
|
@@ -15937,6 +15999,7 @@ declare const FindFieldMappingInstancesQuery: z.ZodObject<{
|
|
|
15937
15999
|
}>>;
|
|
15938
16000
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15939
16001
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16002
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15940
16003
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15941
16004
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15942
16005
|
}, z.core.$strip>;
|
|
@@ -16064,6 +16127,15 @@ interface FieldMappingInstanceSelector extends ConnectionSelector, FlowInstanceS
|
|
|
16064
16127
|
interface ListFieldMappingsForIntegrationQuery extends Omit<FindFieldMappingsQuery, 'integrationId' | 'integrationKey'> {
|
|
16065
16128
|
}
|
|
16066
16129
|
type ListFieldMappingInstancesForConnectionQuery = FindFieldMappingsQuery;
|
|
16130
|
+
declare const RunFieldMappingRequest: z.ZodObject<{
|
|
16131
|
+
direction: z.ZodOptional<z.ZodEnum<typeof FieldMappingDirection>>;
|
|
16132
|
+
input: z.ZodOptional<z.ZodAny>;
|
|
16133
|
+
}, z.core.$strip>;
|
|
16134
|
+
type RunFieldMappingRequest = z.infer<typeof RunFieldMappingRequest>;
|
|
16135
|
+
declare const RunFieldMappingResponse: z.ZodObject<{
|
|
16136
|
+
output: z.ZodOptional<z.ZodAny>;
|
|
16137
|
+
}, z.core.$strip>;
|
|
16138
|
+
type RunFieldMappingResponse = z.infer<typeof RunFieldMappingResponse>;
|
|
16067
16139
|
|
|
16068
16140
|
declare class FieldMappingsAccessor extends ElementListAccessor<FieldMappingApiResponse, FindFieldMappingsQuery, CreateFieldMappingRequest> {
|
|
16069
16141
|
constructor(client: MembraneApiClient);
|
|
@@ -16127,6 +16199,7 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
16127
16199
|
}, z.core.$strip>;
|
|
16128
16200
|
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
16129
16201
|
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
16202
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
16130
16203
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
16131
16204
|
cursor: z.ZodOptional<z.ZodString>;
|
|
16132
16205
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -16175,6 +16248,7 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
16175
16248
|
revision: z.ZodOptional<z.ZodString>;
|
|
16176
16249
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16177
16250
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16251
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16178
16252
|
logoUri: z.ZodString;
|
|
16179
16253
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
16180
16254
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -16344,6 +16418,7 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
16344
16418
|
revision?: string | undefined;
|
|
16345
16419
|
createdAt?: string | undefined;
|
|
16346
16420
|
updatedAt?: string | undefined;
|
|
16421
|
+
isReadOnly?: boolean | undefined;
|
|
16347
16422
|
connectorId?: string | undefined;
|
|
16348
16423
|
connectorVersion?: string | undefined;
|
|
16349
16424
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -16460,6 +16535,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16460
16535
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16461
16536
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16462
16537
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16538
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16463
16539
|
uuid: z.ZodOptional<z.ZodString>;
|
|
16464
16540
|
description: z.ZodOptional<z.ZodString>;
|
|
16465
16541
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -16494,6 +16570,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16494
16570
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16495
16571
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16496
16572
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16573
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16497
16574
|
uuid: z.ZodOptional<z.ZodString>;
|
|
16498
16575
|
description: z.ZodOptional<z.ZodString>;
|
|
16499
16576
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -16528,6 +16605,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16528
16605
|
revision: z.ZodOptional<z.ZodString>;
|
|
16529
16606
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16530
16607
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16608
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16531
16609
|
logoUri: z.ZodString;
|
|
16532
16610
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
16533
16611
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -16775,6 +16853,7 @@ declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16775
16853
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16776
16854
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16777
16855
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16856
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16778
16857
|
revision: z.ZodString;
|
|
16779
16858
|
appEventTypeId: z.ZodString;
|
|
16780
16859
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -16804,6 +16883,7 @@ declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16804
16883
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16805
16884
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16806
16885
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16886
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16807
16887
|
revision: z.ZodString;
|
|
16808
16888
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16809
16889
|
webhookKey: z.ZodString;
|
|
@@ -16961,6 +17041,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16961
17041
|
revision: z.ZodOptional<z.ZodString>;
|
|
16962
17042
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16963
17043
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17044
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16964
17045
|
logoUri: z.ZodString;
|
|
16965
17046
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
16966
17047
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17100,6 +17181,7 @@ declare const ExternalEvent: z.ZodObject<{
|
|
|
17100
17181
|
revision: z.ZodOptional<z.ZodString>;
|
|
17101
17182
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17102
17183
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17184
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17103
17185
|
logoUri: z.ZodString;
|
|
17104
17186
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17105
17187
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17179,9 +17261,11 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17179
17261
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17180
17262
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17181
17263
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17264
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17182
17265
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17183
17266
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17184
17267
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17268
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17185
17269
|
userId: z.ZodOptional<z.ZodString>;
|
|
17186
17270
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17187
17271
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -17196,6 +17280,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17196
17280
|
revision: z.ZodOptional<z.ZodString>;
|
|
17197
17281
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17198
17282
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17283
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17199
17284
|
logoUri: z.ZodString;
|
|
17200
17285
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17201
17286
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17268,10 +17353,12 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17268
17353
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17269
17354
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17270
17355
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17356
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17271
17357
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17272
17358
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17273
17359
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17274
17360
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17361
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17275
17362
|
userId: z.ZodOptional<z.ZodString>;
|
|
17276
17363
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17277
17364
|
}, z.core.$strip>>;
|
|
@@ -17302,10 +17389,12 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17302
17389
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17303
17390
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17304
17391
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17392
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17305
17393
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17306
17394
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17307
17395
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17308
17396
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17397
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17309
17398
|
userId: z.ZodOptional<z.ZodString>;
|
|
17310
17399
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17311
17400
|
}, z.core.$strip>;
|
|
@@ -17321,6 +17410,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17321
17410
|
revision: z.ZodOptional<z.ZodString>;
|
|
17322
17411
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17323
17412
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17413
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17324
17414
|
logoUri: z.ZodString;
|
|
17325
17415
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17326
17416
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17502,9 +17592,11 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17502
17592
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17503
17593
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17504
17594
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17595
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17505
17596
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17506
17597
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17507
17598
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17599
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17508
17600
|
userId: z.ZodOptional<z.ZodString>;
|
|
17509
17601
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17510
17602
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -17519,6 +17611,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17519
17611
|
revision: z.ZodOptional<z.ZodString>;
|
|
17520
17612
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17521
17613
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17614
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17522
17615
|
logoUri: z.ZodString;
|
|
17523
17616
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17524
17617
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17591,10 +17684,12 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17591
17684
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17592
17685
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17593
17686
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17687
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17594
17688
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17595
17689
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17596
17690
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17597
17691
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17692
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17598
17693
|
userId: z.ZodOptional<z.ZodString>;
|
|
17599
17694
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17600
17695
|
}, z.core.$strip>>;
|
|
@@ -17625,10 +17720,12 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17625
17720
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17626
17721
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17627
17722
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17723
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17628
17724
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17629
17725
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17630
17726
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17631
17727
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17728
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17632
17729
|
userId: z.ZodOptional<z.ZodString>;
|
|
17633
17730
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17634
17731
|
}, z.core.$strip>;
|
|
@@ -17644,6 +17741,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17644
17741
|
revision: z.ZodOptional<z.ZodString>;
|
|
17645
17742
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17646
17743
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17744
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17647
17745
|
logoUri: z.ZodString;
|
|
17648
17746
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17649
17747
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17778,10 +17876,12 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17778
17876
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17779
17877
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17780
17878
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17879
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17781
17880
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17782
17881
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17783
17882
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17784
17883
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17884
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17785
17885
|
userId: z.ZodOptional<z.ZodString>;
|
|
17786
17886
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17787
17887
|
}, z.core.$strip>>;
|
|
@@ -17811,10 +17911,12 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17811
17911
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17812
17912
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17813
17913
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17914
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17814
17915
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17815
17916
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17816
17917
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17817
17918
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17919
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17818
17920
|
userId: z.ZodOptional<z.ZodString>;
|
|
17819
17921
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17820
17922
|
}, z.core.$strip>>;
|
|
@@ -17830,6 +17932,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17830
17932
|
revision: z.ZodOptional<z.ZodString>;
|
|
17831
17933
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17832
17934
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17935
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17833
17936
|
logoUri: z.ZodString;
|
|
17834
17937
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17835
17938
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17961,10 +18064,12 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17961
18064
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17962
18065
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17963
18066
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18067
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17964
18068
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17965
18069
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17966
18070
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17967
18071
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
18072
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17968
18073
|
userId: z.ZodOptional<z.ZodString>;
|
|
17969
18074
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17970
18075
|
}, z.core.$strip>>;
|
|
@@ -17994,10 +18099,12 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17994
18099
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17995
18100
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17996
18101
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18102
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17997
18103
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17998
18104
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17999
18105
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18000
18106
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
18107
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
18001
18108
|
userId: z.ZodOptional<z.ZodString>;
|
|
18002
18109
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
18003
18110
|
}, z.core.$strip>>;
|
|
@@ -18013,6 +18120,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
18013
18120
|
revision: z.ZodOptional<z.ZodString>;
|
|
18014
18121
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18015
18122
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18123
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18016
18124
|
logoUri: z.ZodString;
|
|
18017
18125
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18018
18126
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18202,6 +18310,7 @@ declare const DataLinkTableApiResponse: z.ZodObject<{
|
|
|
18202
18310
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18203
18311
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18204
18312
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18313
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18205
18314
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18206
18315
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18207
18316
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18320,6 +18429,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18320
18429
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18321
18430
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18322
18431
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18432
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18323
18433
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18324
18434
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18325
18435
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18341,6 +18451,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18341
18451
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18342
18452
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18343
18453
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18454
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18344
18455
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18345
18456
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18346
18457
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18385,6 +18496,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18385
18496
|
revision: z.ZodOptional<z.ZodString>;
|
|
18386
18497
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18387
18498
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18499
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18388
18500
|
logoUri: z.ZodString;
|
|
18389
18501
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18390
18502
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18480,6 +18592,7 @@ declare const AppEventTypeApiResponse: z.ZodObject<{
|
|
|
18480
18592
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18481
18593
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18482
18594
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18595
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18483
18596
|
revision: z.ZodString;
|
|
18484
18597
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18485
18598
|
webhookKey: z.ZodString;
|
|
@@ -18541,6 +18654,7 @@ declare const AppDataSchemaApiResponse: z.ZodObject<{
|
|
|
18541
18654
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18542
18655
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18543
18656
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18657
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18544
18658
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
18545
18659
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18546
18660
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18591,6 +18705,7 @@ declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
18591
18705
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18592
18706
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18593
18707
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18708
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18594
18709
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
18595
18710
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18596
18711
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18628,6 +18743,7 @@ declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
18628
18743
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18629
18744
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18630
18745
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18746
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18631
18747
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
18632
18748
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18633
18749
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18727,6 +18843,7 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18727
18843
|
revision: z.ZodOptional<z.ZodString>;
|
|
18728
18844
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18729
18845
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18846
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18730
18847
|
logoUri: z.ZodString;
|
|
18731
18848
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18732
18849
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18890,6 +19007,7 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
18890
19007
|
revision: z.ZodOptional<z.ZodString>;
|
|
18891
19008
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18892
19009
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19010
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18893
19011
|
logoUri: z.ZodString;
|
|
18894
19012
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18895
19013
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18995,6 +19113,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18995
19113
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18996
19114
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18997
19115
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19116
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18998
19117
|
revision: z.ZodString;
|
|
18999
19118
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19000
19119
|
webhookKey: z.ZodString;
|
|
@@ -19024,6 +19143,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
19024
19143
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19025
19144
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19026
19145
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19146
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
19027
19147
|
revision: z.ZodString;
|
|
19028
19148
|
appEventTypeId: z.ZodString;
|
|
19029
19149
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -19128,6 +19248,7 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
19128
19248
|
revision: z.ZodOptional<z.ZodString>;
|
|
19129
19249
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19130
19250
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19251
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
19131
19252
|
logoUri: z.ZodString;
|
|
19132
19253
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
19133
19254
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -21342,6 +21463,33 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21342
21463
|
engineAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
21343
21464
|
}, z.core.$strip>>>;
|
|
21344
21465
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21466
|
+
authContextPermissions: z.ZodOptional<z.ZodObject<{
|
|
21467
|
+
platformUser: z.ZodObject<{
|
|
21468
|
+
isEngineAdmin: z.ZodBoolean;
|
|
21469
|
+
isPlatformAdmin: z.ZodBoolean;
|
|
21470
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
21471
|
+
}, z.core.$strip>;
|
|
21472
|
+
org: z.ZodOptional<z.ZodObject<{
|
|
21473
|
+
orgId: z.ZodString;
|
|
21474
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
21475
|
+
admin: "admin";
|
|
21476
|
+
member: "member";
|
|
21477
|
+
}>>;
|
|
21478
|
+
canRead: z.ZodBoolean;
|
|
21479
|
+
canWrite: z.ZodBoolean;
|
|
21480
|
+
}, z.core.$strip>>;
|
|
21481
|
+
workspace: z.ZodOptional<z.ZodObject<{
|
|
21482
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21483
|
+
isWorkspaceManager: z.ZodBoolean;
|
|
21484
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
21485
|
+
}, z.core.$strip>>;
|
|
21486
|
+
tenant: z.ZodOptional<z.ZodObject<{
|
|
21487
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21488
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21489
|
+
canRead: z.ZodBoolean;
|
|
21490
|
+
canWrite: z.ZodBoolean;
|
|
21491
|
+
}, z.core.$strip>>;
|
|
21492
|
+
}, z.core.$strip>>;
|
|
21345
21493
|
featureFlags: z.ZodOptional<z.ZodAny>;
|
|
21346
21494
|
message: z.ZodOptional<z.ZodString>;
|
|
21347
21495
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -21356,6 +21504,64 @@ declare class SelfAccessor {
|
|
|
21356
21504
|
}>): Promise<CustomerApiResponse>;
|
|
21357
21505
|
}
|
|
21358
21506
|
|
|
21507
|
+
declare const PlatformUserPermissionsSchema: z.ZodObject<{
|
|
21508
|
+
isEngineAdmin: z.ZodBoolean;
|
|
21509
|
+
isPlatformAdmin: z.ZodBoolean;
|
|
21510
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
21511
|
+
}, z.core.$strip>;
|
|
21512
|
+
declare const OrgPermissionsSchema: z.ZodObject<{
|
|
21513
|
+
orgId: z.ZodString;
|
|
21514
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
21515
|
+
admin: "admin";
|
|
21516
|
+
member: "member";
|
|
21517
|
+
}>>;
|
|
21518
|
+
canRead: z.ZodBoolean;
|
|
21519
|
+
canWrite: z.ZodBoolean;
|
|
21520
|
+
}, z.core.$strip>;
|
|
21521
|
+
declare const WorkspacePermissionsSchema: z.ZodObject<{
|
|
21522
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21523
|
+
isWorkspaceManager: z.ZodBoolean;
|
|
21524
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
21525
|
+
}, z.core.$strip>;
|
|
21526
|
+
declare const TenantPermissionsSchema: z.ZodObject<{
|
|
21527
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21528
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21529
|
+
canRead: z.ZodBoolean;
|
|
21530
|
+
canWrite: z.ZodBoolean;
|
|
21531
|
+
}, z.core.$strip>;
|
|
21532
|
+
declare const AuthContextPermissionsSchema: z.ZodObject<{
|
|
21533
|
+
platformUser: z.ZodObject<{
|
|
21534
|
+
isEngineAdmin: z.ZodBoolean;
|
|
21535
|
+
isPlatformAdmin: z.ZodBoolean;
|
|
21536
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
21537
|
+
}, z.core.$strip>;
|
|
21538
|
+
org: z.ZodOptional<z.ZodObject<{
|
|
21539
|
+
orgId: z.ZodString;
|
|
21540
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
21541
|
+
admin: "admin";
|
|
21542
|
+
member: "member";
|
|
21543
|
+
}>>;
|
|
21544
|
+
canRead: z.ZodBoolean;
|
|
21545
|
+
canWrite: z.ZodBoolean;
|
|
21546
|
+
}, z.core.$strip>>;
|
|
21547
|
+
workspace: z.ZodOptional<z.ZodObject<{
|
|
21548
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21549
|
+
isWorkspaceManager: z.ZodBoolean;
|
|
21550
|
+
scopes: z.ZodArray<z.ZodString>;
|
|
21551
|
+
}, z.core.$strip>>;
|
|
21552
|
+
tenant: z.ZodOptional<z.ZodObject<{
|
|
21553
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
21554
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
21555
|
+
canRead: z.ZodBoolean;
|
|
21556
|
+
canWrite: z.ZodBoolean;
|
|
21557
|
+
}, z.core.$strip>>;
|
|
21558
|
+
}, z.core.$strip>;
|
|
21559
|
+
type PlatformUserPermissions = z.infer<typeof PlatformUserPermissionsSchema>;
|
|
21560
|
+
type OrgPermissions = z.infer<typeof OrgPermissionsSchema>;
|
|
21561
|
+
type WorkspacePermissions = z.infer<typeof WorkspacePermissionsSchema>;
|
|
21562
|
+
type TenantPermissions = z.infer<typeof TenantPermissionsSchema>;
|
|
21563
|
+
type AuthContextPermissions = z.infer<typeof AuthContextPermissionsSchema>;
|
|
21564
|
+
|
|
21359
21565
|
interface Self {
|
|
21360
21566
|
user: CustomerApiResponse;
|
|
21361
21567
|
workspace: OrgWorkspace;
|
|
@@ -22767,5 +22973,5 @@ declare function getDefaultMembraneConfigLoader(): MembraneConfigLoader;
|
|
|
22767
22973
|
declare function loadMembraneConfig(cwd?: string, options?: LoadConfigOptions): PartialMembraneConfig;
|
|
22768
22974
|
declare function hasMembraneCredentials(cwd?: string): boolean;
|
|
22769
22975
|
|
|
22770
|
-
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, CONFIG_FILE_NAME, 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, MembraneConfigLoader, 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, getDefaultMembraneConfigLoader, 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, hasMembraneCredentials, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, 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 };
|
|
22771
|
-
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, LoadConfigOptions, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneConfig, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgUser, Package, PartialMembraneConfig, 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 };
|
|
22976
|
+
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, CONFIG_FILE_NAME, 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, MembraneConfigLoader, 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, 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, getDefaultMembraneConfigLoader, 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, hasMembraneCredentials, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, 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 };
|
|
22977
|
+
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, LoadConfigOptions, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneConfig, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PartialMembraneConfig, 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 };
|