@membranehq/sdk 0.17.2 → 0.17.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +12 -4
- package/dist/bundle.js +5 -2
- package/dist/bundle.js.map +1 -1
- package/dist/dts/clusters/types.d.ts +19 -0
- package/dist/dts/index.browser.d.ts +2 -0
- package/dist/dts/orgs/types.d.ts +2 -2
- package/dist/dts/pending-tasks/index.d.ts +1 -0
- package/dist/dts/pending-tasks/types.d.ts +48 -0
- package/dist/dts/platform-users/index.d.ts +1 -3
- package/dist/dts/stats/index.d.ts +3 -3
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +15 -6
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/customers-api.d.ts +16 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +12 -4
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +2 -1
- package/dist/dts/workspace-elements/base/action-run-log-records/index.d.ts +5 -2
- package/dist/dts/workspace-elements/base/external-events/api.d.ts +4 -2
- package/dist/dts/workspace-elements/base/flow-runs/index.d.ts +4 -1
- package/dist/dts/workspace-elements/filter-meta.d.ts +2 -0
- package/dist/index.browser.d.mts +141 -31
- package/dist/index.browser.d.ts +141 -31
- package/dist/index.browser.js +152 -44
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +146 -45
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +141 -31
- package/dist/index.node.d.ts +141 -31
- package/dist/index.node.js +152 -44
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +146 -45
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.js
CHANGED
|
@@ -3745,7 +3745,7 @@ const FieldMappingSpecificProperties = z.z.object({
|
|
|
3745
3745
|
universalFieldMappingId: z.z.string().optional(),
|
|
3746
3746
|
dataSourceId: z.z.string().optional(),
|
|
3747
3747
|
dataSourceUuid: z.z.string().optional(),
|
|
3748
|
-
dataSourceKey: z.z.string().optional(),
|
|
3748
|
+
dataSourceKey: z.z.string().optional().describe('[INTERNAL] Deprecated: Use dataSourceId instead'),
|
|
3749
3749
|
appSchema: DataSchema.optional(),
|
|
3750
3750
|
direction: z.z.enum(exports.FieldMappingDirection).optional(),
|
|
3751
3751
|
defaultImportValue: z.z.any().optional(),
|
|
@@ -9382,8 +9382,11 @@ const FlowRunNode = z.z.object({
|
|
|
9382
9382
|
});
|
|
9383
9383
|
const BaseFlowRun = ActivityLogRecord.extend({
|
|
9384
9384
|
name: z.z.string().optional(),
|
|
9385
|
-
|
|
9385
|
+
connectionFlowId: z.z.string(),
|
|
9386
|
+
integrationFlowId: z.z.string().optional(),
|
|
9386
9387
|
universalFlowId: z.z.string().optional(),
|
|
9388
|
+
flowInstanceId: z.z.string().optional().describe('[INTERNAL] Deprecated: Use connectionFlowId instead'),
|
|
9389
|
+
flowId: z.z.string().optional().describe('[INTERNAL] Deprecated: Use integrationFlowId instead'),
|
|
9387
9390
|
startNodeKey: z.z.string(),
|
|
9388
9391
|
input: z.z.any().optional(),
|
|
9389
9392
|
state: z.z.enum(exports.FlowRunState),
|
|
@@ -10128,8 +10131,11 @@ exports.ActionRunLogStatus = void 0;
|
|
|
10128
10131
|
})(exports.ActionRunLogStatus || (exports.ActionRunLogStatus = {}));
|
|
10129
10132
|
const BaseActionRunLogRecord = ActivityLogRecord.extend({
|
|
10130
10133
|
name: z.z.string(),
|
|
10131
|
-
|
|
10132
|
-
|
|
10134
|
+
universalActionId: z.z.string().optional(),
|
|
10135
|
+
integrationActionId: z.z.string(),
|
|
10136
|
+
connectionActionId: z.z.string().optional(),
|
|
10137
|
+
actionId: z.z.string().optional().describe('[INTERNAL] Deprecated: Use integrationActionId instead'),
|
|
10138
|
+
actionInstanceId: z.z.string().optional().describe('[INTERNAL] Deprecated: Use connectionActionId instead'),
|
|
10133
10139
|
integrationId: z.z.string(),
|
|
10134
10140
|
connectionId: z.z.string(),
|
|
10135
10141
|
input: z.z.any().optional(),
|
|
@@ -10225,20 +10231,17 @@ const ActionRunLogRecordApiResponse = BaseActionRunLogRecord.extend({
|
|
|
10225
10231
|
user: BaseCustomer.optional(),
|
|
10226
10232
|
});
|
|
10227
10233
|
const FindActionRunLogsQuery = PaginationQuery.extend({
|
|
10228
|
-
actionInstanceId: z.z
|
|
10229
|
-
.string()
|
|
10230
|
-
.optional()
|
|
10231
|
-
.meta({
|
|
10232
|
-
filterTitle: 'Action Instance',
|
|
10233
|
-
referenceElementType: exports.WorkspaceElementType.ActionInstance,
|
|
10234
|
-
}),
|
|
10235
10234
|
actionId: z.z
|
|
10236
10235
|
.string()
|
|
10237
10236
|
.optional()
|
|
10238
10237
|
.meta({
|
|
10239
10238
|
filterTitle: 'Action',
|
|
10240
10239
|
referenceElementType: exports.WorkspaceElementType.Action,
|
|
10240
|
+
useWorkspaceSearch: true,
|
|
10241
10241
|
}),
|
|
10242
|
+
universalActionId: z.z.string().optional().meta({ hidden: true }),
|
|
10243
|
+
integrationActionId: z.z.string().optional().meta({ hidden: true }),
|
|
10244
|
+
connectionActionId: z.z.string().optional().meta({ hidden: true }),
|
|
10242
10245
|
integrationId: z.z
|
|
10243
10246
|
.string()
|
|
10244
10247
|
.optional()
|
|
@@ -10269,8 +10272,19 @@ const FindActionRunLogsQuery = PaginationQuery.extend({
|
|
|
10269
10272
|
.meta({
|
|
10270
10273
|
filterTitle: 'Status',
|
|
10271
10274
|
}),
|
|
10272
|
-
|
|
10273
|
-
|
|
10275
|
+
from: z.z
|
|
10276
|
+
.string()
|
|
10277
|
+
.optional()
|
|
10278
|
+
.meta({
|
|
10279
|
+
filterTitle: 'From',
|
|
10280
|
+
isDatetime: true,
|
|
10281
|
+
}),
|
|
10282
|
+
to: z.z
|
|
10283
|
+
.string()
|
|
10284
|
+
.optional()
|
|
10285
|
+
.meta({
|
|
10286
|
+
filterTitle: 'To',
|
|
10287
|
+
isDatetime: true,
|
|
10274
10288
|
}),
|
|
10275
10289
|
});
|
|
10276
10290
|
const FindActionRunLogsResponse = createPaginationResponseSchema(ActionRunLogRecordApiResponse);
|
|
@@ -10554,23 +10568,17 @@ const CreateFlowRunRequest = z.z.object({
|
|
|
10554
10568
|
meta: z.z.record(z.z.string(), z.z.any()).optional(),
|
|
10555
10569
|
});
|
|
10556
10570
|
const FindFlowRunsQuery = PaginationQuery.extend({
|
|
10557
|
-
flowInstanceId: z.z
|
|
10558
|
-
.string()
|
|
10559
|
-
.optional()
|
|
10560
|
-
.meta({
|
|
10561
|
-
filterTitle: 'Flow Instance',
|
|
10562
|
-
referenceElementType: exports.WorkspaceElementType.FlowInstance,
|
|
10563
|
-
}),
|
|
10564
10571
|
flowId: z.z
|
|
10565
10572
|
.string()
|
|
10566
10573
|
.optional()
|
|
10567
10574
|
.meta({
|
|
10568
10575
|
filterTitle: 'Flow',
|
|
10569
10576
|
referenceElementType: exports.WorkspaceElementType.Flow,
|
|
10577
|
+
useWorkspaceSearch: true,
|
|
10570
10578
|
}),
|
|
10571
|
-
universalFlowId: z.z.string().optional().meta({
|
|
10572
|
-
|
|
10573
|
-
}),
|
|
10579
|
+
universalFlowId: z.z.string().optional().meta({ hidden: true }),
|
|
10580
|
+
integrationFlowId: z.z.string().optional().meta({ hidden: true }),
|
|
10581
|
+
connectionFlowId: z.z.string().optional().meta({ hidden: true }),
|
|
10574
10582
|
tenantId: z.z
|
|
10575
10583
|
.string()
|
|
10576
10584
|
.optional()
|
|
@@ -10601,8 +10609,19 @@ const FindFlowRunsQuery = PaginationQuery.extend({
|
|
|
10601
10609
|
filterTitle: 'Connection',
|
|
10602
10610
|
referenceElementType: exports.WorkspaceElementType.Connection,
|
|
10603
10611
|
}),
|
|
10604
|
-
|
|
10605
|
-
|
|
10612
|
+
from: z.z
|
|
10613
|
+
.string()
|
|
10614
|
+
.optional()
|
|
10615
|
+
.meta({
|
|
10616
|
+
filterTitle: 'From',
|
|
10617
|
+
isDatetime: true,
|
|
10618
|
+
}),
|
|
10619
|
+
to: z.z
|
|
10620
|
+
.string()
|
|
10621
|
+
.optional()
|
|
10622
|
+
.meta({
|
|
10623
|
+
filterTitle: 'To',
|
|
10624
|
+
isDatetime: true,
|
|
10606
10625
|
}),
|
|
10607
10626
|
});
|
|
10608
10627
|
const FlowRunLaunchedByApi = z.z.object({
|
|
@@ -10737,6 +10756,9 @@ const FindCustomersQuery = z.z
|
|
|
10737
10756
|
.merge(SearchQuery);
|
|
10738
10757
|
const CustomerSelector = z.z.object({ id: z.z.string() });
|
|
10739
10758
|
const CustomerApiResponse = BaseCustomer;
|
|
10759
|
+
const TenantSelfResponse = BaseCustomer.extend({
|
|
10760
|
+
workspaceKey: z.z.string().optional(),
|
|
10761
|
+
});
|
|
10740
10762
|
|
|
10741
10763
|
const FieldMappingApiResponse = BaseFieldMapping.extend({
|
|
10742
10764
|
integration: BaseIntegration.optional(),
|
|
@@ -11020,8 +11042,19 @@ const ListExternalEventLogRecordsQuery = PaginationQuery.extend({
|
|
|
11020
11042
|
.meta({
|
|
11021
11043
|
filterTitle: 'Status',
|
|
11022
11044
|
}),
|
|
11023
|
-
|
|
11024
|
-
|
|
11045
|
+
from: z.z
|
|
11046
|
+
.string()
|
|
11047
|
+
.optional()
|
|
11048
|
+
.meta({
|
|
11049
|
+
filterTitle: 'From',
|
|
11050
|
+
isDatetime: true,
|
|
11051
|
+
}),
|
|
11052
|
+
to: z.z
|
|
11053
|
+
.string()
|
|
11054
|
+
.optional()
|
|
11055
|
+
.meta({
|
|
11056
|
+
filterTitle: 'To',
|
|
11057
|
+
isDatetime: true,
|
|
11025
11058
|
}),
|
|
11026
11059
|
});
|
|
11027
11060
|
const ExternalEventLogRecordApiResponse = BaseExternalEventLogRecord.extend({
|
|
@@ -11098,8 +11131,19 @@ const FindExternalEventPullsQuery = PaginationQuery.extend({
|
|
|
11098
11131
|
.meta({
|
|
11099
11132
|
filterTitle: 'Status',
|
|
11100
11133
|
}),
|
|
11101
|
-
|
|
11102
|
-
|
|
11134
|
+
from: z.z
|
|
11135
|
+
.string()
|
|
11136
|
+
.optional()
|
|
11137
|
+
.meta({
|
|
11138
|
+
filterTitle: 'From',
|
|
11139
|
+
isDatetime: true,
|
|
11140
|
+
}),
|
|
11141
|
+
to: z.z
|
|
11142
|
+
.string()
|
|
11143
|
+
.optional()
|
|
11144
|
+
.meta({
|
|
11145
|
+
filterTitle: 'To',
|
|
11146
|
+
isDatetime: true,
|
|
11103
11147
|
}),
|
|
11104
11148
|
});
|
|
11105
11149
|
const ExternalEventPullApiResponse = BaseExternalEventPull.extend({
|
|
@@ -11159,11 +11203,19 @@ const ListAppEventLogRecordsQuery = CommonListElementsQuery.extend({
|
|
|
11159
11203
|
filterTitle: 'Event Type',
|
|
11160
11204
|
referenceElementType: exports.WorkspaceElementType.AppEventType,
|
|
11161
11205
|
}),
|
|
11162
|
-
|
|
11163
|
-
|
|
11206
|
+
from: z.z
|
|
11207
|
+
.string()
|
|
11208
|
+
.optional()
|
|
11209
|
+
.meta({
|
|
11210
|
+
filterTitle: 'From',
|
|
11211
|
+
isDatetime: true,
|
|
11164
11212
|
}),
|
|
11165
|
-
|
|
11166
|
-
|
|
11213
|
+
to: z.z
|
|
11214
|
+
.string()
|
|
11215
|
+
.optional()
|
|
11216
|
+
.meta({
|
|
11217
|
+
filterTitle: 'To',
|
|
11218
|
+
isDatetime: true,
|
|
11167
11219
|
}),
|
|
11168
11220
|
});
|
|
11169
11221
|
const AppEventLogRecordApiResponse = z.z.object({
|
|
@@ -11208,11 +11260,19 @@ const ListExternalApiLogsQuery = PaginationQuery.extend({
|
|
|
11208
11260
|
filterTitle: 'Status',
|
|
11209
11261
|
isFlag: true,
|
|
11210
11262
|
}),
|
|
11211
|
-
|
|
11212
|
-
|
|
11263
|
+
from: z.z
|
|
11264
|
+
.string()
|
|
11265
|
+
.optional()
|
|
11266
|
+
.meta({
|
|
11267
|
+
filterTitle: 'From',
|
|
11268
|
+
isDatetime: true,
|
|
11213
11269
|
}),
|
|
11214
|
-
|
|
11215
|
-
|
|
11270
|
+
to: z.z
|
|
11271
|
+
.string()
|
|
11272
|
+
.optional()
|
|
11273
|
+
.meta({
|
|
11274
|
+
filterTitle: 'To',
|
|
11275
|
+
isDatetime: true,
|
|
11216
11276
|
}),
|
|
11217
11277
|
sortOrder: z.z.enum(['asc', 'desc']).optional().meta({
|
|
11218
11278
|
hidden: true,
|
|
@@ -11263,8 +11323,19 @@ const ListIncomingWebhooksQuery = PaginationQuery.extend({
|
|
|
11263
11323
|
.meta({
|
|
11264
11324
|
filterTitle: 'Status',
|
|
11265
11325
|
}),
|
|
11266
|
-
|
|
11267
|
-
|
|
11326
|
+
from: z.z
|
|
11327
|
+
.string()
|
|
11328
|
+
.optional()
|
|
11329
|
+
.meta({
|
|
11330
|
+
filterTitle: 'From',
|
|
11331
|
+
isDatetime: true,
|
|
11332
|
+
}),
|
|
11333
|
+
to: z.z
|
|
11334
|
+
.string()
|
|
11335
|
+
.optional()
|
|
11336
|
+
.meta({
|
|
11337
|
+
filterTitle: 'To',
|
|
11338
|
+
isDatetime: true,
|
|
11268
11339
|
}),
|
|
11269
11340
|
});
|
|
11270
11341
|
const IncomingWebhookApiResponse = z.z.object({
|
|
@@ -12303,12 +12374,12 @@ const ActivityStatsQuery = StatsFilterQuery.extend({
|
|
|
12303
12374
|
const IntegrationLayerStatsQuery = StatsFilterQuery;
|
|
12304
12375
|
const ActionRunsStatsQuery = z.z.object({
|
|
12305
12376
|
actionId: z.z.string().optional(),
|
|
12306
|
-
|
|
12377
|
+
connectionActionId: z.z.string().optional(),
|
|
12307
12378
|
startDatetime: z.z.string().datetime({ offset: true }),
|
|
12308
12379
|
});
|
|
12309
12380
|
const FlowRunsStatsQuery = z.z.object({
|
|
12310
|
-
|
|
12311
|
-
|
|
12381
|
+
integrationFlowId: z.z.string().optional(),
|
|
12382
|
+
connectionFlowId: z.z.string().optional(),
|
|
12312
12383
|
universalFlowId: z.z.string().optional(),
|
|
12313
12384
|
startDatetime: z.z.string().datetime({ offset: true }),
|
|
12314
12385
|
});
|
|
@@ -13000,7 +13071,7 @@ function buildIntegrationsMap(integrations) {
|
|
|
13000
13071
|
return map;
|
|
13001
13072
|
}
|
|
13002
13073
|
|
|
13003
|
-
const IneligibilityReasonSchema = z.z.enum(['disposable', 'blockedDomain'
|
|
13074
|
+
const IneligibilityReasonSchema = z.z.enum(['disposable', 'blockedDomain']);
|
|
13004
13075
|
const PlatformUser = z.z.object({
|
|
13005
13076
|
id: z.z.string(),
|
|
13006
13077
|
email: z.z.string(),
|
|
@@ -13023,6 +13094,7 @@ const FullPlatformUser = z.z.object({
|
|
|
13023
13094
|
isEligible: z.z.boolean().optional(),
|
|
13024
13095
|
ineligibilityReason: IneligibilityReasonSchema.optional(),
|
|
13025
13096
|
emailVerified: z.z.boolean().optional(),
|
|
13097
|
+
isCompanyEmail: z.z.boolean().optional(),
|
|
13026
13098
|
});
|
|
13027
13099
|
|
|
13028
13100
|
exports.OrgLimitsType = void 0;
|
|
@@ -14184,7 +14256,7 @@ class FlowRunAccessor {
|
|
|
14184
14256
|
throw new BadRequestError('Cannot repeat a running flow run.');
|
|
14185
14257
|
}
|
|
14186
14258
|
return this.client.post(`/flow-runs`, {
|
|
14187
|
-
flowInstanceId: flowRun.flowInstanceId,
|
|
14259
|
+
flowInstanceId: flowRun.connectionFlowId || flowRun.flowInstanceId,
|
|
14188
14260
|
startNodeKey: flowRun.startNodeKey,
|
|
14189
14261
|
input: flowRun.input,
|
|
14190
14262
|
});
|
|
@@ -15372,6 +15444,35 @@ const OAuthTokenResponse = z.z.object({
|
|
|
15372
15444
|
|
|
15373
15445
|
const CONSOLE_ACCOUNT_API_TOKEN_PATH = 'settings/account/api-token';
|
|
15374
15446
|
|
|
15447
|
+
const PendingQueueCountSchema = z.z.object({
|
|
15448
|
+
pending: z.z.number().nullable().describe('Number of pending tasks, or null if the queue is unavailable.'),
|
|
15449
|
+
error: z.z.string().optional().describe('Error message if the queue count could not be retrieved.'),
|
|
15450
|
+
});
|
|
15451
|
+
const DbBackedCountsSchema = z.z.object({
|
|
15452
|
+
flowRuns: PendingQueueCountSchema.describe('Queued/running flow runs in MongoDB.'),
|
|
15453
|
+
eventPulls: PendingQueueCountSchema.describe('Queued/running external event pulls in MongoDB.'),
|
|
15454
|
+
eventLogs: PendingQueueCountSchema.describe('Created external event log records in MongoDB.'),
|
|
15455
|
+
});
|
|
15456
|
+
const PendingTasksSummarySchema = z.z.object({
|
|
15457
|
+
instant: PendingQueueCountSchema.optional().describe('Instant (BullMQ) queue counts.'),
|
|
15458
|
+
queued: PendingQueueCountSchema.optional().describe('Slow (Redis-backed) queue counts.'),
|
|
15459
|
+
dbBacked: DbBackedCountsSchema.optional().describe('DB-backed job counts from MongoDB (source of truth).'),
|
|
15460
|
+
total: z.z.number().describe('Sum of available pending task counts. Excludes unavailable queues.'),
|
|
15461
|
+
});
|
|
15462
|
+
|
|
15463
|
+
const Cluster = z.z.object({
|
|
15464
|
+
id: z.z.string(),
|
|
15465
|
+
name: z.z.string(),
|
|
15466
|
+
apiBaseUri: z.z.string(),
|
|
15467
|
+
consoleBaseUri: z.z.string().optional(),
|
|
15468
|
+
});
|
|
15469
|
+
const CreateClusterRequest = z.z.object({
|
|
15470
|
+
name: z.z.string().min(1),
|
|
15471
|
+
apiBaseUri: z.z.string().min(1),
|
|
15472
|
+
consoleBaseUri: z.z.string().min(1).optional(),
|
|
15473
|
+
});
|
|
15474
|
+
const ListClustersQuery = PaginationQuery;
|
|
15475
|
+
|
|
15375
15476
|
class UI {
|
|
15376
15477
|
constructor(client) {
|
|
15377
15478
|
this.client = client;
|
|
@@ -15917,6 +16018,7 @@ exports.CheckpointDiffResponseSchema = CheckpointDiffResponseSchema;
|
|
|
15917
16018
|
exports.ClientToken = ClientToken;
|
|
15918
16019
|
exports.ClientTokenGrantType = ClientTokenGrantType;
|
|
15919
16020
|
exports.ClientTokenListResponse = ClientTokenListResponse;
|
|
16021
|
+
exports.Cluster = Cluster;
|
|
15920
16022
|
exports.CommonFindElementsQuery = CommonFindElementsQuery;
|
|
15921
16023
|
exports.CommonFindInstancesQuery = CommonFindInstancesQuery;
|
|
15922
16024
|
exports.CommonInstancesListQuery = CommonInstancesListQuery;
|
|
@@ -15999,6 +16101,7 @@ exports.CreateAgentSession = CreateAgentSession;
|
|
|
15999
16101
|
exports.CreateAlert = CreateAlert;
|
|
16000
16102
|
exports.CreateClientTokenRequest = CreateClientTokenRequest;
|
|
16001
16103
|
exports.CreateClientTokenResponse = CreateClientTokenResponse;
|
|
16104
|
+
exports.CreateClusterRequest = CreateClusterRequest;
|
|
16002
16105
|
exports.CreateConnectedProductRequest = CreateConnectedProductRequest;
|
|
16003
16106
|
exports.CreateConnectionRequest = CreateConnectionRequest;
|
|
16004
16107
|
exports.CreateConnectionRequestPayload = CreateConnectionRequestPayload;
|
|
@@ -16092,6 +16195,7 @@ exports.DataSourceInstanceApiResponse = DataSourceInstanceApiResponse;
|
|
|
16092
16195
|
exports.DataSourceInstancesAccessor = DataSourceInstancesAccessor;
|
|
16093
16196
|
exports.DataSourceUnitConfig = DataSourceUnitConfig;
|
|
16094
16197
|
exports.DataSourcesAccessor = DataSourcesAccessor;
|
|
16198
|
+
exports.DbBackedCountsSchema = DbBackedCountsSchema;
|
|
16095
16199
|
exports.DependencyError = DependencyError;
|
|
16096
16200
|
exports.DownstreamFlowNodeRunSchema = DownstreamFlowNodeRunSchema;
|
|
16097
16201
|
exports.EDITABLE_LIMITS = EDITABLE_LIMITS;
|
|
@@ -16231,6 +16335,7 @@ exports.InvalidLocatorError = InvalidLocatorError;
|
|
|
16231
16335
|
exports.JavascriptFunction = JavascriptFunction;
|
|
16232
16336
|
exports.ListActionInstancesForConnectionQuery = ListActionInstancesForConnectionQuery;
|
|
16233
16337
|
exports.ListAppEventLogRecordsQuery = ListAppEventLogRecordsQuery;
|
|
16338
|
+
exports.ListClustersQuery = ListClustersQuery;
|
|
16234
16339
|
exports.ListDataSourceInstancesForConnectionQuery = ListDataSourceInstancesForConnectionQuery;
|
|
16235
16340
|
exports.ListExternalApiLogsQuery = ListExternalApiLogsQuery;
|
|
16236
16341
|
exports.ListExternalAppsQuery = ListExternalAppsQuery;
|
|
@@ -16287,6 +16392,8 @@ exports.PackagesAccessor = PackagesAccessor;
|
|
|
16287
16392
|
exports.PaginationQuery = PaginationQuery;
|
|
16288
16393
|
exports.PaginationResponse = PaginationResponse;
|
|
16289
16394
|
exports.PatchAgentSessionSchema = PatchAgentSessionSchema;
|
|
16395
|
+
exports.PendingQueueCountSchema = PendingQueueCountSchema;
|
|
16396
|
+
exports.PendingTasksSummarySchema = PendingTasksSummarySchema;
|
|
16290
16397
|
exports.PlatformUser = PlatformUser;
|
|
16291
16398
|
exports.RATE_LIMITS = RATE_LIMITS;
|
|
16292
16399
|
exports.REFERENCE_ELEMENT_TYPE_SELF = REFERENCE_ELEMENT_TYPE_SELF;
|
|
@@ -16316,6 +16423,7 @@ exports.SessionCredentials = SessionCredentials;
|
|
|
16316
16423
|
exports.SessionParameters = SessionParameters;
|
|
16317
16424
|
exports.StatsFilterQuery = StatsFilterQuery;
|
|
16318
16425
|
exports.TenantLayerElement = TenantLayerElement;
|
|
16426
|
+
exports.TenantSelfResponse = TenantSelfResponse;
|
|
16319
16427
|
exports.UNIFIED_DATA_MODELS = UNIFIED_DATA_MODELS;
|
|
16320
16428
|
exports.UnitRunError = UnitRunError;
|
|
16321
16429
|
exports.UpdateActionInstanceRequest = UpdateActionInstanceRequest;
|