@membranehq/sdk 0.22.6 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +19 -1
- package/dist/bundle.js.map +1 -1
- package/dist/dts/alerts/types.d.ts +7 -0
- package/dist/dts/membrane-instances/types.d.ts +34 -0
- package/dist/dts/org-instances/types.d.ts +9 -4
- package/dist/dts/orgs/types.d.ts +1417 -97
- package/dist/dts/stats/index.d.ts +2 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +1 -1
- package/dist/dts/workspace-elements-catalog/index.d.ts +1 -0
- package/dist/dts/workspaces/api.d.ts +313 -5
- package/dist/dts/workspaces/types.d.ts +49 -13
- package/dist/index.browser.d.mts +1945 -235
- package/dist/index.browser.d.ts +1945 -235
- package/dist/index.browser.js +218 -50
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +205 -51
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1945 -235
- package/dist/index.node.d.ts +1945 -235
- package/dist/index.node.js +218 -50
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +205 -51
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.js
CHANGED
|
@@ -10464,7 +10464,26 @@ const FindConnectionsQuery = PaginationQuery.merge(SearchQuery)
|
|
|
10464
10464
|
.meta({ hidden: true }),
|
|
10465
10465
|
});
|
|
10466
10466
|
const EnsureConnectionRequest = z.z.object({
|
|
10467
|
-
|
|
10467
|
+
appUrl: z.z
|
|
10468
|
+
.string()
|
|
10469
|
+
.min(1)
|
|
10470
|
+
.max(2000)
|
|
10471
|
+
.refine((v) => {
|
|
10472
|
+
try {
|
|
10473
|
+
const url = /^https?:\/\//i.test(v) ? v : `https://${v}`;
|
|
10474
|
+
const { hostname } = new URL(url);
|
|
10475
|
+
if (!hostname || !hostname.includes('.'))
|
|
10476
|
+
return false;
|
|
10477
|
+
const stripped = hostname.replace(/^www\./i, '');
|
|
10478
|
+
if (/^(\d{1,3}\.){3}\d{1,3}$/.test(stripped))
|
|
10479
|
+
return false;
|
|
10480
|
+
return true;
|
|
10481
|
+
}
|
|
10482
|
+
catch (_a) {
|
|
10483
|
+
return false;
|
|
10484
|
+
}
|
|
10485
|
+
}, { message: 'Must be a valid URL or domain (e.g. "https://slack.com" or "slack.com")' })
|
|
10486
|
+
.describe('URL or domain of the app to connect to (e.g. "https://slack.com" or "slack.com"). Will be normalized to a domain.'),
|
|
10468
10487
|
name: z.z
|
|
10469
10488
|
.string()
|
|
10470
10489
|
.optional()
|
|
@@ -11428,7 +11447,6 @@ const ListExternalApiLogsQuery = PaginationQuery.extend({
|
|
|
11428
11447
|
.optional()
|
|
11429
11448
|
.meta({
|
|
11430
11449
|
filterTitle: 'Status',
|
|
11431
|
-
isFlag: true,
|
|
11432
11450
|
}),
|
|
11433
11451
|
externalAppId: z.z.string().optional().meta({
|
|
11434
11452
|
hidden: true,
|
|
@@ -12007,6 +12025,7 @@ const WorkspaceElementSpecs = {
|
|
|
12007
12025
|
[exports.WorkspaceElementType.Integration]: {
|
|
12008
12026
|
type: exports.WorkspaceElementType.Integration,
|
|
12009
12027
|
apiPath: 'integrations',
|
|
12028
|
+
collectionName: 'integrations',
|
|
12010
12029
|
name: 'Integration',
|
|
12011
12030
|
namePlural: 'Integrations',
|
|
12012
12031
|
editablePropertiesSchema: IntegrationEditableProperties,
|
|
@@ -12078,6 +12097,7 @@ const WorkspaceElementSpecs = {
|
|
|
12078
12097
|
[exports.WorkspaceElementType.Package]: {
|
|
12079
12098
|
type: exports.WorkspaceElementType.Package,
|
|
12080
12099
|
apiPath: 'packages',
|
|
12100
|
+
collectionName: 'integration-packages',
|
|
12081
12101
|
name: 'Package',
|
|
12082
12102
|
namePlural: 'Packages',
|
|
12083
12103
|
editablePropertiesSchema: PackageEditableProperties,
|
|
@@ -12095,6 +12115,7 @@ const WorkspaceElementSpecs = {
|
|
|
12095
12115
|
[exports.WorkspaceElementType.ActionInstance]: {
|
|
12096
12116
|
type: exports.WorkspaceElementType.ActionInstance,
|
|
12097
12117
|
apiPath: 'action-instances',
|
|
12118
|
+
collectionName: 'action-instances',
|
|
12098
12119
|
name: 'Action Instance',
|
|
12099
12120
|
namePlural: 'Action Instances',
|
|
12100
12121
|
parentFieldKey: 'parentId',
|
|
@@ -12104,6 +12125,7 @@ const WorkspaceElementSpecs = {
|
|
|
12104
12125
|
[exports.WorkspaceElementType.Action]: {
|
|
12105
12126
|
type: exports.WorkspaceElementType.Action,
|
|
12106
12127
|
apiPath: 'actions',
|
|
12128
|
+
collectionName: 'actions',
|
|
12107
12129
|
name: 'Action',
|
|
12108
12130
|
namePlural: 'Actions',
|
|
12109
12131
|
parentFieldKey: 'parentId',
|
|
@@ -12133,6 +12155,7 @@ const WorkspaceElementSpecs = {
|
|
|
12133
12155
|
[exports.WorkspaceElementType.Flow]: {
|
|
12134
12156
|
type: exports.WorkspaceElementType.Flow,
|
|
12135
12157
|
apiPath: 'flows',
|
|
12158
|
+
collectionName: 'flows',
|
|
12136
12159
|
name: 'Flow',
|
|
12137
12160
|
namePlural: 'Flows',
|
|
12138
12161
|
parentFieldKey: 'universalFlowId',
|
|
@@ -12151,6 +12174,7 @@ const WorkspaceElementSpecs = {
|
|
|
12151
12174
|
[exports.WorkspaceElementType.FlowInstance]: {
|
|
12152
12175
|
type: exports.WorkspaceElementType.FlowInstance,
|
|
12153
12176
|
apiPath: 'flow-instances',
|
|
12177
|
+
collectionName: 'flow-instances',
|
|
12154
12178
|
createSchema: createFlowInstanceSchema,
|
|
12155
12179
|
updateSchema: updateFlowInstanceSchema,
|
|
12156
12180
|
name: 'Flow',
|
|
@@ -12172,6 +12196,7 @@ const WorkspaceElementSpecs = {
|
|
|
12172
12196
|
[exports.WorkspaceElementType.FieldMapping]: {
|
|
12173
12197
|
type: exports.WorkspaceElementType.FieldMapping,
|
|
12174
12198
|
apiPath: 'field-mappings',
|
|
12199
|
+
collectionName: 'field-mappings',
|
|
12175
12200
|
name: 'Field Mapping',
|
|
12176
12201
|
namePlural: 'Field Mappings',
|
|
12177
12202
|
parentFieldKey: 'universalFieldMappingId',
|
|
@@ -12190,6 +12215,7 @@ const WorkspaceElementSpecs = {
|
|
|
12190
12215
|
[exports.WorkspaceElementType.FieldMappingInstance]: {
|
|
12191
12216
|
type: exports.WorkspaceElementType.FieldMappingInstance,
|
|
12192
12217
|
apiPath: 'field-mapping-instances',
|
|
12218
|
+
collectionName: 'field-mapping-instances',
|
|
12193
12219
|
name: 'Field Mapping Instance',
|
|
12194
12220
|
namePlural: 'Field Mapping Instances',
|
|
12195
12221
|
parentFieldKey: 'fieldMappingId',
|
|
@@ -12201,6 +12227,7 @@ const WorkspaceElementSpecs = {
|
|
|
12201
12227
|
[exports.WorkspaceElementType.DataSource]: {
|
|
12202
12228
|
type: exports.WorkspaceElementType.DataSource,
|
|
12203
12229
|
apiPath: 'data-sources',
|
|
12230
|
+
collectionName: 'data-sources',
|
|
12204
12231
|
name: 'Data Source',
|
|
12205
12232
|
namePlural: 'Data Sources',
|
|
12206
12233
|
parentFieldKey: 'universalDataSourceId',
|
|
@@ -12220,6 +12247,7 @@ const WorkspaceElementSpecs = {
|
|
|
12220
12247
|
[exports.WorkspaceElementType.DataSourceInstance]: {
|
|
12221
12248
|
type: exports.WorkspaceElementType.DataSourceInstance,
|
|
12222
12249
|
apiPath: 'data-source-instances',
|
|
12250
|
+
collectionName: 'data-source-instances',
|
|
12223
12251
|
name: 'Data Source Instance',
|
|
12224
12252
|
namePlural: 'Data Source Instances',
|
|
12225
12253
|
parentFieldKey: 'dataSourceId',
|
|
@@ -12231,6 +12259,7 @@ const WorkspaceElementSpecs = {
|
|
|
12231
12259
|
[exports.WorkspaceElementType.DataLinkTable]: {
|
|
12232
12260
|
type: exports.WorkspaceElementType.DataLinkTable,
|
|
12233
12261
|
apiPath: 'data-link-tables',
|
|
12262
|
+
collectionName: 'data-link-tables',
|
|
12234
12263
|
name: 'Data Link Table',
|
|
12235
12264
|
namePlural: 'Data Link Tables',
|
|
12236
12265
|
editablePropertiesSchema: DataLinkTableEditableProperties,
|
|
@@ -12245,6 +12274,7 @@ const WorkspaceElementSpecs = {
|
|
|
12245
12274
|
[exports.WorkspaceElementType.DataLinkTableInstance]: {
|
|
12246
12275
|
type: exports.WorkspaceElementType.DataLinkTableInstance,
|
|
12247
12276
|
apiPath: 'data-link-table-instances',
|
|
12277
|
+
collectionName: 'data-link-table-instances',
|
|
12248
12278
|
name: 'Data Link Table Instance',
|
|
12249
12279
|
namePlural: 'Data Link Table Instances',
|
|
12250
12280
|
parentFieldKey: 'dataLinkTableId',
|
|
@@ -12267,6 +12297,7 @@ const WorkspaceElementSpecs = {
|
|
|
12267
12297
|
[exports.WorkspaceElementType.AppEventSubscription]: {
|
|
12268
12298
|
type: exports.WorkspaceElementType.AppEventSubscription,
|
|
12269
12299
|
apiPath: 'app-event-subscriptions',
|
|
12300
|
+
collectionName: 'app-event-subscriptions',
|
|
12270
12301
|
name: 'App Event Subscription',
|
|
12271
12302
|
namePlural: 'App Event Subscriptions',
|
|
12272
12303
|
isMembraneInterface: true,
|
|
@@ -12284,6 +12315,7 @@ const WorkspaceElementSpecs = {
|
|
|
12284
12315
|
[exports.WorkspaceElementType.AppDataSchema]: {
|
|
12285
12316
|
type: exports.WorkspaceElementType.AppDataSchema,
|
|
12286
12317
|
apiPath: 'app-data-schemas',
|
|
12318
|
+
collectionName: 'app-data-schemas',
|
|
12287
12319
|
name: 'App Data Schema',
|
|
12288
12320
|
namePlural: 'App Data Schemas',
|
|
12289
12321
|
isMembraneInterface: true,
|
|
@@ -12296,6 +12328,7 @@ const WorkspaceElementSpecs = {
|
|
|
12296
12328
|
[exports.WorkspaceElementType.AppDataSchemaInstance]: {
|
|
12297
12329
|
type: exports.WorkspaceElementType.AppDataSchemaInstance,
|
|
12298
12330
|
apiPath: 'app-data-schema-instances',
|
|
12331
|
+
collectionName: 'app-data-schema-instances',
|
|
12299
12332
|
name: 'App Data Schema Instance',
|
|
12300
12333
|
namePlural: 'App Data Schema Instances',
|
|
12301
12334
|
parentFieldKey: 'appDataSchemaId',
|
|
@@ -12306,6 +12339,7 @@ const WorkspaceElementSpecs = {
|
|
|
12306
12339
|
[exports.WorkspaceElementType.ExternalEventSubscription]: {
|
|
12307
12340
|
type: exports.WorkspaceElementType.ExternalEventSubscription,
|
|
12308
12341
|
apiPath: 'external-event-subscriptions',
|
|
12342
|
+
collectionName: 'external-event-subscriptions',
|
|
12309
12343
|
name: 'External Event Subscription',
|
|
12310
12344
|
namePlural: 'External Event Subscriptions',
|
|
12311
12345
|
isMembraneInterface: true,
|
|
@@ -12762,7 +12796,7 @@ const FlowRunsStatsQuery = z.z.object({
|
|
|
12762
12796
|
flowId: z.z.string(),
|
|
12763
12797
|
startDatetime: z.z.string().datetime({ offset: true }),
|
|
12764
12798
|
});
|
|
12765
|
-
const
|
|
12799
|
+
const WORKSPACE_ELEMENT_COLLECTIONS = [
|
|
12766
12800
|
'integrations',
|
|
12767
12801
|
'integration-packages',
|
|
12768
12802
|
'actions',
|
|
@@ -12774,9 +12808,23 @@ const WORKSPACE_ELEMENTS_STATS_COLLECTIONS = [
|
|
|
12774
12808
|
'app-data-schemas',
|
|
12775
12809
|
'data-link-tables',
|
|
12776
12810
|
];
|
|
12811
|
+
const WORKSPACE_ELEMENTS_STATS_COLLECTIONS = WORKSPACE_ELEMENT_COLLECTIONS;
|
|
12812
|
+
const WORKSPACE_DATABASE_RECORD_COLLECTIONS = [
|
|
12813
|
+
'data-links',
|
|
12814
|
+
...[
|
|
12815
|
+
exports.WorkspaceElementType.FlowInstance,
|
|
12816
|
+
exports.WorkspaceElementType.ActionInstance,
|
|
12817
|
+
exports.WorkspaceElementType.DataSourceInstance,
|
|
12818
|
+
exports.WorkspaceElementType.FieldMappingInstance,
|
|
12819
|
+
exports.WorkspaceElementType.DataLinkTableInstance,
|
|
12820
|
+
exports.WorkspaceElementType.AppDataSchemaInstance,
|
|
12821
|
+
]
|
|
12822
|
+
.map((type) => WorkspaceElementSpecs[type].collectionName)
|
|
12823
|
+
.filter((c) => c != null),
|
|
12824
|
+
];
|
|
12777
12825
|
const WorkspaceElementsStatsSchema = z.z.object({
|
|
12778
12826
|
total: z.z.number(),
|
|
12779
|
-
breakdown: z.z.object(Object.fromEntries(
|
|
12827
|
+
breakdown: z.z.object(Object.fromEntries(WORKSPACE_ELEMENT_COLLECTIONS.map((collectionName) => [collectionName, z.z.number()]))),
|
|
12780
12828
|
});
|
|
12781
12829
|
|
|
12782
12830
|
exports.IntegrationElementLevel = void 0;
|
|
@@ -12962,6 +13010,7 @@ exports.AlertType = void 0;
|
|
|
12962
13010
|
AlertType["totalNumberOfCustomers"] = "totalNumberOfCustomers";
|
|
12963
13011
|
AlertType["totalNumberOfConnections"] = "totalNumberOfConnections";
|
|
12964
13012
|
AlertType["totalNumberOfWorkspaceElements"] = "totalNumberOfWorkspaceElements";
|
|
13013
|
+
AlertType["totalNumberOfWorkspaceDatabaseRecords"] = "totalNumberOfWorkspaceDatabaseRecords";
|
|
12965
13014
|
AlertType["instantTasksQueueSize"] = "instantTasksQueueSize";
|
|
12966
13015
|
AlertType["queuedTasksQueueSize"] = "queuedTasksQueueSize";
|
|
12967
13016
|
AlertType["flowRunsQueueSizePerConnection"] = "flowRunsQueueSizePerConnection";
|
|
@@ -12999,6 +13048,7 @@ const ALERT_TYPE_CATEGORIES = {
|
|
|
12999
13048
|
[exports.AlertType.totalNumberOfCustomers]: exports.AlertCategory.WORKSPACE_SIZE,
|
|
13000
13049
|
[exports.AlertType.totalNumberOfConnections]: exports.AlertCategory.WORKSPACE_SIZE,
|
|
13001
13050
|
[exports.AlertType.totalNumberOfWorkspaceElements]: exports.AlertCategory.WORKSPACE_SIZE,
|
|
13051
|
+
[exports.AlertType.totalNumberOfWorkspaceDatabaseRecords]: exports.AlertCategory.WORKSPACE_SIZE,
|
|
13002
13052
|
[exports.AlertType.instantTasksQueueSize]: exports.AlertCategory.WORKSPACE_SIZE,
|
|
13003
13053
|
[exports.AlertType.queuedTasksQueueSize]: exports.AlertCategory.WORKSPACE_SIZE,
|
|
13004
13054
|
[exports.AlertType.flowRunsQueueSizePerConnection]: exports.AlertCategory.WORKSPACE_SIZE,
|
|
@@ -13098,6 +13148,7 @@ function getAlertTypeDisplayName(alertType) {
|
|
|
13098
13148
|
[exports.AlertType.totalNumberOfCustomers]: 'Total Number of Customers',
|
|
13099
13149
|
[exports.AlertType.totalNumberOfConnections]: 'Total Number of Connections',
|
|
13100
13150
|
[exports.AlertType.totalNumberOfWorkspaceElements]: 'Total Number of Workspace Elements',
|
|
13151
|
+
[exports.AlertType.totalNumberOfWorkspaceDatabaseRecords]: 'Total Number of Workspace Data Records',
|
|
13101
13152
|
[exports.AlertType.instantTasksQueueSize]: 'Instant Tasks Queue Size',
|
|
13102
13153
|
[exports.AlertType.queuedTasksQueueSize]: 'Queued Tasks Queue Size',
|
|
13103
13154
|
[exports.AlertType.flowRunsQueueSizePerConnection]: 'Flow Runs Queue Size Per Connection',
|
|
@@ -13162,9 +13213,9 @@ exports.ParallelExecutionLimits = void 0;
|
|
|
13162
13213
|
ParallelExecutionLimits["ParallelApiRequests"] = "parallelApiRequests";
|
|
13163
13214
|
ParallelExecutionLimits["ParallelSseRequests"] = "parallelSseRequests";
|
|
13164
13215
|
ParallelExecutionLimits["ParallelBackgroundJobs"] = "parallelBackgroundJobs";
|
|
13165
|
-
ParallelExecutionLimits["
|
|
13166
|
-
ParallelExecutionLimits["
|
|
13167
|
-
ParallelExecutionLimits["
|
|
13216
|
+
ParallelExecutionLimits["ParallelEventProcessingJobs"] = "parallelEventProcessingJobs";
|
|
13217
|
+
ParallelExecutionLimits["ParallelEventProcessingJobsPerConnection"] = "parallelEventProcessingJobsPerConnection";
|
|
13218
|
+
ParallelExecutionLimits["ParallelAgentSessions"] = "parallelAgentSessions";
|
|
13168
13219
|
ParallelExecutionLimits["ParallelInstantTasksActiveJobs"] = "parallelInstantTasksActiveJobs";
|
|
13169
13220
|
ParallelExecutionLimits["ParallelCustomCodeRuns"] = "parallelCustomCodeRuns";
|
|
13170
13221
|
})(exports.ParallelExecutionLimits || (exports.ParallelExecutionLimits = {}));
|
|
@@ -13187,6 +13238,7 @@ exports.WorkspaceSizeLimits = void 0;
|
|
|
13187
13238
|
WorkspaceSizeLimits["TotalNumberOfCustomers"] = "totalNumberOfCustomers";
|
|
13188
13239
|
WorkspaceSizeLimits["TotalNumberOfConnections"] = "totalNumberOfConnections";
|
|
13189
13240
|
WorkspaceSizeLimits["TotalNumberOfWorkspaceElements"] = "totalNumberOfWorkspaceElements";
|
|
13241
|
+
WorkspaceSizeLimits["TotalNumberOfWorkspaceDatabaseRecords"] = "totalNumberOfWorkspaceDatabaseRecords";
|
|
13190
13242
|
WorkspaceSizeLimits["InstantTasksQueueSize"] = "instantTasksQueueSize";
|
|
13191
13243
|
WorkspaceSizeLimits["QueuedTasksQueueSize"] = "queuedTasksQueueSize";
|
|
13192
13244
|
WorkspaceSizeLimits["FlowRunsQueueSizePerConnection"] = "flowRunsQueueSizePerConnection";
|
|
@@ -13203,6 +13255,10 @@ exports.CustomerLimits = void 0;
|
|
|
13203
13255
|
CustomerLimits["WebhookRequestsPerCustomerPerHour"] = "webhookRequestsPerCustomerPerHour";
|
|
13204
13256
|
CustomerLimits["TotalNumberOfDatabaseEntitiesPerCustomer"] = "totalNumberOfDatabaseEntitiesPerCustomer";
|
|
13205
13257
|
})(exports.CustomerLimits || (exports.CustomerLimits = {}));
|
|
13258
|
+
exports.WorkspaceAiCreditLimits = void 0;
|
|
13259
|
+
(function (WorkspaceAiCreditLimits) {
|
|
13260
|
+
WorkspaceAiCreditLimits["DefaultTenantAiCreditsRolling30DayLimit"] = "defaultTenantAiCreditsRolling30DayLimit";
|
|
13261
|
+
})(exports.WorkspaceAiCreditLimits || (exports.WorkspaceAiCreditLimits = {}));
|
|
13206
13262
|
exports.LimitUnits = void 0;
|
|
13207
13263
|
(function (LimitUnits) {
|
|
13208
13264
|
LimitUnits["Number"] = "number";
|
|
@@ -13223,10 +13279,10 @@ const WorkspaceLimitsSchema = z.object({
|
|
|
13223
13279
|
parallelApiRequests: WorkspaceLimit.optional(),
|
|
13224
13280
|
parallelSseRequests: WorkspaceLimit.optional(),
|
|
13225
13281
|
parallelBackgroundJobs: WorkspaceLimit.optional(),
|
|
13226
|
-
|
|
13227
|
-
|
|
13282
|
+
parallelEventProcessingJobs: WorkspaceLimit.optional(),
|
|
13283
|
+
parallelEventProcessingJobsPerConnection: WorkspaceLimit.optional(),
|
|
13228
13284
|
parallelInstantTasksActiveJobs: WorkspaceLimit.optional(),
|
|
13229
|
-
|
|
13285
|
+
parallelAgentSessions: WorkspaceLimit.optional(),
|
|
13230
13286
|
parallelCustomCodeRuns: WorkspaceLimit.optional(),
|
|
13231
13287
|
ParallelWriteDatabaseRequests: WorkspaceLimit.optional(),
|
|
13232
13288
|
fileUploadsMbPerHour: WorkspaceLimit.optional(),
|
|
@@ -13242,6 +13298,7 @@ const WorkspaceLimitsSchema = z.object({
|
|
|
13242
13298
|
totalNumberOfCustomers: WorkspaceLimit.optional(),
|
|
13243
13299
|
totalNumberOfConnections: WorkspaceLimit.optional(),
|
|
13244
13300
|
totalNumberOfWorkspaceElements: WorkspaceLimit.optional(),
|
|
13301
|
+
totalNumberOfWorkspaceDatabaseRecords: WorkspaceLimit.optional(),
|
|
13245
13302
|
instantTasksQueueSize: WorkspaceLimit.optional(),
|
|
13246
13303
|
QueuedTasksQueueSize: WorkspaceLimit.optional(),
|
|
13247
13304
|
parallelApiRequestsPerCustomer: WorkspaceLimit.optional(),
|
|
@@ -13253,6 +13310,7 @@ const WorkspaceLimitsSchema = z.object({
|
|
|
13253
13310
|
webhookRequestsPerCustomerPerSecond: WorkspaceLimit.optional(),
|
|
13254
13311
|
webhookRequestsPerCustomerPerHour: WorkspaceLimit.optional(),
|
|
13255
13312
|
externalEventsPerCustomerPerDay: WorkspaceLimit.optional(),
|
|
13313
|
+
[exports.WorkspaceAiCreditLimits.DefaultTenantAiCreditsRolling30DayLimit]: WorkspaceLimit.optional(),
|
|
13256
13314
|
});
|
|
13257
13315
|
const WorkspaceSettingsSchema = z.object({
|
|
13258
13316
|
enableApiLogs: z.boolean().optional(),
|
|
@@ -13271,35 +13329,83 @@ const Workspace = z.object({
|
|
|
13271
13329
|
id: z.string(),
|
|
13272
13330
|
key: z.string(),
|
|
13273
13331
|
logoUri: z.string().optional(),
|
|
13274
|
-
userFieldsSchema: z.any().optional(),
|
|
13275
|
-
apiBaseUri: z.string().optional(),
|
|
13332
|
+
userFieldsSchema: z.any().optional().describe('[INTERNAL] User fields schema'),
|
|
13333
|
+
apiBaseUri: z.string().optional().describe('[INTERNAL] Deprecated: API base URI'),
|
|
13276
13334
|
webhookUri: z.string().optional(),
|
|
13277
|
-
publicKey: z.string().optional(),
|
|
13335
|
+
publicKey: z.string().optional().describe('[INTERNAL] Deprecated: use publicKeys instead'),
|
|
13278
13336
|
publicKeys: z.array(WorkspacePublicKey).optional(),
|
|
13279
13337
|
enabledWebhookEvents: z.array(z.string()).optional(),
|
|
13280
|
-
auth: z.any().optional(),
|
|
13281
|
-
credentialsSchema: z.any().optional(),
|
|
13282
|
-
apiClient: z.any().optional(),
|
|
13283
|
-
apiRequestHeaders: z.record(z.string(), z.any()).optional(),
|
|
13284
|
-
apiRequestQuery: z.record(z.string(), z.any()).optional(),
|
|
13285
|
-
isOnPrem: z.boolean().optional(),
|
|
13286
|
-
connectorBaseUri: z.string().optional(),
|
|
13287
|
-
connectorRevision: z.string().optional(),
|
|
13288
|
-
featureFlags: z.array(z.string()).optional(),
|
|
13338
|
+
auth: z.any().optional().describe('[INTERNAL] Deprecated: use connector auth instead'),
|
|
13339
|
+
credentialsSchema: z.any().optional().describe('[INTERNAL] Deprecated: use connector credentials schema instead'),
|
|
13340
|
+
apiClient: z.any().optional().describe('[INTERNAL] Deprecated: use connector API client instead'),
|
|
13341
|
+
apiRequestHeaders: z.record(z.string(), z.any()).optional().describe('[INTERNAL] Deprecated: API request headers'),
|
|
13342
|
+
apiRequestQuery: z.record(z.string(), z.any()).optional().describe('[INTERNAL] Deprecated: API request query'),
|
|
13343
|
+
isOnPrem: z.boolean().optional().describe('[INTERNAL] Whether workspace runs on-premises'),
|
|
13344
|
+
connectorBaseUri: z.string().optional().describe('[INTERNAL] Connector base URI'),
|
|
13345
|
+
connectorRevision: z.string().optional().describe('[INTERNAL] Connector revision'),
|
|
13346
|
+
featureFlags: z.array(z.string()).optional().describe('[INTERNAL] Feature flags'),
|
|
13289
13347
|
limits: WorkspaceLimitsSchema.optional(),
|
|
13290
13348
|
settings: WorkspaceSettingsSchema.optional(),
|
|
13291
13349
|
alertDeliverySettings: AlertDeliverySettingsSchema.optional(),
|
|
13292
13350
|
type: z.nativeEnum(exports.WorkspaceType).optional(),
|
|
13293
13351
|
jwksUri: z.string().nullable().optional(),
|
|
13294
|
-
isTrial: z.boolean().optional(),
|
|
13295
|
-
isThrottled: z.boolean().optional(),
|
|
13296
|
-
isDisabled: z.boolean().optional(),
|
|
13297
|
-
isBackgroundJobsDisabled: z.boolean().optional(),
|
|
13352
|
+
isTrial: z.boolean().optional().describe('[INTERNAL] Whether workspace is on a trial plan'),
|
|
13353
|
+
isThrottled: z.boolean().optional().describe('[INTERNAL] Whether workspace is throttled'),
|
|
13354
|
+
isDisabled: z.boolean().optional().describe('[INTERNAL] Whether workspace is disabled'),
|
|
13355
|
+
isBackgroundJobsDisabled: z.boolean().optional().describe('[INTERNAL] Whether background jobs are disabled'),
|
|
13298
13356
|
isReadOnly: z.boolean().optional(),
|
|
13299
13357
|
lastExternalApiRequestDate: z.string().nullable().optional(),
|
|
13300
13358
|
});
|
|
13301
13359
|
const AppSchema = Workspace;
|
|
13302
13360
|
|
|
13361
|
+
const CreateWorkspaceRequest = z.z.object({
|
|
13362
|
+
workspaceKey: z.z.string().describe('Unique key identifying the workspace'),
|
|
13363
|
+
workspaceSecret: z.z.string().describe('Secret key for workspace authentication'),
|
|
13364
|
+
logoUri: z.z.string().optional().describe('URI for the workspace logo'),
|
|
13365
|
+
settings: WorkspaceSettingsSchema.optional().describe('Initial workspace settings'),
|
|
13366
|
+
});
|
|
13367
|
+
const UpdateWorkspaceRequest = z.z.object({
|
|
13368
|
+
name: z.z.string().optional().describe('Display name of the workspace'),
|
|
13369
|
+
secret: z.z.string().optional().describe('Secret key for workspace authentication'),
|
|
13370
|
+
logoUri: z.z.string().optional().describe('URI for the workspace logo'),
|
|
13371
|
+
auth: z.z.any().optional().describe('[INTERNAL] Deprecated: use connector auth instead'),
|
|
13372
|
+
credentialsSchema: z.z.any().optional().describe('[INTERNAL] Deprecated: use connector credentials schema instead'),
|
|
13373
|
+
apiClient: z.z.any().optional().describe('[INTERNAL] Deprecated: use connector API client instead'),
|
|
13374
|
+
publicKeys: z.z.array(WorkspacePublicKey).optional().describe('Public keys for JWT verification'),
|
|
13375
|
+
userFieldsSchema: z.z.any().optional().describe('[INTERNAL] User fields schema'),
|
|
13376
|
+
webhookUri: z.z.string().optional().describe('Webhook endpoint URI'),
|
|
13377
|
+
enabledWebhookEvents: z.z.array(z.z.string()).optional().describe('List of webhook event types to deliver'),
|
|
13378
|
+
apiBaseUri: z.z.string().optional().describe('[INTERNAL] Deprecated: API base URI'),
|
|
13379
|
+
apiRequestHeaders: z.z.record(z.z.string(), z.z.any()).optional().describe('[INTERNAL] Deprecated: API request headers'),
|
|
13380
|
+
apiRequestQuery: z.z.record(z.z.string(), z.z.any()).optional().describe('[INTERNAL] Deprecated: API request query'),
|
|
13381
|
+
archivedAt: zodDateCoercion().optional().describe('[INTERNAL] Archive timestamp'),
|
|
13382
|
+
settings: WorkspaceSettingsSchema.optional().describe('Workspace settings'),
|
|
13383
|
+
alertDeliverySettings: AlertDeliverySettingsSchema.optional().describe('Alert delivery configuration'),
|
|
13384
|
+
type: z.z.nativeEnum(exports.WorkspaceType).optional().describe('Workspace type (production or development)'),
|
|
13385
|
+
jwksUri: z.z.string().nullable().optional().describe('JWKS URI for JWT verification'),
|
|
13386
|
+
featureFlags: z.z.array(z.z.string()).optional().describe('[INTERNAL] Feature flags'),
|
|
13387
|
+
isReadOnly: z.z.boolean().optional().describe('[INTERNAL] Whether the workspace is in read-only mode'),
|
|
13388
|
+
});
|
|
13389
|
+
const UpdateWorkspaceLimitsRequest = WorkspaceLimitsSchema.partial();
|
|
13390
|
+
const GenerateWorkspaceAccessTokenRequest = z.z.object({
|
|
13391
|
+
isAdmin: z.z.boolean().optional().describe('Whether to generate an admin token'),
|
|
13392
|
+
tenantId: z.z.string().optional().describe('Customer ID to scope the token to'),
|
|
13393
|
+
tenantKey: z.z.string().optional().describe('Customer key to scope the token to (resolved to tenantId)'),
|
|
13394
|
+
name: z.z.string().optional().describe('Name for the generated token'),
|
|
13395
|
+
fields: z.z.record(z.z.string(), z.z.any()).optional().describe('Custom fields to include in the token'),
|
|
13396
|
+
connectedProductId: z.z.string().optional().describe('[INTERNAL] Connected product ID'),
|
|
13397
|
+
});
|
|
13398
|
+
const GenerateWorkspaceAccessTokenResponse = z.z.object({
|
|
13399
|
+
token: z.z.string().describe('The generated access token'),
|
|
13400
|
+
});
|
|
13401
|
+
const ListWorkspacesQuery = z.z
|
|
13402
|
+
.object({
|
|
13403
|
+
orgId: z.z.string().optional().describe('Filter workspaces by organization ID'),
|
|
13404
|
+
workspaceKey: z.z.string().optional().describe('Filter workspaces by workspace key'),
|
|
13405
|
+
})
|
|
13406
|
+
.merge(IncludeArchivedQuery);
|
|
13407
|
+
const GetWorkspaceQuery = IncludeArchivedQuery;
|
|
13408
|
+
|
|
13303
13409
|
const PARALLEL_EXECUTION_LIMITS = [
|
|
13304
13410
|
'parallelEventPulls',
|
|
13305
13411
|
'parallelIncrementalEventPullsPerConnection',
|
|
@@ -13308,9 +13414,9 @@ const PARALLEL_EXECUTION_LIMITS = [
|
|
|
13308
13414
|
'parallelApiRequests',
|
|
13309
13415
|
'parallelSseRequests',
|
|
13310
13416
|
'parallelBackgroundJobs',
|
|
13311
|
-
'
|
|
13312
|
-
'
|
|
13313
|
-
'
|
|
13417
|
+
'parallelEventProcessingJobs',
|
|
13418
|
+
'parallelEventProcessingJobsPerConnection',
|
|
13419
|
+
'parallelAgentSessions',
|
|
13314
13420
|
'parallelCustomCodeRuns',
|
|
13315
13421
|
];
|
|
13316
13422
|
const RATE_LIMITS = [
|
|
@@ -13326,6 +13432,7 @@ const WORKSPACE_SIZE_LIMITS = [
|
|
|
13326
13432
|
'totalNumberOfCustomers',
|
|
13327
13433
|
'totalNumberOfConnections',
|
|
13328
13434
|
'totalNumberOfWorkspaceElements',
|
|
13435
|
+
'totalNumberOfWorkspaceDatabaseRecords',
|
|
13329
13436
|
];
|
|
13330
13437
|
const EDITABLE_LIMITS = [
|
|
13331
13438
|
'parallelApiRequestsPerCustomer',
|
|
@@ -13493,6 +13600,7 @@ exports.OrgLimitsType = void 0;
|
|
|
13493
13600
|
OrgLimitsType["TODAY_USAGE"] = "todayUsage";
|
|
13494
13601
|
OrgLimitsType["LAST_THIRTY_DAY_USAGE"] = "lastThirtyDayUsage";
|
|
13495
13602
|
OrgLimitsType["MEMBRANE_EXPERT_CREDITS_CAP"] = "membraneExpertCreditsCapPerMonth";
|
|
13603
|
+
OrgLimitsType["DEFAULT_TENANT_AI_CREDITS_ROLLING_30_DAY_LIMIT"] = "defaultTenantAiCreditsRolling30DayLimit";
|
|
13496
13604
|
})(exports.OrgLimitsType || (exports.OrgLimitsType = {}));
|
|
13497
13605
|
exports.OrgPlan = void 0;
|
|
13498
13606
|
(function (OrgPlan) {
|
|
@@ -13511,15 +13619,19 @@ exports.OrgUserStatus = void 0;
|
|
|
13511
13619
|
OrgUserStatus["Invited"] = "invited";
|
|
13512
13620
|
OrgUserStatus["Active"] = "active";
|
|
13513
13621
|
})(exports.OrgUserStatus || (exports.OrgUserStatus = {}));
|
|
13514
|
-
const OrgLimits = z.z
|
|
13515
|
-
.object({
|
|
13622
|
+
const OrgLimits = z.z.object({
|
|
13516
13623
|
numberOfWorkspaces: z.z.number().optional(),
|
|
13517
13624
|
todayUsage: z.z.number().optional(),
|
|
13518
13625
|
lastThirtyDayUsage: z.z.number().optional(),
|
|
13519
13626
|
membraneAgentLastThirtyDaysUsage: z.z.number().optional(),
|
|
13520
13627
|
membraneExpertCreditsCapPerMonth: z.z.number().nullable().optional(),
|
|
13521
|
-
|
|
13522
|
-
|
|
13628
|
+
defaultTenantAiCreditsRolling30DayLimit: z.z
|
|
13629
|
+
.number()
|
|
13630
|
+
.min(0)
|
|
13631
|
+
.nullable()
|
|
13632
|
+
.optional()
|
|
13633
|
+
.describe('[INTERNAL] Default AI credits rolling 30-day limit per tenant'),
|
|
13634
|
+
});
|
|
13523
13635
|
const MembraneAgentKey = z.z
|
|
13524
13636
|
.object({
|
|
13525
13637
|
key: z.z.string().optional(),
|
|
@@ -13535,7 +13647,7 @@ const Org = z.z.object({
|
|
|
13535
13647
|
updatedAt: z.z.coerce.date(),
|
|
13536
13648
|
trialEndDate: z.z.string().optional(),
|
|
13537
13649
|
lastTrialExtensionDate: z.z.string().optional(),
|
|
13538
|
-
limits: OrgLimits,
|
|
13650
|
+
limits: OrgLimits.optional(),
|
|
13539
13651
|
thirtyDayTotalCredits: z.z.number().optional(),
|
|
13540
13652
|
lastThirtyDayUsagePercent: z.z.number().optional(),
|
|
13541
13653
|
todayUsagePercent: z.z.number().optional(),
|
|
@@ -13544,7 +13656,6 @@ const Org = z.z.object({
|
|
|
13544
13656
|
freeAiCredits: z.z.number().optional(),
|
|
13545
13657
|
paidAiCredits: z.z.number().optional(),
|
|
13546
13658
|
freeAiMonthlyCredits: z.z.number().nullable().optional(),
|
|
13547
|
-
defaultTenantAiCreditsRolling30DayLimit: z.z.number().min(0).nullable().optional(),
|
|
13548
13659
|
stripeCustomerId: z.z.string().optional(),
|
|
13549
13660
|
autoChargeEnabled: z.z.boolean().optional(),
|
|
13550
13661
|
autoChargeThreshold: z.z.number().optional(),
|
|
@@ -13575,22 +13686,40 @@ const EngineCreditsProjectionResponse = z.z.object({
|
|
|
13575
13686
|
daysUntilExhaustion: z.z.number().nullable(),
|
|
13576
13687
|
willRunOut: z.z.boolean(),
|
|
13577
13688
|
});
|
|
13578
|
-
const
|
|
13689
|
+
const WorkspaceEditableFields = z.z.object({
|
|
13690
|
+
limits: WorkspaceLimitsSchema.optional(),
|
|
13691
|
+
settings: WorkspaceSettingsSchema.optional(),
|
|
13692
|
+
publicKeys: z.z.array(WorkspacePublicKey).optional(),
|
|
13693
|
+
userFieldsSchema: z.z.any().optional(),
|
|
13694
|
+
webhookUri: z.z.string().optional(),
|
|
13695
|
+
enabledWebhookEvents: z.z.array(z.z.string()).optional(),
|
|
13696
|
+
alertDeliverySettings: AlertDeliverySettingsSchema.optional(),
|
|
13697
|
+
jwksUri: z.z.string().nullable().optional(),
|
|
13698
|
+
type: z.z.enum(exports.WorkspaceType).optional().describe('Workspace type (production or development)'),
|
|
13699
|
+
});
|
|
13700
|
+
const OrgWorkspace = z.z
|
|
13701
|
+
.object({
|
|
13579
13702
|
id: z.z.string(),
|
|
13580
13703
|
name: z.z.string(),
|
|
13581
13704
|
orgId: z.z.string(),
|
|
13582
|
-
apiBaseUri: z.z.string().optional(),
|
|
13583
|
-
key: z.z.string(),
|
|
13584
|
-
secret: z.z.string(),
|
|
13585
|
-
createdAt:
|
|
13586
|
-
updatedAt:
|
|
13587
|
-
engineAccessToken: z.z.string().optional(),
|
|
13588
|
-
trialEndDate: z.z.string().optional(),
|
|
13589
|
-
featureFlags: z.z.array(z.z.string()).optional(),
|
|
13705
|
+
apiBaseUri: z.z.string().optional().describe('[INTERNAL] API base URI'),
|
|
13706
|
+
key: z.z.string().describe('Unique workspace key'),
|
|
13707
|
+
secret: z.z.string().describe('[INTERNAL] Workspace secret'),
|
|
13708
|
+
createdAt: zodDateCoercion(),
|
|
13709
|
+
updatedAt: zodDateCoercion(),
|
|
13710
|
+
engineAccessToken: z.z.string().optional().describe('[INTERNAL] Engine access token'),
|
|
13711
|
+
trialEndDate: z.z.string().optional().describe('[INTERNAL] Trial end date'),
|
|
13712
|
+
featureFlags: z.z.array(z.z.string()).optional().describe('[INTERNAL] Feature flags'),
|
|
13713
|
+
logoUri: z.z.string().optional().describe('URI for the workspace logo'),
|
|
13714
|
+
membraneInstanceId: z.z.string().optional().describe('[INTERNAL] Membrane instance ID'),
|
|
13715
|
+
})
|
|
13716
|
+
.merge(WorkspaceEditableFields);
|
|
13717
|
+
const OrgWorkspaceUpdateRequest = z.z
|
|
13718
|
+
.object({
|
|
13719
|
+
name: z.z.string().min(1).optional(),
|
|
13590
13720
|
logoUri: z.z.string().optional(),
|
|
13591
|
-
|
|
13592
|
-
|
|
13593
|
-
});
|
|
13721
|
+
})
|
|
13722
|
+
.merge(WorkspaceEditableFields);
|
|
13594
13723
|
const OrgWorkspaceUser = z.z.object({
|
|
13595
13724
|
id: z.z.string(),
|
|
13596
13725
|
workspaceId: z.z.string(),
|
|
@@ -13614,7 +13743,6 @@ const CreateOrgRequest = z.z.object({
|
|
|
13614
13743
|
const UpdateOrgRequest = z.z.object({
|
|
13615
13744
|
name: z.z.string().min(1).optional(),
|
|
13616
13745
|
domains: z.z.array(z.z.string()).optional(),
|
|
13617
|
-
defaultTenantAiCreditsRolling30DayLimit: z.z.number().min(0).nullable().optional(),
|
|
13618
13746
|
});
|
|
13619
13747
|
const BaseOrgUser = z.z.object({
|
|
13620
13748
|
id: z.z.string(),
|
|
@@ -13662,6 +13790,15 @@ const FindOrgWorkspacesQuery = z.z.object({
|
|
|
13662
13790
|
cursor: z.z.coerce.number().optional(),
|
|
13663
13791
|
limit: z.z.coerce.number().optional(),
|
|
13664
13792
|
});
|
|
13793
|
+
const CreateOrgWorkspaceRequest = z.z.object({
|
|
13794
|
+
name: z.z.string().min(1).optional().describe('Name of the workspace'),
|
|
13795
|
+
logoUri: z.z.string().optional().describe('URI for the workspace logo'),
|
|
13796
|
+
orgId: z.z.string().describe('Organization ID to create the workspace in'),
|
|
13797
|
+
membraneInstanceId: z.z.string().optional().describe('[INTERNAL] Membrane instance ID'),
|
|
13798
|
+
});
|
|
13799
|
+
const RotateOrgWorkspaceSecretResponse = z.z.object({
|
|
13800
|
+
secret: z.z.string().describe('The new workspace secret'),
|
|
13801
|
+
});
|
|
13665
13802
|
const AccountResponse = z.z.object({
|
|
13666
13803
|
user: FullPlatformUser.optional(),
|
|
13667
13804
|
workspace: OrgWorkspace.optional(),
|
|
@@ -15805,6 +15942,14 @@ const MembraneInstance = z.z.object({
|
|
|
15805
15942
|
apiBaseUri: z.z.string(),
|
|
15806
15943
|
consoleBaseUri: z.z.string().optional(),
|
|
15807
15944
|
orgId: z.z.string().optional(),
|
|
15945
|
+
type: z.z.string().optional(),
|
|
15946
|
+
engineVersion: z.z.string().optional(),
|
|
15947
|
+
commitSHA: z.z.string().optional(),
|
|
15948
|
+
buildDate: z.z.string().optional(),
|
|
15949
|
+
cloudProvider: z.z.string().optional(),
|
|
15950
|
+
lastReportedAt: z.z.coerce.date().optional(),
|
|
15951
|
+
activeTenants: z.z.number().optional(),
|
|
15952
|
+
billableTenants: z.z.number().optional(),
|
|
15808
15953
|
});
|
|
15809
15954
|
const CreateMembraneInstanceRequest = z.z.object({
|
|
15810
15955
|
name: z.z.string().min(1),
|
|
@@ -15824,6 +15969,10 @@ const ListMembraneInstancesQuery = PaginationQuery.extend({
|
|
|
15824
15969
|
orgId: z.z.string().optional(),
|
|
15825
15970
|
});
|
|
15826
15971
|
const ListMembraneInstancesResponse = createPaginationResponseSchema(MembraneInstance);
|
|
15972
|
+
const MembraneInstanceAdmin = MembraneInstance.extend({
|
|
15973
|
+
orgName: z.z.string().optional(),
|
|
15974
|
+
workspaceCount: z.z.number().optional(),
|
|
15975
|
+
});
|
|
15827
15976
|
|
|
15828
15977
|
const OrgInstanceType = z.z.enum(['membrane-hosted', 'self-hosted']);
|
|
15829
15978
|
const OrgInstanceWorkspace = z.z.object({
|
|
@@ -15835,12 +15984,17 @@ const OrgInstanceWorkspace = z.z.object({
|
|
|
15835
15984
|
const OrgInstance = z.z.object({
|
|
15836
15985
|
id: z.z.string(),
|
|
15837
15986
|
name: z.z.string(),
|
|
15838
|
-
type: OrgInstanceType,
|
|
15987
|
+
type: OrgInstanceType.optional(),
|
|
15839
15988
|
apiBaseUri: z.z.string(),
|
|
15840
15989
|
consoleBaseUri: z.z.string().optional(),
|
|
15841
15990
|
engineVersion: z.z.string().optional(),
|
|
15991
|
+
commitSHA: z.z.string().optional(),
|
|
15992
|
+
buildDate: z.z.string().optional(),
|
|
15993
|
+
cloudProvider: z.z.string().optional(),
|
|
15842
15994
|
lastReportedAt: z.z.string().optional(),
|
|
15843
|
-
|
|
15995
|
+
activeTenants: z.z.number().optional(),
|
|
15996
|
+
billableTenants: z.z.number().optional(),
|
|
15997
|
+
workspaces: z.z.array(OrgInstanceWorkspace).optional(),
|
|
15844
15998
|
});
|
|
15845
15999
|
|
|
15846
16000
|
const API_VERSIONS = {
|
|
@@ -16514,10 +16668,12 @@ exports.CreateMembraneInstanceRequest = CreateMembraneInstanceRequest;
|
|
|
16514
16668
|
exports.CreateOrgInvitationRequest = CreateOrgInvitationRequest;
|
|
16515
16669
|
exports.CreateOrgRequest = CreateOrgRequest;
|
|
16516
16670
|
exports.CreateOrgUserRequest = CreateOrgUserRequest;
|
|
16671
|
+
exports.CreateOrgWorkspaceRequest = CreateOrgWorkspaceRequest;
|
|
16517
16672
|
exports.CreatePackageRequest = CreatePackageRequest;
|
|
16518
16673
|
exports.CreateScreenRequest = CreateScreenRequest;
|
|
16519
16674
|
exports.CreateSelfHostingTokenRequest = CreateSelfHostingTokenRequest;
|
|
16520
16675
|
exports.CreateSelfHostingTokenResponse = CreateSelfHostingTokenResponse;
|
|
16676
|
+
exports.CreateWorkspaceRequest = CreateWorkspaceRequest;
|
|
16521
16677
|
exports.CustomCodeError = CustomCodeError;
|
|
16522
16678
|
exports.CustomerAccessor = CustomerAccessor;
|
|
16523
16679
|
exports.CustomerApiResponse = CustomerApiResponse;
|
|
@@ -16715,8 +16871,11 @@ exports.FullOrgUser = FullOrgUser;
|
|
|
16715
16871
|
exports.FullPlatformUser = FullPlatformUser;
|
|
16716
16872
|
exports.FunctionDefinition = FunctionDefinition;
|
|
16717
16873
|
exports.GenerateOptionsRequest = GenerateOptionsRequest;
|
|
16874
|
+
exports.GenerateWorkspaceAccessTokenRequest = GenerateWorkspaceAccessTokenRequest;
|
|
16875
|
+
exports.GenerateWorkspaceAccessTokenResponse = GenerateWorkspaceAccessTokenResponse;
|
|
16718
16876
|
exports.GeneratedConnectorOption = GeneratedConnectorOption;
|
|
16719
16877
|
exports.GenericFunctionDefinition = GenericFunctionDefinition;
|
|
16878
|
+
exports.GetWorkspaceQuery = GetWorkspaceQuery;
|
|
16720
16879
|
exports.GraphQLApiMappingSchema = GraphQLApiMappingSchema;
|
|
16721
16880
|
exports.GraphQLFieldMappingSchema = GraphQLFieldMappingSchema;
|
|
16722
16881
|
exports.GraphqlApiMappingFunction = GraphqlApiMappingFunction;
|
|
@@ -16767,6 +16926,7 @@ exports.ListMembraneInstancesQuery = ListMembraneInstancesQuery;
|
|
|
16767
16926
|
exports.ListMembraneInstancesResponse = ListMembraneInstancesResponse;
|
|
16768
16927
|
exports.ListPublicConnectorsQuery = ListPublicConnectorsQuery;
|
|
16769
16928
|
exports.ListPublicPackagesQuery = ListPublicPackagesQuery;
|
|
16929
|
+
exports.ListWorkspacesQuery = ListWorkspacesQuery;
|
|
16770
16930
|
exports.MEMBRANE_CLI_CLIENT_ID = MEMBRANE_CLI_CLIENT_ID;
|
|
16771
16931
|
exports.MEMBRANE_ELEMENT_CONFIG_FILE_NAME = MEMBRANE_ELEMENT_CONFIG_FILE_NAME;
|
|
16772
16932
|
exports.MIN_FULL_SYNC_INTERVAL_SECONDS = MIN_FULL_SYNC_INTERVAL_SECONDS;
|
|
@@ -16779,6 +16939,7 @@ exports.MembraneClient = MembraneClient;
|
|
|
16779
16939
|
exports.MembraneElementLayer = MembraneElementLayer;
|
|
16780
16940
|
exports.MembraneError = MembraneError;
|
|
16781
16941
|
exports.MembraneInstance = MembraneInstance;
|
|
16942
|
+
exports.MembraneInstanceAdmin = MembraneInstanceAdmin;
|
|
16782
16943
|
exports.MergeObjects = MergeObjects;
|
|
16783
16944
|
exports.MinimalConnector = MinimalConnector;
|
|
16784
16945
|
exports.NotAuthenticatedError = NotAuthenticatedError;
|
|
@@ -16801,6 +16962,7 @@ exports.OrgInstanceWorkspace = OrgInstanceWorkspace;
|
|
|
16801
16962
|
exports.OrgInvitation = OrgInvitation;
|
|
16802
16963
|
exports.OrgLimits = OrgLimits;
|
|
16803
16964
|
exports.OrgWorkspace = OrgWorkspace;
|
|
16965
|
+
exports.OrgWorkspaceUpdateRequest = OrgWorkspaceUpdateRequest;
|
|
16804
16966
|
exports.OrgWorkspaceUser = OrgWorkspaceUser;
|
|
16805
16967
|
exports.PACKAGE_VERSION_DEVELOPMENT = PACKAGE_VERSION_DEVELOPMENT;
|
|
16806
16968
|
exports.PACKAGE_VERSION_LATEST = PACKAGE_VERSION_LATEST;
|
|
@@ -16830,6 +16992,7 @@ exports.RequestMappingSchema = RequestMappingSchema;
|
|
|
16830
16992
|
exports.ResetFlowInstanceOptions = ResetFlowInstanceOptions;
|
|
16831
16993
|
exports.RestApiMappingFunction = RestApiMappingFunction;
|
|
16832
16994
|
exports.RestApiMappingSchema = RestApiMappingSchema;
|
|
16995
|
+
exports.RotateOrgWorkspaceSecretResponse = RotateOrgWorkspaceSecretResponse;
|
|
16833
16996
|
exports.RunActionRequest = RunActionRequest;
|
|
16834
16997
|
exports.RunFieldMappingRequest = RunFieldMappingRequest;
|
|
16835
16998
|
exports.RunFieldMappingResponse = RunFieldMappingResponse;
|
|
@@ -16874,14 +17037,19 @@ exports.UpdateOrgUserRequest = UpdateOrgUserRequest;
|
|
|
16874
17037
|
exports.UpdatePackageRequest = UpdatePackageRequest;
|
|
16875
17038
|
exports.UpdateScreenRequest = UpdateScreenRequest;
|
|
16876
17039
|
exports.UpdateSelfHostingTokenRequest = UpdateSelfHostingTokenRequest;
|
|
17040
|
+
exports.UpdateWorkspaceLimitsRequest = UpdateWorkspaceLimitsRequest;
|
|
17041
|
+
exports.UpdateWorkspaceRequest = UpdateWorkspaceRequest;
|
|
16877
17042
|
exports.UpstreamFlowNodeRunSchema = UpstreamFlowNodeRunSchema;
|
|
16878
17043
|
exports.UserAccessor = UserAccessor;
|
|
16879
17044
|
exports.UsersAccessor = UsersAccessor;
|
|
16880
17045
|
exports.ValidateSelfHostingTokenRequest = ValidateSelfHostingTokenRequest;
|
|
16881
17046
|
exports.ValidateSelfHostingTokenResponse = ValidateSelfHostingTokenResponse;
|
|
17047
|
+
exports.WORKSPACE_DATABASE_RECORD_COLLECTIONS = WORKSPACE_DATABASE_RECORD_COLLECTIONS;
|
|
16882
17048
|
exports.WORKSPACE_ELEMENTS_STATS_COLLECTIONS = WORKSPACE_ELEMENTS_STATS_COLLECTIONS;
|
|
17049
|
+
exports.WORKSPACE_ELEMENT_COLLECTIONS = WORKSPACE_ELEMENT_COLLECTIONS;
|
|
16883
17050
|
exports.WORKSPACE_SIZE_LIMITS = WORKSPACE_SIZE_LIMITS;
|
|
16884
17051
|
exports.Workspace = Workspace;
|
|
17052
|
+
exports.WorkspaceEditableFields = WorkspaceEditableFields;
|
|
16885
17053
|
exports.WorkspaceElementSearchQuery = WorkspaceElementSearchQuery;
|
|
16886
17054
|
exports.WorkspaceElementSearchResult = WorkspaceElementSearchResult;
|
|
16887
17055
|
exports.WorkspaceElementSpecs = WorkspaceElementSpecs;
|