@membranehq/sdk 1.0.0 → 1.0.1
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/dts/membrane-instances/types.d.ts +3 -0
- package/dist/dts/orgs/types.d.ts +1254 -73
- package/dist/dts/workspaces/api.d.ts +8 -3
- package/dist/dts/workspaces/types.d.ts +31 -13
- package/dist/index.browser.d.mts +1403 -196
- package/dist/index.browser.d.ts +1403 -196
- package/dist/index.browser.js +40 -31
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +41 -32
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1403 -196
- package/dist/index.node.d.ts +1403 -196
- package/dist/index.node.js +40 -31
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +41 -32
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.d.ts
CHANGED
|
@@ -21049,9 +21049,9 @@ declare enum ParallelExecutionLimits {
|
|
|
21049
21049
|
ParallelApiRequests = "parallelApiRequests",
|
|
21050
21050
|
ParallelSseRequests = "parallelSseRequests",
|
|
21051
21051
|
ParallelBackgroundJobs = "parallelBackgroundJobs",
|
|
21052
|
-
|
|
21053
|
-
|
|
21054
|
-
|
|
21052
|
+
ParallelEventProcessingJobs = "parallelEventProcessingJobs",
|
|
21053
|
+
ParallelEventProcessingJobsPerConnection = "parallelEventProcessingJobsPerConnection",
|
|
21054
|
+
ParallelAgentSessions = "parallelAgentSessions",
|
|
21055
21055
|
ParallelInstantTasksActiveJobs = "parallelInstantTasksActiveJobs",
|
|
21056
21056
|
ParallelCustomCodeRuns = "parallelCustomCodeRuns"
|
|
21057
21057
|
}
|
|
@@ -21088,6 +21088,9 @@ declare enum CustomerLimits {
|
|
|
21088
21088
|
WebhookRequestsPerCustomerPerHour = "webhookRequestsPerCustomerPerHour",
|
|
21089
21089
|
TotalNumberOfDatabaseEntitiesPerCustomer = "totalNumberOfDatabaseEntitiesPerCustomer"
|
|
21090
21090
|
}
|
|
21091
|
+
declare enum WorkspaceAiCreditLimits {
|
|
21092
|
+
DefaultTenantAiCreditsRolling30DayLimit = "defaultTenantAiCreditsRolling30DayLimit"
|
|
21093
|
+
}
|
|
21091
21094
|
declare enum LimitUnits {
|
|
21092
21095
|
Number = "number",
|
|
21093
21096
|
Msec = "msec",
|
|
@@ -21098,7 +21101,7 @@ interface WorkspaceLimit {
|
|
|
21098
21101
|
defaultValue?: number;
|
|
21099
21102
|
unit: LimitUnits;
|
|
21100
21103
|
}
|
|
21101
|
-
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>>;
|
|
21102
21105
|
interface EngineWorkspaceWithOrgData {
|
|
21103
21106
|
id: string;
|
|
21104
21107
|
key: string;
|
|
@@ -21151,12 +21154,12 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
21151
21154
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21152
21155
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21153
21156
|
}, z$1.core.$strip>>;
|
|
21154
|
-
|
|
21157
|
+
parallelEventProcessingJobs: z$1.ZodOptional<z$1.ZodObject<{
|
|
21155
21158
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21156
21159
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21157
21160
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21158
21161
|
}, z$1.core.$strip>>;
|
|
21159
|
-
|
|
21162
|
+
parallelEventProcessingJobsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
21160
21163
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21161
21164
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21162
21165
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21166,7 +21169,7 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
21166
21169
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21167
21170
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21168
21171
|
}, z$1.core.$strip>>;
|
|
21169
|
-
|
|
21172
|
+
parallelAgentSessions: z$1.ZodOptional<z$1.ZodObject<{
|
|
21170
21173
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21171
21174
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21172
21175
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21306,6 +21309,11 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
|
|
|
21306
21309
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21307
21310
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21308
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>>;
|
|
21309
21317
|
}, z$1.core.$strip>;
|
|
21310
21318
|
interface WorkspaceExport {
|
|
21311
21319
|
[WorkspaceElementType.AppDataSchema]: AppDataSchemaExportProperties[];
|
|
@@ -21401,12 +21409,12 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21401
21409
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21402
21410
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21403
21411
|
}, z$1.core.$strip>>;
|
|
21404
|
-
|
|
21412
|
+
parallelEventProcessingJobs: z$1.ZodOptional<z$1.ZodObject<{
|
|
21405
21413
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21406
21414
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21407
21415
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21408
21416
|
}, z$1.core.$strip>>;
|
|
21409
|
-
|
|
21417
|
+
parallelEventProcessingJobsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
21410
21418
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21411
21419
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21412
21420
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21416,7 +21424,7 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21416
21424
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21417
21425
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21418
21426
|
}, z$1.core.$strip>>;
|
|
21419
|
-
|
|
21427
|
+
parallelAgentSessions: z$1.ZodOptional<z$1.ZodObject<{
|
|
21420
21428
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21421
21429
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21422
21430
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21556,6 +21564,11 @@ declare const AppSchema: z$1.ZodObject<{
|
|
|
21556
21564
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21557
21565
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21558
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>>;
|
|
21559
21572
|
}, z$1.core.$strip>>;
|
|
21560
21573
|
settings: z$1.ZodOptional<z$1.ZodObject<{
|
|
21561
21574
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -21676,12 +21689,12 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21676
21689
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21677
21690
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21678
21691
|
}, z$1.core.$strip>>;
|
|
21679
|
-
|
|
21692
|
+
parallelEventProcessingJobs: z$1.ZodOptional<z$1.ZodObject<{
|
|
21680
21693
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21681
21694
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21682
21695
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21683
21696
|
}, z$1.core.$strip>>;
|
|
21684
|
-
|
|
21697
|
+
parallelEventProcessingJobsPerConnection: z$1.ZodOptional<z$1.ZodObject<{
|
|
21685
21698
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21686
21699
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21687
21700
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21691,7 +21704,7 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21691
21704
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21692
21705
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21693
21706
|
}, z$1.core.$strip>>;
|
|
21694
|
-
|
|
21707
|
+
parallelAgentSessions: z$1.ZodOptional<z$1.ZodObject<{
|
|
21695
21708
|
value: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21696
21709
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21697
21710
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
@@ -21831,6 +21844,11 @@ declare const Workspace: z$1.ZodObject<{
|
|
|
21831
21844
|
defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
|
|
21832
21845
|
unit: z$1.ZodEnum<typeof LimitUnits>;
|
|
21833
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>>;
|
|
21834
21852
|
}, z$1.core.$strip>>;
|
|
21835
21853
|
settings: z$1.ZodOptional<z$1.ZodObject<{
|
|
21836
21854
|
enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
@@ -22040,12 +22058,12 @@ declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
|
|
|
22040
22058
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22041
22059
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22042
22060
|
}, z.core.$strip>>>;
|
|
22043
|
-
|
|
22061
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22044
22062
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22045
22063
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22046
22064
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22047
22065
|
}, z.core.$strip>>>;
|
|
22048
|
-
|
|
22066
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22049
22067
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22050
22068
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22051
22069
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
@@ -22055,7 +22073,7 @@ declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
|
|
|
22055
22073
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22056
22074
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22057
22075
|
}, z.core.$strip>>>;
|
|
22058
|
-
|
|
22076
|
+
parallelAgentSessions: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
22059
22077
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22060
22078
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22061
22079
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
@@ -22195,6 +22213,11 @@ declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
|
|
|
22195
22213
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22196
22214
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22197
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>>>;
|
|
22198
22221
|
}, z.core.$strip>;
|
|
22199
22222
|
type UpdateWorkspaceLimitsRequest = z.infer<typeof UpdateWorkspaceLimitsRequest>;
|
|
22200
22223
|
declare const GenerateWorkspaceAccessTokenRequest: z.ZodObject<{
|
|
@@ -22300,7 +22323,8 @@ declare enum OrgLimitsType {
|
|
|
22300
22323
|
NUMBER_OF_WORKSPACES = "numberOfWorkspaces",
|
|
22301
22324
|
TODAY_USAGE = "todayUsage",
|
|
22302
22325
|
LAST_THIRTY_DAY_USAGE = "lastThirtyDayUsage",
|
|
22303
|
-
MEMBRANE_EXPERT_CREDITS_CAP = "membraneExpertCreditsCapPerMonth"
|
|
22326
|
+
MEMBRANE_EXPERT_CREDITS_CAP = "membraneExpertCreditsCapPerMonth",
|
|
22327
|
+
DEFAULT_TENANT_AI_CREDITS_ROLLING_30_DAY_LIMIT = "defaultTenantAiCreditsRolling30DayLimit"
|
|
22304
22328
|
}
|
|
22305
22329
|
declare enum OrgPlan {
|
|
22306
22330
|
Core = "core",
|
|
@@ -22330,14 +22354,16 @@ interface OrgLimits {
|
|
|
22330
22354
|
[OrgLimitsType.TODAY_USAGE]?: number;
|
|
22331
22355
|
[OrgLimitsType.LAST_THIRTY_DAY_USAGE]?: number;
|
|
22332
22356
|
[OrgLimitsType.MEMBRANE_EXPERT_CREDITS_CAP]?: number | null;
|
|
22357
|
+
[OrgLimitsType.DEFAULT_TENANT_AI_CREDITS_ROLLING_30_DAY_LIMIT]?: number | null;
|
|
22333
22358
|
}
|
|
22334
|
-
declare const OrgLimits: z.
|
|
22359
|
+
declare const OrgLimits: z.ZodObject<{
|
|
22335
22360
|
numberOfWorkspaces: z.ZodOptional<z.ZodNumber>;
|
|
22336
22361
|
todayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22337
22362
|
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22338
22363
|
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
22339
22364
|
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22340
|
-
|
|
22365
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22366
|
+
}, z.core.$strip>;
|
|
22341
22367
|
interface MembraneAgentKey {
|
|
22342
22368
|
key: string;
|
|
22343
22369
|
activityDate: Date;
|
|
@@ -22362,6 +22388,7 @@ declare const Org: z.ZodObject<{
|
|
|
22362
22388
|
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22363
22389
|
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
22364
22390
|
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22391
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22365
22392
|
}, z.core.$strip>>;
|
|
22366
22393
|
thirtyDayTotalCredits: z.ZodOptional<z.ZodNumber>;
|
|
22367
22394
|
lastThirtyDayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22371,7 +22398,6 @@ declare const Org: z.ZodObject<{
|
|
|
22371
22398
|
freeAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
22372
22399
|
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
22373
22400
|
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22374
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22375
22401
|
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
22376
22402
|
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22377
22403
|
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -22404,6 +22430,267 @@ declare const EngineCreditsProjectionResponse: z.ZodObject<{
|
|
|
22404
22430
|
willRunOut: z.ZodBoolean;
|
|
22405
22431
|
}, z.core.$strip>;
|
|
22406
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>;
|
|
22407
22694
|
declare const OrgWorkspace: z.ZodObject<{
|
|
22408
22695
|
id: z.ZodString;
|
|
22409
22696
|
name: z.ZodString;
|
|
@@ -22417,11 +22704,209 @@ declare const OrgWorkspace: z.ZodObject<{
|
|
|
22417
22704
|
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22418
22705
|
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22419
22706
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
22420
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22421
22707
|
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
22422
|
-
|
|
22423
|
-
|
|
22424
|
-
|
|
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>>;
|
|
22425
22910
|
settings: z.ZodOptional<z.ZodObject<{
|
|
22426
22911
|
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22427
22912
|
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22479,11 +22964,212 @@ declare const WorkspaceEditableFields: z.ZodObject<{
|
|
|
22479
22964
|
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22480
22965
|
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
22481
22966
|
}, z.core.$strip>;
|
|
22482
|
-
type
|
|
22967
|
+
type OrgWorkspace = z.infer<typeof OrgWorkspace>;
|
|
22483
22968
|
declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
|
|
22484
22969
|
name: z.ZodOptional<z.ZodString>;
|
|
22485
22970
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
22486
|
-
|
|
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>>;
|
|
22487
23173
|
settings: z.ZodOptional<z.ZodObject<{
|
|
22488
23174
|
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
22489
23175
|
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -22578,7 +23264,6 @@ type CreateOrgRequest = z.infer<typeof CreateOrgRequest>;
|
|
|
22578
23264
|
declare const UpdateOrgRequest: z.ZodObject<{
|
|
22579
23265
|
name: z.ZodOptional<z.ZodString>;
|
|
22580
23266
|
domains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22581
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22582
23267
|
}, z.core.$strip>;
|
|
22583
23268
|
type UpdateOrgRequest = z.infer<typeof UpdateOrgRequest>;
|
|
22584
23269
|
declare const BaseOrgUser: z.ZodObject<{
|
|
@@ -22630,172 +23315,686 @@ declare const FullOrgUser: z.ZodObject<{
|
|
|
22630
23315
|
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22631
23316
|
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
22632
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>>;
|
|
22633
23941
|
}, z.core.$strip>>;
|
|
22634
|
-
|
|
22635
|
-
|
|
22636
|
-
|
|
22637
|
-
|
|
22638
|
-
|
|
22639
|
-
|
|
22640
|
-
|
|
22641
|
-
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22642
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22643
|
-
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
22644
|
-
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22645
|
-
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
22646
|
-
autoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
22647
|
-
autoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
22648
|
-
freeEngineCredits: z.ZodOptional<z.ZodNumber>;
|
|
22649
|
-
paidEngineCredits: z.ZodOptional<z.ZodNumber>;
|
|
22650
|
-
freeEngineMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22651
|
-
engineAutoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
22652
|
-
engineAutoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
22653
|
-
engineAutoChargePurchaseAmount: z.ZodOptional<z.ZodNumber>;
|
|
22654
|
-
engineAutoChargeMonthlyLimit: z.ZodOptional<z.ZodNumber>;
|
|
22655
|
-
}, z.core.$strip>;
|
|
22656
|
-
}, z.core.$strip>;
|
|
22657
|
-
type FullOrgUser = z.infer<typeof FullOrgUser>;
|
|
22658
|
-
declare const CreateOrgUserRequest: z.ZodObject<{
|
|
22659
|
-
email: z.ZodString;
|
|
22660
|
-
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22661
|
-
}, z.core.$strip>;
|
|
22662
|
-
type CreateOrgUserRequest = z.infer<typeof CreateOrgUserRequest>;
|
|
22663
|
-
declare const UpdateOrgUserRequest: z.ZodObject<{
|
|
22664
|
-
role: z.ZodOptional<z.ZodEnum<typeof OrgUserRole>>;
|
|
22665
|
-
status: z.ZodOptional<z.ZodEnum<typeof OrgUserStatus>>;
|
|
22666
|
-
workspaces: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22667
|
-
}, z.core.$strip>;
|
|
22668
|
-
type UpdateOrgUserRequest = z.infer<typeof UpdateOrgUserRequest>;
|
|
22669
|
-
declare const OrgInvitation: z.ZodObject<{
|
|
22670
|
-
id: z.ZodString;
|
|
22671
|
-
orgId: z.ZodString;
|
|
22672
|
-
org: z.ZodObject<{
|
|
22673
|
-
id: z.ZodString;
|
|
22674
|
-
key: z.ZodString;
|
|
22675
|
-
name: z.ZodString;
|
|
22676
|
-
plan: z.ZodOptional<z.ZodEnum<typeof OrgPlan>>;
|
|
22677
|
-
createdAt: z.ZodCoercedDate<unknown>;
|
|
22678
|
-
updatedAt: z.ZodCoercedDate<unknown>;
|
|
22679
|
-
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22680
|
-
lastTrialExtensionDate: z.ZodOptional<z.ZodString>;
|
|
22681
|
-
limits: z.ZodOptional<z.ZodObject<{
|
|
22682
|
-
numberOfWorkspaces: z.ZodOptional<z.ZodNumber>;
|
|
22683
|
-
todayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22684
|
-
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
22685
|
-
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
22686
|
-
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>;
|
|
22687
23949
|
}, z.core.$strip>>;
|
|
22688
|
-
|
|
22689
|
-
|
|
22690
|
-
|
|
22691
|
-
|
|
22692
|
-
|
|
22693
|
-
|
|
22694
|
-
|
|
22695
|
-
|
|
22696
|
-
|
|
22697
|
-
|
|
22698
|
-
|
|
22699
|
-
|
|
22700
|
-
|
|
22701
|
-
|
|
22702
|
-
|
|
22703
|
-
|
|
22704
|
-
|
|
22705
|
-
|
|
22706
|
-
|
|
22707
|
-
|
|
22708
|
-
|
|
22709
|
-
|
|
22710
|
-
|
|
22711
|
-
|
|
22712
|
-
|
|
22713
|
-
|
|
22714
|
-
|
|
22715
|
-
|
|
22716
|
-
|
|
22717
|
-
|
|
22718
|
-
|
|
22719
|
-
|
|
22720
|
-
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
|
|
22728
|
-
|
|
22729
|
-
|
|
22730
|
-
|
|
22731
|
-
|
|
22732
|
-
|
|
22733
|
-
|
|
22734
|
-
|
|
22735
|
-
|
|
22736
|
-
}, z.core.$strip>;
|
|
22737
|
-
type FindOrgWorkspacesQuery = z.infer<typeof FindOrgWorkspacesQuery>;
|
|
22738
|
-
declare const CreateOrgWorkspaceRequest: z.ZodObject<{
|
|
22739
|
-
name: z.ZodOptional<z.ZodString>;
|
|
22740
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
22741
|
-
orgId: z.ZodString;
|
|
22742
|
-
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
22743
|
-
}, z.core.$strip>;
|
|
22744
|
-
type CreateOrgWorkspaceRequest = z.infer<typeof CreateOrgWorkspaceRequest>;
|
|
22745
|
-
declare const RotateOrgWorkspaceSecretResponse: z.ZodObject<{
|
|
22746
|
-
secret: z.ZodString;
|
|
22747
|
-
}, z.core.$strip>;
|
|
22748
|
-
type RotateOrgWorkspaceSecretResponse = z.infer<typeof RotateOrgWorkspaceSecretResponse>;
|
|
22749
|
-
declare const AccountResponse: z.ZodObject<{
|
|
22750
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
22751
|
-
id: z.ZodString;
|
|
22752
|
-
auth0Id: z.ZodOptional<z.ZodString>;
|
|
22753
|
-
email: z.ZodString;
|
|
22754
|
-
name: z.ZodString;
|
|
22755
|
-
defaultAccountId: z.ZodOptional<z.ZodString>;
|
|
22756
|
-
defaultWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
22757
|
-
isAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
22758
|
-
trialRequested: z.ZodBoolean;
|
|
22759
|
-
pat: z.ZodOptional<z.ZodString>;
|
|
22760
|
-
isEligible: z.ZodOptional<z.ZodBoolean>;
|
|
22761
|
-
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
22762
|
-
disposable: "disposable";
|
|
22763
|
-
blockedDomain: "blockedDomain";
|
|
22764
|
-
}>>;
|
|
22765
|
-
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
22766
|
-
isCompanyEmail: z.ZodOptional<z.ZodBoolean>;
|
|
22767
|
-
}, z.core.$strip>>;
|
|
22768
|
-
workspace: z.ZodOptional<z.ZodObject<{
|
|
22769
|
-
id: z.ZodString;
|
|
22770
|
-
name: z.ZodString;
|
|
22771
|
-
orgId: z.ZodString;
|
|
22772
|
-
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22773
|
-
key: z.ZodString;
|
|
22774
|
-
secret: z.ZodString;
|
|
22775
|
-
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22776
|
-
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22777
|
-
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22778
|
-
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22779
|
-
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22780
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
22781
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22782
|
-
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
22783
|
-
}, z.core.$strip>>;
|
|
22784
|
-
workspaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22785
|
-
id: z.ZodString;
|
|
22786
|
-
name: z.ZodString;
|
|
22787
|
-
orgId: z.ZodString;
|
|
22788
|
-
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
22789
|
-
key: z.ZodString;
|
|
22790
|
-
secret: z.ZodString;
|
|
22791
|
-
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22792
|
-
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
22793
|
-
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
22794
|
-
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
22795
|
-
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
22796
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
22797
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
22798
|
-
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>>;
|
|
22799
23998
|
}, z.core.$strip>>>;
|
|
22800
23999
|
workspaceUser: z.ZodOptional<z.ZodObject<{
|
|
22801
24000
|
id: z.ZodString;
|
|
@@ -22897,12 +24096,12 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22897
24096
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22898
24097
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22899
24098
|
}, z.core.$strip>>;
|
|
22900
|
-
|
|
24099
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
22901
24100
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22902
24101
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22903
24102
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22904
24103
|
}, z.core.$strip>>;
|
|
22905
|
-
|
|
24104
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
22906
24105
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22907
24106
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22908
24107
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
@@ -22912,7 +24111,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
22912
24111
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22913
24112
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
22914
24113
|
}, z.core.$strip>>;
|
|
22915
|
-
|
|
24114
|
+
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
22916
24115
|
value: z.ZodOptional<z.ZodNumber>;
|
|
22917
24116
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
22918
24117
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
@@ -23052,6 +24251,11 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
23052
24251
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
23053
24252
|
unit: z.ZodEnum<typeof LimitUnits>;
|
|
23054
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>>;
|
|
23055
24259
|
}, z.core.$strip>>;
|
|
23056
24260
|
settings: z.ZodOptional<z.ZodObject<{
|
|
23057
24261
|
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23125,6 +24329,7 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
23125
24329
|
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
23126
24330
|
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
23127
24331
|
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
24332
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23128
24333
|
}, z.core.$strip>>;
|
|
23129
24334
|
thirtyDayTotalCredits: z.ZodOptional<z.ZodNumber>;
|
|
23130
24335
|
lastThirtyDayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23134,7 +24339,6 @@ declare const AccountResponse: z.ZodObject<{
|
|
|
23134
24339
|
freeAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
23135
24340
|
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
23136
24341
|
freeAiMonthlyCredits: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23137
|
-
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23138
24342
|
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
23139
24343
|
autoChargeEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
23140
24344
|
autoChargeThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -24739,6 +25943,7 @@ declare const MembraneInstance: z.ZodObject<{
|
|
|
24739
25943
|
apiBaseUri: z.ZodString;
|
|
24740
25944
|
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24741
25945
|
orgId: z.ZodOptional<z.ZodString>;
|
|
25946
|
+
type: z.ZodOptional<z.ZodString>;
|
|
24742
25947
|
engineVersion: z.ZodOptional<z.ZodString>;
|
|
24743
25948
|
commitSHA: z.ZodOptional<z.ZodString>;
|
|
24744
25949
|
buildDate: z.ZodOptional<z.ZodString>;
|
|
@@ -24775,6 +25980,7 @@ declare const ListMembraneInstancesResponse: z.ZodObject<{
|
|
|
24775
25980
|
apiBaseUri: z.ZodString;
|
|
24776
25981
|
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24777
25982
|
orgId: z.ZodOptional<z.ZodString>;
|
|
25983
|
+
type: z.ZodOptional<z.ZodString>;
|
|
24778
25984
|
engineVersion: z.ZodOptional<z.ZodString>;
|
|
24779
25985
|
commitSHA: z.ZodOptional<z.ZodString>;
|
|
24780
25986
|
buildDate: z.ZodOptional<z.ZodString>;
|
|
@@ -24792,6 +25998,7 @@ declare const MembraneInstanceAdmin: z.ZodObject<{
|
|
|
24792
25998
|
apiBaseUri: z.ZodString;
|
|
24793
25999
|
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
24794
26000
|
orgId: z.ZodOptional<z.ZodString>;
|
|
26001
|
+
type: z.ZodOptional<z.ZodString>;
|
|
24795
26002
|
engineVersion: z.ZodOptional<z.ZodString>;
|
|
24796
26003
|
commitSHA: z.ZodOptional<z.ZodString>;
|
|
24797
26004
|
buildDate: z.ZodOptional<z.ZodString>;
|
|
@@ -24911,5 +26118,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
24911
26118
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
24912
26119
|
}
|
|
24913
26120
|
|
|
24914
|
-
export { ACTIONS, AGENTIC_CONNECTION_REQUEST_SCREEN_PATH, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionAttachment, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, And, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionClientAction, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateMembraneInstanceRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreateOrgWorkspaceRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CreateWorkspaceRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaBase, DataBuilderFormulaCase, DataBuilderFormulaConcat, DataBuilderFormulaCopy, DataBuilderFormulaExtractDate, DataBuilderFormulaExtractTime, DataBuilderFormulaFindAppRecordId, DataBuilderFormulaFindExternalRecordId, DataBuilderFormulaFirstName, DataBuilderFormulaIterate, DataBuilderFormulaLastName, DataBuilderFormulaLookup, DataBuilderFormulaMap, DataBuilderFormulaPlain, DataBuilderFormulaRecord, DataBuilderFormulaTpl, DataBuilderFormulaType, DataBuilderFormulaVar, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSchemaRef, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DomainFromEmail, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, EnsureConnectionRequest, ErrorData, ErrorDataSchema, ErrorType, Eval, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FirstNotEmpty, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FormulaFormula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GenerateWorkspaceAccessTokenRequest, GenerateWorkspaceAccessTokenResponse, GeneratedConnectorOption, GenericFunctionDefinition, GetWorkspaceQuery, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, IntentProperties, InternalError, InvalidLocatorError, JavascriptFunction, JsonataFormula, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListMembraneInstancesQuery, ListMembraneInstancesResponse, ListPublicConnectorsQuery, ListPublicPackagesQuery, ListWorkspacesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MembraneInstance, MembraneInstanceAdmin, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInstance, OrgInstanceType, OrgInstanceWorkspace, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUpdateRequest, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PatchConnectionRequestPayload, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RotateOrgWorkspaceSecretResponse, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateMembraneInstanceRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpdateWorkspaceLimitsRequest, UpdateWorkspaceRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_DATABASE_RECORD_COLLECTIONS, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_ELEMENT_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceEditableFields, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, selectHighestPriorityScope, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, validateFunctionDefinitions, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
|
|
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 };
|
|
24915
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 };
|