@membranehq/sdk 0.15.4 → 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 +69 -4
- package/dist/bundle.js +163 -6
- 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/api-client.d.ts +6 -2
- 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 +37 -0
- package/dist/dts/scenario-templates/index.d.ts +2 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +14 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +25 -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/customers-api.d.ts +1 -1
- 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 +3 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +6 -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 +2 -4
- package/dist/dts/workspace-elements/base/data-collections/schemas.d.ts +1 -1
- package/dist/dts/workspace-elements/base/data-link-tables/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/packages/index.d.ts +1 -0
- package/dist/dts/workspace-elements/types.d.ts +5 -0
- package/dist/dts/workspaces/types.d.ts +33 -1
- package/dist/index.browser.d.mts +309 -39
- package/dist/index.browser.d.ts +309 -39
- package/dist/index.browser.js +126 -9
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +124 -10
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +309 -39
- package/dist/index.node.d.ts +309 -39
- package/dist/index.node.js +126 -9
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +124 -10
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.d.ts
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,9 +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>;
|
|
678
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
679
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
670
680
|
userId: z.ZodOptional<z.ZodString>;
|
|
671
681
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
672
682
|
}, z.core.$strip>;
|
|
@@ -697,9 +707,12 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
697
707
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
698
708
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
699
709
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
710
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
700
711
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
701
712
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
702
713
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
714
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
715
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
703
716
|
userId: z.ZodOptional<z.ZodString>;
|
|
704
717
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
705
718
|
}, z.core.$strip>;
|
|
@@ -3612,9 +3625,7 @@ type ConnectorApiType = 'openapi' | 'graphql';
|
|
|
3612
3625
|
declare const ConnectorSpec: z.ZodObject<{
|
|
3613
3626
|
key: z.ZodOptional<z.ZodString>;
|
|
3614
3627
|
name: z.ZodOptional<z.ZodString>;
|
|
3615
|
-
appUri: z.ZodOptional<z.ZodString>;
|
|
3616
3628
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
3617
|
-
apiDocsUri: z.ZodOptional<z.ZodString>;
|
|
3618
3629
|
api: z.ZodOptional<z.ZodObject<{
|
|
3619
3630
|
type: z.ZodEnum<{
|
|
3620
3631
|
openapi: "openapi";
|
|
@@ -7240,8 +7251,6 @@ declare const BaseConnector: z.ZodObject<{
|
|
|
7240
7251
|
}, z.core.$strip>;
|
|
7241
7252
|
type BaseConnector = z.infer<typeof BaseConnector>;
|
|
7242
7253
|
declare const Connector: z.ZodObject<{
|
|
7243
|
-
appUri: z.ZodOptional<z.ZodString>;
|
|
7244
|
-
apiDocsUri: z.ZodOptional<z.ZodString>;
|
|
7245
7254
|
api: z.ZodOptional<z.ZodObject<{
|
|
7246
7255
|
type: z.ZodEnum<{
|
|
7247
7256
|
openapi: "openapi";
|
|
@@ -9243,6 +9252,8 @@ declare const MinimalConnector: z.ZodObject<{
|
|
|
9243
9252
|
key: z.ZodString;
|
|
9244
9253
|
name: z.ZodString;
|
|
9245
9254
|
logoUri: z.ZodString;
|
|
9255
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
9256
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
9246
9257
|
}, z.core.$strip>;
|
|
9247
9258
|
type MinimalConnector = z.infer<typeof MinimalConnector>;
|
|
9248
9259
|
|
|
@@ -9983,7 +9994,7 @@ declare const DataCollectionDeleteRequest: z.ZodObject<{
|
|
|
9983
9994
|
id: z.ZodString;
|
|
9984
9995
|
}, z.core.$strip>;
|
|
9985
9996
|
type DataCollectionDeleteRequest = z.infer<typeof DataCollectionDeleteRequest>;
|
|
9986
|
-
declare const DataCollectionDeleteResponse: z.
|
|
9997
|
+
declare const DataCollectionDeleteResponse: z.ZodUndefined;
|
|
9987
9998
|
type DataCollectionDeleteResponse = z.infer<typeof DataCollectionDeleteResponse>;
|
|
9988
9999
|
interface DataCollectionSubscribeRequest extends DataCollectionMethodRequest {
|
|
9989
10000
|
events?: {
|
|
@@ -10253,6 +10264,7 @@ declare const BaseDataSource: z.ZodObject<{
|
|
|
10253
10264
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10254
10265
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10255
10266
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
10267
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
10256
10268
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
10257
10269
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
10258
10270
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -10399,6 +10411,7 @@ declare const BaseDataSourceInstance: z.ZodObject<{
|
|
|
10399
10411
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
10400
10412
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10401
10413
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
10414
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
10402
10415
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
10403
10416
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
10404
10417
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -10990,6 +11003,7 @@ declare const BaseFlow: z.ZodObject<{
|
|
|
10990
11003
|
revision: z.ZodOptional<z.ZodString>;
|
|
10991
11004
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10992
11005
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11006
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
10993
11007
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
10994
11008
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
10995
11009
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -11055,6 +11069,7 @@ declare const BaseFlowInstance: z.ZodObject<{
|
|
|
11055
11069
|
revision: z.ZodOptional<z.ZodString>;
|
|
11056
11070
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11057
11071
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11072
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11058
11073
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
11059
11074
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
11060
11075
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -11154,6 +11169,7 @@ declare const BaseIntegration: z.ZodObject<{
|
|
|
11154
11169
|
revision: z.ZodOptional<z.ZodString>;
|
|
11155
11170
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11156
11171
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11172
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11157
11173
|
logoUri: z.ZodString;
|
|
11158
11174
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
11159
11175
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -11244,6 +11260,7 @@ declare const AppliedToIntegrations: <Element extends z.ZodType>(elementSchema:
|
|
|
11244
11260
|
revision: z.ZodOptional<z.ZodString>;
|
|
11245
11261
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11246
11262
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11263
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11247
11264
|
logoUri: z.ZodString;
|
|
11248
11265
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
11249
11266
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -11348,6 +11365,7 @@ declare const BasePackage: z.ZodObject<{
|
|
|
11348
11365
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11349
11366
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11350
11367
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11368
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11351
11369
|
uuid: z.ZodOptional<z.ZodString>;
|
|
11352
11370
|
description: z.ZodOptional<z.ZodString>;
|
|
11353
11371
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -11480,6 +11498,7 @@ declare const BaseDataLinkTable: z.ZodObject<{
|
|
|
11480
11498
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11481
11499
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11482
11500
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11501
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11483
11502
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11484
11503
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11485
11504
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11503,6 +11522,7 @@ declare const BaseDataLinkTableInstance: z.ZodObject<{
|
|
|
11503
11522
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11504
11523
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11505
11524
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11525
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11506
11526
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11507
11527
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11508
11528
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11535,6 +11555,7 @@ declare const BaseAppEventType: z.ZodObject<{
|
|
|
11535
11555
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11536
11556
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11537
11557
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11558
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11538
11559
|
revision: z.ZodString;
|
|
11539
11560
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11540
11561
|
webhookKey: z.ZodString;
|
|
@@ -11592,6 +11613,7 @@ declare const BaseAppEventSubscription: z.ZodObject<{
|
|
|
11592
11613
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11593
11614
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11594
11615
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11616
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11595
11617
|
revision: z.ZodString;
|
|
11596
11618
|
appEventTypeId: z.ZodString;
|
|
11597
11619
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -11653,6 +11675,7 @@ declare const BaseAppDataSchema: z.ZodObject<{
|
|
|
11653
11675
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11654
11676
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11655
11677
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11678
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11656
11679
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
11657
11680
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11658
11681
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11678,6 +11701,7 @@ declare const BaseAppDataSchemaInstance: z.ZodObject<{
|
|
|
11678
11701
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
11679
11702
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
11680
11703
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
11704
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
11681
11705
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
11682
11706
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
11683
11707
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12008,6 +12032,7 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
12008
12032
|
revision: z.ZodOptional<z.ZodString>;
|
|
12009
12033
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12010
12034
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12035
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12011
12036
|
logoUri: z.ZodString;
|
|
12012
12037
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12013
12038
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12093,6 +12118,7 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
12093
12118
|
revision: z.ZodOptional<z.ZodString>;
|
|
12094
12119
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12095
12120
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12121
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12096
12122
|
logoUri: z.ZodString;
|
|
12097
12123
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12098
12124
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12186,6 +12212,7 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12186
12212
|
revision: z.ZodOptional<z.ZodString>;
|
|
12187
12213
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12188
12214
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12215
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12189
12216
|
logoUri: z.ZodString;
|
|
12190
12217
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12191
12218
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12274,6 +12301,36 @@ type ConnectOptions = ConnectPayload & {
|
|
|
12274
12301
|
sameWindow?: boolean;
|
|
12275
12302
|
};
|
|
12276
12303
|
|
|
12304
|
+
declare enum LogRecordType {
|
|
12305
|
+
MSG = "message",
|
|
12306
|
+
TEXT = "text",
|
|
12307
|
+
ERR = "error",
|
|
12308
|
+
DATA = "data",
|
|
12309
|
+
COMP = "compare",
|
|
12310
|
+
API = "api-request"
|
|
12311
|
+
}
|
|
12312
|
+
interface LogRecord {
|
|
12313
|
+
type?: LogRecordType;
|
|
12314
|
+
msg?: string;
|
|
12315
|
+
data?: any;
|
|
12316
|
+
}
|
|
12317
|
+
|
|
12318
|
+
type WithExecutionLogs<T extends Record<string, any>> = T & {
|
|
12319
|
+
logs?: any[];
|
|
12320
|
+
};
|
|
12321
|
+
declare function isStream(obj: any): boolean;
|
|
12322
|
+
declare function streamToString(stream: Readable): Promise<string>;
|
|
12323
|
+
interface BlobLike {
|
|
12324
|
+
readonly size: number;
|
|
12325
|
+
readonly type: string;
|
|
12326
|
+
slice(start?: number, end?: number, contentType?: string): BlobLike;
|
|
12327
|
+
stream(): ReadableStream<Uint8Array> | NodeJS.ReadableStream;
|
|
12328
|
+
text(): Promise<string>;
|
|
12329
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
12330
|
+
}
|
|
12331
|
+
declare function isBlob(value: unknown): value is BlobLike;
|
|
12332
|
+
declare function truncateData(data: any, depth?: number): any;
|
|
12333
|
+
|
|
12277
12334
|
declare const axios: _axios.AxiosInstance;
|
|
12278
12335
|
interface MembraneClientOptions {
|
|
12279
12336
|
token?: string;
|
|
@@ -12289,6 +12346,7 @@ declare class MembraneApiClient {
|
|
|
12289
12346
|
uiUri: string;
|
|
12290
12347
|
token?: string;
|
|
12291
12348
|
protected fetchToken?: () => Promise<string>;
|
|
12349
|
+
private logs;
|
|
12292
12350
|
constructor(options?: MembraneClientOptions);
|
|
12293
12351
|
setCredentials(credentials: any): Promise<any>;
|
|
12294
12352
|
getToken(): Promise<string>;
|
|
@@ -12297,6 +12355,7 @@ declare class MembraneApiClient {
|
|
|
12297
12355
|
put<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
12298
12356
|
patch<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
12299
12357
|
delete<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
|
|
12358
|
+
retrieveLogs(): LogRecord[];
|
|
12300
12359
|
createEventSource(uri: string, queryParams?: Record<string, any>): Promise<EventSource>;
|
|
12301
12360
|
getEmbedUri(page: string, pageParams?: Record<string, any>, options?: {
|
|
12302
12361
|
embedMode: 'isolated-embed' | 'popup-embed';
|
|
@@ -12309,6 +12368,7 @@ declare class MembraneApiClient {
|
|
|
12309
12368
|
};
|
|
12310
12369
|
}>;
|
|
12311
12370
|
private makeApiRequest;
|
|
12371
|
+
private log;
|
|
12312
12372
|
private handleRequestError;
|
|
12313
12373
|
}
|
|
12314
12374
|
|
|
@@ -12595,6 +12655,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12595
12655
|
revision: z.ZodOptional<z.ZodString>;
|
|
12596
12656
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12597
12657
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12658
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12598
12659
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12599
12660
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
12600
12661
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -12647,6 +12708,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
12647
12708
|
revision: z.ZodOptional<z.ZodString>;
|
|
12648
12709
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12649
12710
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12711
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12650
12712
|
logoUri: z.ZodString;
|
|
12651
12713
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12652
12714
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12772,6 +12834,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
12772
12834
|
revision: z.ZodOptional<z.ZodString>;
|
|
12773
12835
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12774
12836
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12837
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12775
12838
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12776
12839
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
12777
12840
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -12824,6 +12887,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
12824
12887
|
revision: z.ZodOptional<z.ZodString>;
|
|
12825
12888
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12826
12889
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
12890
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12827
12891
|
logoUri: z.ZodString;
|
|
12828
12892
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12829
12893
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -12926,6 +12990,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12926
12990
|
revision: z.ZodOptional<z.ZodString>;
|
|
12927
12991
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12928
12992
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
12993
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12929
12994
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
12930
12995
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
12931
12996
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -12951,6 +13016,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
12951
13016
|
revision: z.ZodOptional<z.ZodString>;
|
|
12952
13017
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
12953
13018
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13019
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
12954
13020
|
logoUri: z.ZodString;
|
|
12955
13021
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
12956
13022
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13034,6 +13100,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13034
13100
|
revision: z.ZodOptional<z.ZodString>;
|
|
13035
13101
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13036
13102
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13103
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13037
13104
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13038
13105
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13039
13106
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13060,6 +13127,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13060
13127
|
revision: z.ZodOptional<z.ZodString>;
|
|
13061
13128
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13062
13129
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13130
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13063
13131
|
logoUri: z.ZodString;
|
|
13064
13132
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13065
13133
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13183,6 +13251,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
13183
13251
|
revision: z.ZodOptional<z.ZodString>;
|
|
13184
13252
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13185
13253
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13254
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13186
13255
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13187
13256
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13188
13257
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13249,6 +13318,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13249
13318
|
revision: z.ZodOptional<z.ZodString>;
|
|
13250
13319
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13251
13320
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13321
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13252
13322
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13253
13323
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13254
13324
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13274,6 +13344,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13274
13344
|
revision: z.ZodOptional<z.ZodString>;
|
|
13275
13345
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13276
13346
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13347
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13277
13348
|
logoUri: z.ZodString;
|
|
13278
13349
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13279
13350
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13357,6 +13428,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13357
13428
|
revision: z.ZodOptional<z.ZodString>;
|
|
13358
13429
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13359
13430
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13431
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13360
13432
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13361
13433
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13362
13434
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13383,6 +13455,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13383
13455
|
revision: z.ZodOptional<z.ZodString>;
|
|
13384
13456
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13385
13457
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13458
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13386
13459
|
logoUri: z.ZodString;
|
|
13387
13460
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13388
13461
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13506,6 +13579,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
13506
13579
|
revision: z.ZodOptional<z.ZodString>;
|
|
13507
13580
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13508
13581
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13582
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13509
13583
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
13510
13584
|
flowRevision: z.ZodOptional<z.ZodString>;
|
|
13511
13585
|
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
@@ -13542,6 +13616,7 @@ declare const FindFlowsQuery: z.ZodObject<{
|
|
|
13542
13616
|
}>>;
|
|
13543
13617
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
13544
13618
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
13619
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13545
13620
|
flowId: z.ZodOptional<z.ZodString>;
|
|
13546
13621
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
13547
13622
|
}, z.core.$strip>;
|
|
@@ -13733,6 +13808,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13733
13808
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13734
13809
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13735
13810
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
13811
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13736
13812
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13737
13813
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13738
13814
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -13863,6 +13939,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13863
13939
|
revision: z.ZodOptional<z.ZodString>;
|
|
13864
13940
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
13865
13941
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13942
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13866
13943
|
logoUri: z.ZodString;
|
|
13867
13944
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13868
13945
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -13922,6 +13999,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
13922
13999
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
13923
14000
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
13924
14001
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14002
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
13925
14003
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13926
14004
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
13927
14005
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14053,6 +14131,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14053
14131
|
revision: z.ZodOptional<z.ZodString>;
|
|
14054
14132
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14055
14133
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14134
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14056
14135
|
logoUri: z.ZodString;
|
|
14057
14136
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
14058
14137
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -14152,6 +14231,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
14152
14231
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14153
14232
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14154
14233
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14234
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14155
14235
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14156
14236
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14157
14237
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14301,6 +14381,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14301
14381
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14302
14382
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14303
14383
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14384
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14304
14385
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14305
14386
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14306
14387
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14431,6 +14512,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14431
14512
|
revision: z.ZodOptional<z.ZodString>;
|
|
14432
14513
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14433
14514
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14515
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14434
14516
|
logoUri: z.ZodString;
|
|
14435
14517
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
14436
14518
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -14490,6 +14572,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14490
14572
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14491
14573
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14492
14574
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14575
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14493
14576
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14494
14577
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14495
14578
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14621,6 +14704,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14621
14704
|
revision: z.ZodOptional<z.ZodString>;
|
|
14622
14705
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
14623
14706
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14707
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14624
14708
|
logoUri: z.ZodString;
|
|
14625
14709
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
14626
14710
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -14720,6 +14804,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
14720
14804
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
14721
14805
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
14722
14806
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
14807
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
14723
14808
|
dataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14724
14809
|
universalDataSourceRevision: z.ZodOptional<z.ZodString>;
|
|
14725
14810
|
defaultCollectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -14862,6 +14947,7 @@ declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
14862
14947
|
}>>;
|
|
14863
14948
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14864
14949
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14950
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14865
14951
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
14866
14952
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
14867
14953
|
}, z.core.$strip>;
|
|
@@ -14884,6 +14970,7 @@ declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
|
14884
14970
|
}>>;
|
|
14885
14971
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
14886
14972
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
14973
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
14887
14974
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
14888
14975
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
14889
14976
|
}, z.core.$strip>;
|
|
@@ -15209,6 +15296,7 @@ declare class ConnectionAccessor {
|
|
|
15209
15296
|
revision?: string | undefined;
|
|
15210
15297
|
createdAt?: string | undefined;
|
|
15211
15298
|
updatedAt?: string | undefined;
|
|
15299
|
+
isReadOnly?: boolean | undefined;
|
|
15212
15300
|
connectorId?: string | undefined;
|
|
15213
15301
|
connectorVersion?: string | undefined;
|
|
15214
15302
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -15372,6 +15460,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15372
15460
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15373
15461
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15374
15462
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15463
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15375
15464
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15376
15465
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15377
15466
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15393,6 +15482,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15393
15482
|
revision: z.ZodOptional<z.ZodString>;
|
|
15394
15483
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15395
15484
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15485
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15396
15486
|
logoUri: z.ZodString;
|
|
15397
15487
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15398
15488
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15459,6 +15549,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15459
15549
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15460
15550
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15461
15551
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15552
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15462
15553
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15463
15554
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15464
15555
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15481,6 +15572,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15481
15572
|
revision: z.ZodOptional<z.ZodString>;
|
|
15482
15573
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15483
15574
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15575
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15484
15576
|
logoUri: z.ZodString;
|
|
15485
15577
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15486
15578
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15587,6 +15679,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
15587
15679
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15588
15680
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15589
15681
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15682
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15590
15683
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15591
15684
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15592
15685
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15633,6 +15726,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15633
15726
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15634
15727
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15635
15728
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15729
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15636
15730
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15637
15731
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15638
15732
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15654,6 +15748,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15654
15748
|
revision: z.ZodOptional<z.ZodString>;
|
|
15655
15749
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15656
15750
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15751
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15657
15752
|
logoUri: z.ZodString;
|
|
15658
15753
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15659
15754
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15720,6 +15815,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15720
15815
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15721
15816
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15722
15817
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15818
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15723
15819
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15724
15820
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15725
15821
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15742,6 +15838,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15742
15838
|
revision: z.ZodOptional<z.ZodString>;
|
|
15743
15839
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
15744
15840
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15841
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15745
15842
|
logoUri: z.ZodString;
|
|
15746
15843
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
15747
15844
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -15848,6 +15945,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15848
15945
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
15849
15946
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
15850
15947
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
15948
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
15851
15949
|
fieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15852
15950
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15853
15951
|
dataSourceInstanceId: z.ZodOptional<z.ZodString>;
|
|
@@ -15878,6 +15976,7 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
15878
15976
|
}>>;
|
|
15879
15977
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15880
15978
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15979
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15881
15980
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15882
15981
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15883
15982
|
}, z.core.$strip>;
|
|
@@ -15900,6 +15999,7 @@ declare const FindFieldMappingInstancesQuery: z.ZodObject<{
|
|
|
15900
15999
|
}>>;
|
|
15901
16000
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
15902
16001
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
16002
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
15903
16003
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15904
16004
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15905
16005
|
}, z.core.$strip>;
|
|
@@ -16027,6 +16127,15 @@ interface FieldMappingInstanceSelector extends ConnectionSelector, FlowInstanceS
|
|
|
16027
16127
|
interface ListFieldMappingsForIntegrationQuery extends Omit<FindFieldMappingsQuery, 'integrationId' | 'integrationKey'> {
|
|
16028
16128
|
}
|
|
16029
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>;
|
|
16030
16139
|
|
|
16031
16140
|
declare class FieldMappingsAccessor extends ElementListAccessor<FieldMappingApiResponse, FindFieldMappingsQuery, CreateFieldMappingRequest> {
|
|
16032
16141
|
constructor(client: MembraneApiClient);
|
|
@@ -16090,6 +16199,7 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
16090
16199
|
}, z.core.$strip>;
|
|
16091
16200
|
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
16092
16201
|
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
16202
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
16093
16203
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
16094
16204
|
cursor: z.ZodOptional<z.ZodString>;
|
|
16095
16205
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -16138,6 +16248,7 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
16138
16248
|
revision: z.ZodOptional<z.ZodString>;
|
|
16139
16249
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16140
16250
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16251
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16141
16252
|
logoUri: z.ZodString;
|
|
16142
16253
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
16143
16254
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -16307,6 +16418,7 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
16307
16418
|
revision?: string | undefined;
|
|
16308
16419
|
createdAt?: string | undefined;
|
|
16309
16420
|
updatedAt?: string | undefined;
|
|
16421
|
+
isReadOnly?: boolean | undefined;
|
|
16310
16422
|
connectorId?: string | undefined;
|
|
16311
16423
|
connectorVersion?: string | undefined;
|
|
16312
16424
|
oAuthCallbackUri?: string | undefined;
|
|
@@ -16423,6 +16535,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16423
16535
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16424
16536
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16425
16537
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16538
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16426
16539
|
uuid: z.ZodOptional<z.ZodString>;
|
|
16427
16540
|
description: z.ZodOptional<z.ZodString>;
|
|
16428
16541
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -16457,6 +16570,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16457
16570
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16458
16571
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16459
16572
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16573
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16460
16574
|
uuid: z.ZodOptional<z.ZodString>;
|
|
16461
16575
|
description: z.ZodOptional<z.ZodString>;
|
|
16462
16576
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -16491,6 +16605,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
16491
16605
|
revision: z.ZodOptional<z.ZodString>;
|
|
16492
16606
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16493
16607
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16608
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16494
16609
|
logoUri: z.ZodString;
|
|
16495
16610
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
16496
16611
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -16603,7 +16718,7 @@ declare class ScreenAccessor extends ElementAccessor<ScreenApiResponse, UpdateSc
|
|
|
16603
16718
|
|
|
16604
16719
|
declare const CreateCustomerRequest: z.ZodObject<{
|
|
16605
16720
|
name: z.ZodString;
|
|
16606
|
-
internalId: z.ZodString
|
|
16721
|
+
internalId: z.ZodOptional<z.ZodString>;
|
|
16607
16722
|
fields: z.ZodOptional<z.ZodAny>;
|
|
16608
16723
|
credentials: z.ZodOptional<z.ZodAny>;
|
|
16609
16724
|
}, z.core.$strip>;
|
|
@@ -16738,6 +16853,7 @@ declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16738
16853
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16739
16854
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16740
16855
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16856
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16741
16857
|
revision: z.ZodString;
|
|
16742
16858
|
appEventTypeId: z.ZodString;
|
|
16743
16859
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -16767,6 +16883,7 @@ declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16767
16883
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16768
16884
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
16769
16885
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
16886
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16770
16887
|
revision: z.ZodString;
|
|
16771
16888
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
16772
16889
|
webhookKey: z.ZodString;
|
|
@@ -16924,6 +17041,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
16924
17041
|
revision: z.ZodOptional<z.ZodString>;
|
|
16925
17042
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
16926
17043
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17044
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
16927
17045
|
logoUri: z.ZodString;
|
|
16928
17046
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
16929
17047
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17063,6 +17181,7 @@ declare const ExternalEvent: z.ZodObject<{
|
|
|
17063
17181
|
revision: z.ZodOptional<z.ZodString>;
|
|
17064
17182
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17065
17183
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17184
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17066
17185
|
logoUri: z.ZodString;
|
|
17067
17186
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17068
17187
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17142,8 +17261,11 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17142
17261
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17143
17262
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17144
17263
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17264
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17145
17265
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17146
17266
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17267
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17268
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17147
17269
|
userId: z.ZodOptional<z.ZodString>;
|
|
17148
17270
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17149
17271
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -17158,6 +17280,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17158
17280
|
revision: z.ZodOptional<z.ZodString>;
|
|
17159
17281
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17160
17282
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17283
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17161
17284
|
logoUri: z.ZodString;
|
|
17162
17285
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17163
17286
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17230,9 +17353,12 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17230
17353
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17231
17354
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17232
17355
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17356
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17233
17357
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17234
17358
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17235
17359
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17360
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17361
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17236
17362
|
userId: z.ZodOptional<z.ZodString>;
|
|
17237
17363
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17238
17364
|
}, z.core.$strip>>;
|
|
@@ -17263,9 +17389,12 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17263
17389
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17264
17390
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17265
17391
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17392
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17266
17393
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17267
17394
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17268
17395
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17396
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17397
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17269
17398
|
userId: z.ZodOptional<z.ZodString>;
|
|
17270
17399
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17271
17400
|
}, z.core.$strip>;
|
|
@@ -17281,6 +17410,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
17281
17410
|
revision: z.ZodOptional<z.ZodString>;
|
|
17282
17411
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17283
17412
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17413
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17284
17414
|
logoUri: z.ZodString;
|
|
17285
17415
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17286
17416
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17341,6 +17471,7 @@ declare const FindActionsQuery: z.ZodObject<{
|
|
|
17341
17471
|
}>>;
|
|
17342
17472
|
parentId: z.ZodOptional<z.ZodString>;
|
|
17343
17473
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17474
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
17344
17475
|
}, z.core.$strip>;
|
|
17345
17476
|
type FindActionsQuery = z.infer<typeof FindActionsQuery>;
|
|
17346
17477
|
declare const CreateActionRequest: z.ZodObject<{
|
|
@@ -17461,8 +17592,11 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17461
17592
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17462
17593
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17463
17594
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17595
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17464
17596
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17465
17597
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17598
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17599
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17466
17600
|
userId: z.ZodOptional<z.ZodString>;
|
|
17467
17601
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17468
17602
|
integration: z.ZodOptional<z.ZodObject<{
|
|
@@ -17477,6 +17611,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17477
17611
|
revision: z.ZodOptional<z.ZodString>;
|
|
17478
17612
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17479
17613
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17614
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17480
17615
|
logoUri: z.ZodString;
|
|
17481
17616
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17482
17617
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17549,9 +17684,12 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17549
17684
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17550
17685
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17551
17686
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17687
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17552
17688
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17553
17689
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17554
17690
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17691
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17692
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17555
17693
|
userId: z.ZodOptional<z.ZodString>;
|
|
17556
17694
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17557
17695
|
}, z.core.$strip>>;
|
|
@@ -17582,9 +17720,12 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17582
17720
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17583
17721
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17584
17722
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17723
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17585
17724
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17586
17725
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17587
17726
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17727
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17728
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17588
17729
|
userId: z.ZodOptional<z.ZodString>;
|
|
17589
17730
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17590
17731
|
}, z.core.$strip>;
|
|
@@ -17600,6 +17741,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
17600
17741
|
revision: z.ZodOptional<z.ZodString>;
|
|
17601
17742
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17602
17743
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17744
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17603
17745
|
logoUri: z.ZodString;
|
|
17604
17746
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17605
17747
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17662,6 +17804,7 @@ declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
|
17662
17804
|
}>>;
|
|
17663
17805
|
parentId: z.ZodOptional<z.ZodString>;
|
|
17664
17806
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17807
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
17665
17808
|
}, z.core.$strip>;
|
|
17666
17809
|
type ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
17667
17810
|
declare const FindActionInstancesQuery: z.ZodObject<{
|
|
@@ -17684,6 +17827,7 @@ declare const FindActionInstancesQuery: z.ZodObject<{
|
|
|
17684
17827
|
}>>;
|
|
17685
17828
|
parentId: z.ZodOptional<z.ZodString>;
|
|
17686
17829
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17830
|
+
intent: z.ZodOptional<z.ZodString>;
|
|
17687
17831
|
}, z.core.$strip>;
|
|
17688
17832
|
type FindActionInstancesQuery = FindActionsQuery;
|
|
17689
17833
|
interface ActionSelector extends IntegrationSpecificElementSelector {
|
|
@@ -17732,9 +17876,12 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17732
17876
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17733
17877
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17734
17878
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17879
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17735
17880
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17736
17881
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17737
17882
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17883
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17884
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17738
17885
|
userId: z.ZodOptional<z.ZodString>;
|
|
17739
17886
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17740
17887
|
}, z.core.$strip>>;
|
|
@@ -17764,9 +17911,12 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17764
17911
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17765
17912
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17766
17913
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
17914
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17767
17915
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17768
17916
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17769
17917
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
17918
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
17919
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17770
17920
|
userId: z.ZodOptional<z.ZodString>;
|
|
17771
17921
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17772
17922
|
}, z.core.$strip>>;
|
|
@@ -17782,6 +17932,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
17782
17932
|
revision: z.ZodOptional<z.ZodString>;
|
|
17783
17933
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17784
17934
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17935
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17785
17936
|
logoUri: z.ZodString;
|
|
17786
17937
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17787
17938
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -17913,9 +18064,12 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17913
18064
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17914
18065
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17915
18066
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18067
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17916
18068
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17917
18069
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17918
18070
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18071
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
18072
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17919
18073
|
userId: z.ZodOptional<z.ZodString>;
|
|
17920
18074
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17921
18075
|
}, z.core.$strip>>;
|
|
@@ -17945,9 +18099,12 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17945
18099
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
17946
18100
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
17947
18101
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18102
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17948
18103
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
17949
18104
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
17950
18105
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
18106
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
18107
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
17951
18108
|
userId: z.ZodOptional<z.ZodString>;
|
|
17952
18109
|
tenantId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
17953
18110
|
}, z.core.$strip>>;
|
|
@@ -17963,6 +18120,7 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
17963
18120
|
revision: z.ZodOptional<z.ZodString>;
|
|
17964
18121
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
17965
18122
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18123
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
17966
18124
|
logoUri: z.ZodString;
|
|
17967
18125
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
17968
18126
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18152,6 +18310,7 @@ declare const DataLinkTableApiResponse: z.ZodObject<{
|
|
|
18152
18310
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18153
18311
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18154
18312
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18313
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18155
18314
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18156
18315
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18157
18316
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18270,6 +18429,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18270
18429
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18271
18430
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18272
18431
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18432
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18273
18433
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18274
18434
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18275
18435
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18291,6 +18451,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18291
18451
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18292
18452
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18293
18453
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18454
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18294
18455
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18295
18456
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18296
18457
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18335,6 +18496,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
18335
18496
|
revision: z.ZodOptional<z.ZodString>;
|
|
18336
18497
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18337
18498
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18499
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18338
18500
|
logoUri: z.ZodString;
|
|
18339
18501
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18340
18502
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18430,6 +18592,7 @@ declare const AppEventTypeApiResponse: z.ZodObject<{
|
|
|
18430
18592
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18431
18593
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18432
18594
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18595
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18433
18596
|
revision: z.ZodString;
|
|
18434
18597
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18435
18598
|
webhookKey: z.ZodString;
|
|
@@ -18491,6 +18654,7 @@ declare const AppDataSchemaApiResponse: z.ZodObject<{
|
|
|
18491
18654
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18492
18655
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18493
18656
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18657
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18494
18658
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
18495
18659
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18496
18660
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18541,6 +18705,7 @@ declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
18541
18705
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18542
18706
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18543
18707
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18708
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18544
18709
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
18545
18710
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18546
18711
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18578,6 +18743,7 @@ declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
18578
18743
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18579
18744
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18580
18745
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
18746
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18581
18747
|
appDataSchemaRevision: z.ZodOptional<z.ZodString>;
|
|
18582
18748
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18583
18749
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -18677,6 +18843,7 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18677
18843
|
revision: z.ZodOptional<z.ZodString>;
|
|
18678
18844
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18679
18845
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18846
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18680
18847
|
logoUri: z.ZodString;
|
|
18681
18848
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18682
18849
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18840,6 +19007,7 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
18840
19007
|
revision: z.ZodOptional<z.ZodString>;
|
|
18841
19008
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18842
19009
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19010
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18843
19011
|
logoUri: z.ZodString;
|
|
18844
19012
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
18845
19013
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -18945,6 +19113,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18945
19113
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18946
19114
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18947
19115
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19116
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18948
19117
|
revision: z.ZodString;
|
|
18949
19118
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
18950
19119
|
webhookKey: z.ZodString;
|
|
@@ -18974,6 +19143,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
18974
19143
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
18975
19144
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
18976
19145
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
19146
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
18977
19147
|
revision: z.ZodString;
|
|
18978
19148
|
appEventTypeId: z.ZodString;
|
|
18979
19149
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
@@ -19078,6 +19248,7 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
19078
19248
|
revision: z.ZodOptional<z.ZodString>;
|
|
19079
19249
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
19080
19250
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
19251
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
19081
19252
|
logoUri: z.ZodString;
|
|
19082
19253
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
19083
19254
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
@@ -19716,7 +19887,9 @@ declare enum RateLimits {
|
|
|
19716
19887
|
WorkspaceElementCreationsPerSecond = "workspaceElementCreationsPerSecond",
|
|
19717
19888
|
WorkspaceElementCreationsPerHour = "workspaceElementCreationsPerHour",
|
|
19718
19889
|
WorkspaceElementSearchIndexingPerMinute = "workspaceElementSearchIndexingPerMinute",
|
|
19719
|
-
ExternalEventsPerCustomerPerDay = "externalEventsPerCustomerPerDay"
|
|
19890
|
+
ExternalEventsPerCustomerPerDay = "externalEventsPerCustomerPerDay",
|
|
19891
|
+
McpOAuthAuthorizationsPerHour = "mcpOAuthAuthorizationsPerHour",
|
|
19892
|
+
McpOAuthTokensPerHour = "mcpOAuthTokensPerHour"
|
|
19720
19893
|
}
|
|
19721
19894
|
declare enum WorkspaceSizeLimits {
|
|
19722
19895
|
TotalNumberOfCustomers = "totalNumberOfCustomers",
|
|
@@ -19868,6 +20041,16 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
19868
20041
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
19869
20042
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
19870
20043
|
}, z$1.core.$strip>>;
|
|
20044
|
+
mcpOAuthAuthorizationsPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
20045
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20046
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20047
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20048
|
+
}, z$1.core.$strip>>;
|
|
20049
|
+
mcpOAuthTokensPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
20050
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20051
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20052
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20053
|
+
}, z$1.core.$strip>>;
|
|
19871
20054
|
totalNumberOfCustomers: z$1.ZodOptional<z$1.ZodObject<{
|
|
19872
20055
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
19873
20056
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -20101,6 +20284,16 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
20101
20284
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20102
20285
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20103
20286
|
}, z$1.core.$strip>>;
|
|
20287
|
+
mcpOAuthAuthorizationsPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
20288
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20289
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20290
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20291
|
+
}, z$1.core.$strip>>;
|
|
20292
|
+
mcpOAuthTokensPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
20293
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20294
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20295
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20296
|
+
}, z$1.core.$strip>>;
|
|
20104
20297
|
totalNumberOfCustomers: z$1.ZodOptional<z$1.ZodObject<{
|
|
20105
20298
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20106
20299
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -20356,6 +20549,16 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
20356
20549
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20357
20550
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20358
20551
|
}, z$1.core.$strip>>;
|
|
20552
|
+
mcpOAuthAuthorizationsPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
20553
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20554
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20555
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20556
|
+
}, z$1.core.$strip>>;
|
|
20557
|
+
mcpOAuthTokensPerHour: z$1.ZodOptional<z$1.ZodObject<{
|
|
20558
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20559
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20560
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
20561
|
+
}, z$1.core.$strip>>;
|
|
20359
20562
|
totalNumberOfCustomers: z$1.ZodOptional<z$1.ZodObject<{
|
|
20360
20563
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
20361
20564
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -21089,6 +21292,16 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21089
21292
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21090
21293
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21091
21294
|
}, z.core.$strip>>;
|
|
21295
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
21296
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
21297
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21298
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21299
|
+
}, z.core.$strip>>;
|
|
21300
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
21301
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
21302
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
21303
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
21304
|
+
}, z.core.$strip>>;
|
|
21092
21305
|
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
21093
21306
|
value: z.ZodOptional<z.ZodNumber>;
|
|
21094
21307
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -21250,6 +21463,33 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
21250
21463
|
engineAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
21251
21464
|
}, z.core.$strip>>>;
|
|
21252
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>>;
|
|
21253
21493
|
featureFlags: z.ZodOptional<z.ZodAny>;
|
|
21254
21494
|
message: z.ZodOptional<z.ZodString>;
|
|
21255
21495
|
error: z.ZodOptional<z.ZodString>;
|
|
@@ -21264,6 +21504,64 @@ declare class SelfAccessor {
|
|
|
21264
21504
|
}>): Promise<CustomerApiResponse>;
|
|
21265
21505
|
}
|
|
21266
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
|
+
|
|
21267
21565
|
interface Self {
|
|
21268
21566
|
user: CustomerApiResponse;
|
|
21269
21567
|
workspace: OrgWorkspace;
|
|
@@ -21935,36 +22233,6 @@ declare const WorkspaceElementsStatsSchema: z.ZodObject<{
|
|
|
21935
22233
|
}, z.core.$strip>;
|
|
21936
22234
|
type WorkspaceElementsStats = z.infer<typeof WorkspaceElementsStatsSchema>;
|
|
21937
22235
|
|
|
21938
|
-
declare enum LogRecordType {
|
|
21939
|
-
MSG = "message",
|
|
21940
|
-
TEXT = "text",
|
|
21941
|
-
ERR = "error",
|
|
21942
|
-
DATA = "data",
|
|
21943
|
-
COMP = "compare",
|
|
21944
|
-
API = "api-request"
|
|
21945
|
-
}
|
|
21946
|
-
interface LogRecord {
|
|
21947
|
-
type?: LogRecordType;
|
|
21948
|
-
msg?: string;
|
|
21949
|
-
data?: any;
|
|
21950
|
-
}
|
|
21951
|
-
|
|
21952
|
-
type WithExecutionLogs<T extends Record<string, any>> = T & {
|
|
21953
|
-
logs?: any[];
|
|
21954
|
-
};
|
|
21955
|
-
declare function isStream(obj: any): boolean;
|
|
21956
|
-
declare function streamToString(stream: Readable): Promise<string>;
|
|
21957
|
-
interface BlobLike {
|
|
21958
|
-
readonly size: number;
|
|
21959
|
-
readonly type: string;
|
|
21960
|
-
slice(start?: number, end?: number, contentType?: string): BlobLike;
|
|
21961
|
-
stream(): ReadableStream<Uint8Array> | NodeJS.ReadableStream;
|
|
21962
|
-
text(): Promise<string>;
|
|
21963
|
-
arrayBuffer(): Promise<ArrayBuffer>;
|
|
21964
|
-
}
|
|
21965
|
-
declare function isBlob(value: unknown): value is BlobLike;
|
|
21966
|
-
declare function truncateData(data: any, depth?: number): any;
|
|
21967
|
-
|
|
21968
22236
|
declare enum UsageType {
|
|
21969
22237
|
FLOW_RUNS_DURATION = "flow-runs-duration",
|
|
21970
22238
|
FLOW_RUNS_LOG_NUMBER = "flow-runs-log-number",
|
|
@@ -22234,6 +22502,8 @@ declare const ScenarioTemplate: z.ZodObject<{
|
|
|
22234
22502
|
key: z.ZodString;
|
|
22235
22503
|
name: z.ZodString;
|
|
22236
22504
|
logoUri: z.ZodString;
|
|
22505
|
+
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
22506
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
22237
22507
|
}, z.core.$strip>>>;
|
|
22238
22508
|
handyElements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22239
22509
|
type: z.ZodString;
|
|
@@ -22669,5 +22939,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
22669
22939
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
22670
22940
|
}
|
|
22671
22941
|
|
|
22672
|
-
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExport, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateConnectionRequest, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, StatsFilterQuery, TenantLayerElement, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
22673
|
-
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|
|
22942
|
+
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExport, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateConnectionRequest, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, StatsFilterQuery, TenantLayerElement, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
22943
|
+
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|