@membranehq/sdk 0.22.5 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +19 -1
- package/dist/bundle.js.map +1 -1
- package/dist/dts/alerts/types.d.ts +7 -0
- package/dist/dts/membrane-instances/types.d.ts +38 -0
- package/dist/dts/org-instances/types.d.ts +9 -4
- package/dist/dts/orgs/types.d.ts +146 -7
- package/dist/dts/stats/index.d.ts +2 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +1 -1
- package/dist/dts/workspace-elements-catalog/index.d.ts +1 -0
- package/dist/dts/workspaces/api.d.ts +308 -5
- package/dist/dts/workspaces/types.d.ts +18 -0
- package/dist/index.browser.d.mts +529 -19
- package/dist/index.browser.d.ts +529 -19
- package/dist/index.browser.js +199 -31
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +185 -32
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +529 -19
- package/dist/index.node.d.ts +529 -19
- package/dist/index.node.js +199 -31
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +185 -32
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.d.mts
CHANGED
|
@@ -12500,7 +12500,7 @@ declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
12500
12500
|
}, z.core.$strip>;
|
|
12501
12501
|
type FindConnectionsQuery = z.infer<typeof FindConnectionsQuery>;
|
|
12502
12502
|
declare const EnsureConnectionRequest: z.ZodObject<{
|
|
12503
|
-
|
|
12503
|
+
appUrl: z.ZodString;
|
|
12504
12504
|
name: z.ZodOptional<z.ZodString>;
|
|
12505
12505
|
}, z.core.$strip>;
|
|
12506
12506
|
type EnsureConnectionRequest = z.infer<typeof EnsureConnectionRequest>;
|
|
@@ -20647,6 +20647,7 @@ declare function getEditablePathsFromSchema(schema: z.ZodTypeAny, prefix?: strin
|
|
|
20647
20647
|
interface WorkspaceElementSpec {
|
|
20648
20648
|
type: WorkspaceElementType;
|
|
20649
20649
|
apiPath: string;
|
|
20650
|
+
collectionName?: string;
|
|
20650
20651
|
name: string;
|
|
20651
20652
|
namePlural: string;
|
|
20652
20653
|
createSchema?: z.ZodObject;
|
|
@@ -20726,6 +20727,7 @@ declare enum AlertType {
|
|
|
20726
20727
|
totalNumberOfCustomers = "totalNumberOfCustomers",
|
|
20727
20728
|
totalNumberOfConnections = "totalNumberOfConnections",
|
|
20728
20729
|
totalNumberOfWorkspaceElements = "totalNumberOfWorkspaceElements",
|
|
20730
|
+
totalNumberOfWorkspaceDatabaseRecords = "totalNumberOfWorkspaceDatabaseRecords",
|
|
20729
20731
|
instantTasksQueueSize = "instantTasksQueueSize",
|
|
20730
20732
|
queuedTasksQueueSize = "queuedTasksQueueSize",
|
|
20731
20733
|
flowRunsQueueSizePerConnection = "flowRunsQueueSizePerConnection",
|
|
@@ -20762,6 +20764,7 @@ declare const ALERT_TYPE_CATEGORIES: {
|
|
|
20762
20764
|
readonly totalNumberOfCustomers: AlertCategory.WORKSPACE_SIZE;
|
|
20763
20765
|
readonly totalNumberOfConnections: AlertCategory.WORKSPACE_SIZE;
|
|
20764
20766
|
readonly totalNumberOfWorkspaceElements: AlertCategory.WORKSPACE_SIZE;
|
|
20767
|
+
readonly totalNumberOfWorkspaceDatabaseRecords: AlertCategory.WORKSPACE_SIZE;
|
|
20765
20768
|
readonly instantTasksQueueSize: AlertCategory.WORKSPACE_SIZE;
|
|
20766
20769
|
readonly queuedTasksQueueSize: AlertCategory.WORKSPACE_SIZE;
|
|
20767
20770
|
readonly flowRunsQueueSizePerConnection: AlertCategory.WORKSPACE_SIZE;
|
|
@@ -20805,6 +20808,7 @@ declare const Alert: z.ZodObject<{
|
|
|
20805
20808
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20806
20809
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
20807
20810
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20811
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
20808
20812
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20809
20813
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
20810
20814
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -20854,6 +20858,7 @@ declare const AlertSchema: z.ZodObject<{
|
|
|
20854
20858
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20855
20859
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
20856
20860
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20861
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
20857
20862
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20858
20863
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
20859
20864
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -20912,6 +20917,7 @@ declare const AlertDeliverySettingsSchema: z.ZodObject<{
|
|
|
20912
20917
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20913
20918
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
20914
20919
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20920
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
20915
20921
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20916
20922
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
20917
20923
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -20962,6 +20968,7 @@ declare const FindAlertsQuery: z.ZodObject<{
|
|
|
20962
20968
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20963
20969
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
20964
20970
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
20971
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
20965
20972
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
20966
20973
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
20967
20974
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -20997,6 +21004,7 @@ declare const CreateAlert: z.ZodObject<{
|
|
|
20997
21004
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
20998
21005
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
20999
21006
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
21007
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
21000
21008
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
21001
21009
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
21002
21010
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -21023,12 +21031,6 @@ declare function isDeliveryMethodEnabled(settings: AlertTypeDeliverySettings, me
|
|
|
21023
21031
|
declare function getAlertCategoryDisplayName(category: AlertCategory): string;
|
|
21024
21032
|
declare function getAlertTypesByCategory(category: AlertCategory): readonly AlertType[];
|
|
21025
21033
|
|
|
21026
|
-
interface IWorkspaceUpdate {
|
|
21027
|
-
apiBaseUri?: string;
|
|
21028
|
-
apiRequestHeaders: Record<string, any>;
|
|
21029
|
-
apiRequestQuery: Record<string, any>;
|
|
21030
|
-
}
|
|
21031
|
-
|
|
21032
21034
|
declare enum WorkspaceType {
|
|
21033
21035
|
PRODUCTION = "production",
|
|
21034
21036
|
DEVELOPMENT = "development"
|
|
@@ -21070,6 +21072,7 @@ declare enum WorkspaceSizeLimits {
|
|
|
21070
21072
|
TotalNumberOfCustomers = "totalNumberOfCustomers",
|
|
21071
21073
|
TotalNumberOfConnections = "totalNumberOfConnections",
|
|
21072
21074
|
TotalNumberOfWorkspaceElements = "totalNumberOfWorkspaceElements",
|
|
21075
|
+
TotalNumberOfWorkspaceDatabaseRecords = "totalNumberOfWorkspaceDatabaseRecords",
|
|
21073
21076
|
InstantTasksQueueSize = "instantTasksQueueSize",
|
|
21074
21077
|
QueuedTasksQueueSize = "queuedTasksQueueSize",
|
|
21075
21078
|
FlowRunsQueueSizePerConnection = "flowRunsQueueSizePerConnection",
|
|
@@ -21243,6 +21246,11 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
21243
21246
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21244
21247
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21245
21248
|
}, z$1.core.$strip>>;
|
|
21249
|
+
totalNumberOfWorkspaceDatabaseRecords: z$1.ZodOptional<z$1.ZodObject<{
|
|
21250
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21251
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21252
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21253
|
+
}, z$1.core.$strip>>;
|
|
21246
21254
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
21247
21255
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21248
21256
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -21488,6 +21496,11 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21488
21496
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21489
21497
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21490
21498
|
}, z$1.core.$strip>>;
|
|
21499
|
+
totalNumberOfWorkspaceDatabaseRecords: z$1.ZodOptional<z$1.ZodObject<{
|
|
21500
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21501
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21502
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21503
|
+
}, z$1.core.$strip>>;
|
|
21491
21504
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
21492
21505
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21493
21506
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -21574,6 +21587,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21574
21587
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21575
21588
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
21576
21589
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
21590
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
21577
21591
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
21578
21592
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
21579
21593
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -21757,6 +21771,11 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21757
21771
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21758
21772
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21759
21773
|
}, z$1.core.$strip>>;
|
|
21774
|
+
totalNumberOfWorkspaceDatabaseRecords: z$1.ZodOptional<z$1.ZodObject<{
|
|
21775
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21776
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21777
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21778
|
+
}, z$1.core.$strip>>;
|
|
21760
21779
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
21761
21780
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21762
21781
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -21843,6 +21862,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21843
21862
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21844
21863
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
21845
21864
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
21865
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
21846
21866
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
21847
21867
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
21848
21868
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -21894,6 +21914,313 @@ interface CopilotActivityNotificationData {
|
|
|
21894
21914
|
scopes: string[];
|
|
21895
21915
|
}
|
|
21896
21916
|
|
|
21917
|
+
declare const CreateWorkspaceRequest: z.ZodObject<{
|
|
21918
|
+
workspaceKey: z.ZodString;
|
|
21919
|
+
workspaceSecret: z.ZodString;
|
|
21920
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
21921
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
21922
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21923
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21924
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21925
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21926
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21927
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21928
|
+
}, z.core.$strip>>;
|
|
21929
|
+
}, z.core.$strip>;
|
|
21930
|
+
type CreateWorkspaceRequest = z.infer<typeof CreateWorkspaceRequest>;
|
|
21931
|
+
declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
21932
|
+
name: z.ZodOptional<z.ZodString>;
|
|
21933
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
21934
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
21935
|
+
auth: z.ZodOptional<z.ZodAny>;
|
|
21936
|
+
credentialsSchema: z.ZodOptional<z.ZodAny>;
|
|
21937
|
+
apiClient: z.ZodOptional<z.ZodAny>;
|
|
21938
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21939
|
+
name: z.ZodString;
|
|
21940
|
+
publicKey: z.ZodString;
|
|
21941
|
+
}, z.core.$strip>>>;
|
|
21942
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
21943
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
21944
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21945
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
21946
|
+
apiRequestHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
21947
|
+
apiRequestQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
21948
|
+
archivedAt: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>>;
|
|
21949
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
21950
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21951
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21952
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21953
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21954
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21955
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21956
|
+
}, z.core.$strip>>;
|
|
21957
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
21958
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
21959
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
21960
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
21961
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
21962
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
21963
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
21964
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
21965
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
21966
|
+
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
21967
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
21968
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
21969
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
21970
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
21971
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
21972
|
+
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
21973
|
+
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
21974
|
+
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
21975
|
+
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
21976
|
+
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21977
|
+
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
21978
|
+
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
21979
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
21980
|
+
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
21981
|
+
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
21982
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
21983
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
21984
|
+
parallelApiRequests: AlertType.parallelApiRequests;
|
|
21985
|
+
testAlert: AlertType.testAlert;
|
|
21986
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
21987
|
+
internal: z.ZodLiteral<true>;
|
|
21988
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
21989
|
+
enabled: z.ZodBoolean;
|
|
21990
|
+
}, z.core.$strip>>;
|
|
21991
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
21992
|
+
enabled: z.ZodBoolean;
|
|
21993
|
+
}, z.core.$strip>>;
|
|
21994
|
+
}, z.core.$strip>>>>;
|
|
21995
|
+
}, z.core.$strip>>;
|
|
21996
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
21997
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21998
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21999
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
22000
|
+
}, z.core.$strip>;
|
|
22001
|
+
type UpdateWorkspaceRequest = z.infer<typeof UpdateWorkspaceRequest>;
|
|
22002
|
+
declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
|
|
22003
|
+
parallelEventPulls: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22004
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22005
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22006
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22007
|
+
}, z.core.$strip>>>;
|
|
22008
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22009
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22010
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22011
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22012
|
+
}, z.core.$strip>>>;
|
|
22013
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22014
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22015
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22016
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22017
|
+
}, z.core.$strip>>>;
|
|
22018
|
+
parallelFlowRuns: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22019
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22020
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22021
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22022
|
+
}, z.core.$strip>>>;
|
|
22023
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22024
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22025
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22026
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22027
|
+
}, z.core.$strip>>>;
|
|
22028
|
+
parallelApiRequests: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22029
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22030
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22031
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22032
|
+
}, z.core.$strip>>>;
|
|
22033
|
+
parallelSseRequests: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22034
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22035
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22036
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22037
|
+
}, z.core.$strip>>>;
|
|
22038
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22039
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22040
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22041
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22042
|
+
}, z.core.$strip>>>;
|
|
22043
|
+
parallelEventLogs: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22044
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22045
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22046
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22047
|
+
}, z.core.$strip>>>;
|
|
22048
|
+
parallelEventLogsPerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22049
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22050
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22051
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22052
|
+
}, z.core.$strip>>>;
|
|
22053
|
+
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22054
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22055
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22056
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22057
|
+
}, z.core.$strip>>>;
|
|
22058
|
+
parallelPathfinderAgentSessions: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22059
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22060
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22061
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22062
|
+
}, z.core.$strip>>>;
|
|
22063
|
+
parallelCustomCodeRuns: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22064
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22065
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22066
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22067
|
+
}, z.core.$strip>>>;
|
|
22068
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22069
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22070
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22071
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22072
|
+
}, z.core.$strip>>>;
|
|
22073
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22074
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22075
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22076
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22077
|
+
}, z.core.$strip>>>;
|
|
22078
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22079
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22080
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22081
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22082
|
+
}, z.core.$strip>>>;
|
|
22083
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22084
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22085
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22086
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22087
|
+
}, z.core.$strip>>>;
|
|
22088
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22089
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22090
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22091
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22092
|
+
}, z.core.$strip>>>;
|
|
22093
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22094
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22095
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22096
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22097
|
+
}, z.core.$strip>>>;
|
|
22098
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22099
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22100
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22101
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22102
|
+
}, z.core.$strip>>>;
|
|
22103
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22104
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22105
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22106
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22107
|
+
}, z.core.$strip>>>;
|
|
22108
|
+
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22109
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22110
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22111
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22112
|
+
}, z.core.$strip>>>;
|
|
22113
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22114
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22115
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22116
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22117
|
+
}, z.core.$strip>>>;
|
|
22118
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22119
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22120
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22121
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22122
|
+
}, z.core.$strip>>>;
|
|
22123
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22124
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22125
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22126
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22127
|
+
}, z.core.$strip>>>;
|
|
22128
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22129
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22130
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22131
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22132
|
+
}, z.core.$strip>>>;
|
|
22133
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22134
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22135
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22136
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22137
|
+
}, z.core.$strip>>>;
|
|
22138
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22139
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22140
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22141
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22142
|
+
}, z.core.$strip>>>;
|
|
22143
|
+
instantTasksQueueSize: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22144
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22145
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22146
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22147
|
+
}, z.core.$strip>>>;
|
|
22148
|
+
QueuedTasksQueueSize: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22149
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22150
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22151
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22152
|
+
}, z.core.$strip>>>;
|
|
22153
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22154
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22155
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22156
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22157
|
+
}, z.core.$strip>>>;
|
|
22158
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22159
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22160
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22161
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22162
|
+
}, z.core.$strip>>>;
|
|
22163
|
+
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22164
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22165
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22166
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22167
|
+
}, z.core.$strip>>>;
|
|
22168
|
+
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22169
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22170
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22171
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22172
|
+
}, z.core.$strip>>>;
|
|
22173
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22174
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22175
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22176
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22177
|
+
}, z.core.$strip>>>;
|
|
22178
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22179
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22180
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22181
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22182
|
+
}, z.core.$strip>>>;
|
|
22183
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22184
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22185
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22186
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22187
|
+
}, z.core.$strip>>>;
|
|
22188
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22189
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22190
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22191
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22192
|
+
}, z.core.$strip>>>;
|
|
22193
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22194
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22195
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22196
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22197
|
+
}, z.core.$strip>>>;
|
|
22198
|
+
}, z.core.$strip>;
|
|
22199
|
+
type UpdateWorkspaceLimitsRequest = z.infer<typeof UpdateWorkspaceLimitsRequest>;
|
|
22200
|
+
declare const GenerateWorkspaceAccessTokenRequest: z.ZodObject<{
|
|
22201
|
+
isAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
22202
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
22203
|
+
tenantKey: z.ZodOptional<z.ZodString>;
|
|
22204
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22205
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
22206
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
22207
|
+
}, z.core.$strip>;
|
|
22208
|
+
type GenerateWorkspaceAccessTokenRequest = z.infer<typeof GenerateWorkspaceAccessTokenRequest>;
|
|
22209
|
+
declare const GenerateWorkspaceAccessTokenResponse: z.ZodObject<{
|
|
22210
|
+
token: z.ZodString;
|
|
22211
|
+
}, z.core.$strip>;
|
|
22212
|
+
type GenerateWorkspaceAccessTokenResponse = z.infer<typeof GenerateWorkspaceAccessTokenResponse>;
|
|
22213
|
+
declare const ListWorkspacesQuery: z.ZodObject<{
|
|
22214
|
+
orgId: z.ZodOptional<z.ZodString>;
|
|
22215
|
+
workspaceKey: z.ZodOptional<z.ZodString>;
|
|
22216
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
22217
|
+
}, z.core.$strip>;
|
|
22218
|
+
type ListWorkspacesQuery = z.infer<typeof ListWorkspacesQuery>;
|
|
22219
|
+
declare const GetWorkspaceQuery: z.ZodObject<{
|
|
22220
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
22221
|
+
}, z.core.$strip>;
|
|
22222
|
+
type GetWorkspaceQuery = z.infer<typeof GetWorkspaceQuery>;
|
|
22223
|
+
|
|
21897
22224
|
declare const PARALLEL_EXECUTION_LIMITS: string[];
|
|
21898
22225
|
declare const RATE_LIMITS: string[];
|
|
21899
22226
|
declare const WORKSPACE_SIZE_LIMITS: string[];
|
|
@@ -22084,8 +22411,8 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
22084
22411
|
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22085
22412
|
key: z.ZodString;
|
|
22086
22413
|
secret: z.ZodString;
|
|
22087
|
-
createdAt: z.
|
|
22088
|
-
updatedAt: z.
|
|
22414
|
+
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22415
|
+
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22089
22416
|
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22090
22417
|
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22091
22418
|
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -22094,6 +22421,127 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
22094
22421
|
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
22095
22422
|
}, z.core.$strip>;
|
|
22096
22423
|
type OrgWorkspace = z.infer<typeof OrgWorkspace>;
|
|
22424
|
+
declare const WorkspaceEditableFields: z.ZodObject<{
|
|
22425
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
22426
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22427
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22428
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22429
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22430
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22431
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22432
|
+
}, z.core.$strip>>;
|
|
22433
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22434
|
+
name: z.ZodString;
|
|
22435
|
+
publicKey: z.ZodString;
|
|
22436
|
+
}, z.core.$strip>>>;
|
|
22437
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
22438
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
22439
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22440
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
22441
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
22442
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
22443
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
22444
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
22445
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
22446
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
22447
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
22448
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
22449
|
+
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
22450
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
22451
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
22452
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
22453
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
22454
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
22455
|
+
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22456
|
+
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22457
|
+
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22458
|
+
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22459
|
+
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22460
|
+
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
22461
|
+
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
22462
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
22463
|
+
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
22464
|
+
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22465
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
22466
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
22467
|
+
parallelApiRequests: AlertType.parallelApiRequests;
|
|
22468
|
+
testAlert: AlertType.testAlert;
|
|
22469
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
22470
|
+
internal: z.ZodLiteral<true>;
|
|
22471
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
22472
|
+
enabled: z.ZodBoolean;
|
|
22473
|
+
}, z.core.$strip>>;
|
|
22474
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
22475
|
+
enabled: z.ZodBoolean;
|
|
22476
|
+
}, z.core.$strip>>;
|
|
22477
|
+
}, z.core.$strip>>>>;
|
|
22478
|
+
}, z.core.$strip>>;
|
|
22479
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22480
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22481
|
+
}, z.core.$strip>;
|
|
22482
|
+
type WorkspaceEditableFields = z.infer<typeof WorkspaceEditableFields>;
|
|
22483
|
+
declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
22484
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22485
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
22486
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22487
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
22488
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22489
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22490
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22491
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22492
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22493
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22494
|
+
}, z.core.$strip>>;
|
|
22495
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22496
|
+
name: z.ZodString;
|
|
22497
|
+
publicKey: z.ZodString;
|
|
22498
|
+
}, z.core.$strip>>>;
|
|
22499
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
22500
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
22501
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22502
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
22503
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
22504
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
22505
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
22506
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
22507
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
22508
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
22509
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
22510
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
22511
|
+
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
22512
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
22513
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
22514
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
22515
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
22516
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
22517
|
+
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22518
|
+
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22519
|
+
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22520
|
+
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22521
|
+
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22522
|
+
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
22523
|
+
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
22524
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
22525
|
+
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
22526
|
+
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22527
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
22528
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
22529
|
+
parallelApiRequests: AlertType.parallelApiRequests;
|
|
22530
|
+
testAlert: AlertType.testAlert;
|
|
22531
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
22532
|
+
internal: z.ZodLiteral<true>;
|
|
22533
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
22534
|
+
enabled: z.ZodBoolean;
|
|
22535
|
+
}, z.core.$strip>>;
|
|
22536
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
22537
|
+
enabled: z.ZodBoolean;
|
|
22538
|
+
}, z.core.$strip>>;
|
|
22539
|
+
}, z.core.$strip>>>>;
|
|
22540
|
+
}, z.core.$strip>>;
|
|
22541
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22542
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22543
|
+
}, z.core.$strip>;
|
|
22544
|
+
type OrgWorkspaceUpdateRequest = z.infer<typeof OrgWorkspaceUpdateRequest>;
|
|
22097
22545
|
declare const OrgWorkspaceUser: z.ZodObject<{
|
|
22098
22546
|
id: z.ZodString;
|
|
22099
22547
|
workspaceId: z.ZodString;
|
|
@@ -22287,6 +22735,17 @@ declare const FindOrgWorkspacesQuery: z.ZodObject<{
|
|
|
22287
22735
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
22288
22736
|
}, z.core.$strip>;
|
|
22289
22737
|
type FindOrgWorkspacesQuery = z.infer<typeof FindOrgWorkspacesQuery>;
|
|
22738
|
+
declare const CreateOrgWorkspaceRequest: z.ZodObject<{
|
|
22739
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22740
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
22741
|
+
orgId: z.ZodString;
|
|
22742
|
+
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
22743
|
+
}, z.core.$strip>;
|
|
22744
|
+
type CreateOrgWorkspaceRequest = z.infer<typeof CreateOrgWorkspaceRequest>;
|
|
22745
|
+
declare const RotateOrgWorkspaceSecretResponse: z.ZodObject<{
|
|
22746
|
+
secret: z.ZodString;
|
|
22747
|
+
}, z.core.$strip>;
|
|
22748
|
+
type RotateOrgWorkspaceSecretResponse = z.infer<typeof RotateOrgWorkspaceSecretResponse>;
|
|
22290
22749
|
declare const AccountResponse: z.ZodObject<{
|
|
22291
22750
|
user: z.ZodOptional<z.ZodObject<{
|
|
22292
22751
|
id: z.ZodString;
|
|
@@ -22313,8 +22772,8 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22313
22772
|
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22314
22773
|
key: z.ZodString;
|
|
22315
22774
|
secret: z.ZodString;
|
|
22316
|
-
createdAt: z.
|
|
22317
|
-
updatedAt: z.
|
|
22775
|
+
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22776
|
+
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22318
22777
|
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22319
22778
|
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22320
22779
|
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -22329,8 +22788,8 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22329
22788
|
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22330
22789
|
key: z.ZodString;
|
|
22331
22790
|
secret: z.ZodString;
|
|
22332
|
-
createdAt: z.
|
|
22333
|
-
updatedAt: z.
|
|
22791
|
+
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22792
|
+
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22334
22793
|
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22335
22794
|
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22336
22795
|
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -22533,6 +22992,11 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22533
22992
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22534
22993
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22535
22994
|
}, z.core.$strip>>;
|
|
22995
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
22996
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22997
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22998
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22999
|
+
}, z.core.$strip>>;
|
|
22536
23000
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22537
23001
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22538
23002
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22619,6 +23083,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22619
23083
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22620
23084
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
22621
23085
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
23086
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
22622
23087
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
22623
23088
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22624
23089
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -23441,7 +23906,9 @@ declare const FlowRunsStatsQuery: z.ZodObject<{
|
|
|
23441
23906
|
startDatetime: z.ZodString;
|
|
23442
23907
|
}, z.core.$strip>;
|
|
23443
23908
|
type FlowRunsStatsQuery = z.infer<typeof FlowRunsStatsQuery>;
|
|
23909
|
+
declare const WORKSPACE_ELEMENT_COLLECTIONS: readonly ["integrations", "integration-packages", "actions", "flows", "external-event-subscriptions", "app-event-subscriptions", "data-sources", "field-mappings", "app-data-schemas", "data-link-tables"];
|
|
23444
23910
|
declare const WORKSPACE_ELEMENTS_STATS_COLLECTIONS: readonly ["integrations", "integration-packages", "actions", "flows", "external-event-subscriptions", "app-event-subscriptions", "data-sources", "field-mappings", "app-data-schemas", "data-link-tables"];
|
|
23911
|
+
declare const WORKSPACE_DATABASE_RECORD_COLLECTIONS: readonly string[];
|
|
23445
23912
|
declare const WorkspaceElementsStatsSchema: z.ZodObject<{
|
|
23446
23913
|
total: z.ZodNumber;
|
|
23447
23914
|
breakdown: z.ZodObject<{
|
|
@@ -24272,6 +24739,13 @@ declare const MembraneInstance: z.ZodObject<{
|
|
|
24272
24739
|
apiBaseUri: z.ZodString;
|
|
24273
24740
|
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24274
24741
|
orgId: z.ZodOptional<z.ZodString>;
|
|
24742
|
+
engineVersion: z.ZodOptional<z.ZodString>;
|
|
24743
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
24744
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
24745
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
24746
|
+
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
24747
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24748
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24275
24749
|
}, z.core.$strip>;
|
|
24276
24750
|
type MembraneInstanceDto = z.infer<typeof MembraneInstance>;
|
|
24277
24751
|
declare const CreateMembraneInstanceRequest: z.ZodObject<{
|
|
@@ -24281,6 +24755,13 @@ declare const CreateMembraneInstanceRequest: z.ZodObject<{
|
|
|
24281
24755
|
orgId: z.ZodOptional<z.ZodString>;
|
|
24282
24756
|
}, z.core.$strip>;
|
|
24283
24757
|
type CreateMembraneInstanceRequest = z.infer<typeof CreateMembraneInstanceRequest>;
|
|
24758
|
+
declare const UpdateMembraneInstanceRequest: z.ZodObject<{
|
|
24759
|
+
name: z.ZodOptional<z.ZodString>;
|
|
24760
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
24761
|
+
consoleBaseUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24762
|
+
orgId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24763
|
+
}, z.core.$strict>;
|
|
24764
|
+
type UpdateMembraneInstanceRequest = z.infer<typeof UpdateMembraneInstanceRequest>;
|
|
24284
24765
|
declare const ListMembraneInstancesQuery: z.ZodObject<{
|
|
24285
24766
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
24286
24767
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -24294,10 +24775,34 @@ declare const ListMembraneInstancesResponse: z.ZodObject<{
|
|
|
24294
24775
|
apiBaseUri: z.ZodString;
|
|
24295
24776
|
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24296
24777
|
orgId: z.ZodOptional<z.ZodString>;
|
|
24778
|
+
engineVersion: z.ZodOptional<z.ZodString>;
|
|
24779
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
24780
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
24781
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
24782
|
+
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
24783
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24784
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24297
24785
|
}, z.core.$strip>>;
|
|
24298
24786
|
cursor: z.ZodOptional<z.ZodString>;
|
|
24299
24787
|
}, z.core.$strip>;
|
|
24300
24788
|
type ListMembraneInstancesResponse = z.infer<typeof ListMembraneInstancesResponse>;
|
|
24789
|
+
declare const MembraneInstanceAdmin: z.ZodObject<{
|
|
24790
|
+
id: z.ZodString;
|
|
24791
|
+
name: z.ZodString;
|
|
24792
|
+
apiBaseUri: z.ZodString;
|
|
24793
|
+
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24794
|
+
orgId: z.ZodOptional<z.ZodString>;
|
|
24795
|
+
engineVersion: z.ZodOptional<z.ZodString>;
|
|
24796
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
24797
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
24798
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
24799
|
+
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
24800
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24801
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24802
|
+
orgName: z.ZodOptional<z.ZodString>;
|
|
24803
|
+
workspaceCount: z.ZodOptional<z.ZodNumber>;
|
|
24804
|
+
}, z.core.$strip>;
|
|
24805
|
+
type MembraneInstanceAdmin = z.infer<typeof MembraneInstanceAdmin>;
|
|
24301
24806
|
|
|
24302
24807
|
declare const OrgInstanceType: z.ZodEnum<{
|
|
24303
24808
|
"membrane-hosted": "membrane-hosted";
|
|
@@ -24314,20 +24819,25 @@ type OrgInstanceWorkspace = z.infer<typeof OrgInstanceWorkspace>;
|
|
|
24314
24819
|
declare const OrgInstance: z.ZodObject<{
|
|
24315
24820
|
id: z.ZodString;
|
|
24316
24821
|
name: z.ZodString;
|
|
24317
|
-
type: z.ZodEnum<{
|
|
24822
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
24318
24823
|
"membrane-hosted": "membrane-hosted";
|
|
24319
24824
|
"self-hosted": "self-hosted";
|
|
24320
|
-
}
|
|
24825
|
+
}>>;
|
|
24321
24826
|
apiBaseUri: z.ZodString;
|
|
24322
24827
|
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24323
24828
|
engineVersion: z.ZodOptional<z.ZodString>;
|
|
24829
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
24830
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
24831
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
24324
24832
|
lastReportedAt: z.ZodOptional<z.ZodString>;
|
|
24325
|
-
|
|
24833
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24834
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24835
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24326
24836
|
workspaceId: z.ZodString;
|
|
24327
24837
|
workspaceName: z.ZodString;
|
|
24328
24838
|
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24329
24839
|
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24330
|
-
}, z.core.$strip
|
|
24840
|
+
}, z.core.$strip>>>;
|
|
24331
24841
|
}, z.core.$strip>;
|
|
24332
24842
|
type OrgInstance = z.infer<typeof OrgInstance>;
|
|
24333
24843
|
|
|
@@ -24401,5 +24911,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
24401
24911
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
24402
24912
|
}
|
|
24403
24913
|
|
|
24404
|
-
export { ACTIONS, AGENTIC_CONNECTION_REQUEST_SCREEN_PATH, 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, AgentSessionAttachment, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, And, 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, BaseConnectedProduct, 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, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, 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, ClientToken, ClientTokenGrantType, ClientTokenListResponse, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionClientAction, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, 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, ConnectorAuthSuccessRecord, 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, CreateClientTokenRequest, CreateClientTokenResponse, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateMembraneInstanceRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaBase, DataBuilderFormulaCase, DataBuilderFormulaConcat, DataBuilderFormulaCopy, DataBuilderFormulaExtractDate, DataBuilderFormulaExtractTime, DataBuilderFormulaFindAppRecordId, DataBuilderFormulaFindExternalRecordId, DataBuilderFormulaFirstName, DataBuilderFormulaIterate, DataBuilderFormulaLastName, DataBuilderFormulaLookup, DataBuilderFormulaMap, DataBuilderFormulaPlain, DataBuilderFormulaRecord, DataBuilderFormulaTpl, DataBuilderFormulaType, DataBuilderFormulaVar, 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, DataSchemaRef, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DomainFromEmail, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, EnsureConnectionRequest, ErrorData, ErrorDataSchema, ErrorType, Eval, 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, FindConnectedProductsQuery, 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, FirstNotEmpty, 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, FormulaFormula, 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, IntentProperties, InternalError, InvalidLocatorError, JavascriptFunction, JsonataFormula, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListMembraneInstancesQuery, ListMembraneInstancesResponse, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MembraneInstance, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInstance, OrgInstanceType, OrgInstanceWorkspace, 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, PatchConnectionRequestPayload, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, selectHighestPriorityScope, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, validateFunctionDefinitions, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
|
|
24405
|
-
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, DbBackedCounts, 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,
|
|
24914
|
+
export { ACTIONS, AGENTIC_CONNECTION_REQUEST_SCREEN_PATH, 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, AgentSessionAttachment, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, And, 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, BaseConnectedProduct, 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, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, 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, ClientToken, ClientTokenGrantType, ClientTokenListResponse, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionClientAction, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, 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, ConnectorAuthSuccessRecord, 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, CreateClientTokenRequest, CreateClientTokenResponse, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateMembraneInstanceRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreateOrgWorkspaceRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CreateWorkspaceRequest, 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, DataBuilderFormulaBase, DataBuilderFormulaCase, DataBuilderFormulaConcat, DataBuilderFormulaCopy, DataBuilderFormulaExtractDate, DataBuilderFormulaExtractTime, DataBuilderFormulaFindAppRecordId, DataBuilderFormulaFindExternalRecordId, DataBuilderFormulaFirstName, DataBuilderFormulaIterate, DataBuilderFormulaLastName, DataBuilderFormulaLookup, DataBuilderFormulaMap, DataBuilderFormulaPlain, DataBuilderFormulaRecord, DataBuilderFormulaTpl, DataBuilderFormulaType, DataBuilderFormulaVar, 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, DataSchemaRef, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DomainFromEmail, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, EnsureConnectionRequest, ErrorData, ErrorDataSchema, ErrorType, Eval, 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, FindConnectedProductsQuery, 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, FirstNotEmpty, 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, FormulaFormula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GenerateWorkspaceAccessTokenRequest, GenerateWorkspaceAccessTokenResponse, GeneratedConnectorOption, GenericFunctionDefinition, GetWorkspaceQuery, 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, IntentProperties, InternalError, InvalidLocatorError, JavascriptFunction, JsonataFormula, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListMembraneInstancesQuery, ListMembraneInstancesResponse, ListPublicConnectorsQuery, ListPublicPackagesQuery, ListWorkspacesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MembraneInstance, MembraneInstanceAdmin, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInstance, OrgInstanceType, OrgInstanceWorkspace, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUpdateRequest, 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, PatchConnectionRequestPayload, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RotateOrgWorkspaceSecretResponse, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateMembraneInstanceRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpdateWorkspaceLimitsRequest, UpdateWorkspaceRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_DATABASE_RECORD_COLLECTIONS, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_ELEMENT_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceEditableFields, 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, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, selectHighestPriorityScope, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, validateFunctionDefinitions, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
|
|
24915
|
+
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, DbBackedCounts, 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, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneInstanceDto, OAuthScope, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PendingQueueCount, PendingTasksSummary, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkerTypeFilter, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementChangeInfo, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|