@membranehq/sdk 0.22.6 → 0.24.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 +34 -0
- package/dist/dts/org-instances/types.d.ts +9 -4
- package/dist/dts/orgs/types.d.ts +1417 -97
- 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 +313 -5
- package/dist/dts/workspaces/types.d.ts +49 -13
- package/dist/index.browser.d.mts +1945 -235
- package/dist/index.browser.d.ts +1945 -235
- package/dist/index.browser.js +218 -50
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +205 -51
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1945 -235
- package/dist/index.node.d.ts +1945 -235
- package/dist/index.node.js +218 -50
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +205 -51
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.d.ts
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"
|
|
@@ -21047,9 +21049,9 @@ declare enum ParallelExecutionLimits {
|
|
|
21047
21049
|
ParallelApiRequests = "parallelApiRequests",
|
|
21048
21050
|
ParallelSseRequests = "parallelSseRequests",
|
|
21049
21051
|
ParallelBackgroundJobs = "parallelBackgroundJobs",
|
|
21050
|
-
|
|
21051
|
-
|
|
21052
|
-
|
|
21052
|
+
ParallelEventProcessingJobs = "parallelEventProcessingJobs",
|
|
21053
|
+
ParallelEventProcessingJobsPerConnection = "parallelEventProcessingJobsPerConnection",
|
|
21054
|
+
ParallelAgentSessions = "parallelAgentSessions",
|
|
21053
21055
|
ParallelInstantTasksActiveJobs = "parallelInstantTasksActiveJobs",
|
|
21054
21056
|
ParallelCustomCodeRuns = "parallelCustomCodeRuns"
|
|
21055
21057
|
}
|
|
@@ -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",
|
|
@@ -21085,6 +21088,9 @@ declare enum CustomerLimits {
|
|
|
21085
21088
|
WebhookRequestsPerCustomerPerHour = "webhookRequestsPerCustomerPerHour",
|
|
21086
21089
|
TotalNumberOfDatabaseEntitiesPerCustomer = "totalNumberOfDatabaseEntitiesPerCustomer"
|
|
21087
21090
|
}
|
|
21091
|
+
declare enum WorkspaceAiCreditLimits {
|
|
21092
|
+
DefaultTenantAiCreditsRolling30DayLimit = "defaultTenantAiCreditsRolling30DayLimit"
|
|
21093
|
+
}
|
|
21088
21094
|
declare enum LimitUnits {
|
|
21089
21095
|
Number = "number",
|
|
21090
21096
|
Msec = "msec",
|
|
@@ -21095,7 +21101,7 @@ interface WorkspaceLimit {
|
|
|
21095
21101
|
defaultValue?: number;
|
|
21096
21102
|
unit: LimitUnits;
|
|
21097
21103
|
}
|
|
21098
|
-
type WorkspaceLimits = Partial<Record<ParallelExecutionLimits, WorkspaceLimit> & Record<RateLimits, WorkspaceLimit> & Record<WorkspaceSizeLimits, WorkspaceLimit> & Record<CustomerLimits, WorkspaceLimit>>;
|
|
21104
|
+
type WorkspaceLimits = Partial<Record<ParallelExecutionLimits, WorkspaceLimit> & Record<RateLimits, WorkspaceLimit> & Record<WorkspaceSizeLimits, WorkspaceLimit> & Record<CustomerLimits, WorkspaceLimit> & Record<WorkspaceAiCreditLimits, WorkspaceLimit>>;
|
|
21099
21105
|
interface EngineWorkspaceWithOrgData {
|
|
21100
21106
|
id: string;
|
|
21101
21107
|
key: string;
|
|
@@ -21148,12 +21154,12 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
21148
21154
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21149
21155
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21150
21156
|
}, z$1.core.$strip>>;
|
|
21151
|
-
|
|
21157
|
+
parallelEventProcessingJobs: z$1.ZodOptional<z$1.ZodObject<{
|
|
21152
21158
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21153
21159
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21154
21160
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21155
21161
|
}, z$1.core.$strip>>;
|
|
21156
|
-
|
|
21162
|
+
parallelEventProcessingJobsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
21157
21163
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21158
21164
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21159
21165
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21163,7 +21169,7 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
21163
21169
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21164
21170
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21165
21171
|
}, z$1.core.$strip>>;
|
|
21166
|
-
|
|
21172
|
+
parallelAgentSessions: z$1.ZodOptional<z$1.ZodObject<{
|
|
21167
21173
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21168
21174
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21169
21175
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21243,6 +21249,11 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
21243
21249
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21244
21250
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21245
21251
|
}, z$1.core.$strip>>;
|
|
21252
|
+
totalNumberOfWorkspaceDatabaseRecords: z$1.ZodOptional<z$1.ZodObject<{
|
|
21253
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21254
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21255
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21256
|
+
}, z$1.core.$strip>>;
|
|
21246
21257
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
21247
21258
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21248
21259
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -21298,6 +21309,11 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
21298
21309
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21299
21310
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21300
21311
|
}, z$1.core.$strip>>;
|
|
21312
|
+
defaultTenantAiCreditsRolling30DayLimit: z$1.ZodOptional<z$1.ZodObject<{
|
|
21313
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21314
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21315
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21316
|
+
}, z$1.core.$strip>>;
|
|
21301
21317
|
}, z$1.core.$strip>;
|
|
21302
21318
|
interface WorkspaceExport {
|
|
21303
21319
|
[WorkspaceElementType.AppDataSchema]: AppDataSchemaExportProperties[];
|
|
@@ -21393,12 +21409,12 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21393
21409
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21394
21410
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21395
21411
|
}, z$1.core.$strip>>;
|
|
21396
|
-
|
|
21412
|
+
parallelEventProcessingJobs: z$1.ZodOptional<z$1.ZodObject<{
|
|
21397
21413
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21398
21414
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21399
21415
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21400
21416
|
}, z$1.core.$strip>>;
|
|
21401
|
-
|
|
21417
|
+
parallelEventProcessingJobsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
21402
21418
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21403
21419
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21404
21420
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21408,7 +21424,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21408
21424
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21409
21425
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21410
21426
|
}, z$1.core.$strip>>;
|
|
21411
|
-
|
|
21427
|
+
parallelAgentSessions: z$1.ZodOptional<z$1.ZodObject<{
|
|
21412
21428
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21413
21429
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21414
21430
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21488,6 +21504,11 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21488
21504
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21489
21505
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21490
21506
|
}, z$1.core.$strip>>;
|
|
21507
|
+
totalNumberOfWorkspaceDatabaseRecords: z$1.ZodOptional<z$1.ZodObject<{
|
|
21508
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21509
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21510
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21511
|
+
}, z$1.core.$strip>>;
|
|
21491
21512
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
21492
21513
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21493
21514
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -21543,6 +21564,11 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21543
21564
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21544
21565
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21545
21566
|
}, z$1.core.$strip>>;
|
|
21567
|
+
defaultTenantAiCreditsRolling30DayLimit: z$1.ZodOptional<z$1.ZodObject<{
|
|
21568
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21569
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21570
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21571
|
+
}, z$1.core.$strip>>;
|
|
21546
21572
|
}, z$1.core.$strip>>;
|
|
21547
21573
|
settings: z$1.ZodOptional<z$1.ZodObject<{
|
|
21548
21574
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -21574,6 +21600,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21574
21600
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21575
21601
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
21576
21602
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
21603
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
21577
21604
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
21578
21605
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
21579
21606
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -21662,12 +21689,12 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21662
21689
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21663
21690
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21664
21691
|
}, z$1.core.$strip>>;
|
|
21665
|
-
|
|
21692
|
+
parallelEventProcessingJobs: z$1.ZodOptional<z$1.ZodObject<{
|
|
21666
21693
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21667
21694
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21668
21695
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21669
21696
|
}, z$1.core.$strip>>;
|
|
21670
|
-
|
|
21697
|
+
parallelEventProcessingJobsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
21671
21698
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21672
21699
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21673
21700
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21677,7 +21704,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21677
21704
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21678
21705
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21679
21706
|
}, z$1.core.$strip>>;
|
|
21680
|
-
|
|
21707
|
+
parallelAgentSessions: z$1.ZodOptional<z$1.ZodObject<{
|
|
21681
21708
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21682
21709
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21683
21710
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21757,6 +21784,11 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21757
21784
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21758
21785
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21759
21786
|
}, z$1.core.$strip>>;
|
|
21787
|
+
totalNumberOfWorkspaceDatabaseRecords: z$1.ZodOptional<z$1.ZodObject<{
|
|
21788
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21789
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21790
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21791
|
+
}, z$1.core.$strip>>;
|
|
21760
21792
|
instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
|
|
21761
21793
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21762
21794
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
@@ -21812,6 +21844,11 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21812
21844
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21813
21845
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21814
21846
|
}, z$1.core.$strip>>;
|
|
21847
|
+
defaultTenantAiCreditsRolling30DayLimit: z$1.ZodOptional<z$1.ZodObject<{
|
|
21848
|
+
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21849
|
+
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21850
|
+
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21851
|
+
}, z$1.core.$strip>>;
|
|
21815
21852
|
}, z$1.core.$strip>>;
|
|
21816
21853
|
settings: z$1.ZodOptional<z$1.ZodObject<{
|
|
21817
21854
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -21843,6 +21880,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21843
21880
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21844
21881
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
21845
21882
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
21883
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
21846
21884
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
21847
21885
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
21848
21886
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -21894,6 +21932,318 @@ interface CopilotActivityNotificationData {
|
|
|
21894
21932
|
scopes: string[];
|
|
21895
21933
|
}
|
|
21896
21934
|
|
|
21935
|
+
declare const CreateWorkspaceRequest: z.ZodObject<{
|
|
21936
|
+
workspaceKey: z.ZodString;
|
|
21937
|
+
workspaceSecret: z.ZodString;
|
|
21938
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
21939
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
21940
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21941
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21942
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21943
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21944
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21945
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21946
|
+
}, z.core.$strip>>;
|
|
21947
|
+
}, z.core.$strip>;
|
|
21948
|
+
type CreateWorkspaceRequest = z.infer<typeof CreateWorkspaceRequest>;
|
|
21949
|
+
declare const UpdateWorkspaceRequest: z.ZodObject<{
|
|
21950
|
+
name: z.ZodOptional<z.ZodString>;
|
|
21951
|
+
secret: z.ZodOptional<z.ZodString>;
|
|
21952
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
21953
|
+
auth: z.ZodOptional<z.ZodAny>;
|
|
21954
|
+
credentialsSchema: z.ZodOptional<z.ZodAny>;
|
|
21955
|
+
apiClient: z.ZodOptional<z.ZodAny>;
|
|
21956
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21957
|
+
name: z.ZodString;
|
|
21958
|
+
publicKey: z.ZodString;
|
|
21959
|
+
}, z.core.$strip>>>;
|
|
21960
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
21961
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
21962
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21963
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
21964
|
+
apiRequestHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
21965
|
+
apiRequestQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
21966
|
+
archivedAt: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>>;
|
|
21967
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
21968
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21969
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21970
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
21971
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
21972
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
21973
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
21974
|
+
}, z.core.$strip>>;
|
|
21975
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
21976
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
21977
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
21978
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
21979
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
21980
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
21981
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
21982
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
21983
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
21984
|
+
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
21985
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
21986
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
21987
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
21988
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
21989
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
21990
|
+
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
21991
|
+
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
21992
|
+
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
21993
|
+
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
21994
|
+
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
21995
|
+
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
21996
|
+
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
21997
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
21998
|
+
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
21999
|
+
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22000
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
22001
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
22002
|
+
parallelApiRequests: AlertType.parallelApiRequests;
|
|
22003
|
+
testAlert: AlertType.testAlert;
|
|
22004
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
22005
|
+
internal: z.ZodLiteral<true>;
|
|
22006
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
22007
|
+
enabled: z.ZodBoolean;
|
|
22008
|
+
}, z.core.$strip>>;
|
|
22009
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
22010
|
+
enabled: z.ZodBoolean;
|
|
22011
|
+
}, z.core.$strip>>;
|
|
22012
|
+
}, z.core.$strip>>>>;
|
|
22013
|
+
}, z.core.$strip>>;
|
|
22014
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22015
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22016
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22017
|
+
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
22018
|
+
}, z.core.$strip>;
|
|
22019
|
+
type UpdateWorkspaceRequest = z.infer<typeof UpdateWorkspaceRequest>;
|
|
22020
|
+
declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
|
|
22021
|
+
parallelEventPulls: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22022
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22023
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22024
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22025
|
+
}, z.core.$strip>>>;
|
|
22026
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22027
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22028
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22029
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22030
|
+
}, z.core.$strip>>>;
|
|
22031
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22032
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22033
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22034
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22035
|
+
}, z.core.$strip>>>;
|
|
22036
|
+
parallelFlowRuns: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22037
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22038
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22039
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22040
|
+
}, z.core.$strip>>>;
|
|
22041
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22042
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22043
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22044
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22045
|
+
}, z.core.$strip>>>;
|
|
22046
|
+
parallelApiRequests: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22047
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22048
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22049
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22050
|
+
}, z.core.$strip>>>;
|
|
22051
|
+
parallelSseRequests: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22052
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22053
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22054
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22055
|
+
}, z.core.$strip>>>;
|
|
22056
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22057
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22058
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22059
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22060
|
+
}, z.core.$strip>>>;
|
|
22061
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22062
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22063
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22064
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22065
|
+
}, z.core.$strip>>>;
|
|
22066
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22067
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22068
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22069
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22070
|
+
}, z.core.$strip>>>;
|
|
22071
|
+
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22072
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22073
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22074
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22075
|
+
}, z.core.$strip>>>;
|
|
22076
|
+
parallelAgentSessions: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22077
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22078
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22079
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22080
|
+
}, z.core.$strip>>>;
|
|
22081
|
+
parallelCustomCodeRuns: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22082
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22083
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22084
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22085
|
+
}, z.core.$strip>>>;
|
|
22086
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22087
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22088
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22089
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22090
|
+
}, z.core.$strip>>>;
|
|
22091
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22092
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22093
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22094
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22095
|
+
}, z.core.$strip>>>;
|
|
22096
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22097
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22098
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22099
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22100
|
+
}, z.core.$strip>>>;
|
|
22101
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22102
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22103
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22104
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22105
|
+
}, z.core.$strip>>>;
|
|
22106
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22107
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22108
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22109
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22110
|
+
}, z.core.$strip>>>;
|
|
22111
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22112
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22113
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22114
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22115
|
+
}, z.core.$strip>>>;
|
|
22116
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22117
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22118
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22119
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22120
|
+
}, z.core.$strip>>>;
|
|
22121
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22122
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22123
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22124
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22125
|
+
}, z.core.$strip>>>;
|
|
22126
|
+
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22127
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22128
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22129
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22130
|
+
}, z.core.$strip>>>;
|
|
22131
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22132
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22133
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22134
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22135
|
+
}, z.core.$strip>>>;
|
|
22136
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22137
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22138
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22139
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22140
|
+
}, z.core.$strip>>>;
|
|
22141
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22142
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22143
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22144
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22145
|
+
}, z.core.$strip>>>;
|
|
22146
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22147
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22148
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22149
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22150
|
+
}, z.core.$strip>>>;
|
|
22151
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22152
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22153
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22154
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22155
|
+
}, z.core.$strip>>>;
|
|
22156
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22157
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22158
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22159
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22160
|
+
}, z.core.$strip>>>;
|
|
22161
|
+
instantTasksQueueSize: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22162
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22163
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22164
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22165
|
+
}, z.core.$strip>>>;
|
|
22166
|
+
QueuedTasksQueueSize: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22167
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22168
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22169
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22170
|
+
}, z.core.$strip>>>;
|
|
22171
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22172
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22173
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22174
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22175
|
+
}, z.core.$strip>>>;
|
|
22176
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22177
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22178
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22179
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22180
|
+
}, z.core.$strip>>>;
|
|
22181
|
+
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22182
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22183
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22184
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22185
|
+
}, z.core.$strip>>>;
|
|
22186
|
+
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22187
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22188
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22189
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22190
|
+
}, z.core.$strip>>>;
|
|
22191
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22192
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22193
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22194
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22195
|
+
}, z.core.$strip>>>;
|
|
22196
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22197
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22198
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22199
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22200
|
+
}, z.core.$strip>>>;
|
|
22201
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22202
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22203
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22204
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22205
|
+
}, z.core.$strip>>>;
|
|
22206
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22207
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22208
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22209
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22210
|
+
}, z.core.$strip>>>;
|
|
22211
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22212
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22213
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22214
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22215
|
+
}, z.core.$strip>>>;
|
|
22216
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22217
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22218
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22219
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22220
|
+
}, z.core.$strip>>>;
|
|
22221
|
+
}, z.core.$strip>;
|
|
22222
|
+
type UpdateWorkspaceLimitsRequest = z.infer<typeof UpdateWorkspaceLimitsRequest>;
|
|
22223
|
+
declare const GenerateWorkspaceAccessTokenRequest: z.ZodObject<{
|
|
22224
|
+
isAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
22225
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
22226
|
+
tenantKey: z.ZodOptional<z.ZodString>;
|
|
22227
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22228
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
22229
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
22230
|
+
}, z.core.$strip>;
|
|
22231
|
+
type GenerateWorkspaceAccessTokenRequest = z.infer<typeof GenerateWorkspaceAccessTokenRequest>;
|
|
22232
|
+
declare const GenerateWorkspaceAccessTokenResponse: z.ZodObject<{
|
|
22233
|
+
token: z.ZodString;
|
|
22234
|
+
}, z.core.$strip>;
|
|
22235
|
+
type GenerateWorkspaceAccessTokenResponse = z.infer<typeof GenerateWorkspaceAccessTokenResponse>;
|
|
22236
|
+
declare const ListWorkspacesQuery: z.ZodObject<{
|
|
22237
|
+
orgId: z.ZodOptional<z.ZodString>;
|
|
22238
|
+
workspaceKey: z.ZodOptional<z.ZodString>;
|
|
22239
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
22240
|
+
}, z.core.$strip>;
|
|
22241
|
+
type ListWorkspacesQuery = z.infer<typeof ListWorkspacesQuery>;
|
|
22242
|
+
declare const GetWorkspaceQuery: z.ZodObject<{
|
|
22243
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
22244
|
+
}, z.core.$strip>;
|
|
22245
|
+
type GetWorkspaceQuery = z.infer<typeof GetWorkspaceQuery>;
|
|
22246
|
+
|
|
21897
22247
|
declare const PARALLEL_EXECUTION_LIMITS: string[];
|
|
21898
22248
|
declare const RATE_LIMITS: string[];
|
|
21899
22249
|
declare const WORKSPACE_SIZE_LIMITS: string[];
|
|
@@ -21973,7 +22323,8 @@ declare enum OrgLimitsType {
|
|
|
21973
22323
|
NUMBER_OF_WORKSPACES = "numberOfWorkspaces",
|
|
21974
22324
|
TODAY_USAGE = "todayUsage",
|
|
21975
22325
|
LAST_THIRTY_DAY_USAGE = "lastThirtyDayUsage",
|
|
21976
|
-
MEMBRANE_EXPERT_CREDITS_CAP = "membraneExpertCreditsCapPerMonth"
|
|
22326
|
+
MEMBRANE_EXPERT_CREDITS_CAP = "membraneExpertCreditsCapPerMonth",
|
|
22327
|
+
DEFAULT_TENANT_AI_CREDITS_ROLLING_30_DAY_LIMIT = "defaultTenantAiCreditsRolling30DayLimit"
|
|
21977
22328
|
}
|
|
21978
22329
|
declare enum OrgPlan {
|
|
21979
22330
|
Core = "core",
|
|
@@ -22003,14 +22354,16 @@ interface OrgLimits {
|
|
|
22003
22354
|
[OrgLimitsType.TODAY_USAGE]?: number;
|
|
22004
22355
|
[OrgLimitsType.LAST_THIRTY_DAY_USAGE]?: number;
|
|
22005
22356
|
[OrgLimitsType.MEMBRANE_EXPERT_CREDITS_CAP]?: number | null;
|
|
22357
|
+
[OrgLimitsType.DEFAULT_TENANT_AI_CREDITS_ROLLING_30_DAY_LIMIT]?: number | null;
|
|
22006
22358
|
}
|
|
22007
|
-
declare const OrgLimits: z.
|
|
22359
|
+
declare const OrgLimits: z.ZodObject<{
|
|
22008
22360
|
numberOfWorkspaces: z.ZodOptional<z.ZodNumber>;
|
|
22009
22361
|
todayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22010
22362
|
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22011
22363
|
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
22012
22364
|
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22013
|
-
|
|
22365
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22366
|
+
}, z.core.$strip>;
|
|
22014
22367
|
interface MembraneAgentKey {
|
|
22015
22368
|
key: string;
|
|
22016
22369
|
activityDate: Date;
|
|
@@ -22035,6 +22388,7 @@ declare const Org: z.ZodObject<{
|
|
|
22035
22388
|
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22036
22389
|
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
22037
22390
|
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22391
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22038
22392
|
}, z.core.$strip>>;
|
|
22039
22393
|
thirtyDayTotalCredits: z.ZodOptional<z.ZodNumber>;
|
|
22040
22394
|
lastThirtyDayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22044,7 +22398,6 @@ declare const Org: z.ZodObject<{
|
|
|
22044
22398
|
freeAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
22045
22399
|
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
22046
22400
|
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22047
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22048
22401
|
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
22049
22402
|
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22050
22403
|
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22077,6 +22430,267 @@ declare const EngineCreditsProjectionResponse: z.ZodObject<{
|
|
|
22077
22430
|
willRunOut: z.ZodBoolean;
|
|
22078
22431
|
}, z.core.$strip>;
|
|
22079
22432
|
type EngineCreditsProjection = z.infer<typeof EngineCreditsProjectionResponse>;
|
|
22433
|
+
declare const WorkspaceEditableFields: z.ZodObject<{
|
|
22434
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
22435
|
+
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
22436
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22437
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22438
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22439
|
+
}, z.core.$strip>>;
|
|
22440
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22441
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22442
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22443
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22444
|
+
}, z.core.$strip>>;
|
|
22445
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22446
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22447
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22448
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22449
|
+
}, z.core.$strip>>;
|
|
22450
|
+
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
22451
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22452
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22453
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22454
|
+
}, z.core.$strip>>;
|
|
22455
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22456
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22457
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22458
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22459
|
+
}, z.core.$strip>>;
|
|
22460
|
+
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
22461
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22462
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22463
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22464
|
+
}, z.core.$strip>>;
|
|
22465
|
+
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
22466
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22467
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22468
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22469
|
+
}, z.core.$strip>>;
|
|
22470
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
22471
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22472
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22473
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22474
|
+
}, z.core.$strip>>;
|
|
22475
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
22476
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22477
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22478
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22479
|
+
}, z.core.$strip>>;
|
|
22480
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22481
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22482
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22483
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22484
|
+
}, z.core.$strip>>;
|
|
22485
|
+
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
|
|
22486
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22487
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22488
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22489
|
+
}, z.core.$strip>>;
|
|
22490
|
+
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
22491
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22492
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22493
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22494
|
+
}, z.core.$strip>>;
|
|
22495
|
+
parallelCustomCodeRuns: z.ZodOptional<z.ZodObject<{
|
|
22496
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22497
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22498
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22499
|
+
}, z.core.$strip>>;
|
|
22500
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
22501
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22502
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22503
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22504
|
+
}, z.core.$strip>>;
|
|
22505
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
22506
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22507
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22508
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22509
|
+
}, z.core.$strip>>;
|
|
22510
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22511
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22512
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22513
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22514
|
+
}, z.core.$strip>>;
|
|
22515
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22516
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22517
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22518
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22519
|
+
}, z.core.$strip>>;
|
|
22520
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22521
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22522
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22523
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22524
|
+
}, z.core.$strip>>;
|
|
22525
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22526
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22527
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22528
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22529
|
+
}, z.core.$strip>>;
|
|
22530
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22531
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22532
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22533
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22534
|
+
}, z.core.$strip>>;
|
|
22535
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22536
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22537
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22538
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22539
|
+
}, z.core.$strip>>;
|
|
22540
|
+
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodObject<{
|
|
22541
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22542
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22543
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22544
|
+
}, z.core.$strip>>;
|
|
22545
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22546
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22547
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22548
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22549
|
+
}, z.core.$strip>>;
|
|
22550
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
22551
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22552
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22553
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22554
|
+
}, z.core.$strip>>;
|
|
22555
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
22556
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22557
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22558
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22559
|
+
}, z.core.$strip>>;
|
|
22560
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
22561
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22562
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22563
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22564
|
+
}, z.core.$strip>>;
|
|
22565
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
22566
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22567
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22568
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22569
|
+
}, z.core.$strip>>;
|
|
22570
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
22571
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22572
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22573
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22574
|
+
}, z.core.$strip>>;
|
|
22575
|
+
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22576
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22577
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22578
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22579
|
+
}, z.core.$strip>>;
|
|
22580
|
+
QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22581
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22582
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22583
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22584
|
+
}, z.core.$strip>>;
|
|
22585
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22586
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22587
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22588
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22589
|
+
}, z.core.$strip>>;
|
|
22590
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22591
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22592
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22593
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22594
|
+
}, z.core.$strip>>;
|
|
22595
|
+
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22596
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22597
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22598
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22599
|
+
}, z.core.$strip>>;
|
|
22600
|
+
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22601
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22602
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22603
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22604
|
+
}, z.core.$strip>>;
|
|
22605
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22606
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22607
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22608
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22609
|
+
}, z.core.$strip>>;
|
|
22610
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
22611
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22612
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22613
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22614
|
+
}, z.core.$strip>>;
|
|
22615
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22616
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22617
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22618
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22619
|
+
}, z.core.$strip>>;
|
|
22620
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
22621
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22622
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22623
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22624
|
+
}, z.core.$strip>>;
|
|
22625
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
22626
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22627
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22628
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22629
|
+
}, z.core.$strip>>;
|
|
22630
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
|
|
22631
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22632
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22633
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22634
|
+
}, z.core.$strip>>;
|
|
22635
|
+
}, z.core.$strip>>;
|
|
22636
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
22637
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22638
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22639
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22640
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22641
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22642
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22643
|
+
}, z.core.$strip>>;
|
|
22644
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22645
|
+
name: z.ZodString;
|
|
22646
|
+
publicKey: z.ZodString;
|
|
22647
|
+
}, z.core.$strip>>>;
|
|
22648
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
22649
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
22650
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22651
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
22652
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
22653
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
22654
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
22655
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
22656
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
22657
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
22658
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
22659
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
22660
|
+
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
22661
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
22662
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
22663
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
22664
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
22665
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
22666
|
+
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22667
|
+
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22668
|
+
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22669
|
+
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22670
|
+
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22671
|
+
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
22672
|
+
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
22673
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
22674
|
+
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
22675
|
+
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22676
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
22677
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
22678
|
+
parallelApiRequests: AlertType.parallelApiRequests;
|
|
22679
|
+
testAlert: AlertType.testAlert;
|
|
22680
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
22681
|
+
internal: z.ZodLiteral<true>;
|
|
22682
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
22683
|
+
enabled: z.ZodBoolean;
|
|
22684
|
+
}, z.core.$strip>>;
|
|
22685
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
22686
|
+
enabled: z.ZodBoolean;
|
|
22687
|
+
}, z.core.$strip>>;
|
|
22688
|
+
}, z.core.$strip>>>>;
|
|
22689
|
+
}, z.core.$strip>>;
|
|
22690
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22691
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22692
|
+
}, z.core.$strip>;
|
|
22693
|
+
type WorkspaceEditableFields = z.infer<typeof WorkspaceEditableFields>;
|
|
22080
22694
|
declare const OrgWorkspace: z.ZodObject<{
|
|
22081
22695
|
id: z.ZodString;
|
|
22082
22696
|
name: z.ZodString;
|
|
@@ -22084,59 +22698,578 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
22084
22698
|
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22085
22699
|
key: z.ZodString;
|
|
22086
22700
|
secret: z.ZodString;
|
|
22087
|
-
createdAt: z.
|
|
22088
|
-
updatedAt: z.
|
|
22701
|
+
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22702
|
+
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22089
22703
|
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22090
22704
|
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22091
22705
|
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22092
22706
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
22093
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22094
22707
|
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
22095
|
-
|
|
22096
|
-
|
|
22097
|
-
|
|
22098
|
-
|
|
22099
|
-
|
|
22100
|
-
|
|
22101
|
-
|
|
22102
|
-
|
|
22103
|
-
|
|
22104
|
-
|
|
22105
|
-
|
|
22106
|
-
|
|
22107
|
-
|
|
22108
|
-
|
|
22109
|
-
|
|
22110
|
-
|
|
22111
|
-
|
|
22112
|
-
|
|
22113
|
-
|
|
22114
|
-
|
|
22115
|
-
|
|
22116
|
-
|
|
22117
|
-
|
|
22118
|
-
|
|
22119
|
-
|
|
22120
|
-
|
|
22121
|
-
|
|
22122
|
-
|
|
22123
|
-
|
|
22124
|
-
|
|
22125
|
-
|
|
22126
|
-
|
|
22127
|
-
|
|
22128
|
-
|
|
22129
|
-
|
|
22130
|
-
|
|
22131
|
-
|
|
22132
|
-
|
|
22133
|
-
|
|
22134
|
-
|
|
22135
|
-
|
|
22136
|
-
|
|
22137
|
-
|
|
22138
|
-
|
|
22139
|
-
|
|
22708
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
22709
|
+
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
22710
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22711
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22712
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22713
|
+
}, z.core.$strip>>;
|
|
22714
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22715
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22716
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22717
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22718
|
+
}, z.core.$strip>>;
|
|
22719
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22720
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22721
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22722
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22723
|
+
}, z.core.$strip>>;
|
|
22724
|
+
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
22725
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22726
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22727
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22728
|
+
}, z.core.$strip>>;
|
|
22729
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22730
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22731
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22732
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22733
|
+
}, z.core.$strip>>;
|
|
22734
|
+
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
22735
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22736
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22737
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22738
|
+
}, z.core.$strip>>;
|
|
22739
|
+
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
22740
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22741
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22742
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22743
|
+
}, z.core.$strip>>;
|
|
22744
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
22745
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22746
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22747
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22748
|
+
}, z.core.$strip>>;
|
|
22749
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
22750
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22751
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22752
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22753
|
+
}, z.core.$strip>>;
|
|
22754
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22755
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22756
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22757
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22758
|
+
}, z.core.$strip>>;
|
|
22759
|
+
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
|
|
22760
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22761
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22762
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22763
|
+
}, z.core.$strip>>;
|
|
22764
|
+
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
22765
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22766
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22767
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22768
|
+
}, z.core.$strip>>;
|
|
22769
|
+
parallelCustomCodeRuns: z.ZodOptional<z.ZodObject<{
|
|
22770
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22771
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22772
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22773
|
+
}, z.core.$strip>>;
|
|
22774
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
22775
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22776
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22777
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22778
|
+
}, z.core.$strip>>;
|
|
22779
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
22780
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22781
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22782
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22783
|
+
}, z.core.$strip>>;
|
|
22784
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22785
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22786
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22787
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22788
|
+
}, z.core.$strip>>;
|
|
22789
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22790
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22791
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22792
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22793
|
+
}, z.core.$strip>>;
|
|
22794
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22795
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22796
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22797
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22798
|
+
}, z.core.$strip>>;
|
|
22799
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22800
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22801
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22802
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22803
|
+
}, z.core.$strip>>;
|
|
22804
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22805
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22806
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22807
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22808
|
+
}, z.core.$strip>>;
|
|
22809
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22810
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22811
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22812
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22813
|
+
}, z.core.$strip>>;
|
|
22814
|
+
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodObject<{
|
|
22815
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22816
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22817
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22818
|
+
}, z.core.$strip>>;
|
|
22819
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
22820
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22821
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22822
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22823
|
+
}, z.core.$strip>>;
|
|
22824
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
22825
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22826
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22827
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22828
|
+
}, z.core.$strip>>;
|
|
22829
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
22830
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22831
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22832
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22833
|
+
}, z.core.$strip>>;
|
|
22834
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
22835
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22836
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22837
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22838
|
+
}, z.core.$strip>>;
|
|
22839
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
22840
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22841
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22842
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22843
|
+
}, z.core.$strip>>;
|
|
22844
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
22845
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22846
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22847
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22848
|
+
}, z.core.$strip>>;
|
|
22849
|
+
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22850
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22851
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22852
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22853
|
+
}, z.core.$strip>>;
|
|
22854
|
+
QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22855
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22856
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22857
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22858
|
+
}, z.core.$strip>>;
|
|
22859
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22860
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22861
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22862
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22863
|
+
}, z.core.$strip>>;
|
|
22864
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22865
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22866
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22867
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22868
|
+
}, z.core.$strip>>;
|
|
22869
|
+
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22870
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22871
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22872
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22873
|
+
}, z.core.$strip>>;
|
|
22874
|
+
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
22875
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22876
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22877
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22878
|
+
}, z.core.$strip>>;
|
|
22879
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22880
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22881
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22882
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22883
|
+
}, z.core.$strip>>;
|
|
22884
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
22885
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22886
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22887
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22888
|
+
}, z.core.$strip>>;
|
|
22889
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
22890
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22891
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22892
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22893
|
+
}, z.core.$strip>>;
|
|
22894
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
22895
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22896
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22897
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22898
|
+
}, z.core.$strip>>;
|
|
22899
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
22900
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22901
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22902
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22903
|
+
}, z.core.$strip>>;
|
|
22904
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
|
|
22905
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22906
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22907
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22908
|
+
}, z.core.$strip>>;
|
|
22909
|
+
}, z.core.$strip>>;
|
|
22910
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
22911
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22912
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22913
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22914
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
22915
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
22916
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22917
|
+
}, z.core.$strip>>;
|
|
22918
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22919
|
+
name: z.ZodString;
|
|
22920
|
+
publicKey: z.ZodString;
|
|
22921
|
+
}, z.core.$strip>>>;
|
|
22922
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
22923
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
22924
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22925
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
22926
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
22927
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
22928
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
22929
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
22930
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
22931
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
22932
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
22933
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
22934
|
+
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
22935
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
22936
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
22937
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
22938
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
22939
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
22940
|
+
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
22941
|
+
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
22942
|
+
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
22943
|
+
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
22944
|
+
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22945
|
+
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
22946
|
+
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
22947
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
22948
|
+
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
22949
|
+
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22950
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
22951
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
22952
|
+
parallelApiRequests: AlertType.parallelApiRequests;
|
|
22953
|
+
testAlert: AlertType.testAlert;
|
|
22954
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
22955
|
+
internal: z.ZodLiteral<true>;
|
|
22956
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
22957
|
+
enabled: z.ZodBoolean;
|
|
22958
|
+
}, z.core.$strip>>;
|
|
22959
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
22960
|
+
enabled: z.ZodBoolean;
|
|
22961
|
+
}, z.core.$strip>>;
|
|
22962
|
+
}, z.core.$strip>>>>;
|
|
22963
|
+
}, z.core.$strip>>;
|
|
22964
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22965
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22966
|
+
}, z.core.$strip>;
|
|
22967
|
+
type OrgWorkspace = z.infer<typeof OrgWorkspace>;
|
|
22968
|
+
declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
22969
|
+
name: z.ZodOptional<z.ZodString>;
|
|
22970
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
22971
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
22972
|
+
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
22973
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22974
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22975
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22976
|
+
}, z.core.$strip>>;
|
|
22977
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22978
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22979
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22980
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22981
|
+
}, z.core.$strip>>;
|
|
22982
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22983
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22984
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22985
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22986
|
+
}, z.core.$strip>>;
|
|
22987
|
+
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
22988
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22989
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22990
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22991
|
+
}, z.core.$strip>>;
|
|
22992
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22993
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22994
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22995
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22996
|
+
}, z.core.$strip>>;
|
|
22997
|
+
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
22998
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
22999
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23000
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23001
|
+
}, z.core.$strip>>;
|
|
23002
|
+
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
23003
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23004
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23005
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23006
|
+
}, z.core.$strip>>;
|
|
23007
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
23008
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23009
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23010
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23011
|
+
}, z.core.$strip>>;
|
|
23012
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
23013
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23014
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23015
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23016
|
+
}, z.core.$strip>>;
|
|
23017
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
23018
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23019
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23020
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23021
|
+
}, z.core.$strip>>;
|
|
23022
|
+
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
|
|
23023
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23024
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23025
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23026
|
+
}, z.core.$strip>>;
|
|
23027
|
+
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
23028
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23029
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23030
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23031
|
+
}, z.core.$strip>>;
|
|
23032
|
+
parallelCustomCodeRuns: z.ZodOptional<z.ZodObject<{
|
|
23033
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23034
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23035
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23036
|
+
}, z.core.$strip>>;
|
|
23037
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
23038
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23039
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23040
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23041
|
+
}, z.core.$strip>>;
|
|
23042
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
23043
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23044
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23045
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23046
|
+
}, z.core.$strip>>;
|
|
23047
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23048
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23049
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23050
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23051
|
+
}, z.core.$strip>>;
|
|
23052
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23053
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23054
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23055
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23056
|
+
}, z.core.$strip>>;
|
|
23057
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23058
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23059
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23060
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23061
|
+
}, z.core.$strip>>;
|
|
23062
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23063
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23064
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23065
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23066
|
+
}, z.core.$strip>>;
|
|
23067
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23068
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23069
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23070
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23071
|
+
}, z.core.$strip>>;
|
|
23072
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23073
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23074
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23075
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23076
|
+
}, z.core.$strip>>;
|
|
23077
|
+
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodObject<{
|
|
23078
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23079
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23080
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23081
|
+
}, z.core.$strip>>;
|
|
23082
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23083
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23084
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23085
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23086
|
+
}, z.core.$strip>>;
|
|
23087
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
23088
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23089
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23090
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23091
|
+
}, z.core.$strip>>;
|
|
23092
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
23093
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23094
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23095
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23096
|
+
}, z.core.$strip>>;
|
|
23097
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
23098
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23099
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23100
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23101
|
+
}, z.core.$strip>>;
|
|
23102
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
23103
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23104
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23105
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23106
|
+
}, z.core.$strip>>;
|
|
23107
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
23108
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23109
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23110
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23111
|
+
}, z.core.$strip>>;
|
|
23112
|
+
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
23113
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23114
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23115
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23116
|
+
}, z.core.$strip>>;
|
|
23117
|
+
QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
23118
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23119
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23120
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23121
|
+
}, z.core.$strip>>;
|
|
23122
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23123
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23124
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23125
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23126
|
+
}, z.core.$strip>>;
|
|
23127
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23128
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23129
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23130
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23131
|
+
}, z.core.$strip>>;
|
|
23132
|
+
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23133
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23134
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23135
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23136
|
+
}, z.core.$strip>>;
|
|
23137
|
+
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23138
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23139
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23140
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23141
|
+
}, z.core.$strip>>;
|
|
23142
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23143
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23144
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23145
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23146
|
+
}, z.core.$strip>>;
|
|
23147
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
23148
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23149
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23150
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23151
|
+
}, z.core.$strip>>;
|
|
23152
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23153
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23154
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23155
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23156
|
+
}, z.core.$strip>>;
|
|
23157
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
23158
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23159
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23160
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23161
|
+
}, z.core.$strip>>;
|
|
23162
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
23163
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23164
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23165
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23166
|
+
}, z.core.$strip>>;
|
|
23167
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
|
|
23168
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23169
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23170
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23171
|
+
}, z.core.$strip>>;
|
|
23172
|
+
}, z.core.$strip>>;
|
|
23173
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
23174
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
23175
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
23176
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
23177
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
23178
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
23179
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
23180
|
+
}, z.core.$strip>>;
|
|
23181
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23182
|
+
name: z.ZodString;
|
|
23183
|
+
publicKey: z.ZodString;
|
|
23184
|
+
}, z.core.$strip>>>;
|
|
23185
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
23186
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
23187
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23188
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
23189
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
23190
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
23191
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
23192
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
23193
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
23194
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
23195
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
23196
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
23197
|
+
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
23198
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
23199
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
23200
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
23201
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
23202
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
23203
|
+
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
23204
|
+
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
23205
|
+
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
23206
|
+
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
23207
|
+
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
23208
|
+
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
23209
|
+
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
23210
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
23211
|
+
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
23212
|
+
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
23213
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
23214
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
23215
|
+
parallelApiRequests: AlertType.parallelApiRequests;
|
|
23216
|
+
testAlert: AlertType.testAlert;
|
|
23217
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
23218
|
+
internal: z.ZodLiteral<true>;
|
|
23219
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
23220
|
+
enabled: z.ZodBoolean;
|
|
23221
|
+
}, z.core.$strip>>;
|
|
23222
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
23223
|
+
enabled: z.ZodBoolean;
|
|
23224
|
+
}, z.core.$strip>>;
|
|
23225
|
+
}, z.core.$strip>>>>;
|
|
23226
|
+
}, z.core.$strip>>;
|
|
23227
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23228
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
23229
|
+
}, z.core.$strip>;
|
|
23230
|
+
type OrgWorkspaceUpdateRequest = z.infer<typeof OrgWorkspaceUpdateRequest>;
|
|
23231
|
+
declare const OrgWorkspaceUser: z.ZodObject<{
|
|
23232
|
+
id: z.ZodString;
|
|
23233
|
+
workspaceId: z.ZodString;
|
|
23234
|
+
testCustomerId: z.ZodString;
|
|
23235
|
+
userId: z.ZodString;
|
|
23236
|
+
role: z.ZodString;
|
|
23237
|
+
}, z.core.$strip>;
|
|
23238
|
+
type OrgWorkspaceUser = z.infer<typeof OrgWorkspaceUser>;
|
|
23239
|
+
declare const CreateOrgRequest: z.ZodObject<{
|
|
23240
|
+
name: z.ZodString;
|
|
23241
|
+
website: z.ZodOptional<z.ZodString>;
|
|
23242
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
23243
|
+
integrationApps: z.ZodOptional<z.ZodString>;
|
|
23244
|
+
firstIntegrationUseCase: z.ZodOptional<z.ZodString>;
|
|
23245
|
+
referralSource: z.ZodOptional<z.ZodString>;
|
|
23246
|
+
builder: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
23247
|
+
me: "me";
|
|
23248
|
+
team: "team";
|
|
23249
|
+
}>>>;
|
|
23250
|
+
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
23251
|
+
signupSource: z.ZodOptional<z.ZodEnum<{
|
|
23252
|
+
cursor: "cursor";
|
|
23253
|
+
other: "other";
|
|
23254
|
+
openclaw: "openclaw";
|
|
23255
|
+
claude: "claude";
|
|
23256
|
+
chatgpt: "chatgpt";
|
|
23257
|
+
web: "web";
|
|
23258
|
+
"membrane-cli": "membrane-cli";
|
|
23259
|
+
warp: "warp";
|
|
23260
|
+
lovable: "lovable";
|
|
23261
|
+
}>>;
|
|
23262
|
+
}, z.core.$strip>;
|
|
23263
|
+
type CreateOrgRequest = z.infer<typeof CreateOrgRequest>;
|
|
23264
|
+
declare const UpdateOrgRequest: z.ZodObject<{
|
|
23265
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23266
|
+
domains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23267
|
+
}, z.core.$strip>;
|
|
23268
|
+
type UpdateOrgRequest = z.infer<typeof UpdateOrgRequest>;
|
|
23269
|
+
declare const BaseOrgUser: z.ZodObject<{
|
|
23270
|
+
id: z.ZodString;
|
|
23271
|
+
orgId: z.ZodString;
|
|
23272
|
+
userId: z.ZodString;
|
|
22140
23273
|
role: z.ZodString;
|
|
22141
23274
|
status: z.ZodString;
|
|
22142
23275
|
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -22182,161 +23315,686 @@ declare const FullOrgUser: z.ZodObject<{
|
|
|
22182
23315
|
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22183
23316
|
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
22184
23317
|
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23318
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23319
|
+
}, z.core.$strip>>;
|
|
23320
|
+
thirtyDayTotalCredits: z.ZodOptional<z.ZodNumber>;
|
|
23321
|
+
lastThirtyDayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
23322
|
+
todayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
23323
|
+
domains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23324
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23325
|
+
freeAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
23326
|
+
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
23327
|
+
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23328
|
+
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
23329
|
+
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
23330
|
+
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
23331
|
+
autoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
23332
|
+
autoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
23333
|
+
freeEngineCredits: z.ZodOptional<z.ZodNumber>;
|
|
23334
|
+
paidEngineCredits: z.ZodOptional<z.ZodNumber>;
|
|
23335
|
+
freeEngineMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23336
|
+
engineAutoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
23337
|
+
engineAutoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
23338
|
+
engineAutoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
23339
|
+
engineAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
23340
|
+
}, z.core.$strip>;
|
|
23341
|
+
}, z.core.$strip>;
|
|
23342
|
+
type FullOrgUser = z.infer<typeof FullOrgUser>;
|
|
23343
|
+
declare const CreateOrgUserRequest: z.ZodObject<{
|
|
23344
|
+
email: z.ZodString;
|
|
23345
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23346
|
+
}, z.core.$strip>;
|
|
23347
|
+
type CreateOrgUserRequest = z.infer<typeof CreateOrgUserRequest>;
|
|
23348
|
+
declare const UpdateOrgUserRequest: z.ZodObject<{
|
|
23349
|
+
role: z.ZodOptional<z.ZodEnum<typeof OrgUserRole>>;
|
|
23350
|
+
status: z.ZodOptional<z.ZodEnum<typeof OrgUserStatus>>;
|
|
23351
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23352
|
+
}, z.core.$strip>;
|
|
23353
|
+
type UpdateOrgUserRequest = z.infer<typeof UpdateOrgUserRequest>;
|
|
23354
|
+
declare const OrgInvitation: z.ZodObject<{
|
|
23355
|
+
id: z.ZodString;
|
|
23356
|
+
orgId: z.ZodString;
|
|
23357
|
+
org: z.ZodObject<{
|
|
23358
|
+
id: z.ZodString;
|
|
23359
|
+
key: z.ZodString;
|
|
23360
|
+
name: z.ZodString;
|
|
23361
|
+
plan: z.ZodOptional<z.ZodEnum<typeof OrgPlan>>;
|
|
23362
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
23363
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
23364
|
+
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
23365
|
+
lastTrialExtensionDate: z.ZodOptional<z.ZodString>;
|
|
23366
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
23367
|
+
numberOfWorkspaces: z.ZodOptional<z.ZodNumber>;
|
|
23368
|
+
todayUsage: z.ZodOptional<z.ZodNumber>;
|
|
23369
|
+
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
23370
|
+
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
23371
|
+
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23372
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23373
|
+
}, z.core.$strip>>;
|
|
23374
|
+
thirtyDayTotalCredits: z.ZodOptional<z.ZodNumber>;
|
|
23375
|
+
lastThirtyDayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
23376
|
+
todayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
23377
|
+
domains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23378
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23379
|
+
freeAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
23380
|
+
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
23381
|
+
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23382
|
+
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
23383
|
+
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
23384
|
+
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
23385
|
+
autoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
23386
|
+
autoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
23387
|
+
freeEngineCredits: z.ZodOptional<z.ZodNumber>;
|
|
23388
|
+
paidEngineCredits: z.ZodOptional<z.ZodNumber>;
|
|
23389
|
+
freeEngineMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23390
|
+
engineAutoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
23391
|
+
engineAutoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
23392
|
+
engineAutoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
23393
|
+
engineAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
23394
|
+
}, z.core.$strip>;
|
|
23395
|
+
name: z.ZodString;
|
|
23396
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23397
|
+
uuid: z.ZodString;
|
|
23398
|
+
email: z.ZodOptional<z.ZodString>;
|
|
23399
|
+
}, z.core.$strip>;
|
|
23400
|
+
type OrgInvitation = z.infer<typeof OrgInvitation>;
|
|
23401
|
+
declare const UpdateOrgInvitationRequest: z.ZodObject<{
|
|
23402
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23403
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23404
|
+
}, z.core.$strip>;
|
|
23405
|
+
type UpdateOrgInvitationRequest = z.infer<typeof UpdateOrgInvitationRequest>;
|
|
23406
|
+
declare const CreateOrgInvitationRequest: z.ZodObject<{
|
|
23407
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23408
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23409
|
+
email: z.ZodOptional<z.ZodString>;
|
|
23410
|
+
}, z.core.$strip>;
|
|
23411
|
+
type CreateOrgInvitationRequest = z.infer<typeof CreateOrgInvitationRequest>;
|
|
23412
|
+
declare const FindOrgsQuery: z.ZodObject<{
|
|
23413
|
+
search: z.ZodOptional<z.ZodString>;
|
|
23414
|
+
myOrgs: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
23415
|
+
}, z.core.$strip>;
|
|
23416
|
+
type FindOrgsQuery = z.infer<typeof FindOrgsQuery>;
|
|
23417
|
+
declare const FindOrgWorkspacesQuery: z.ZodObject<{
|
|
23418
|
+
search: z.ZodOptional<z.ZodString>;
|
|
23419
|
+
cursor: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
23420
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
23421
|
+
}, z.core.$strip>;
|
|
23422
|
+
type FindOrgWorkspacesQuery = z.infer<typeof FindOrgWorkspacesQuery>;
|
|
23423
|
+
declare const CreateOrgWorkspaceRequest: z.ZodObject<{
|
|
23424
|
+
name: z.ZodOptional<z.ZodString>;
|
|
23425
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
23426
|
+
orgId: z.ZodString;
|
|
23427
|
+
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
23428
|
+
}, z.core.$strip>;
|
|
23429
|
+
type CreateOrgWorkspaceRequest = z.infer<typeof CreateOrgWorkspaceRequest>;
|
|
23430
|
+
declare const RotateOrgWorkspaceSecretResponse: z.ZodObject<{
|
|
23431
|
+
secret: z.ZodString;
|
|
23432
|
+
}, z.core.$strip>;
|
|
23433
|
+
type RotateOrgWorkspaceSecretResponse = z.infer<typeof RotateOrgWorkspaceSecretResponse>;
|
|
23434
|
+
declare const AccountResponse: z.ZodObject<{
|
|
23435
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
23436
|
+
id: z.ZodString;
|
|
23437
|
+
auth0Id: z.ZodOptional<z.ZodString>;
|
|
23438
|
+
email: z.ZodString;
|
|
23439
|
+
name: z.ZodString;
|
|
23440
|
+
defaultAccountId: z.ZodOptional<z.ZodString>;
|
|
23441
|
+
defaultWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
23442
|
+
isAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
23443
|
+
trialRequested: z.ZodBoolean;
|
|
23444
|
+
pat: z.ZodOptional<z.ZodString>;
|
|
23445
|
+
isEligible: z.ZodOptional<z.ZodBoolean>;
|
|
23446
|
+
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
23447
|
+
disposable: "disposable";
|
|
23448
|
+
blockedDomain: "blockedDomain";
|
|
23449
|
+
}>>;
|
|
23450
|
+
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
23451
|
+
isCompanyEmail: z.ZodOptional<z.ZodBoolean>;
|
|
23452
|
+
}, z.core.$strip>>;
|
|
23453
|
+
workspace: z.ZodOptional<z.ZodObject<{
|
|
23454
|
+
id: z.ZodString;
|
|
23455
|
+
name: z.ZodString;
|
|
23456
|
+
orgId: z.ZodString;
|
|
23457
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
23458
|
+
key: z.ZodString;
|
|
23459
|
+
secret: z.ZodString;
|
|
23460
|
+
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
23461
|
+
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
23462
|
+
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
23463
|
+
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
23464
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23465
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
23466
|
+
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
23467
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
23468
|
+
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
23469
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23470
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23471
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23472
|
+
}, z.core.$strip>>;
|
|
23473
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
23474
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23475
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23476
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23477
|
+
}, z.core.$strip>>;
|
|
23478
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
23479
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23480
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23481
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23482
|
+
}, z.core.$strip>>;
|
|
23483
|
+
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
23484
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23485
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23486
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23487
|
+
}, z.core.$strip>>;
|
|
23488
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
23489
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23490
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23491
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23492
|
+
}, z.core.$strip>>;
|
|
23493
|
+
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
23494
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23495
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23496
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23497
|
+
}, z.core.$strip>>;
|
|
23498
|
+
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
23499
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23500
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23501
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23502
|
+
}, z.core.$strip>>;
|
|
23503
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
23504
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23505
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23506
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23507
|
+
}, z.core.$strip>>;
|
|
23508
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
23509
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23510
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23511
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23512
|
+
}, z.core.$strip>>;
|
|
23513
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
23514
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23515
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23516
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23517
|
+
}, z.core.$strip>>;
|
|
23518
|
+
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
|
|
23519
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23520
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23521
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23522
|
+
}, z.core.$strip>>;
|
|
23523
|
+
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
23524
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23525
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23526
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23527
|
+
}, z.core.$strip>>;
|
|
23528
|
+
parallelCustomCodeRuns: z.ZodOptional<z.ZodObject<{
|
|
23529
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23530
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23531
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23532
|
+
}, z.core.$strip>>;
|
|
23533
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
23534
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23535
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23536
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23537
|
+
}, z.core.$strip>>;
|
|
23538
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
23539
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23540
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23541
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23542
|
+
}, z.core.$strip>>;
|
|
23543
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23544
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23545
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23546
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23547
|
+
}, z.core.$strip>>;
|
|
23548
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23549
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23550
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23551
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23552
|
+
}, z.core.$strip>>;
|
|
23553
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23554
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23555
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23556
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23557
|
+
}, z.core.$strip>>;
|
|
23558
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23559
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23560
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23561
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23562
|
+
}, z.core.$strip>>;
|
|
23563
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23564
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23565
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23566
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23567
|
+
}, z.core.$strip>>;
|
|
23568
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23569
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23570
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23571
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23572
|
+
}, z.core.$strip>>;
|
|
23573
|
+
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodObject<{
|
|
23574
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23575
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23576
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23577
|
+
}, z.core.$strip>>;
|
|
23578
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23579
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23580
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23581
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23582
|
+
}, z.core.$strip>>;
|
|
23583
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
23584
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23585
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23586
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23587
|
+
}, z.core.$strip>>;
|
|
23588
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
23589
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23590
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23591
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23592
|
+
}, z.core.$strip>>;
|
|
23593
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
23594
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23595
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23596
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23597
|
+
}, z.core.$strip>>;
|
|
23598
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
23599
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23600
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23601
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23602
|
+
}, z.core.$strip>>;
|
|
23603
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
23604
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23605
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23606
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23607
|
+
}, z.core.$strip>>;
|
|
23608
|
+
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
23609
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23610
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23611
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23612
|
+
}, z.core.$strip>>;
|
|
23613
|
+
QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
23614
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23615
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23616
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23617
|
+
}, z.core.$strip>>;
|
|
23618
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23619
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23620
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23621
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23622
|
+
}, z.core.$strip>>;
|
|
23623
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23624
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23625
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23626
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23627
|
+
}, z.core.$strip>>;
|
|
23628
|
+
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23629
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23630
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23631
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23632
|
+
}, z.core.$strip>>;
|
|
23633
|
+
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23634
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23635
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23636
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23637
|
+
}, z.core.$strip>>;
|
|
23638
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23639
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23640
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23641
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23642
|
+
}, z.core.$strip>>;
|
|
23643
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
23644
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23645
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23646
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23647
|
+
}, z.core.$strip>>;
|
|
23648
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23649
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23650
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23651
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23652
|
+
}, z.core.$strip>>;
|
|
23653
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
23654
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23655
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23656
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23657
|
+
}, z.core.$strip>>;
|
|
23658
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
23659
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23660
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23661
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23662
|
+
}, z.core.$strip>>;
|
|
23663
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
|
|
23664
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23665
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23666
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23667
|
+
}, z.core.$strip>>;
|
|
23668
|
+
}, z.core.$strip>>;
|
|
23669
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
23670
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
23671
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
23672
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
23673
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
23674
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
23675
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
23676
|
+
}, z.core.$strip>>;
|
|
23677
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23678
|
+
name: z.ZodString;
|
|
23679
|
+
publicKey: z.ZodString;
|
|
23680
|
+
}, z.core.$strip>>>;
|
|
23681
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
23682
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
23683
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23684
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
23685
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
23686
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
23687
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
23688
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
23689
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
23690
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
23691
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
23692
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
23693
|
+
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
23694
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
23695
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
23696
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
23697
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
23698
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
23699
|
+
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
23700
|
+
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
23701
|
+
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
23702
|
+
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
23703
|
+
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
23704
|
+
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
23705
|
+
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
23706
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
23707
|
+
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
23708
|
+
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
23709
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
23710
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
23711
|
+
parallelApiRequests: AlertType.parallelApiRequests;
|
|
23712
|
+
testAlert: AlertType.testAlert;
|
|
23713
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
23714
|
+
internal: z.ZodLiteral<true>;
|
|
23715
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
23716
|
+
enabled: z.ZodBoolean;
|
|
23717
|
+
}, z.core.$strip>>;
|
|
23718
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
23719
|
+
enabled: z.ZodBoolean;
|
|
23720
|
+
}, z.core.$strip>>;
|
|
23721
|
+
}, z.core.$strip>>>>;
|
|
23722
|
+
}, z.core.$strip>>;
|
|
23723
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23724
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
23725
|
+
}, z.core.$strip>>;
|
|
23726
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23727
|
+
id: z.ZodString;
|
|
23728
|
+
name: z.ZodString;
|
|
23729
|
+
orgId: z.ZodString;
|
|
23730
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
23731
|
+
key: z.ZodString;
|
|
23732
|
+
secret: z.ZodString;
|
|
23733
|
+
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
23734
|
+
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
23735
|
+
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
23736
|
+
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
23737
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23738
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
23739
|
+
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
23740
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
23741
|
+
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
23742
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23743
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23744
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23745
|
+
}, z.core.$strip>>;
|
|
23746
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
23747
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23748
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23749
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23750
|
+
}, z.core.$strip>>;
|
|
23751
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
23752
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23753
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23754
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23755
|
+
}, z.core.$strip>>;
|
|
23756
|
+
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
23757
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23758
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23759
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23760
|
+
}, z.core.$strip>>;
|
|
23761
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
23762
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23763
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23764
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23765
|
+
}, z.core.$strip>>;
|
|
23766
|
+
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
23767
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23768
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23769
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23770
|
+
}, z.core.$strip>>;
|
|
23771
|
+
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
23772
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23773
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23774
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23775
|
+
}, z.core.$strip>>;
|
|
23776
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
23777
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23778
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23779
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23780
|
+
}, z.core.$strip>>;
|
|
23781
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
23782
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23783
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23784
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23785
|
+
}, z.core.$strip>>;
|
|
23786
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
23787
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23788
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23789
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23790
|
+
}, z.core.$strip>>;
|
|
23791
|
+
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
|
|
23792
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23793
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23794
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23795
|
+
}, z.core.$strip>>;
|
|
23796
|
+
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
23797
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23798
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23799
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23800
|
+
}, z.core.$strip>>;
|
|
23801
|
+
parallelCustomCodeRuns: z.ZodOptional<z.ZodObject<{
|
|
23802
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23803
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23804
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23805
|
+
}, z.core.$strip>>;
|
|
23806
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
23807
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23808
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23809
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23810
|
+
}, z.core.$strip>>;
|
|
23811
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
23812
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23813
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23814
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23815
|
+
}, z.core.$strip>>;
|
|
23816
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23817
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23818
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23819
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23820
|
+
}, z.core.$strip>>;
|
|
23821
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23822
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23823
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23824
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23825
|
+
}, z.core.$strip>>;
|
|
23826
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23827
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23828
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23829
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23830
|
+
}, z.core.$strip>>;
|
|
23831
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23832
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23833
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23834
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23835
|
+
}, z.core.$strip>>;
|
|
23836
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23837
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23838
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23839
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23840
|
+
}, z.core.$strip>>;
|
|
23841
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23842
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23843
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23844
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23845
|
+
}, z.core.$strip>>;
|
|
23846
|
+
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodObject<{
|
|
23847
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23848
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23849
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23850
|
+
}, z.core.$strip>>;
|
|
23851
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
23852
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23853
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23854
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23855
|
+
}, z.core.$strip>>;
|
|
23856
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
23857
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23858
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23859
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23860
|
+
}, z.core.$strip>>;
|
|
23861
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
23862
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23863
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23864
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23865
|
+
}, z.core.$strip>>;
|
|
23866
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
23867
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23868
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23869
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23870
|
+
}, z.core.$strip>>;
|
|
23871
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
23872
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23873
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23874
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23875
|
+
}, z.core.$strip>>;
|
|
23876
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
23877
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23878
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23879
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23880
|
+
}, z.core.$strip>>;
|
|
23881
|
+
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
23882
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23883
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23884
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23885
|
+
}, z.core.$strip>>;
|
|
23886
|
+
QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
23887
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23888
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23889
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23890
|
+
}, z.core.$strip>>;
|
|
23891
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23892
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23893
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23894
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23895
|
+
}, z.core.$strip>>;
|
|
23896
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23897
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23898
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23899
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23900
|
+
}, z.core.$strip>>;
|
|
23901
|
+
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23902
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23903
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23904
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23905
|
+
}, z.core.$strip>>;
|
|
23906
|
+
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
23907
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23908
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23909
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23910
|
+
}, z.core.$strip>>;
|
|
23911
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23912
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23913
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23914
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23915
|
+
}, z.core.$strip>>;
|
|
23916
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
23917
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23918
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23919
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23920
|
+
}, z.core.$strip>>;
|
|
23921
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
23922
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23923
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23924
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23925
|
+
}, z.core.$strip>>;
|
|
23926
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
23927
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23928
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23929
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23930
|
+
}, z.core.$strip>>;
|
|
23931
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
23932
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23933
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23934
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23935
|
+
}, z.core.$strip>>;
|
|
23936
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
|
|
23937
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
23938
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23939
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23940
|
+
}, z.core.$strip>>;
|
|
22185
23941
|
}, z.core.$strip>>;
|
|
22186
|
-
|
|
22187
|
-
|
|
22188
|
-
|
|
22189
|
-
|
|
22190
|
-
|
|
22191
|
-
|
|
22192
|
-
|
|
22193
|
-
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22194
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22195
|
-
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
22196
|
-
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22197
|
-
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
22198
|
-
autoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
22199
|
-
autoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
22200
|
-
freeEngineCredits: z.ZodOptional<z.ZodNumber>;
|
|
22201
|
-
paidEngineCredits: z.ZodOptional<z.ZodNumber>;
|
|
22202
|
-
freeEngineMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22203
|
-
engineAutoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22204
|
-
engineAutoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
22205
|
-
engineAutoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
22206
|
-
engineAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
22207
|
-
}, z.core.$strip>;
|
|
22208
|
-
}, z.core.$strip>;
|
|
22209
|
-
type FullOrgUser = z.infer<typeof FullOrgUser>;
|
|
22210
|
-
declare const CreateOrgUserRequest: z.ZodObject<{
|
|
22211
|
-
email: z.ZodString;
|
|
22212
|
-
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22213
|
-
}, z.core.$strip>;
|
|
22214
|
-
type CreateOrgUserRequest = z.infer<typeof CreateOrgUserRequest>;
|
|
22215
|
-
declare const UpdateOrgUserRequest: z.ZodObject<{
|
|
22216
|
-
role: z.ZodOptional<z.ZodEnum<typeof OrgUserRole>>;
|
|
22217
|
-
status: z.ZodOptional<z.ZodEnum<typeof OrgUserStatus>>;
|
|
22218
|
-
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22219
|
-
}, z.core.$strip>;
|
|
22220
|
-
type UpdateOrgUserRequest = z.infer<typeof UpdateOrgUserRequest>;
|
|
22221
|
-
declare const OrgInvitation: z.ZodObject<{
|
|
22222
|
-
id: z.ZodString;
|
|
22223
|
-
orgId: z.ZodString;
|
|
22224
|
-
org: z.ZodObject<{
|
|
22225
|
-
id: z.ZodString;
|
|
22226
|
-
key: z.ZodString;
|
|
22227
|
-
name: z.ZodString;
|
|
22228
|
-
plan: z.ZodOptional<z.ZodEnum<typeof OrgPlan>>;
|
|
22229
|
-
createdAt: z.ZodCoercedDate<unknown>;
|
|
22230
|
-
updatedAt: z.ZodCoercedDate<unknown>;
|
|
22231
|
-
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22232
|
-
lastTrialExtensionDate: z.ZodOptional<z.ZodString>;
|
|
22233
|
-
limits: z.ZodOptional<z.ZodObject<{
|
|
22234
|
-
numberOfWorkspaces: z.ZodOptional<z.ZodNumber>;
|
|
22235
|
-
todayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22236
|
-
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22237
|
-
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
22238
|
-
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23942
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
23943
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
23944
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
23945
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
23946
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
23947
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
23948
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
22239
23949
|
}, z.core.$strip>>;
|
|
22240
|
-
|
|
22241
|
-
|
|
22242
|
-
|
|
22243
|
-
|
|
22244
|
-
|
|
22245
|
-
|
|
22246
|
-
|
|
22247
|
-
|
|
22248
|
-
|
|
22249
|
-
|
|
22250
|
-
|
|
22251
|
-
|
|
22252
|
-
|
|
22253
|
-
|
|
22254
|
-
|
|
22255
|
-
|
|
22256
|
-
|
|
22257
|
-
|
|
22258
|
-
|
|
22259
|
-
|
|
22260
|
-
|
|
22261
|
-
|
|
22262
|
-
|
|
22263
|
-
|
|
22264
|
-
|
|
22265
|
-
|
|
22266
|
-
|
|
22267
|
-
|
|
22268
|
-
|
|
22269
|
-
|
|
22270
|
-
|
|
22271
|
-
|
|
22272
|
-
|
|
22273
|
-
|
|
22274
|
-
|
|
22275
|
-
|
|
22276
|
-
|
|
22277
|
-
|
|
22278
|
-
|
|
22279
|
-
|
|
22280
|
-
|
|
22281
|
-
|
|
22282
|
-
|
|
22283
|
-
|
|
22284
|
-
|
|
22285
|
-
|
|
22286
|
-
|
|
22287
|
-
|
|
22288
|
-
}, z.core.$strip>;
|
|
22289
|
-
type FindOrgWorkspacesQuery = z.infer<typeof FindOrgWorkspacesQuery>;
|
|
22290
|
-
declare const AccountResponse: z.ZodObject<{
|
|
22291
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
22292
|
-
id: z.ZodString;
|
|
22293
|
-
auth0Id: z.ZodOptional<z.ZodString>;
|
|
22294
|
-
email: z.ZodString;
|
|
22295
|
-
name: z.ZodString;
|
|
22296
|
-
defaultAccountId: z.ZodOptional<z.ZodString>;
|
|
22297
|
-
defaultWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
22298
|
-
isAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
22299
|
-
trialRequested: z.ZodBoolean;
|
|
22300
|
-
pat: z.ZodOptional<z.ZodString>;
|
|
22301
|
-
isEligible: z.ZodOptional<z.ZodBoolean>;
|
|
22302
|
-
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
22303
|
-
disposable: "disposable";
|
|
22304
|
-
blockedDomain: "blockedDomain";
|
|
22305
|
-
}>>;
|
|
22306
|
-
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
22307
|
-
isCompanyEmail: z.ZodOptional<z.ZodBoolean>;
|
|
22308
|
-
}, z.core.$strip>>;
|
|
22309
|
-
workspace: z.ZodOptional<z.ZodObject<{
|
|
22310
|
-
id: z.ZodString;
|
|
22311
|
-
name: z.ZodString;
|
|
22312
|
-
orgId: z.ZodString;
|
|
22313
|
-
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22314
|
-
key: z.ZodString;
|
|
22315
|
-
secret: z.ZodString;
|
|
22316
|
-
createdAt: z.ZodCoercedDate<unknown>;
|
|
22317
|
-
updatedAt: z.ZodCoercedDate<unknown>;
|
|
22318
|
-
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22319
|
-
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22320
|
-
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22321
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
22322
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22323
|
-
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
22324
|
-
}, z.core.$strip>>;
|
|
22325
|
-
workspaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22326
|
-
id: z.ZodString;
|
|
22327
|
-
name: z.ZodString;
|
|
22328
|
-
orgId: z.ZodString;
|
|
22329
|
-
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22330
|
-
key: z.ZodString;
|
|
22331
|
-
secret: z.ZodString;
|
|
22332
|
-
createdAt: z.ZodCoercedDate<unknown>;
|
|
22333
|
-
updatedAt: z.ZodCoercedDate<unknown>;
|
|
22334
|
-
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22335
|
-
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22336
|
-
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22337
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
22338
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22339
|
-
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
23950
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23951
|
+
name: z.ZodString;
|
|
23952
|
+
publicKey: z.ZodString;
|
|
23953
|
+
}, z.core.$strip>>>;
|
|
23954
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
23955
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
23956
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
23957
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
23958
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
23959
|
+
fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
|
|
23960
|
+
apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
|
|
23961
|
+
apiRequestsPerHour: AlertType.apiRequestsPerHour;
|
|
23962
|
+
webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
|
|
23963
|
+
webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
|
|
23964
|
+
workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
|
|
23965
|
+
workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
|
|
23966
|
+
workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
|
|
23967
|
+
externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
|
|
23968
|
+
apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
|
|
23969
|
+
apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
|
|
23970
|
+
webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
|
|
23971
|
+
webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
|
|
23972
|
+
parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
|
|
23973
|
+
engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
|
|
23974
|
+
engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
|
|
23975
|
+
totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
23976
|
+
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
23977
|
+
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
23978
|
+
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
23979
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
23980
|
+
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
23981
|
+
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
23982
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
23983
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
23984
|
+
parallelApiRequests: AlertType.parallelApiRequests;
|
|
23985
|
+
testAlert: AlertType.testAlert;
|
|
23986
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
23987
|
+
internal: z.ZodLiteral<true>;
|
|
23988
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
23989
|
+
enabled: z.ZodBoolean;
|
|
23990
|
+
}, z.core.$strip>>;
|
|
23991
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
23992
|
+
enabled: z.ZodBoolean;
|
|
23993
|
+
}, z.core.$strip>>;
|
|
23994
|
+
}, z.core.$strip>>>>;
|
|
23995
|
+
}, z.core.$strip>>;
|
|
23996
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23997
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22340
23998
|
}, z.core.$strip>>>;
|
|
22341
23999
|
workspaceUser: z.ZodOptional<z.ZodObject<{
|
|
22342
24000
|
id: z.ZodString;
|
|
@@ -22438,12 +24096,12 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22438
24096
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22439
24097
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22440
24098
|
}, z.core.$strip>>;
|
|
22441
|
-
|
|
24099
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
22442
24100
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22443
24101
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22444
24102
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22445
24103
|
}, z.core.$strip>>;
|
|
22446
|
-
|
|
24104
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22447
24105
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22448
24106
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22449
24107
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
@@ -22453,7 +24111,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22453
24111
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22454
24112
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22455
24113
|
}, z.core.$strip>>;
|
|
22456
|
-
|
|
24114
|
+
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
22457
24115
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22458
24116
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22459
24117
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
@@ -22533,6 +24191,11 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22533
24191
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22534
24192
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22535
24193
|
}, z.core.$strip>>;
|
|
24194
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
24195
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
24196
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
24197
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
24198
|
+
}, z.core.$strip>>;
|
|
22536
24199
|
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
22537
24200
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22538
24201
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22588,6 +24251,11 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22588
24251
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22589
24252
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22590
24253
|
}, z.core.$strip>>;
|
|
24254
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
|
|
24255
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
24256
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
24257
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
24258
|
+
}, z.core.$strip>>;
|
|
22591
24259
|
}, z.core.$strip>>;
|
|
22592
24260
|
settings: z.ZodOptional<z.ZodObject<{
|
|
22593
24261
|
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22619,6 +24287,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22619
24287
|
totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
|
|
22620
24288
|
totalNumberOfConnections: AlertType.totalNumberOfConnections;
|
|
22621
24289
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
24290
|
+
totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
22622
24291
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
22623
24292
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
22624
24293
|
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
@@ -22660,6 +24329,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22660
24329
|
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22661
24330
|
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
22662
24331
|
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
24332
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22663
24333
|
}, z.core.$strip>>;
|
|
22664
24334
|
thirtyDayTotalCredits: z.ZodOptional<z.ZodNumber>;
|
|
22665
24335
|
lastThirtyDayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22669,7 +24339,6 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22669
24339
|
freeAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
22670
24340
|
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
22671
24341
|
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22672
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22673
24342
|
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
22674
24343
|
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22675
24344
|
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23441,7 +25110,9 @@ declare const FlowRunsStatsQuery: z.ZodObject<{
|
|
|
23441
25110
|
startDatetime: z.ZodString;
|
|
23442
25111
|
}, z.core.$strip>;
|
|
23443
25112
|
type FlowRunsStatsQuery = z.infer<typeof FlowRunsStatsQuery>;
|
|
25113
|
+
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
25114
|
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"];
|
|
25115
|
+
declare const WORKSPACE_DATABASE_RECORD_COLLECTIONS: readonly string[];
|
|
23445
25116
|
declare const WorkspaceElementsStatsSchema: z.ZodObject<{
|
|
23446
25117
|
total: z.ZodNumber;
|
|
23447
25118
|
breakdown: z.ZodObject<{
|
|
@@ -24272,6 +25943,14 @@ declare const MembraneInstance: z.ZodObject<{
|
|
|
24272
25943
|
apiBaseUri: z.ZodString;
|
|
24273
25944
|
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24274
25945
|
orgId: z.ZodOptional<z.ZodString>;
|
|
25946
|
+
type: z.ZodOptional<z.ZodString>;
|
|
25947
|
+
engineVersion: z.ZodOptional<z.ZodString>;
|
|
25948
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
25949
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
25950
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
25951
|
+
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
25952
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
25953
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24275
25954
|
}, z.core.$strip>;
|
|
24276
25955
|
type MembraneInstanceDto = z.infer<typeof MembraneInstance>;
|
|
24277
25956
|
declare const CreateMembraneInstanceRequest: z.ZodObject<{
|
|
@@ -24301,10 +25980,36 @@ declare const ListMembraneInstancesResponse: z.ZodObject<{
|
|
|
24301
25980
|
apiBaseUri: z.ZodString;
|
|
24302
25981
|
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24303
25982
|
orgId: z.ZodOptional<z.ZodString>;
|
|
25983
|
+
type: z.ZodOptional<z.ZodString>;
|
|
25984
|
+
engineVersion: z.ZodOptional<z.ZodString>;
|
|
25985
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
25986
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
25987
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
25988
|
+
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
25989
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
25990
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24304
25991
|
}, z.core.$strip>>;
|
|
24305
25992
|
cursor: z.ZodOptional<z.ZodString>;
|
|
24306
25993
|
}, z.core.$strip>;
|
|
24307
25994
|
type ListMembraneInstancesResponse = z.infer<typeof ListMembraneInstancesResponse>;
|
|
25995
|
+
declare const MembraneInstanceAdmin: z.ZodObject<{
|
|
25996
|
+
id: z.ZodString;
|
|
25997
|
+
name: z.ZodString;
|
|
25998
|
+
apiBaseUri: z.ZodString;
|
|
25999
|
+
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
26000
|
+
orgId: z.ZodOptional<z.ZodString>;
|
|
26001
|
+
type: z.ZodOptional<z.ZodString>;
|
|
26002
|
+
engineVersion: z.ZodOptional<z.ZodString>;
|
|
26003
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
26004
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
26005
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
26006
|
+
lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
26007
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
26008
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
26009
|
+
orgName: z.ZodOptional<z.ZodString>;
|
|
26010
|
+
workspaceCount: z.ZodOptional<z.ZodNumber>;
|
|
26011
|
+
}, z.core.$strip>;
|
|
26012
|
+
type MembraneInstanceAdmin = z.infer<typeof MembraneInstanceAdmin>;
|
|
24308
26013
|
|
|
24309
26014
|
declare const OrgInstanceType: z.ZodEnum<{
|
|
24310
26015
|
"membrane-hosted": "membrane-hosted";
|
|
@@ -24321,20 +26026,25 @@ type OrgInstanceWorkspace = z.infer<typeof OrgInstanceWorkspace>;
|
|
|
24321
26026
|
declare const OrgInstance: z.ZodObject<{
|
|
24322
26027
|
id: z.ZodString;
|
|
24323
26028
|
name: z.ZodString;
|
|
24324
|
-
type: z.ZodEnum<{
|
|
26029
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
24325
26030
|
"membrane-hosted": "membrane-hosted";
|
|
24326
26031
|
"self-hosted": "self-hosted";
|
|
24327
|
-
}
|
|
26032
|
+
}>>;
|
|
24328
26033
|
apiBaseUri: z.ZodString;
|
|
24329
26034
|
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24330
26035
|
engineVersion: z.ZodOptional<z.ZodString>;
|
|
26036
|
+
commitSHA: z.ZodOptional<z.ZodString>;
|
|
26037
|
+
buildDate: z.ZodOptional<z.ZodString>;
|
|
26038
|
+
cloudProvider: z.ZodOptional<z.ZodString>;
|
|
24331
26039
|
lastReportedAt: z.ZodOptional<z.ZodString>;
|
|
24332
|
-
|
|
26040
|
+
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
26041
|
+
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
26042
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
24333
26043
|
workspaceId: z.ZodString;
|
|
24334
26044
|
workspaceName: z.ZodString;
|
|
24335
26045
|
activeTenants: z.ZodOptional<z.ZodNumber>;
|
|
24336
26046
|
billableTenants: z.ZodOptional<z.ZodNumber>;
|
|
24337
|
-
}, z.core.$strip
|
|
26047
|
+
}, z.core.$strip>>>;
|
|
24338
26048
|
}, z.core.$strip>;
|
|
24339
26049
|
type OrgInstance = z.infer<typeof OrgInstance>;
|
|
24340
26050
|
|
|
@@ -24408,5 +26118,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
24408
26118
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
24409
26119
|
}
|
|
24410
26120
|
|
|
24411
|
-
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, UpdateMembraneInstanceRequest, 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 };
|
|
24412
|
-
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,
|
|
26121
|
+
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, WorkspaceAiCreditLimits, 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 };
|
|
26122
|
+
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 };
|