@membranehq/sdk 0.24.0 → 0.25.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.d.ts +133 -0
- package/dist/bundle.js +3 -0
- package/dist/bundle.js.map +1 -1
- package/dist/dts/membrane-instances/types.d.ts +8 -0
- package/dist/dts/orgs/types.d.ts +284 -0
- package/dist/dts/workspace-elements/base/connectors/auth.d.ts +182 -0
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +353 -1847
- package/dist/index.browser.d.mts +1070 -2090
- package/dist/index.browser.d.ts +1070 -2090
- package/dist/index.browser.js +40 -6
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +35 -7
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1070 -2090
- package/dist/index.node.d.ts +1070 -2090
- package/dist/index.node.js +40 -6
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +35 -7
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const HUB_INSTANCE_ID = "hub";
|
|
3
|
+
export declare function isHubInstanceId(instanceId: string): boolean;
|
|
4
|
+
export declare function isHubWorkspace(workspace: {
|
|
5
|
+
membraneInstanceId?: string;
|
|
6
|
+
}): boolean;
|
|
7
|
+
export declare function isSelfHostedInstance(instance: {
|
|
8
|
+
id: string;
|
|
9
|
+
}): boolean;
|
|
2
10
|
export declare const MembraneInstance: z.ZodObject<{
|
|
3
11
|
id: z.ZodString;
|
|
4
12
|
name: z.ZodString;
|
package/dist/dts/orgs/types.d.ts
CHANGED
|
@@ -1103,6 +1103,290 @@ export declare const FindOrgWorkspacesQuery: z.ZodObject<{
|
|
|
1103
1103
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1104
1104
|
}, z.core.$strip>;
|
|
1105
1105
|
export type FindOrgWorkspacesQuery = z.infer<typeof FindOrgWorkspacesQuery>;
|
|
1106
|
+
export declare const ListOrgWorkspacesQuery: z.ZodObject<{
|
|
1107
|
+
search: z.ZodOptional<z.ZodString>;
|
|
1108
|
+
cursor: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1109
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1110
|
+
orgId: z.ZodOptional<z.ZodString>;
|
|
1111
|
+
}, z.core.$strip>;
|
|
1112
|
+
export type ListOrgWorkspacesQuery = z.infer<typeof ListOrgWorkspacesQuery>;
|
|
1113
|
+
export declare const ListOrgWorkspacesResponse: z.ZodObject<{
|
|
1114
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1115
|
+
id: z.ZodString;
|
|
1116
|
+
name: z.ZodString;
|
|
1117
|
+
orgId: z.ZodString;
|
|
1118
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
1119
|
+
key: z.ZodString;
|
|
1120
|
+
secret: z.ZodString;
|
|
1121
|
+
createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
1122
|
+
updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
|
|
1123
|
+
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
1124
|
+
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
1125
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1126
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
1127
|
+
membraneInstanceId: z.ZodOptional<z.ZodString>;
|
|
1128
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
1129
|
+
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
1130
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1131
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1132
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1133
|
+
}, z.core.$strip>>;
|
|
1134
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
1135
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1136
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1137
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1138
|
+
}, z.core.$strip>>;
|
|
1139
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
1140
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1141
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1142
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1143
|
+
}, z.core.$strip>>;
|
|
1144
|
+
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
1145
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1146
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1147
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1148
|
+
}, z.core.$strip>>;
|
|
1149
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
1150
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1151
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1152
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1153
|
+
}, z.core.$strip>>;
|
|
1154
|
+
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
1155
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1156
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1157
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1158
|
+
}, z.core.$strip>>;
|
|
1159
|
+
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
1160
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1161
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1162
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1163
|
+
}, z.core.$strip>>;
|
|
1164
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
1165
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1166
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1167
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1168
|
+
}, z.core.$strip>>;
|
|
1169
|
+
parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
|
|
1170
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1171
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1172
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1173
|
+
}, z.core.$strip>>;
|
|
1174
|
+
parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
1175
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1176
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1177
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1178
|
+
}, z.core.$strip>>;
|
|
1179
|
+
parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
|
|
1180
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1181
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1182
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1183
|
+
}, z.core.$strip>>;
|
|
1184
|
+
parallelAgentSessions: z.ZodOptional<z.ZodObject<{
|
|
1185
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1186
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1187
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1188
|
+
}, z.core.$strip>>;
|
|
1189
|
+
parallelCustomCodeRuns: z.ZodOptional<z.ZodObject<{
|
|
1190
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1191
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1192
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1193
|
+
}, z.core.$strip>>;
|
|
1194
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
1195
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1196
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1197
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1198
|
+
}, z.core.$strip>>;
|
|
1199
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
1200
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1201
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1202
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1203
|
+
}, z.core.$strip>>;
|
|
1204
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
1205
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1206
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1207
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1208
|
+
}, z.core.$strip>>;
|
|
1209
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
1210
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1211
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1212
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1213
|
+
}, z.core.$strip>>;
|
|
1214
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
1215
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1216
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1217
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1218
|
+
}, z.core.$strip>>;
|
|
1219
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
1220
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1221
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1222
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1223
|
+
}, z.core.$strip>>;
|
|
1224
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
1225
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1226
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1227
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1228
|
+
}, z.core.$strip>>;
|
|
1229
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
1230
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1231
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1232
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1233
|
+
}, z.core.$strip>>;
|
|
1234
|
+
workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodObject<{
|
|
1235
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1236
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1237
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1238
|
+
}, z.core.$strip>>;
|
|
1239
|
+
mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
1240
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1241
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1242
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1243
|
+
}, z.core.$strip>>;
|
|
1244
|
+
mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
|
|
1245
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1246
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1247
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1248
|
+
}, z.core.$strip>>;
|
|
1249
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
1250
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1251
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1252
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1253
|
+
}, z.core.$strip>>;
|
|
1254
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
1255
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1256
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1257
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1258
|
+
}, z.core.$strip>>;
|
|
1259
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
1260
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1261
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1262
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1263
|
+
}, z.core.$strip>>;
|
|
1264
|
+
totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
|
|
1265
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1266
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1267
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1268
|
+
}, z.core.$strip>>;
|
|
1269
|
+
instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
1270
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1271
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1272
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1273
|
+
}, z.core.$strip>>;
|
|
1274
|
+
QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
|
|
1275
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1276
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1277
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1278
|
+
}, z.core.$strip>>;
|
|
1279
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
1280
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1281
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1282
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1283
|
+
}, z.core.$strip>>;
|
|
1284
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
1285
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1286
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1287
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1288
|
+
}, z.core.$strip>>;
|
|
1289
|
+
parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
1290
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1291
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1292
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1293
|
+
}, z.core.$strip>>;
|
|
1294
|
+
totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
1295
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1296
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1297
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1298
|
+
}, z.core.$strip>>;
|
|
1299
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
1300
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1301
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1302
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1303
|
+
}, z.core.$strip>>;
|
|
1304
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
1305
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1306
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1307
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1308
|
+
}, z.core.$strip>>;
|
|
1309
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
1310
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1311
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1312
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1313
|
+
}, z.core.$strip>>;
|
|
1314
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
1315
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1316
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1317
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1318
|
+
}, z.core.$strip>>;
|
|
1319
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
1320
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1321
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1322
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1323
|
+
}, z.core.$strip>>;
|
|
1324
|
+
defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
|
|
1325
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
1326
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
1327
|
+
unit: z.ZodEnum<typeof import("../workspaces").LimitUnits>;
|
|
1328
|
+
}, z.core.$strip>>;
|
|
1329
|
+
}, z.core.$strip>>;
|
|
1330
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
1331
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
1332
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
1333
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
1334
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
1335
|
+
useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
|
|
1336
|
+
useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
|
|
1337
|
+
}, z.core.$strip>>;
|
|
1338
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1339
|
+
name: z.ZodString;
|
|
1340
|
+
publicKey: z.ZodString;
|
|
1341
|
+
}, z.core.$strip>>>;
|
|
1342
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
1343
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
1344
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1345
|
+
alertDeliverySettings: z.ZodOptional<z.ZodObject<{
|
|
1346
|
+
alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
|
|
1347
|
+
fileUploadsMbPerHour: import("../alerts").AlertType.fileUploadsMbPerHour;
|
|
1348
|
+
apiRequestsPerSecond: import("../alerts").AlertType.apiRequestsPerSecond;
|
|
1349
|
+
apiRequestsPerHour: import("../alerts").AlertType.apiRequestsPerHour;
|
|
1350
|
+
webhookRequestsPerSecond: import("../alerts").AlertType.webhookRequestsPerSecond;
|
|
1351
|
+
webhookRequestsPerHour: import("../alerts").AlertType.webhookRequestsPerHour;
|
|
1352
|
+
workspaceElementCreationsPerSecond: import("../alerts").AlertType.workspaceElementCreationsPerSecond;
|
|
1353
|
+
workspaceElementCreationsPerHour: import("../alerts").AlertType.workspaceElementCreationsPerHour;
|
|
1354
|
+
workspaceElementSearchIndexingPerMinute: import("../alerts").AlertType.workspaceElementSearchIndexingPerMinute;
|
|
1355
|
+
externalEventsPerCustomerPerDay: import("../alerts").AlertType.externalEventsPerCustomerPerDay;
|
|
1356
|
+
apiRequestsPerCustomerPerSecond: import("../alerts").AlertType.apiRequestsPerCustomerPerSecond;
|
|
1357
|
+
apiRequestsPerCustomerPerHour: import("../alerts").AlertType.apiRequestsPerCustomerPerHour;
|
|
1358
|
+
webhookRequestsPerCustomerPerSecond: import("../alerts").AlertType.webhookRequestsPerCustomerPerSecond;
|
|
1359
|
+
webhookRequestsPerCustomerPerHour: import("../alerts").AlertType.webhookRequestsPerCustomerPerHour;
|
|
1360
|
+
parallelApiRequestsPerCustomer: import("../alerts").AlertType.parallelApiRequestsPerCustomer;
|
|
1361
|
+
engineCreditsExhaustionProjected: import("../alerts").AlertType.engineCreditsExhaustionProjected;
|
|
1362
|
+
engineCreditsExhaustionActual: import("../alerts").AlertType.engineCreditsExhaustionActual;
|
|
1363
|
+
totalNumberOfDatabaseEntitiesPerCustomer: import("../alerts").AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
|
|
1364
|
+
totalNumberOfCustomers: import("../alerts").AlertType.totalNumberOfCustomers;
|
|
1365
|
+
totalNumberOfConnections: import("../alerts").AlertType.totalNumberOfConnections;
|
|
1366
|
+
totalNumberOfWorkspaceElements: import("../alerts").AlertType.totalNumberOfWorkspaceElements;
|
|
1367
|
+
totalNumberOfWorkspaceDatabaseRecords: import("../alerts").AlertType.totalNumberOfWorkspaceDatabaseRecords;
|
|
1368
|
+
instantTasksQueueSize: import("../alerts").AlertType.instantTasksQueueSize;
|
|
1369
|
+
queuedTasksQueueSize: import("../alerts").AlertType.queuedTasksQueueSize;
|
|
1370
|
+
flowRunsQueueSizePerConnection: import("../alerts").AlertType.flowRunsQueueSizePerConnection;
|
|
1371
|
+
eventsProcessingQueueSizePerConnection: import("../alerts").AlertType.eventsProcessingQueueSizePerConnection;
|
|
1372
|
+
parallelApiRequests: import("../alerts").AlertType.parallelApiRequests;
|
|
1373
|
+
testAlert: import("../alerts").AlertType.testAlert;
|
|
1374
|
+
}>, z.ZodOptional<z.ZodObject<{
|
|
1375
|
+
internal: z.ZodLiteral<true>;
|
|
1376
|
+
webhook: z.ZodOptional<z.ZodObject<{
|
|
1377
|
+
enabled: z.ZodBoolean;
|
|
1378
|
+
}, z.core.$strip>>;
|
|
1379
|
+
email: z.ZodOptional<z.ZodObject<{
|
|
1380
|
+
enabled: z.ZodBoolean;
|
|
1381
|
+
}, z.core.$strip>>;
|
|
1382
|
+
}, z.core.$strip>>>>;
|
|
1383
|
+
}, z.core.$strip>>;
|
|
1384
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1385
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
1386
|
+
}, z.core.$strip>>;
|
|
1387
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
1388
|
+
}, z.core.$strip>;
|
|
1389
|
+
export type ListOrgWorkspacesResponse = z.infer<typeof ListOrgWorkspacesResponse>;
|
|
1106
1390
|
export declare const CreateOrgWorkspaceRequest: z.ZodObject<{
|
|
1107
1391
|
name: z.ZodOptional<z.ZodString>;
|
|
1108
1392
|
logoUri: z.ZodOptional<z.ZodString>;
|