@engini/client 0.4.0 → 0.6.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/LICENSE +21 -0
- package/README.md +32 -0
- package/dist/index.cjs +12 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +545 -779
- package/dist/index.d.ts +545 -779
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -320,7 +320,7 @@ type OmitKeys<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
|
320
320
|
type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown, TResponseStyle extends ResponseStyle = 'fields'> = OmitKeys<RequestOptions<TResponse, TResponseStyle, ThrowOnError>, 'body' | 'path' | 'query' | 'url'> & ([TData] extends [never] ? unknown : Omit<TData, 'url'>);
|
|
321
321
|
|
|
322
322
|
type ClientOptions = {
|
|
323
|
-
baseUrl: 'https://
|
|
323
|
+
baseUrl: 'https://api.staging.engini.io' | (string & {});
|
|
324
324
|
};
|
|
325
325
|
/**
|
|
326
326
|
* Identity of the principal a Developer API request is authenticated as, returned by
|
|
@@ -1073,77 +1073,26 @@ type UninstallSolutionRequest = {
|
|
|
1073
1073
|
*/
|
|
1074
1074
|
deleteTables: boolean;
|
|
1075
1075
|
};
|
|
1076
|
-
/**
|
|
1077
|
-
* Offset-based paginated wrapper for a list of items.
|
|
1078
|
-
*/
|
|
1079
1076
|
type PaginatedResponseOfApplicationDto = {
|
|
1080
|
-
/**
|
|
1081
|
-
* The items in the current page.
|
|
1082
|
-
*/
|
|
1083
1077
|
items: Array<ApplicationDto>;
|
|
1084
|
-
/**
|
|
1085
|
-
* Total number of items available across all pages.
|
|
1086
|
-
*/
|
|
1087
1078
|
totalCount: number;
|
|
1088
|
-
/**
|
|
1089
|
-
* Number of items skipped before this page (the requested offset).
|
|
1090
|
-
*/
|
|
1091
1079
|
offset: number;
|
|
1092
|
-
/**
|
|
1093
|
-
* Maximum number of items requested for this page.
|
|
1094
|
-
*/
|
|
1095
1080
|
top: number;
|
|
1096
1081
|
};
|
|
1097
|
-
/**
|
|
1098
|
-
* Public Developer API v1 representation of an Application.
|
|
1099
|
-
* Returned by GET /api/DeveloperAPI/v1/applications.
|
|
1100
|
-
*/
|
|
1101
1082
|
type ApplicationDto = {
|
|
1102
|
-
/**
|
|
1103
|
-
* Stable public slug identifying the application.
|
|
1104
|
-
*/
|
|
1105
1083
|
slug: string;
|
|
1106
|
-
/**
|
|
1107
|
-
* Human-readable display name of the application.
|
|
1108
|
-
*/
|
|
1109
1084
|
applicationName?: string | null;
|
|
1110
|
-
/**
|
|
1111
|
-
* Description of what the application does.
|
|
1112
|
-
*/
|
|
1113
1085
|
description: string;
|
|
1114
|
-
/**
|
|
1115
|
-
* URL of the application's logo image.
|
|
1116
|
-
*/
|
|
1117
1086
|
applicationLogo?: string | null;
|
|
1118
|
-
/**
|
|
1119
|
-
* Whether and how a connection is required to use this application.
|
|
1120
|
-
*/
|
|
1121
1087
|
connectionRequirement: string;
|
|
1122
|
-
|
|
1123
|
-
* Categories the application belongs to.
|
|
1124
|
-
*/
|
|
1088
|
+
kind: string;
|
|
1125
1089
|
categories: Array<string>;
|
|
1126
|
-
/**
|
|
1127
|
-
* Number of tools (activities) the application exposes.
|
|
1128
|
-
*/
|
|
1129
1090
|
toolsCount: number;
|
|
1130
|
-
/**
|
|
1131
|
-
* Number of triggers the application exposes.
|
|
1132
|
-
*/
|
|
1133
1091
|
triggersCount: number;
|
|
1134
1092
|
};
|
|
1135
1093
|
type ApplicationDetailDto = ApplicationDto & {
|
|
1136
|
-
/**
|
|
1137
|
-
* Whether the application supports selecting specific objects for a connection.
|
|
1138
|
-
*/
|
|
1139
1094
|
supportsObjectSelection?: boolean;
|
|
1140
|
-
/**
|
|
1141
|
-
* URL of help/documentation for the application.
|
|
1142
|
-
*/
|
|
1143
1095
|
helpUrl?: string | null;
|
|
1144
|
-
/**
|
|
1145
|
-
* Authentication methods supported by the application.
|
|
1146
|
-
*/
|
|
1147
1096
|
authenticationMethods?: Array<ApplicationAuthMethod>;
|
|
1148
1097
|
};
|
|
1149
1098
|
type ApplicationAuthMethod = {
|
|
@@ -1154,6 +1103,7 @@ type ApplicationAuthMethod = {
|
|
|
1154
1103
|
connectionFields: Array<ApplicationConnectionField>;
|
|
1155
1104
|
requiresOAuthSignIn: boolean;
|
|
1156
1105
|
oAuthProvider?: string | null;
|
|
1106
|
+
isDefault: boolean;
|
|
1157
1107
|
};
|
|
1158
1108
|
type ApplicationConnectionField = {
|
|
1159
1109
|
fieldName: string;
|
|
@@ -1167,300 +1117,111 @@ type ApplicationConnectionField = {
|
|
|
1167
1117
|
tooltip?: string | null;
|
|
1168
1118
|
placeholder?: string | null;
|
|
1169
1119
|
listValues?: string | null;
|
|
1170
|
-
/**
|
|
1171
|
-
* When true, callers can supply this field's value per-execution via the
|
|
1172
|
-
* `customConnectionData` array on POST /tools/{toolSlug}/execute. Mirrors
|
|
1173
|
-
* AppConnectionField.AllowOverride.
|
|
1174
|
-
*/
|
|
1175
1120
|
allowOverride: boolean;
|
|
1176
1121
|
};
|
|
1177
1122
|
type AppConnectionFieldInputType = 0 | 1 | 2 | 3;
|
|
1178
|
-
/**
|
|
1179
|
-
* Offset-based paginated wrapper for a list of items.
|
|
1180
|
-
*/
|
|
1181
1123
|
type PaginatedResponseOfConnectionPublicListItem = {
|
|
1182
|
-
/**
|
|
1183
|
-
* The items in the current page.
|
|
1184
|
-
*/
|
|
1185
1124
|
items: Array<ConnectionPublicListItem>;
|
|
1186
|
-
/**
|
|
1187
|
-
* Total number of items available across all pages.
|
|
1188
|
-
*/
|
|
1189
1125
|
totalCount: number;
|
|
1190
|
-
/**
|
|
1191
|
-
* Number of items skipped before this page (the requested offset).
|
|
1192
|
-
*/
|
|
1193
1126
|
offset: number;
|
|
1194
|
-
/**
|
|
1195
|
-
* Maximum number of items requested for this page.
|
|
1196
|
-
*/
|
|
1197
1127
|
top: number;
|
|
1198
1128
|
};
|
|
1199
|
-
/**
|
|
1200
|
-
* Public-shape list item for /api/DeveloperAPI/v1/Connections.
|
|
1201
|
-
* Applications are identified by slug only (no ApplicationId in the wire response).
|
|
1202
|
-
* Internal queries continue to use ConnectionList which carries both.
|
|
1203
|
-
*/
|
|
1204
1129
|
type ConnectionPublicListItem = {
|
|
1205
|
-
/**
|
|
1206
|
-
* Identifier of the connection.
|
|
1207
|
-
*/
|
|
1208
1130
|
connectionId: number;
|
|
1209
|
-
/**
|
|
1210
|
-
* Display name of the connection.
|
|
1211
|
-
*/
|
|
1212
1131
|
connectionName: string;
|
|
1213
|
-
/**
|
|
1214
|
-
* Description of the connection.
|
|
1215
|
-
*/
|
|
1216
1132
|
description?: string | null;
|
|
1217
|
-
/**
|
|
1218
|
-
* Slug of the connection's application.
|
|
1219
|
-
*/
|
|
1220
1133
|
applicationSlug: string;
|
|
1221
|
-
/**
|
|
1222
|
-
* Display name of the connection's application.
|
|
1223
|
-
*/
|
|
1224
1134
|
applicationName?: string | null;
|
|
1225
|
-
/**
|
|
1226
|
-
* URL of the application's logo image.
|
|
1227
|
-
*/
|
|
1228
1135
|
applicationLogo?: string | null;
|
|
1229
|
-
|
|
1230
|
-
* Whether the connection is shared/public.
|
|
1231
|
-
*/
|
|
1136
|
+
kind: string;
|
|
1232
1137
|
isPublic: boolean;
|
|
1233
|
-
/**
|
|
1234
|
-
* Identifier of the user who created the connection.
|
|
1235
|
-
*/
|
|
1236
1138
|
createdBy: string;
|
|
1237
|
-
/**
|
|
1238
|
-
* When the connection was created.
|
|
1239
|
-
*/
|
|
1240
1139
|
createdDate: string;
|
|
1241
|
-
/**
|
|
1242
|
-
* Identifier of the user who last updated the connection; null if never updated.
|
|
1243
|
-
*/
|
|
1244
1140
|
updatedBy?: string | null;
|
|
1245
|
-
/**
|
|
1246
|
-
* When the connection was last updated; null if never updated.
|
|
1247
|
-
*/
|
|
1248
1141
|
updatedDate?: string | null;
|
|
1249
1142
|
};
|
|
1250
1143
|
type ConnectionPublicDetail = ConnectionPublicListItem & {
|
|
1251
|
-
/**
|
|
1252
|
-
* Identifier of the authentication method used by the connection.
|
|
1253
|
-
*/
|
|
1254
1144
|
authenticationId?: number;
|
|
1255
|
-
/**
|
|
1256
|
-
* Name of the authentication type used by the connection.
|
|
1257
|
-
*/
|
|
1258
1145
|
authenticationType?: string;
|
|
1259
|
-
/**
|
|
1260
|
-
* Connection field values, keyed by field name (sensitive values may be masked).
|
|
1261
|
-
*/
|
|
1262
1146
|
fields?: {
|
|
1263
1147
|
[key: string]: string | null;
|
|
1264
1148
|
};
|
|
1265
|
-
/**
|
|
1266
|
-
* Whether the connection uses selected database objects.
|
|
1267
|
-
*/
|
|
1268
1149
|
useSelectDBObjects?: boolean;
|
|
1269
|
-
/**
|
|
1270
|
-
* Last connection error message, if any.
|
|
1271
|
-
*/
|
|
1272
1150
|
connectionError?: string | null;
|
|
1273
|
-
/**
|
|
1274
|
-
* Whether the connection is currently healthy/reachable.
|
|
1275
|
-
*/
|
|
1276
1151
|
isAlive?: boolean;
|
|
1277
|
-
/**
|
|
1278
|
-
* Additional connection metadata, keyed by name.
|
|
1279
|
-
*/
|
|
1280
1152
|
metadata?: {
|
|
1281
1153
|
[key: string]: string;
|
|
1282
1154
|
} | null;
|
|
1283
1155
|
};
|
|
1284
|
-
/**
|
|
1285
|
-
* Request body for creating a connection.
|
|
1286
|
-
*/
|
|
1287
1156
|
type CreateConnectionRequest = {
|
|
1288
|
-
/**
|
|
1289
|
-
* Slug of the application to connect to.
|
|
1290
|
-
*/
|
|
1291
1157
|
applicationSlug: string;
|
|
1292
|
-
/**
|
|
1293
|
-
* Display name for the new connection.
|
|
1294
|
-
*/
|
|
1295
1158
|
connectionName: string;
|
|
1296
|
-
/**
|
|
1297
|
-
* Optional description of the connection.
|
|
1298
|
-
*/
|
|
1299
1159
|
description?: string | null;
|
|
1300
|
-
|
|
1301
|
-
* Identifier of the authentication method to use.
|
|
1302
|
-
*/
|
|
1303
|
-
authenticationId: number;
|
|
1304
|
-
/**
|
|
1305
|
-
* Connection field values, keyed by field name.
|
|
1306
|
-
*/
|
|
1160
|
+
authenticationId?: number | null;
|
|
1307
1161
|
fields: {
|
|
1308
1162
|
[key: string]: string;
|
|
1309
1163
|
};
|
|
1310
|
-
/**
|
|
1311
|
-
* Optional additional connection metadata, keyed by name.
|
|
1312
|
-
*/
|
|
1313
1164
|
metadata?: {
|
|
1314
1165
|
[key: string]: string;
|
|
1315
1166
|
} | null;
|
|
1316
1167
|
};
|
|
1317
|
-
/**
|
|
1318
|
-
* Request body for updating a connection; null members are left unchanged.
|
|
1319
|
-
*/
|
|
1320
1168
|
type UpdateConnectionRequest = {
|
|
1321
|
-
/**
|
|
1322
|
-
* New display name; null leaves it unchanged.
|
|
1323
|
-
*/
|
|
1324
1169
|
connectionName?: string | null;
|
|
1325
|
-
/**
|
|
1326
|
-
* New description; null leaves it unchanged.
|
|
1327
|
-
*/
|
|
1328
1170
|
description?: string | null;
|
|
1329
|
-
/**
|
|
1330
|
-
* Connection field values to update, keyed by field name; null leaves them unchanged.
|
|
1331
|
-
*/
|
|
1332
1171
|
fields?: {
|
|
1333
1172
|
[key: string]: string;
|
|
1334
1173
|
} | null;
|
|
1335
|
-
/**
|
|
1336
|
-
* Metadata to update, keyed by name; null leaves it unchanged.
|
|
1337
|
-
*/
|
|
1338
1174
|
metadata?: {
|
|
1339
1175
|
[key: string]: string;
|
|
1340
1176
|
} | null;
|
|
1341
1177
|
};
|
|
1342
|
-
/**
|
|
1343
|
-
* Response listing the caller's default connection per application.
|
|
1344
|
-
*/
|
|
1345
1178
|
type DefaultConnectionsResponse = {
|
|
1346
|
-
/**
|
|
1347
|
-
* The default-connection entries, one per application.
|
|
1348
|
-
*/
|
|
1349
1179
|
items: Array<DefaultConnectionDto>;
|
|
1350
1180
|
};
|
|
1351
|
-
/**
|
|
1352
|
-
* Per-(account-user, application) default-connection responses for the
|
|
1353
|
-
* /connections/defaults endpoints. See toolsets-and-connections-spec.md.
|
|
1354
|
-
*/
|
|
1355
1181
|
type DefaultConnectionDto = {
|
|
1356
|
-
/**
|
|
1357
|
-
* Slug of the application this default applies to.
|
|
1358
|
-
*/
|
|
1359
1182
|
applicationSlug: string;
|
|
1360
|
-
/**
|
|
1361
|
-
* Display name of the application.
|
|
1362
|
-
*/
|
|
1363
1183
|
applicationName?: string | null;
|
|
1364
|
-
/**
|
|
1365
|
-
* Identifier of the default connection (Connector ID).
|
|
1366
|
-
*/
|
|
1367
1184
|
connectionId: number;
|
|
1368
|
-
/**
|
|
1369
|
-
* Display name of the default connection.
|
|
1370
|
-
*/
|
|
1371
1185
|
connectionName?: string | null;
|
|
1372
1186
|
};
|
|
1373
|
-
/**
|
|
1374
|
-
* Response confirming a connection was set as the default for an application.
|
|
1375
|
-
*/
|
|
1376
1187
|
type SetDefaultConnectionResponse = {
|
|
1377
|
-
/**
|
|
1378
|
-
* Slug of the application the default was set for.
|
|
1379
|
-
*/
|
|
1380
1188
|
applicationSlug: string;
|
|
1381
|
-
/**
|
|
1382
|
-
* Identifier of the connection set as default.
|
|
1383
|
-
*/
|
|
1384
1189
|
connectionId: number;
|
|
1385
|
-
/**
|
|
1386
|
-
* Whether the connection is now the default (always true).
|
|
1387
|
-
*/
|
|
1388
1190
|
isDefault: boolean;
|
|
1389
1191
|
};
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1192
|
+
type ConnectionReplaceResult = {
|
|
1193
|
+
succeeded: boolean;
|
|
1194
|
+
activities: Array<ConnectionReplaceActivityOutcome>;
|
|
1195
|
+
};
|
|
1196
|
+
type ConnectionReplaceActivityOutcome = {
|
|
1197
|
+
stepNo: number;
|
|
1198
|
+
activityName: string;
|
|
1199
|
+
outcome: ConnectionReplacementOutcome;
|
|
1200
|
+
missingObjectName?: string | null;
|
|
1201
|
+
strippedFields: Array<string>;
|
|
1202
|
+
removedFilterConditions: Array<string>;
|
|
1203
|
+
};
|
|
1204
|
+
type ConnectionReplacementOutcome = 0 | 1 | 2 | 3 | 4 | 5;
|
|
1393
1205
|
type ReplaceConnectionRequest = {
|
|
1394
|
-
/**
|
|
1395
|
-
* Identifier of the workflow whose connection is being replaced.
|
|
1396
|
-
*/
|
|
1397
1206
|
workflowId: number;
|
|
1398
|
-
/**
|
|
1399
|
-
* Identifier of the connection currently used by the workflow.
|
|
1400
|
-
*/
|
|
1401
1207
|
originalConnectionId: number;
|
|
1402
|
-
/**
|
|
1403
|
-
* Identifier of the connection to use instead.
|
|
1404
|
-
*/
|
|
1405
1208
|
newConnectionId: number;
|
|
1406
1209
|
};
|
|
1407
|
-
/**
|
|
1408
|
-
* Status of a connection's most recent metadata/object refresh.
|
|
1409
|
-
*/
|
|
1410
1210
|
type RefreshStatusResponse = {
|
|
1411
|
-
/**
|
|
1412
|
-
* Current refresh status.
|
|
1413
|
-
*/
|
|
1414
1211
|
status: RefreshStatus;
|
|
1415
|
-
/**
|
|
1416
|
-
* Human-readable description of the current status.
|
|
1417
|
-
*/
|
|
1418
1212
|
statusDescription?: string | null;
|
|
1419
|
-
/**
|
|
1420
|
-
* Error message from the last failed refresh, if any.
|
|
1421
|
-
*/
|
|
1422
1213
|
error?: string | null;
|
|
1423
|
-
/**
|
|
1424
|
-
* When the last error occurred, if any.
|
|
1425
|
-
*/
|
|
1426
1214
|
errorDate?: string | null;
|
|
1427
|
-
/**
|
|
1428
|
-
* When the connection was last refreshed successfully.
|
|
1429
|
-
*/
|
|
1430
1215
|
lastRefreshDate?: string | null;
|
|
1431
1216
|
};
|
|
1432
|
-
/**
|
|
1433
|
-
* Possible states of a connection refresh.
|
|
1434
|
-
*/
|
|
1435
1217
|
type RefreshStatus = 0 | 1 | 2;
|
|
1436
|
-
/**
|
|
1437
|
-
* Request body for selecting which objects a connection exposes.
|
|
1438
|
-
*/
|
|
1439
1218
|
type SelectObjectsRequest = {
|
|
1440
|
-
/**
|
|
1441
|
-
* Identifiers of the objects to select for the connection.
|
|
1442
|
-
*/
|
|
1443
1219
|
objectIds: Array<number>;
|
|
1444
1220
|
};
|
|
1445
|
-
/**
|
|
1446
|
-
* Offset-based paginated wrapper for a list of items.
|
|
1447
|
-
*/
|
|
1448
1221
|
type PaginatedResponseOfConnectionObject = {
|
|
1449
|
-
/**
|
|
1450
|
-
* The items in the current page.
|
|
1451
|
-
*/
|
|
1452
1222
|
items: Array<ConnectionObject>;
|
|
1453
|
-
/**
|
|
1454
|
-
* Total number of items available across all pages.
|
|
1455
|
-
*/
|
|
1456
1223
|
totalCount: number;
|
|
1457
|
-
/**
|
|
1458
|
-
* Number of items skipped before this page (the requested offset).
|
|
1459
|
-
*/
|
|
1460
1224
|
offset: number;
|
|
1461
|
-
/**
|
|
1462
|
-
* Maximum number of items requested for this page.
|
|
1463
|
-
*/
|
|
1464
1225
|
top: number;
|
|
1465
1226
|
};
|
|
1466
1227
|
type ConnectionObject = {
|
|
@@ -1469,38 +1230,14 @@ type ConnectionObject = {
|
|
|
1469
1230
|
type: string;
|
|
1470
1231
|
isSelected: boolean;
|
|
1471
1232
|
};
|
|
1472
|
-
/**
|
|
1473
|
-
* Response containing a generated OAuth sign-in URL.
|
|
1474
|
-
*/
|
|
1475
1233
|
type SignInUrlResponse = {
|
|
1476
|
-
/**
|
|
1477
|
-
* The URL the user should visit to authenticate.
|
|
1478
|
-
*/
|
|
1479
1234
|
signInUrl: string;
|
|
1480
|
-
/**
|
|
1481
|
-
* Opaque state value tying the sign-in flow back to the request.
|
|
1482
|
-
*/
|
|
1483
1235
|
state: string;
|
|
1484
1236
|
};
|
|
1485
|
-
/**
|
|
1486
|
-
* Request body for generating an OAuth sign-in URL.
|
|
1487
|
-
*/
|
|
1488
1237
|
type SignInUrlRequest = {
|
|
1489
|
-
/**
|
|
1490
|
-
* Slug of the application to authenticate against.
|
|
1491
|
-
*/
|
|
1492
1238
|
applicationSlug: string;
|
|
1493
|
-
/**
|
|
1494
|
-
* Identifier of the authentication method to use.
|
|
1495
|
-
*/
|
|
1496
1239
|
authenticationId: number;
|
|
1497
|
-
/**
|
|
1498
|
-
* Optional environment to target for sign-in.
|
|
1499
|
-
*/
|
|
1500
1240
|
environment?: string | null;
|
|
1501
|
-
/**
|
|
1502
|
-
* Optional field values required to build the sign-in URL, keyed by field name.
|
|
1503
|
-
*/
|
|
1504
1241
|
fields?: {
|
|
1505
1242
|
[key: string]: string;
|
|
1506
1243
|
} | null;
|
|
@@ -1515,192 +1252,58 @@ type AccessTokenResponse = {
|
|
|
1515
1252
|
[key: string]: unknown;
|
|
1516
1253
|
};
|
|
1517
1254
|
};
|
|
1518
|
-
/**
|
|
1519
|
-
* Offset-based paginated wrapper for a list of items.
|
|
1520
|
-
*/
|
|
1521
1255
|
type PaginatedResponseOfToolDto = {
|
|
1522
|
-
/**
|
|
1523
|
-
* The items in the current page.
|
|
1524
|
-
*/
|
|
1525
1256
|
items: Array<ToolDto>;
|
|
1526
|
-
/**
|
|
1527
|
-
* Total number of items available across all pages.
|
|
1528
|
-
*/
|
|
1529
1257
|
totalCount: number;
|
|
1530
|
-
/**
|
|
1531
|
-
* Number of items skipped before this page (the requested offset).
|
|
1532
|
-
*/
|
|
1533
1258
|
offset: number;
|
|
1534
|
-
/**
|
|
1535
|
-
* Maximum number of items requested for this page.
|
|
1536
|
-
*/
|
|
1537
1259
|
top: number;
|
|
1538
1260
|
};
|
|
1539
|
-
/**
|
|
1540
|
-
* Public Developer API v1 representation of a tool (Activity).
|
|
1541
|
-
* Returned by GET /api/DeveloperAPI/v1/tools.
|
|
1542
|
-
*/
|
|
1543
1261
|
type ToolDto = {
|
|
1544
|
-
/**
|
|
1545
|
-
* Public identifier, sourced from Activity.McpToolName.
|
|
1546
|
-
*/
|
|
1547
1262
|
toolSlug: string;
|
|
1548
|
-
/**
|
|
1549
|
-
* Human-readable display name of the tool.
|
|
1550
|
-
*/
|
|
1551
1263
|
toolName?: string | null;
|
|
1552
|
-
/**
|
|
1553
|
-
* Description of what the tool does.
|
|
1554
|
-
*/
|
|
1555
1264
|
description?: string | null;
|
|
1556
|
-
/**
|
|
1557
|
-
* Category the tool belongs to.
|
|
1558
|
-
*/
|
|
1559
1265
|
category: string;
|
|
1560
|
-
/**
|
|
1561
|
-
* Slug of the application this tool belongs to.
|
|
1562
|
-
*/
|
|
1563
1266
|
applicationSlug: string;
|
|
1564
|
-
/**
|
|
1565
|
-
* Display name of the application this tool belongs to.
|
|
1566
|
-
*/
|
|
1567
1267
|
applicationName?: string | null;
|
|
1568
|
-
/**
|
|
1569
|
-
* Version of the tool.
|
|
1570
|
-
*/
|
|
1571
1268
|
version?: string | null;
|
|
1572
|
-
/**
|
|
1573
|
-
* Whether the tool is deprecated.
|
|
1574
|
-
*/
|
|
1575
1269
|
isDeprecated: boolean;
|
|
1576
1270
|
};
|
|
1577
1271
|
type ToolDetailDto = ToolDto & {
|
|
1578
|
-
/**
|
|
1579
|
-
* JSON Schema describing the tool's input fields.
|
|
1580
|
-
*/
|
|
1581
1272
|
inputSchema?: unknown;
|
|
1582
|
-
/**
|
|
1583
|
-
* JSON Schema describing the tool's output shape.
|
|
1584
|
-
*/
|
|
1585
1273
|
outputSchema?: unknown;
|
|
1586
|
-
/**
|
|
1587
|
-
* Whether the tool supports filter conditions on execution.
|
|
1588
|
-
*/
|
|
1589
1274
|
supportsFilters?: boolean;
|
|
1590
|
-
/**
|
|
1591
|
-
* Whether the tool supports sort ordering on execution.
|
|
1592
|
-
*/
|
|
1593
1275
|
supportsSort?: boolean;
|
|
1594
|
-
/**
|
|
1595
|
-
* Whether the tool supports top/offset pagination on execution.
|
|
1596
|
-
*/
|
|
1597
1276
|
supportsTopOffset?: boolean;
|
|
1598
|
-
/**
|
|
1599
|
-
* Maximum number of filter conditions allowed per execution.
|
|
1600
|
-
*/
|
|
1601
1277
|
maxFilters?: number;
|
|
1602
|
-
/**
|
|
1603
|
-
* Maximum number of sort clauses allowed per execution.
|
|
1604
|
-
*/
|
|
1605
1278
|
maxSorts?: number;
|
|
1606
1279
|
};
|
|
1607
|
-
/**
|
|
1608
|
-
* 200 response shape for POST /api/DeveloperAPI/v1/tools/{toolSlug}/execute.
|
|
1609
|
-
* Tool-runtime failures (downstream API errors) return 200 + IsSuccess=false
|
|
1610
|
-
* + ErrorMessage — not the standard error envelope. All non-200 responses use
|
|
1611
|
-
* the standard ErrorResponse envelope, not this type.
|
|
1612
|
-
* See applications-tools-spec.md §"Response 200".
|
|
1613
|
-
*/
|
|
1614
1280
|
type ToolExecuteResponse = {
|
|
1615
|
-
/**
|
|
1616
|
-
* Whether the tool executed successfully. When false, see ErrorMessage.
|
|
1617
|
-
*/
|
|
1618
1281
|
isSuccess: boolean;
|
|
1619
|
-
/**
|
|
1620
|
-
* Human-readable failure reason when IsSuccess is false; otherwise null.
|
|
1621
|
-
*/
|
|
1622
1282
|
errorMessage?: string | null;
|
|
1623
|
-
/**
|
|
1624
|
-
* Metadata about the execution (HTTP status, headers, timing, payload size).
|
|
1625
|
-
*/
|
|
1626
1283
|
executionInfo?: ExecutionInfo | null;
|
|
1627
|
-
/**
|
|
1628
|
-
* The tool's result payload. Intentionally free-form (any JSON): its shape is defined by the
|
|
1629
|
-
* individual tool's output schema, not by this envelope (api-spec-feedback.md C3).
|
|
1630
|
-
*/
|
|
1631
1284
|
output?: unknown;
|
|
1632
|
-
/**
|
|
1633
|
-
* Identifier of the workflow-history record for this execution, when one was created.
|
|
1634
|
-
*/
|
|
1635
1285
|
historyId?: number | null;
|
|
1636
1286
|
};
|
|
1637
|
-
/**
|
|
1638
|
-
* Metadata about a tool execution (downstream HTTP status, headers, timing, payload size).
|
|
1639
|
-
*/
|
|
1640
1287
|
type ExecutionInfo = {
|
|
1641
|
-
/**
|
|
1642
|
-
* HTTP status code returned by the downstream call.
|
|
1643
|
-
*/
|
|
1644
1288
|
statusCode?: number | null;
|
|
1645
|
-
/**
|
|
1646
|
-
* Response headers from the downstream call, keyed by header name.
|
|
1647
|
-
*/
|
|
1648
1289
|
headers?: {
|
|
1649
1290
|
[key: string]: string;
|
|
1650
1291
|
} | null;
|
|
1651
|
-
/**
|
|
1652
|
-
* Execution time in milliseconds.
|
|
1653
|
-
*/
|
|
1654
1292
|
executionTime?: number | null;
|
|
1655
|
-
/**
|
|
1656
|
-
* Size of the response payload in bytes.
|
|
1657
|
-
*/
|
|
1658
1293
|
dataSize?: number | null;
|
|
1659
1294
|
};
|
|
1660
|
-
/**
|
|
1661
|
-
* Body shape for POST /api/DeveloperAPI/v1/tools/{toolSlug}/execute.
|
|
1662
|
-
* activityName is intentionally absent — the activity is resolved from the
|
|
1663
|
-
* path slug (+ optional ?applicationSlug=). Connection is resolved implicitly
|
|
1664
|
-
* from the caller's account-user, the tool's parent application, and the
|
|
1665
|
-
* optional ?toolsetId= query param. See applications-tools-spec.md §"POST
|
|
1666
|
-
* /api/DeveloperAPI/v1/tools/{toolSlug}/execute".
|
|
1667
|
-
*/
|
|
1668
1295
|
type ToolExecuteRequest = {
|
|
1669
|
-
/**
|
|
1670
|
-
* Input field values for the tool, keyed by field name.
|
|
1671
|
-
*/
|
|
1672
1296
|
fields?: {
|
|
1673
1297
|
[key: string]: unknown;
|
|
1674
1298
|
} | null;
|
|
1675
|
-
/**
|
|
1676
|
-
* Optional context value passed to the tool.
|
|
1677
|
-
*/
|
|
1678
1299
|
contextValue?: string | null;
|
|
1679
|
-
/**
|
|
1680
|
-
* Filter conditions to apply to the tool's results.
|
|
1681
|
-
*/
|
|
1682
1300
|
filters?: Array<ActivityCondition> | null;
|
|
1683
|
-
/**
|
|
1684
|
-
* Sort clauses to apply to the tool's results.
|
|
1685
|
-
*/
|
|
1686
1301
|
sort?: Array<ActivitySort> | null;
|
|
1687
|
-
/**
|
|
1688
|
-
* Number of leading results to skip (pagination offset).
|
|
1689
|
-
*/
|
|
1690
1302
|
offset?: number | null;
|
|
1691
|
-
/**
|
|
1692
|
-
* Maximum number of results to return.
|
|
1693
|
-
*/
|
|
1694
1303
|
top?: number | null;
|
|
1695
|
-
/**
|
|
1696
|
-
* Sub-item input values for the tool, keyed by name.
|
|
1697
|
-
*/
|
|
1698
1304
|
subItems?: {
|
|
1699
1305
|
[key: string]: unknown;
|
|
1700
1306
|
} | null;
|
|
1701
|
-
/**
|
|
1702
|
-
* Per-call overrides for the resolved connection's fields; only fields marked overridable are accepted.
|
|
1703
|
-
*/
|
|
1704
1307
|
customConnectionData?: Array<CustomConnectionDataItem> | null;
|
|
1705
1308
|
};
|
|
1706
1309
|
type ActivityCondition = {
|
|
@@ -1713,155 +1316,45 @@ type ActivitySort = {
|
|
|
1713
1316
|
orderDirection: OrderDirection;
|
|
1714
1317
|
};
|
|
1715
1318
|
type OrderDirection = 1 | -1;
|
|
1716
|
-
/**
|
|
1717
|
-
* A single per-call override of a connection field value.
|
|
1718
|
-
*/
|
|
1719
1319
|
type CustomConnectionDataItem = {
|
|
1720
|
-
/**
|
|
1721
|
-
* Name of the connection field to override.
|
|
1722
|
-
*/
|
|
1723
1320
|
fieldName: string;
|
|
1724
|
-
/**
|
|
1725
|
-
* Override value for the field.
|
|
1726
|
-
*/
|
|
1727
1321
|
value: string;
|
|
1728
1322
|
};
|
|
1729
|
-
/**
|
|
1730
|
-
* Offset-based paginated wrapper for a list of items.
|
|
1731
|
-
*/
|
|
1732
1323
|
type PaginatedResponseOfToolsetDto = {
|
|
1733
|
-
/**
|
|
1734
|
-
* The items in the current page.
|
|
1735
|
-
*/
|
|
1736
1324
|
items: Array<ToolsetDto>;
|
|
1737
|
-
/**
|
|
1738
|
-
* Total number of items available across all pages.
|
|
1739
|
-
*/
|
|
1740
1325
|
totalCount: number;
|
|
1741
|
-
/**
|
|
1742
|
-
* Number of items skipped before this page (the requested offset).
|
|
1743
|
-
*/
|
|
1744
1326
|
offset: number;
|
|
1745
|
-
/**
|
|
1746
|
-
* Maximum number of items requested for this page.
|
|
1747
|
-
*/
|
|
1748
1327
|
top: number;
|
|
1749
1328
|
};
|
|
1750
|
-
/**
|
|
1751
|
-
* Public-shape DTO for a toolset (per-account-user, named scope bundling specific
|
|
1752
|
-
* connections + an allowed tool set). See toolsets-and-connections-spec.md.
|
|
1753
|
-
*/
|
|
1754
1329
|
type ToolsetDto = {
|
|
1755
|
-
/**
|
|
1756
|
-
* Unique identifier of the toolset (the MCPServer token GUID).
|
|
1757
|
-
*/
|
|
1758
1330
|
toolsetId: string;
|
|
1759
|
-
/**
|
|
1760
|
-
* Display name of the toolset.
|
|
1761
|
-
*/
|
|
1762
1331
|
name: string;
|
|
1763
|
-
/**
|
|
1764
|
-
* Connections included in this toolset and their permitted tools.
|
|
1765
|
-
*/
|
|
1766
1332
|
connections: Array<ToolsetConnectionDto>;
|
|
1767
|
-
/**
|
|
1768
|
-
* Workflow token GUIDs included in this toolset.
|
|
1769
|
-
*/
|
|
1770
1333
|
workflows: Array<string>;
|
|
1771
|
-
/**
|
|
1772
|
-
* When the toolset was created.
|
|
1773
|
-
*/
|
|
1774
1334
|
createdDate: string;
|
|
1775
|
-
/**
|
|
1776
|
-
* When the toolset was last updated; null if never updated.
|
|
1777
|
-
*/
|
|
1778
1335
|
updatedDate?: string | null;
|
|
1779
|
-
/**
|
|
1780
|
-
* Account-user ID that created the toolset.
|
|
1781
|
-
*/
|
|
1782
1336
|
createdByAccountUserId?: number | null;
|
|
1783
|
-
/**
|
|
1784
|
-
* Account-user ID that last updated the toolset; null/0 until first updated.
|
|
1785
|
-
*/
|
|
1786
1337
|
updatedByAccountUserId?: number | null;
|
|
1787
1338
|
};
|
|
1788
|
-
/**
|
|
1789
|
-
* A connection within a toolset, scoped to a set of permitted tools.
|
|
1790
|
-
*/
|
|
1791
1339
|
type ToolsetConnectionDto = {
|
|
1792
|
-
/**
|
|
1793
|
-
* Identifier of the connection (Connector ID).
|
|
1794
|
-
*/
|
|
1795
1340
|
connectionId: number;
|
|
1796
|
-
/**
|
|
1797
|
-
* Slug of the connection's application.
|
|
1798
|
-
*/
|
|
1799
1341
|
applicationSlug: string;
|
|
1800
|
-
/**
|
|
1801
|
-
* Display name of the connection's application.
|
|
1802
|
-
*/
|
|
1803
1342
|
applicationName?: string | null;
|
|
1804
|
-
/**
|
|
1805
|
-
* Tool slugs permitted for this connection; empty means all tools of the app are permitted.
|
|
1806
|
-
*/
|
|
1807
1343
|
toolSlugs: Array<string>;
|
|
1808
1344
|
};
|
|
1809
|
-
/**
|
|
1810
|
-
* Request body for creating a toolset.
|
|
1811
|
-
*/
|
|
1812
1345
|
type CreateToolsetRequest = {
|
|
1813
|
-
/**
|
|
1814
|
-
* Display name for the new toolset.
|
|
1815
|
-
*/
|
|
1816
1346
|
name: string;
|
|
1817
|
-
/**
|
|
1818
|
-
* Connections to include in the toolset and their permitted tools.
|
|
1819
|
-
*/
|
|
1820
1347
|
connections: Array<ToolsetConnectionRequest>;
|
|
1821
|
-
/**
|
|
1822
|
-
* Workflow token GUIDs to include in the toolset.
|
|
1823
|
-
*/
|
|
1824
1348
|
workflows?: Array<string> | null;
|
|
1825
1349
|
};
|
|
1826
|
-
/**
|
|
1827
|
-
* A connection entry in a create/update toolset request.
|
|
1828
|
-
*/
|
|
1829
1350
|
type ToolsetConnectionRequest = {
|
|
1830
|
-
/**
|
|
1831
|
-
* Optional connection identifier (Connector ID). Omit it to let the backend pick the
|
|
1832
|
-
* caller's default connection for the application of the listed tools (resolved and
|
|
1833
|
-
* stored as a concrete id at save time); when omitted, ToolSlugs must list
|
|
1834
|
-
* at least one tool so the application can be determined.
|
|
1835
|
-
*/
|
|
1836
1351
|
connectionId?: number | null;
|
|
1837
|
-
/**
|
|
1838
|
-
* Optional application slug. When ConnectionId is omitted, supply this to
|
|
1839
|
-
* scope the entry to a whole application (all its tools) using the caller's default
|
|
1840
|
-
* connection for that app — resolved and stored as a concrete connectionId at save time.
|
|
1841
|
-
* An alternative to listing tool slugs; if both are supplied, applicationSlug is
|
|
1842
|
-
* authoritative for the application.
|
|
1843
|
-
*/
|
|
1844
1352
|
applicationSlug?: string | null;
|
|
1845
|
-
/**
|
|
1846
|
-
* Tool slugs to permit for this connection; omit/empty to permit all tools of the app. When ConnectionId is omitted, supply either applicationSlug or at least one tool slug.
|
|
1847
|
-
*/
|
|
1848
1353
|
toolSlugs?: Array<string> | null;
|
|
1849
1354
|
};
|
|
1850
|
-
/**
|
|
1851
|
-
* Request body for updating a toolset; null members are left unchanged.
|
|
1852
|
-
*/
|
|
1853
1355
|
type UpdateToolsetRequest = {
|
|
1854
|
-
/**
|
|
1855
|
-
* New display name; null leaves it unchanged.
|
|
1856
|
-
*/
|
|
1857
1356
|
name?: string | null;
|
|
1858
|
-
/**
|
|
1859
|
-
* Replacement connection set; null leaves it unchanged.
|
|
1860
|
-
*/
|
|
1861
1357
|
connections?: Array<ToolsetConnectionRequest> | null;
|
|
1862
|
-
/**
|
|
1863
|
-
* Replacement workflow set; null leaves it unchanged.
|
|
1864
|
-
*/
|
|
1865
1358
|
workflows?: Array<string> | null;
|
|
1866
1359
|
};
|
|
1867
1360
|
type AuthWhoAmIData = {
|
|
@@ -1878,24 +1371,27 @@ type AuthWhoAmIData = {
|
|
|
1878
1371
|
};
|
|
1879
1372
|
type AuthWhoAmIErrors = {
|
|
1880
1373
|
/**
|
|
1881
|
-
* Bad request
|
|
1374
|
+
* Bad request - malformed body or invalid parameters.
|
|
1882
1375
|
*/
|
|
1883
1376
|
400: ErrorResponse;
|
|
1377
|
+
/**
|
|
1378
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1379
|
+
*/
|
|
1884
1380
|
401: ErrorResponse;
|
|
1885
1381
|
/**
|
|
1886
|
-
* Forbidden
|
|
1382
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1887
1383
|
*/
|
|
1888
1384
|
403: ErrorResponse;
|
|
1889
1385
|
/**
|
|
1890
|
-
* Not found
|
|
1386
|
+
* Not found - the resource does not exist.
|
|
1891
1387
|
*/
|
|
1892
1388
|
404: ErrorResponse;
|
|
1893
1389
|
/**
|
|
1894
|
-
* Too many requests
|
|
1390
|
+
* Too many requests - rate limit exceeded.
|
|
1895
1391
|
*/
|
|
1896
1392
|
429: ErrorResponse;
|
|
1897
1393
|
/**
|
|
1898
|
-
* Internal server error
|
|
1394
|
+
* Internal server error - an unexpected error occurred.
|
|
1899
1395
|
*/
|
|
1900
1396
|
500: ErrorResponse;
|
|
1901
1397
|
};
|
|
@@ -1914,7 +1410,7 @@ type SolutionsCreateSolutionData = {
|
|
|
1914
1410
|
body: CreateSolutionRequest;
|
|
1915
1411
|
headers?: {
|
|
1916
1412
|
/**
|
|
1917
|
-
*
|
|
1413
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
1918
1414
|
*/
|
|
1919
1415
|
companytoken?: string;
|
|
1920
1416
|
};
|
|
@@ -1923,22 +1419,28 @@ type SolutionsCreateSolutionData = {
|
|
|
1923
1419
|
url: '/v1/solutions/admin';
|
|
1924
1420
|
};
|
|
1925
1421
|
type SolutionsCreateSolutionErrors = {
|
|
1422
|
+
/**
|
|
1423
|
+
* Bad request - malformed body or invalid parameters.
|
|
1424
|
+
*/
|
|
1926
1425
|
400: ErrorResponse;
|
|
1927
1426
|
/**
|
|
1928
|
-
* Unauthorized
|
|
1427
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1929
1428
|
*/
|
|
1930
1429
|
401: ErrorResponse;
|
|
1430
|
+
/**
|
|
1431
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1432
|
+
*/
|
|
1931
1433
|
403: ErrorResponse;
|
|
1932
1434
|
/**
|
|
1933
|
-
* Not found
|
|
1435
|
+
* Not found - the resource does not exist.
|
|
1934
1436
|
*/
|
|
1935
1437
|
404: ErrorResponse;
|
|
1936
1438
|
/**
|
|
1937
|
-
* Too many requests
|
|
1439
|
+
* Too many requests - rate limit exceeded.
|
|
1938
1440
|
*/
|
|
1939
1441
|
429: ErrorResponse;
|
|
1940
1442
|
/**
|
|
1941
|
-
* Internal server error
|
|
1443
|
+
* Internal server error - an unexpected error occurred.
|
|
1942
1444
|
*/
|
|
1943
1445
|
500: ErrorResponse;
|
|
1944
1446
|
};
|
|
@@ -1969,21 +1471,27 @@ type SolutionsArchiveSolutionData = {
|
|
|
1969
1471
|
};
|
|
1970
1472
|
type SolutionsArchiveSolutionErrors = {
|
|
1971
1473
|
/**
|
|
1972
|
-
* Bad request
|
|
1474
|
+
* Bad request - malformed body or invalid parameters.
|
|
1973
1475
|
*/
|
|
1974
1476
|
400: ErrorResponse;
|
|
1975
1477
|
/**
|
|
1976
|
-
* Unauthorized
|
|
1478
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1977
1479
|
*/
|
|
1978
1480
|
401: ErrorResponse;
|
|
1481
|
+
/**
|
|
1482
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1483
|
+
*/
|
|
1979
1484
|
403: ErrorResponse;
|
|
1485
|
+
/**
|
|
1486
|
+
* Not found - the resource does not exist.
|
|
1487
|
+
*/
|
|
1980
1488
|
404: ErrorResponse;
|
|
1981
1489
|
/**
|
|
1982
|
-
* Too many requests
|
|
1490
|
+
* Too many requests - rate limit exceeded.
|
|
1983
1491
|
*/
|
|
1984
1492
|
429: ErrorResponse;
|
|
1985
1493
|
/**
|
|
1986
|
-
* Internal server error
|
|
1494
|
+
* Internal server error - an unexpected error occurred.
|
|
1987
1495
|
*/
|
|
1988
1496
|
500: ErrorResponse;
|
|
1989
1497
|
};
|
|
@@ -2002,7 +1510,7 @@ type SolutionsUpdateSolutionData = {
|
|
|
2002
1510
|
body: UpdateSolutionRequest;
|
|
2003
1511
|
headers?: {
|
|
2004
1512
|
/**
|
|
2005
|
-
*
|
|
1513
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
2006
1514
|
*/
|
|
2007
1515
|
companytoken?: string;
|
|
2008
1516
|
};
|
|
@@ -2016,19 +1524,28 @@ type SolutionsUpdateSolutionData = {
|
|
|
2016
1524
|
url: '/v1/solutions/admin/{slug}';
|
|
2017
1525
|
};
|
|
2018
1526
|
type SolutionsUpdateSolutionErrors = {
|
|
1527
|
+
/**
|
|
1528
|
+
* Bad request - malformed body or invalid parameters.
|
|
1529
|
+
*/
|
|
2019
1530
|
400: ErrorResponse;
|
|
2020
1531
|
/**
|
|
2021
|
-
* Unauthorized
|
|
1532
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2022
1533
|
*/
|
|
2023
1534
|
401: ErrorResponse;
|
|
1535
|
+
/**
|
|
1536
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1537
|
+
*/
|
|
2024
1538
|
403: ErrorResponse;
|
|
1539
|
+
/**
|
|
1540
|
+
* Not found - the resource does not exist.
|
|
1541
|
+
*/
|
|
2025
1542
|
404: ErrorResponse;
|
|
2026
1543
|
/**
|
|
2027
|
-
* Too many requests
|
|
1544
|
+
* Too many requests - rate limit exceeded.
|
|
2028
1545
|
*/
|
|
2029
1546
|
429: ErrorResponse;
|
|
2030
1547
|
/**
|
|
2031
|
-
* Internal server error
|
|
1548
|
+
* Internal server error - an unexpected error occurred.
|
|
2032
1549
|
*/
|
|
2033
1550
|
500: ErrorResponse;
|
|
2034
1551
|
};
|
|
@@ -2058,19 +1575,28 @@ type SolutionsPublishSolutionData = {
|
|
|
2058
1575
|
url: '/v1/solutions/admin/{slug}/publish';
|
|
2059
1576
|
};
|
|
2060
1577
|
type SolutionsPublishSolutionErrors = {
|
|
1578
|
+
/**
|
|
1579
|
+
* Bad request - malformed body or invalid parameters.
|
|
1580
|
+
*/
|
|
2061
1581
|
400: ErrorResponse;
|
|
2062
1582
|
/**
|
|
2063
|
-
* Unauthorized
|
|
1583
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2064
1584
|
*/
|
|
2065
1585
|
401: ErrorResponse;
|
|
1586
|
+
/**
|
|
1587
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1588
|
+
*/
|
|
2066
1589
|
403: ErrorResponse;
|
|
1590
|
+
/**
|
|
1591
|
+
* Not found - the resource does not exist.
|
|
1592
|
+
*/
|
|
2067
1593
|
404: ErrorResponse;
|
|
2068
1594
|
/**
|
|
2069
|
-
* Too many requests
|
|
1595
|
+
* Too many requests - rate limit exceeded.
|
|
2070
1596
|
*/
|
|
2071
1597
|
429: ErrorResponse;
|
|
2072
1598
|
/**
|
|
2073
|
-
* Internal server error
|
|
1599
|
+
* Internal server error - an unexpected error occurred.
|
|
2074
1600
|
*/
|
|
2075
1601
|
500: ErrorResponse;
|
|
2076
1602
|
};
|
|
@@ -2089,7 +1615,7 @@ type SolutionsBuildManifestData = {
|
|
|
2089
1615
|
body: BuildManifestRequest;
|
|
2090
1616
|
headers?: {
|
|
2091
1617
|
/**
|
|
2092
|
-
*
|
|
1618
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
2093
1619
|
*/
|
|
2094
1620
|
companytoken?: string;
|
|
2095
1621
|
};
|
|
@@ -2098,19 +1624,28 @@ type SolutionsBuildManifestData = {
|
|
|
2098
1624
|
url: '/v1/solutions/admin/build-manifest';
|
|
2099
1625
|
};
|
|
2100
1626
|
type SolutionsBuildManifestErrors = {
|
|
1627
|
+
/**
|
|
1628
|
+
* Bad request - malformed body or invalid parameters.
|
|
1629
|
+
*/
|
|
2101
1630
|
400: ErrorResponse;
|
|
2102
1631
|
/**
|
|
2103
|
-
* Unauthorized
|
|
1632
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2104
1633
|
*/
|
|
2105
1634
|
401: ErrorResponse;
|
|
1635
|
+
/**
|
|
1636
|
+
* Forbidden - the caller lacks access to the resource.
|
|
1637
|
+
*/
|
|
2106
1638
|
403: ErrorResponse;
|
|
1639
|
+
/**
|
|
1640
|
+
* Not found - the resource does not exist.
|
|
1641
|
+
*/
|
|
2107
1642
|
404: ErrorResponse;
|
|
2108
1643
|
/**
|
|
2109
|
-
* Too many requests
|
|
1644
|
+
* Too many requests - rate limit exceeded.
|
|
2110
1645
|
*/
|
|
2111
1646
|
429: ErrorResponse;
|
|
2112
1647
|
/**
|
|
2113
|
-
* Internal server error
|
|
1648
|
+
* Internal server error - an unexpected error occurred.
|
|
2114
1649
|
*/
|
|
2115
1650
|
500: ErrorResponse;
|
|
2116
1651
|
};
|
|
@@ -2149,27 +1684,27 @@ type SolutionsGetPublishedSolutionsData = {
|
|
|
2149
1684
|
};
|
|
2150
1685
|
type SolutionsGetPublishedSolutionsErrors = {
|
|
2151
1686
|
/**
|
|
2152
|
-
* Bad request
|
|
1687
|
+
* Bad request - malformed body or invalid parameters.
|
|
2153
1688
|
*/
|
|
2154
1689
|
400: ErrorResponse;
|
|
2155
1690
|
/**
|
|
2156
|
-
* Unauthorized
|
|
1691
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2157
1692
|
*/
|
|
2158
1693
|
401: ErrorResponse;
|
|
2159
1694
|
/**
|
|
2160
|
-
* Forbidden
|
|
1695
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2161
1696
|
*/
|
|
2162
1697
|
403: ErrorResponse;
|
|
2163
1698
|
/**
|
|
2164
|
-
* Not found
|
|
1699
|
+
* Not found - the resource does not exist.
|
|
2165
1700
|
*/
|
|
2166
1701
|
404: ErrorResponse;
|
|
2167
1702
|
/**
|
|
2168
|
-
* Too many requests
|
|
1703
|
+
* Too many requests - rate limit exceeded.
|
|
2169
1704
|
*/
|
|
2170
1705
|
429: ErrorResponse;
|
|
2171
1706
|
/**
|
|
2172
|
-
* Internal server error
|
|
1707
|
+
* Internal server error - an unexpected error occurred.
|
|
2173
1708
|
*/
|
|
2174
1709
|
500: ErrorResponse;
|
|
2175
1710
|
};
|
|
@@ -2200,24 +1735,27 @@ type SolutionsGetSolutionBySlugData = {
|
|
|
2200
1735
|
};
|
|
2201
1736
|
type SolutionsGetSolutionBySlugErrors = {
|
|
2202
1737
|
/**
|
|
2203
|
-
* Bad request
|
|
1738
|
+
* Bad request - malformed body or invalid parameters.
|
|
2204
1739
|
*/
|
|
2205
1740
|
400: ErrorResponse;
|
|
2206
1741
|
/**
|
|
2207
|
-
* Unauthorized
|
|
1742
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2208
1743
|
*/
|
|
2209
1744
|
401: ErrorResponse;
|
|
2210
1745
|
/**
|
|
2211
|
-
* Forbidden
|
|
1746
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2212
1747
|
*/
|
|
2213
1748
|
403: ErrorResponse;
|
|
1749
|
+
/**
|
|
1750
|
+
* Not found - the resource does not exist.
|
|
1751
|
+
*/
|
|
2214
1752
|
404: ErrorResponse;
|
|
2215
1753
|
/**
|
|
2216
|
-
* Too many requests
|
|
1754
|
+
* Too many requests - rate limit exceeded.
|
|
2217
1755
|
*/
|
|
2218
1756
|
429: ErrorResponse;
|
|
2219
1757
|
/**
|
|
2220
|
-
* Internal server error
|
|
1758
|
+
* Internal server error - an unexpected error occurred.
|
|
2221
1759
|
*/
|
|
2222
1760
|
500: ErrorResponse;
|
|
2223
1761
|
};
|
|
@@ -2233,7 +1771,7 @@ type SolutionsGetInstallationsData = {
|
|
|
2233
1771
|
body?: never;
|
|
2234
1772
|
headers?: {
|
|
2235
1773
|
/**
|
|
2236
|
-
*
|
|
1774
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
2237
1775
|
*/
|
|
2238
1776
|
companytoken?: string;
|
|
2239
1777
|
};
|
|
@@ -2251,25 +1789,28 @@ type SolutionsGetInstallationsData = {
|
|
|
2251
1789
|
url: '/v1/solutions/installations';
|
|
2252
1790
|
};
|
|
2253
1791
|
type SolutionsGetInstallationsErrors = {
|
|
1792
|
+
/**
|
|
1793
|
+
* Bad request - malformed body or invalid parameters.
|
|
1794
|
+
*/
|
|
2254
1795
|
400: ErrorResponse;
|
|
2255
1796
|
/**
|
|
2256
|
-
* Unauthorized
|
|
1797
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2257
1798
|
*/
|
|
2258
1799
|
401: ErrorResponse;
|
|
2259
1800
|
/**
|
|
2260
|
-
* Forbidden
|
|
1801
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2261
1802
|
*/
|
|
2262
1803
|
403: ErrorResponse;
|
|
2263
1804
|
/**
|
|
2264
|
-
* Not found
|
|
1805
|
+
* Not found - the resource does not exist.
|
|
2265
1806
|
*/
|
|
2266
1807
|
404: ErrorResponse;
|
|
2267
1808
|
/**
|
|
2268
|
-
* Too many requests
|
|
1809
|
+
* Too many requests - rate limit exceeded.
|
|
2269
1810
|
*/
|
|
2270
1811
|
429: ErrorResponse;
|
|
2271
1812
|
/**
|
|
2272
|
-
* Internal server error
|
|
1813
|
+
* Internal server error - an unexpected error occurred.
|
|
2273
1814
|
*/
|
|
2274
1815
|
500: ErrorResponse;
|
|
2275
1816
|
};
|
|
@@ -2285,7 +1826,7 @@ type SolutionsGetInstallationDetailData = {
|
|
|
2285
1826
|
body?: never;
|
|
2286
1827
|
headers?: {
|
|
2287
1828
|
/**
|
|
2288
|
-
*
|
|
1829
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
2289
1830
|
*/
|
|
2290
1831
|
companytoken?: string;
|
|
2291
1832
|
};
|
|
@@ -2299,22 +1840,28 @@ type SolutionsGetInstallationDetailData = {
|
|
|
2299
1840
|
url: '/v1/solutions/installations/{id}';
|
|
2300
1841
|
};
|
|
2301
1842
|
type SolutionsGetInstallationDetailErrors = {
|
|
1843
|
+
/**
|
|
1844
|
+
* Bad request - malformed body or invalid parameters.
|
|
1845
|
+
*/
|
|
2302
1846
|
400: ErrorResponse;
|
|
2303
1847
|
/**
|
|
2304
|
-
* Unauthorized
|
|
1848
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2305
1849
|
*/
|
|
2306
1850
|
401: ErrorResponse;
|
|
2307
1851
|
/**
|
|
2308
|
-
* Forbidden
|
|
1852
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2309
1853
|
*/
|
|
2310
1854
|
403: ErrorResponse;
|
|
1855
|
+
/**
|
|
1856
|
+
* Not found - the resource does not exist.
|
|
1857
|
+
*/
|
|
2311
1858
|
404: ErrorResponse;
|
|
2312
1859
|
/**
|
|
2313
|
-
* Too many requests
|
|
1860
|
+
* Too many requests - rate limit exceeded.
|
|
2314
1861
|
*/
|
|
2315
1862
|
429: ErrorResponse;
|
|
2316
1863
|
/**
|
|
2317
|
-
* Internal server error
|
|
1864
|
+
* Internal server error - an unexpected error occurred.
|
|
2318
1865
|
*/
|
|
2319
1866
|
500: ErrorResponse;
|
|
2320
1867
|
};
|
|
@@ -2330,7 +1877,7 @@ type SolutionsGetInstallationResourcesData = {
|
|
|
2330
1877
|
body?: never;
|
|
2331
1878
|
headers?: {
|
|
2332
1879
|
/**
|
|
2333
|
-
*
|
|
1880
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
2334
1881
|
*/
|
|
2335
1882
|
companytoken?: string;
|
|
2336
1883
|
};
|
|
@@ -2353,22 +1900,28 @@ type SolutionsGetInstallationResourcesData = {
|
|
|
2353
1900
|
url: '/v1/solutions/installations/{id}/resources';
|
|
2354
1901
|
};
|
|
2355
1902
|
type SolutionsGetInstallationResourcesErrors = {
|
|
1903
|
+
/**
|
|
1904
|
+
* Bad request - malformed body or invalid parameters.
|
|
1905
|
+
*/
|
|
2356
1906
|
400: ErrorResponse;
|
|
2357
1907
|
/**
|
|
2358
|
-
* Unauthorized
|
|
1908
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2359
1909
|
*/
|
|
2360
1910
|
401: ErrorResponse;
|
|
2361
1911
|
/**
|
|
2362
|
-
* Forbidden
|
|
1912
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2363
1913
|
*/
|
|
2364
1914
|
403: ErrorResponse;
|
|
1915
|
+
/**
|
|
1916
|
+
* Not found - the resource does not exist.
|
|
1917
|
+
*/
|
|
2365
1918
|
404: ErrorResponse;
|
|
2366
1919
|
/**
|
|
2367
|
-
* Too many requests
|
|
1920
|
+
* Too many requests - rate limit exceeded.
|
|
2368
1921
|
*/
|
|
2369
1922
|
429: ErrorResponse;
|
|
2370
1923
|
/**
|
|
2371
|
-
* Internal server error
|
|
1924
|
+
* Internal server error - an unexpected error occurred.
|
|
2372
1925
|
*/
|
|
2373
1926
|
500: ErrorResponse;
|
|
2374
1927
|
};
|
|
@@ -2387,7 +1940,7 @@ type SolutionsInstallSolutionData = {
|
|
|
2387
1940
|
body: InstallSolutionRequest;
|
|
2388
1941
|
headers?: {
|
|
2389
1942
|
/**
|
|
2390
|
-
*
|
|
1943
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
2391
1944
|
*/
|
|
2392
1945
|
companytoken?: string;
|
|
2393
1946
|
};
|
|
@@ -2401,20 +1954,32 @@ type SolutionsInstallSolutionData = {
|
|
|
2401
1954
|
url: '/v1/solutions/{slug}/install';
|
|
2402
1955
|
};
|
|
2403
1956
|
type SolutionsInstallSolutionErrors = {
|
|
1957
|
+
/**
|
|
1958
|
+
* Bad request - malformed body or invalid parameters.
|
|
1959
|
+
*/
|
|
2404
1960
|
400: ErrorResponse;
|
|
1961
|
+
/**
|
|
1962
|
+
* Unauthorized - missing or invalid bearer token.
|
|
1963
|
+
*/
|
|
2405
1964
|
401: ErrorResponse;
|
|
2406
1965
|
/**
|
|
2407
|
-
* Forbidden
|
|
1966
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2408
1967
|
*/
|
|
2409
1968
|
403: ErrorResponse;
|
|
1969
|
+
/**
|
|
1970
|
+
* Not found - the resource does not exist.
|
|
1971
|
+
*/
|
|
2410
1972
|
404: ErrorResponse;
|
|
1973
|
+
/**
|
|
1974
|
+
* Conflict - the solution is already installed in this workspace.
|
|
1975
|
+
*/
|
|
2411
1976
|
409: ErrorResponse;
|
|
2412
1977
|
/**
|
|
2413
|
-
* Too many requests
|
|
1978
|
+
* Too many requests - rate limit exceeded.
|
|
2414
1979
|
*/
|
|
2415
1980
|
429: ErrorResponse;
|
|
2416
1981
|
/**
|
|
2417
|
-
* Internal server error
|
|
1982
|
+
* Internal server error - an unexpected error occurred.
|
|
2418
1983
|
*/
|
|
2419
1984
|
500: ErrorResponse;
|
|
2420
1985
|
};
|
|
@@ -2433,7 +1998,7 @@ type SolutionsUpdateInstallationData = {
|
|
|
2433
1998
|
body?: UpdateInstallationRequest;
|
|
2434
1999
|
headers?: {
|
|
2435
2000
|
/**
|
|
2436
|
-
*
|
|
2001
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
2437
2002
|
*/
|
|
2438
2003
|
companytoken?: string;
|
|
2439
2004
|
};
|
|
@@ -2447,23 +2012,32 @@ type SolutionsUpdateInstallationData = {
|
|
|
2447
2012
|
url: '/v1/solutions/installations/{id}/update';
|
|
2448
2013
|
};
|
|
2449
2014
|
type SolutionsUpdateInstallationErrors = {
|
|
2015
|
+
/**
|
|
2016
|
+
* Bad request - malformed body or invalid parameters.
|
|
2017
|
+
*/
|
|
2450
2018
|
400: ErrorResponse;
|
|
2451
2019
|
/**
|
|
2452
|
-
* Unauthorized
|
|
2020
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2453
2021
|
*/
|
|
2454
2022
|
401: ErrorResponse;
|
|
2455
2023
|
/**
|
|
2456
|
-
* Forbidden
|
|
2024
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2457
2025
|
*/
|
|
2458
2026
|
403: ErrorResponse;
|
|
2027
|
+
/**
|
|
2028
|
+
* Not found - the resource does not exist.
|
|
2029
|
+
*/
|
|
2459
2030
|
404: ErrorResponse;
|
|
2031
|
+
/**
|
|
2032
|
+
* Conflict - the update is blocked by one or more conditions, returned in the response body; retry with forceModify=true to proceed anyway.
|
|
2033
|
+
*/
|
|
2460
2034
|
409: UpdateBlockedResponse;
|
|
2461
2035
|
/**
|
|
2462
|
-
* Too many requests
|
|
2036
|
+
* Too many requests - rate limit exceeded.
|
|
2463
2037
|
*/
|
|
2464
2038
|
429: ErrorResponse;
|
|
2465
2039
|
/**
|
|
2466
|
-
* Internal server error
|
|
2040
|
+
* Internal server error - an unexpected error occurred.
|
|
2467
2041
|
*/
|
|
2468
2042
|
500: ErrorResponse;
|
|
2469
2043
|
};
|
|
@@ -2482,7 +2056,7 @@ type SolutionsUninstallSolutionData = {
|
|
|
2482
2056
|
body: UninstallSolutionRequest;
|
|
2483
2057
|
headers?: {
|
|
2484
2058
|
/**
|
|
2485
|
-
*
|
|
2059
|
+
* Optional account-scoping header. Alternative to a claim carried on the Bearer JWT.
|
|
2486
2060
|
*/
|
|
2487
2061
|
companytoken?: string;
|
|
2488
2062
|
};
|
|
@@ -2496,22 +2070,28 @@ type SolutionsUninstallSolutionData = {
|
|
|
2496
2070
|
url: '/v1/solutions/{slug}/uninstall';
|
|
2497
2071
|
};
|
|
2498
2072
|
type SolutionsUninstallSolutionErrors = {
|
|
2073
|
+
/**
|
|
2074
|
+
* Bad request - malformed body or invalid parameters.
|
|
2075
|
+
*/
|
|
2499
2076
|
400: ErrorResponse;
|
|
2500
2077
|
/**
|
|
2501
|
-
* Unauthorized
|
|
2078
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2502
2079
|
*/
|
|
2503
2080
|
401: ErrorResponse;
|
|
2504
2081
|
/**
|
|
2505
|
-
* Forbidden
|
|
2082
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2506
2083
|
*/
|
|
2507
2084
|
403: ErrorResponse;
|
|
2085
|
+
/**
|
|
2086
|
+
* Not found - the resource does not exist.
|
|
2087
|
+
*/
|
|
2508
2088
|
404: ErrorResponse;
|
|
2509
2089
|
/**
|
|
2510
|
-
* Too many requests
|
|
2090
|
+
* Too many requests - rate limit exceeded.
|
|
2511
2091
|
*/
|
|
2512
2092
|
429: ErrorResponse;
|
|
2513
2093
|
/**
|
|
2514
|
-
* Internal server error
|
|
2094
|
+
* Internal server error - an unexpected error occurred.
|
|
2515
2095
|
*/
|
|
2516
2096
|
500: ErrorResponse;
|
|
2517
2097
|
};
|
|
@@ -2549,6 +2129,10 @@ type ApplicationsListApplicationsData = {
|
|
|
2549
2129
|
* Optional list of categories to filter by.
|
|
2550
2130
|
*/
|
|
2551
2131
|
category?: Array<string> | null;
|
|
2132
|
+
/**
|
|
2133
|
+
* Optional filter on the application's connection kind: Regular, Key, OPA or MCPClient. Case-insensitive. Use Key to find the applications an API key can be created against.
|
|
2134
|
+
*/
|
|
2135
|
+
kind?: string | null;
|
|
2552
2136
|
/**
|
|
2553
2137
|
* When true, returns only applications the caller can currently use. Defaults to false.
|
|
2554
2138
|
*/
|
|
@@ -2565,22 +2149,28 @@ type ApplicationsListApplicationsData = {
|
|
|
2565
2149
|
url: '/v1/applications';
|
|
2566
2150
|
};
|
|
2567
2151
|
type ApplicationsListApplicationsErrors = {
|
|
2152
|
+
/**
|
|
2153
|
+
* Bad request - malformed body or invalid parameters.
|
|
2154
|
+
*/
|
|
2568
2155
|
400: ErrorResponse;
|
|
2156
|
+
/**
|
|
2157
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2158
|
+
*/
|
|
2569
2159
|
401: ErrorResponse;
|
|
2570
2160
|
/**
|
|
2571
|
-
* Forbidden
|
|
2161
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2572
2162
|
*/
|
|
2573
2163
|
403: ErrorResponse;
|
|
2574
2164
|
/**
|
|
2575
|
-
* Not found
|
|
2165
|
+
* Not found - the resource does not exist.
|
|
2576
2166
|
*/
|
|
2577
2167
|
404: ErrorResponse;
|
|
2578
2168
|
/**
|
|
2579
|
-
* Too many requests
|
|
2169
|
+
* Too many requests - rate limit exceeded.
|
|
2580
2170
|
*/
|
|
2581
2171
|
429: ErrorResponse;
|
|
2582
2172
|
/**
|
|
2583
|
-
* Internal server error
|
|
2173
|
+
* Internal server error - an unexpected error occurred.
|
|
2584
2174
|
*/
|
|
2585
2175
|
500: ErrorResponse;
|
|
2586
2176
|
};
|
|
@@ -2611,21 +2201,27 @@ type ApplicationsGetApplicationData = {
|
|
|
2611
2201
|
};
|
|
2612
2202
|
type ApplicationsGetApplicationErrors = {
|
|
2613
2203
|
/**
|
|
2614
|
-
* Bad request
|
|
2204
|
+
* Bad request - malformed body or invalid parameters.
|
|
2615
2205
|
*/
|
|
2616
2206
|
400: ErrorResponse;
|
|
2207
|
+
/**
|
|
2208
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2209
|
+
*/
|
|
2617
2210
|
401: ErrorResponse;
|
|
2618
2211
|
/**
|
|
2619
|
-
* Forbidden
|
|
2212
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2620
2213
|
*/
|
|
2621
2214
|
403: ErrorResponse;
|
|
2215
|
+
/**
|
|
2216
|
+
* Not found - the resource does not exist.
|
|
2217
|
+
*/
|
|
2622
2218
|
404: ErrorResponse;
|
|
2623
2219
|
/**
|
|
2624
|
-
* Too many requests
|
|
2220
|
+
* Too many requests - rate limit exceeded.
|
|
2625
2221
|
*/
|
|
2626
2222
|
429: ErrorResponse;
|
|
2627
2223
|
/**
|
|
2628
|
-
* Internal server error
|
|
2224
|
+
* Internal server error - an unexpected error occurred.
|
|
2629
2225
|
*/
|
|
2630
2226
|
500: ErrorResponse;
|
|
2631
2227
|
};
|
|
@@ -2669,32 +2265,36 @@ type ConnectionsGetConnectionsData = {
|
|
|
2669
2265
|
metadata?: {
|
|
2670
2266
|
[key: string]: string;
|
|
2671
2267
|
} | null;
|
|
2268
|
+
/**
|
|
2269
|
+
* Optional filter on the connection's kind: Regular, Key, OPA or MCPClient. Case-insensitive. Key is the subset the engini.io Connections page shows under its "Keys" tab. Note that OPA and MCPClient connections are not served by this endpoint, so those values return an empty page.
|
|
2270
|
+
*/
|
|
2271
|
+
kind?: string | null;
|
|
2672
2272
|
};
|
|
2673
2273
|
url: '/v1/connections';
|
|
2674
2274
|
};
|
|
2675
2275
|
type ConnectionsGetConnectionsErrors = {
|
|
2676
2276
|
/**
|
|
2677
|
-
* Bad request
|
|
2277
|
+
* Bad request - malformed body or invalid parameters.
|
|
2678
2278
|
*/
|
|
2679
2279
|
400: ErrorResponse;
|
|
2680
2280
|
/**
|
|
2681
|
-
* Unauthorized
|
|
2281
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2682
2282
|
*/
|
|
2683
2283
|
401: ErrorResponse;
|
|
2684
2284
|
/**
|
|
2685
|
-
* Forbidden
|
|
2285
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2686
2286
|
*/
|
|
2687
2287
|
403: ErrorResponse;
|
|
2688
2288
|
/**
|
|
2689
|
-
* Not found
|
|
2289
|
+
* Not found - the resource does not exist.
|
|
2690
2290
|
*/
|
|
2691
2291
|
404: ErrorResponse;
|
|
2692
2292
|
/**
|
|
2693
|
-
* Too many requests
|
|
2293
|
+
* Too many requests - rate limit exceeded.
|
|
2694
2294
|
*/
|
|
2695
2295
|
429: ErrorResponse;
|
|
2696
2296
|
/**
|
|
2697
|
-
* Internal server error
|
|
2297
|
+
* Internal server error - an unexpected error occurred.
|
|
2698
2298
|
*/
|
|
2699
2299
|
500: ErrorResponse;
|
|
2700
2300
|
};
|
|
@@ -2723,27 +2323,27 @@ type ConnectionsCreateConnectionData = {
|
|
|
2723
2323
|
};
|
|
2724
2324
|
type ConnectionsCreateConnectionErrors = {
|
|
2725
2325
|
/**
|
|
2726
|
-
* Bad request
|
|
2326
|
+
* Bad request - malformed body or invalid parameters.
|
|
2727
2327
|
*/
|
|
2728
2328
|
400: ErrorResponse;
|
|
2729
2329
|
/**
|
|
2730
|
-
* Unauthorized
|
|
2330
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2731
2331
|
*/
|
|
2732
2332
|
401: ErrorResponse;
|
|
2733
2333
|
/**
|
|
2734
|
-
* Forbidden
|
|
2334
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2735
2335
|
*/
|
|
2736
2336
|
403: ErrorResponse;
|
|
2737
2337
|
/**
|
|
2738
|
-
* Not found
|
|
2338
|
+
* Not found - the resource does not exist.
|
|
2739
2339
|
*/
|
|
2740
2340
|
404: ErrorResponse;
|
|
2741
2341
|
/**
|
|
2742
|
-
* Too many requests
|
|
2342
|
+
* Too many requests - rate limit exceeded.
|
|
2743
2343
|
*/
|
|
2744
2344
|
429: ErrorResponse;
|
|
2745
2345
|
/**
|
|
2746
|
-
* Internal server error
|
|
2346
|
+
* Internal server error - an unexpected error occurred.
|
|
2747
2347
|
*/
|
|
2748
2348
|
500: ErrorResponse;
|
|
2749
2349
|
};
|
|
@@ -2774,27 +2374,27 @@ type ConnectionsDeleteConnectionData = {
|
|
|
2774
2374
|
};
|
|
2775
2375
|
type ConnectionsDeleteConnectionErrors = {
|
|
2776
2376
|
/**
|
|
2777
|
-
* Bad request
|
|
2377
|
+
* Bad request - malformed body or invalid parameters.
|
|
2778
2378
|
*/
|
|
2779
2379
|
400: ErrorResponse;
|
|
2780
2380
|
/**
|
|
2781
|
-
* Unauthorized
|
|
2381
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2782
2382
|
*/
|
|
2783
2383
|
401: ErrorResponse;
|
|
2784
2384
|
/**
|
|
2785
|
-
* Forbidden
|
|
2385
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2786
2386
|
*/
|
|
2787
2387
|
403: ErrorResponse;
|
|
2788
2388
|
/**
|
|
2789
|
-
* Not found
|
|
2389
|
+
* Not found - the resource does not exist.
|
|
2790
2390
|
*/
|
|
2791
2391
|
404: ErrorResponse;
|
|
2792
2392
|
/**
|
|
2793
|
-
* Too many requests
|
|
2393
|
+
* Too many requests - rate limit exceeded.
|
|
2794
2394
|
*/
|
|
2795
2395
|
429: ErrorResponse;
|
|
2796
2396
|
/**
|
|
2797
|
-
* Internal server error
|
|
2397
|
+
* Internal server error - an unexpected error occurred.
|
|
2798
2398
|
*/
|
|
2799
2399
|
500: ErrorResponse;
|
|
2800
2400
|
};
|
|
@@ -2825,27 +2425,27 @@ type ConnectionsGetConnectionData = {
|
|
|
2825
2425
|
};
|
|
2826
2426
|
type ConnectionsGetConnectionErrors = {
|
|
2827
2427
|
/**
|
|
2828
|
-
* Bad request
|
|
2428
|
+
* Bad request - malformed body or invalid parameters.
|
|
2829
2429
|
*/
|
|
2830
2430
|
400: ErrorResponse;
|
|
2831
2431
|
/**
|
|
2832
|
-
* Unauthorized
|
|
2432
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2833
2433
|
*/
|
|
2834
2434
|
401: ErrorResponse;
|
|
2835
2435
|
/**
|
|
2836
|
-
* Forbidden
|
|
2436
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2837
2437
|
*/
|
|
2838
2438
|
403: ErrorResponse;
|
|
2839
2439
|
/**
|
|
2840
|
-
* Not found
|
|
2440
|
+
* Not found - the resource does not exist.
|
|
2841
2441
|
*/
|
|
2842
2442
|
404: ErrorResponse;
|
|
2843
2443
|
/**
|
|
2844
|
-
* Too many requests
|
|
2444
|
+
* Too many requests - rate limit exceeded.
|
|
2845
2445
|
*/
|
|
2846
2446
|
429: ErrorResponse;
|
|
2847
2447
|
/**
|
|
2848
|
-
* Internal server error
|
|
2448
|
+
* Internal server error - an unexpected error occurred.
|
|
2849
2449
|
*/
|
|
2850
2450
|
500: ErrorResponse;
|
|
2851
2451
|
};
|
|
@@ -2879,27 +2479,27 @@ type ConnectionsUpdateConnectionData = {
|
|
|
2879
2479
|
};
|
|
2880
2480
|
type ConnectionsUpdateConnectionErrors = {
|
|
2881
2481
|
/**
|
|
2882
|
-
* Bad request
|
|
2482
|
+
* Bad request - malformed body or invalid parameters.
|
|
2883
2483
|
*/
|
|
2884
2484
|
400: ErrorResponse;
|
|
2885
2485
|
/**
|
|
2886
|
-
* Unauthorized
|
|
2486
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2887
2487
|
*/
|
|
2888
2488
|
401: ErrorResponse;
|
|
2889
2489
|
/**
|
|
2890
|
-
* Forbidden
|
|
2490
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2891
2491
|
*/
|
|
2892
2492
|
403: ErrorResponse;
|
|
2893
2493
|
/**
|
|
2894
|
-
* Not found
|
|
2494
|
+
* Not found - the resource does not exist.
|
|
2895
2495
|
*/
|
|
2896
2496
|
404: ErrorResponse;
|
|
2897
2497
|
/**
|
|
2898
|
-
* Too many requests
|
|
2498
|
+
* Too many requests - rate limit exceeded.
|
|
2899
2499
|
*/
|
|
2900
2500
|
429: ErrorResponse;
|
|
2901
2501
|
/**
|
|
2902
|
-
* Internal server error
|
|
2502
|
+
* Internal server error - an unexpected error occurred.
|
|
2903
2503
|
*/
|
|
2904
2504
|
500: ErrorResponse;
|
|
2905
2505
|
};
|
|
@@ -2921,31 +2521,31 @@ type ConnectionsGetDefaultConnectionsData = {
|
|
|
2921
2521
|
};
|
|
2922
2522
|
path?: never;
|
|
2923
2523
|
query?: never;
|
|
2924
|
-
url: '/v1/connections/
|
|
2524
|
+
url: '/v1/connections/defaults';
|
|
2925
2525
|
};
|
|
2926
2526
|
type ConnectionsGetDefaultConnectionsErrors = {
|
|
2927
2527
|
/**
|
|
2928
|
-
* Bad request
|
|
2528
|
+
* Bad request - malformed body or invalid parameters.
|
|
2929
2529
|
*/
|
|
2930
2530
|
400: ErrorResponse;
|
|
2931
2531
|
/**
|
|
2932
|
-
* Unauthorized
|
|
2532
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2933
2533
|
*/
|
|
2934
2534
|
401: ErrorResponse;
|
|
2935
2535
|
/**
|
|
2936
|
-
* Forbidden
|
|
2536
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2937
2537
|
*/
|
|
2938
2538
|
403: ErrorResponse;
|
|
2939
2539
|
/**
|
|
2940
|
-
* Not found
|
|
2540
|
+
* Not found - the resource does not exist.
|
|
2941
2541
|
*/
|
|
2942
2542
|
404: ErrorResponse;
|
|
2943
2543
|
/**
|
|
2944
|
-
* Too many requests
|
|
2544
|
+
* Too many requests - rate limit exceeded.
|
|
2945
2545
|
*/
|
|
2946
2546
|
429: ErrorResponse;
|
|
2947
2547
|
/**
|
|
2948
|
-
* Internal server error
|
|
2548
|
+
* Internal server error - an unexpected error occurred.
|
|
2949
2549
|
*/
|
|
2950
2550
|
500: ErrorResponse;
|
|
2951
2551
|
};
|
|
@@ -2972,31 +2572,31 @@ type ConnectionsClearDefaultConnectionData = {
|
|
|
2972
2572
|
connectionId: number;
|
|
2973
2573
|
};
|
|
2974
2574
|
query?: never;
|
|
2975
|
-
url: '/v1/connections/{connectionId}/
|
|
2575
|
+
url: '/v1/connections/{connectionId}/default';
|
|
2976
2576
|
};
|
|
2977
2577
|
type ConnectionsClearDefaultConnectionErrors = {
|
|
2978
2578
|
/**
|
|
2979
|
-
* Bad request
|
|
2579
|
+
* Bad request - malformed body or invalid parameters.
|
|
2980
2580
|
*/
|
|
2981
2581
|
400: ErrorResponse;
|
|
2982
2582
|
/**
|
|
2983
|
-
* Unauthorized
|
|
2583
|
+
* Unauthorized - missing or invalid bearer token.
|
|
2984
2584
|
*/
|
|
2985
2585
|
401: ErrorResponse;
|
|
2986
2586
|
/**
|
|
2987
|
-
* Forbidden
|
|
2587
|
+
* Forbidden - the caller lacks access to the resource.
|
|
2988
2588
|
*/
|
|
2989
2589
|
403: ErrorResponse;
|
|
2990
2590
|
/**
|
|
2991
|
-
* Not found
|
|
2591
|
+
* Not found - the resource does not exist.
|
|
2992
2592
|
*/
|
|
2993
2593
|
404: ErrorResponse;
|
|
2994
2594
|
/**
|
|
2995
|
-
* Too many requests
|
|
2595
|
+
* Too many requests - rate limit exceeded.
|
|
2996
2596
|
*/
|
|
2997
2597
|
429: ErrorResponse;
|
|
2998
2598
|
/**
|
|
2999
|
-
* Internal server error
|
|
2599
|
+
* Internal server error - an unexpected error occurred.
|
|
3000
2600
|
*/
|
|
3001
2601
|
500: ErrorResponse;
|
|
3002
2602
|
};
|
|
@@ -3023,31 +2623,31 @@ type ConnectionsSetDefaultConnectionData = {
|
|
|
3023
2623
|
connectionId: number;
|
|
3024
2624
|
};
|
|
3025
2625
|
query?: never;
|
|
3026
|
-
url: '/v1/connections/{connectionId}/
|
|
2626
|
+
url: '/v1/connections/{connectionId}/default';
|
|
3027
2627
|
};
|
|
3028
2628
|
type ConnectionsSetDefaultConnectionErrors = {
|
|
3029
2629
|
/**
|
|
3030
|
-
* Bad request
|
|
2630
|
+
* Bad request - malformed body or invalid parameters.
|
|
3031
2631
|
*/
|
|
3032
2632
|
400: ErrorResponse;
|
|
3033
2633
|
/**
|
|
3034
|
-
* Unauthorized
|
|
2634
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3035
2635
|
*/
|
|
3036
2636
|
401: ErrorResponse;
|
|
3037
2637
|
/**
|
|
3038
|
-
* Forbidden
|
|
2638
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3039
2639
|
*/
|
|
3040
2640
|
403: ErrorResponse;
|
|
3041
2641
|
/**
|
|
3042
|
-
* Not found
|
|
2642
|
+
* Not found - the resource does not exist.
|
|
3043
2643
|
*/
|
|
3044
2644
|
404: ErrorResponse;
|
|
3045
2645
|
/**
|
|
3046
|
-
* Too many requests
|
|
2646
|
+
* Too many requests - rate limit exceeded.
|
|
3047
2647
|
*/
|
|
3048
2648
|
429: ErrorResponse;
|
|
3049
2649
|
/**
|
|
3050
|
-
* Internal server error
|
|
2650
|
+
* Internal server error - an unexpected error occurred.
|
|
3051
2651
|
*/
|
|
3052
2652
|
500: ErrorResponse;
|
|
3053
2653
|
};
|
|
@@ -3072,40 +2672,42 @@ type ConnectionsReplaceConnectionData = {
|
|
|
3072
2672
|
};
|
|
3073
2673
|
path?: never;
|
|
3074
2674
|
query?: never;
|
|
3075
|
-
url: '/v1/connections/
|
|
2675
|
+
url: '/v1/connections/replace';
|
|
3076
2676
|
};
|
|
3077
2677
|
type ConnectionsReplaceConnectionErrors = {
|
|
3078
2678
|
/**
|
|
3079
|
-
* Bad request
|
|
2679
|
+
* Bad request - malformed body or invalid parameters.
|
|
3080
2680
|
*/
|
|
3081
2681
|
400: ErrorResponse;
|
|
3082
2682
|
/**
|
|
3083
|
-
* Unauthorized
|
|
2683
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3084
2684
|
*/
|
|
3085
2685
|
401: ErrorResponse;
|
|
3086
2686
|
/**
|
|
3087
|
-
* Forbidden
|
|
2687
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3088
2688
|
*/
|
|
3089
2689
|
403: ErrorResponse;
|
|
3090
2690
|
/**
|
|
3091
|
-
* Not found
|
|
2691
|
+
* Not found - the resource does not exist.
|
|
3092
2692
|
*/
|
|
3093
2693
|
404: ErrorResponse;
|
|
3094
2694
|
/**
|
|
3095
|
-
* Too many requests
|
|
2695
|
+
* Too many requests - rate limit exceeded.
|
|
3096
2696
|
*/
|
|
3097
2697
|
429: ErrorResponse;
|
|
3098
2698
|
/**
|
|
3099
|
-
* Internal server error
|
|
2699
|
+
* Internal server error - an unexpected error occurred.
|
|
3100
2700
|
*/
|
|
3101
2701
|
500: ErrorResponse;
|
|
3102
2702
|
};
|
|
3103
2703
|
type ConnectionsReplaceConnectionError = ConnectionsReplaceConnectionErrors[keyof ConnectionsReplaceConnectionErrors];
|
|
3104
2704
|
type ConnectionsReplaceConnectionResponses = {
|
|
3105
2705
|
/**
|
|
3106
|
-
*
|
|
2706
|
+
* The per-activity replacement result when every activity replaced cleanly. Any
|
|
2707
|
+
* activity that could not be replaced (activity/object unavailable on the target) surfaces
|
|
2708
|
+
* as a 400 ErrorResponse instead - see ConnectionApiService.ReplaceConnection.
|
|
3107
2709
|
*/
|
|
3108
|
-
200:
|
|
2710
|
+
200: ConnectionReplaceResult;
|
|
3109
2711
|
};
|
|
3110
2712
|
type ConnectionsReplaceConnectionResponse = ConnectionsReplaceConnectionResponses[keyof ConnectionsReplaceConnectionResponses];
|
|
3111
2713
|
type ConnectionsRefreshObjectsData = {
|
|
@@ -3123,31 +2725,31 @@ type ConnectionsRefreshObjectsData = {
|
|
|
3123
2725
|
connectionId: number;
|
|
3124
2726
|
};
|
|
3125
2727
|
query?: never;
|
|
3126
|
-
url: '/v1/connections/{connectionId}/
|
|
2728
|
+
url: '/v1/connections/{connectionId}/refresh-objects';
|
|
3127
2729
|
};
|
|
3128
2730
|
type ConnectionsRefreshObjectsErrors = {
|
|
3129
2731
|
/**
|
|
3130
|
-
* Bad request
|
|
2732
|
+
* Bad request - malformed body or invalid parameters.
|
|
3131
2733
|
*/
|
|
3132
2734
|
400: ErrorResponse;
|
|
3133
2735
|
/**
|
|
3134
|
-
* Unauthorized
|
|
2736
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3135
2737
|
*/
|
|
3136
2738
|
401: ErrorResponse;
|
|
3137
2739
|
/**
|
|
3138
|
-
* Forbidden
|
|
2740
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3139
2741
|
*/
|
|
3140
2742
|
403: ErrorResponse;
|
|
3141
2743
|
/**
|
|
3142
|
-
* Not found
|
|
2744
|
+
* Not found - the resource does not exist.
|
|
3143
2745
|
*/
|
|
3144
2746
|
404: ErrorResponse;
|
|
3145
2747
|
/**
|
|
3146
|
-
* Too many requests
|
|
2748
|
+
* Too many requests - rate limit exceeded.
|
|
3147
2749
|
*/
|
|
3148
2750
|
429: ErrorResponse;
|
|
3149
2751
|
/**
|
|
3150
|
-
* Internal server error
|
|
2752
|
+
* Internal server error - an unexpected error occurred.
|
|
3151
2753
|
*/
|
|
3152
2754
|
500: ErrorResponse;
|
|
3153
2755
|
};
|
|
@@ -3174,31 +2776,31 @@ type ConnectionsGetRefreshStatusData = {
|
|
|
3174
2776
|
connectionId: number;
|
|
3175
2777
|
};
|
|
3176
2778
|
query?: never;
|
|
3177
|
-
url: '/v1/connections/{connectionId}/
|
|
2779
|
+
url: '/v1/connections/{connectionId}/refresh-status';
|
|
3178
2780
|
};
|
|
3179
2781
|
type ConnectionsGetRefreshStatusErrors = {
|
|
3180
2782
|
/**
|
|
3181
|
-
* Bad request
|
|
2783
|
+
* Bad request - malformed body or invalid parameters.
|
|
3182
2784
|
*/
|
|
3183
2785
|
400: ErrorResponse;
|
|
3184
2786
|
/**
|
|
3185
|
-
* Unauthorized
|
|
2787
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3186
2788
|
*/
|
|
3187
2789
|
401: ErrorResponse;
|
|
3188
2790
|
/**
|
|
3189
|
-
* Forbidden
|
|
2791
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3190
2792
|
*/
|
|
3191
2793
|
403: ErrorResponse;
|
|
3192
2794
|
/**
|
|
3193
|
-
* Not found
|
|
2795
|
+
* Not found - the resource does not exist.
|
|
3194
2796
|
*/
|
|
3195
2797
|
404: ErrorResponse;
|
|
3196
2798
|
/**
|
|
3197
|
-
* Too many requests
|
|
2799
|
+
* Too many requests - rate limit exceeded.
|
|
3198
2800
|
*/
|
|
3199
2801
|
429: ErrorResponse;
|
|
3200
2802
|
/**
|
|
3201
|
-
* Internal server error
|
|
2803
|
+
* Internal server error - an unexpected error occurred.
|
|
3202
2804
|
*/
|
|
3203
2805
|
500: ErrorResponse;
|
|
3204
2806
|
};
|
|
@@ -3228,31 +2830,31 @@ type ConnectionsSelectObjectsData = {
|
|
|
3228
2830
|
connectionId: number;
|
|
3229
2831
|
};
|
|
3230
2832
|
query?: never;
|
|
3231
|
-
url: '/v1/connections/{connectionId}/
|
|
2833
|
+
url: '/v1/connections/{connectionId}/select-objects';
|
|
3232
2834
|
};
|
|
3233
2835
|
type ConnectionsSelectObjectsErrors = {
|
|
3234
2836
|
/**
|
|
3235
|
-
* Bad request
|
|
2837
|
+
* Bad request - malformed body or invalid parameters.
|
|
3236
2838
|
*/
|
|
3237
2839
|
400: ErrorResponse;
|
|
3238
2840
|
/**
|
|
3239
|
-
* Unauthorized
|
|
2841
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3240
2842
|
*/
|
|
3241
2843
|
401: ErrorResponse;
|
|
3242
2844
|
/**
|
|
3243
|
-
* Forbidden
|
|
2845
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3244
2846
|
*/
|
|
3245
2847
|
403: ErrorResponse;
|
|
3246
2848
|
/**
|
|
3247
|
-
* Not found
|
|
2849
|
+
* Not found - the resource does not exist.
|
|
3248
2850
|
*/
|
|
3249
2851
|
404: ErrorResponse;
|
|
3250
2852
|
/**
|
|
3251
|
-
* Too many requests
|
|
2853
|
+
* Too many requests - rate limit exceeded.
|
|
3252
2854
|
*/
|
|
3253
2855
|
429: ErrorResponse;
|
|
3254
2856
|
/**
|
|
3255
|
-
* Internal server error
|
|
2857
|
+
* Internal server error - an unexpected error occurred.
|
|
3256
2858
|
*/
|
|
3257
2859
|
500: ErrorResponse;
|
|
3258
2860
|
};
|
|
@@ -3296,31 +2898,31 @@ type ConnectionsGetConnectionObjectsData = {
|
|
|
3296
2898
|
*/
|
|
3297
2899
|
top?: number;
|
|
3298
2900
|
};
|
|
3299
|
-
url: '/v1/connections/{connectionId}/
|
|
2901
|
+
url: '/v1/connections/{connectionId}/objects';
|
|
3300
2902
|
};
|
|
3301
2903
|
type ConnectionsGetConnectionObjectsErrors = {
|
|
3302
2904
|
/**
|
|
3303
|
-
* Bad request
|
|
2905
|
+
* Bad request - malformed body or invalid parameters.
|
|
3304
2906
|
*/
|
|
3305
2907
|
400: ErrorResponse;
|
|
3306
2908
|
/**
|
|
3307
|
-
* Unauthorized
|
|
2909
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3308
2910
|
*/
|
|
3309
2911
|
401: ErrorResponse;
|
|
3310
2912
|
/**
|
|
3311
|
-
* Forbidden
|
|
2913
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3312
2914
|
*/
|
|
3313
2915
|
403: ErrorResponse;
|
|
3314
2916
|
/**
|
|
3315
|
-
* Not found
|
|
2917
|
+
* Not found - the resource does not exist.
|
|
3316
2918
|
*/
|
|
3317
2919
|
404: ErrorResponse;
|
|
3318
2920
|
/**
|
|
3319
|
-
* Too many requests
|
|
2921
|
+
* Too many requests - rate limit exceeded.
|
|
3320
2922
|
*/
|
|
3321
2923
|
429: ErrorResponse;
|
|
3322
2924
|
/**
|
|
3323
|
-
* Internal server error
|
|
2925
|
+
* Internal server error - an unexpected error occurred.
|
|
3324
2926
|
*/
|
|
3325
2927
|
500: ErrorResponse;
|
|
3326
2928
|
};
|
|
@@ -3347,31 +2949,31 @@ type ConnectionsCheckConnectionData = {
|
|
|
3347
2949
|
connectionId: number;
|
|
3348
2950
|
};
|
|
3349
2951
|
query?: never;
|
|
3350
|
-
url: '/v1/connections/{connectionId}/
|
|
2952
|
+
url: '/v1/connections/{connectionId}/check';
|
|
3351
2953
|
};
|
|
3352
2954
|
type ConnectionsCheckConnectionErrors = {
|
|
3353
2955
|
/**
|
|
3354
|
-
* Bad request
|
|
2956
|
+
* Bad request - malformed body or invalid parameters.
|
|
3355
2957
|
*/
|
|
3356
2958
|
400: ErrorResponse;
|
|
3357
2959
|
/**
|
|
3358
|
-
* Unauthorized
|
|
2960
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3359
2961
|
*/
|
|
3360
2962
|
401: ErrorResponse;
|
|
3361
2963
|
/**
|
|
3362
|
-
* Forbidden
|
|
2964
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3363
2965
|
*/
|
|
3364
2966
|
403: ErrorResponse;
|
|
3365
2967
|
/**
|
|
3366
|
-
* Not found
|
|
2968
|
+
* Not found - the resource does not exist.
|
|
3367
2969
|
*/
|
|
3368
2970
|
404: ErrorResponse;
|
|
3369
2971
|
/**
|
|
3370
|
-
* Too many requests
|
|
2972
|
+
* Too many requests - rate limit exceeded.
|
|
3371
2973
|
*/
|
|
3372
2974
|
429: ErrorResponse;
|
|
3373
2975
|
/**
|
|
3374
|
-
* Internal server error
|
|
2976
|
+
* Internal server error - an unexpected error occurred.
|
|
3375
2977
|
*/
|
|
3376
2978
|
500: ErrorResponse;
|
|
3377
2979
|
};
|
|
@@ -3396,31 +2998,31 @@ type ConnectionsGetSignInUrlData = {
|
|
|
3396
2998
|
};
|
|
3397
2999
|
path?: never;
|
|
3398
3000
|
query?: never;
|
|
3399
|
-
url: '/v1/connections/
|
|
3001
|
+
url: '/v1/connections/get-sign-in-url';
|
|
3400
3002
|
};
|
|
3401
3003
|
type ConnectionsGetSignInUrlErrors = {
|
|
3402
3004
|
/**
|
|
3403
|
-
* Bad request
|
|
3005
|
+
* Bad request - malformed body or invalid parameters.
|
|
3404
3006
|
*/
|
|
3405
3007
|
400: ErrorResponse;
|
|
3406
3008
|
/**
|
|
3407
|
-
* Unauthorized
|
|
3009
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3408
3010
|
*/
|
|
3409
3011
|
401: ErrorResponse;
|
|
3410
3012
|
/**
|
|
3411
|
-
* Forbidden
|
|
3013
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3412
3014
|
*/
|
|
3413
3015
|
403: ErrorResponse;
|
|
3414
3016
|
/**
|
|
3415
|
-
* Not found
|
|
3017
|
+
* Not found - the resource does not exist.
|
|
3416
3018
|
*/
|
|
3417
3019
|
404: ErrorResponse;
|
|
3418
3020
|
/**
|
|
3419
|
-
* Too many requests
|
|
3021
|
+
* Too many requests - rate limit exceeded.
|
|
3420
3022
|
*/
|
|
3421
3023
|
429: ErrorResponse;
|
|
3422
3024
|
/**
|
|
3423
|
-
* Internal server error
|
|
3025
|
+
* Internal server error - an unexpected error occurred.
|
|
3424
3026
|
*/
|
|
3425
3027
|
500: ErrorResponse;
|
|
3426
3028
|
};
|
|
@@ -3447,31 +3049,31 @@ type ConnectionsGetAccessTokenData = {
|
|
|
3447
3049
|
state: string;
|
|
3448
3050
|
};
|
|
3449
3051
|
query?: never;
|
|
3450
|
-
url: '/v1/connections/
|
|
3052
|
+
url: '/v1/connections/access-token/{state}';
|
|
3451
3053
|
};
|
|
3452
3054
|
type ConnectionsGetAccessTokenErrors = {
|
|
3453
3055
|
/**
|
|
3454
|
-
* Bad request
|
|
3056
|
+
* Bad request - malformed body or invalid parameters.
|
|
3455
3057
|
*/
|
|
3456
3058
|
400: ErrorResponse;
|
|
3457
3059
|
/**
|
|
3458
|
-
* Unauthorized
|
|
3060
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3459
3061
|
*/
|
|
3460
3062
|
401: ErrorResponse;
|
|
3461
3063
|
/**
|
|
3462
|
-
* Forbidden
|
|
3064
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3463
3065
|
*/
|
|
3464
3066
|
403: ErrorResponse;
|
|
3465
3067
|
/**
|
|
3466
|
-
* Not found
|
|
3068
|
+
* Not found - the resource does not exist.
|
|
3467
3069
|
*/
|
|
3468
3070
|
404: ErrorResponse;
|
|
3469
3071
|
/**
|
|
3470
|
-
* Too many requests
|
|
3072
|
+
* Too many requests - rate limit exceeded.
|
|
3471
3073
|
*/
|
|
3472
3074
|
429: ErrorResponse;
|
|
3473
3075
|
/**
|
|
3474
|
-
* Internal server error
|
|
3076
|
+
* Internal server error - an unexpected error occurred.
|
|
3475
3077
|
*/
|
|
3476
3078
|
500: ErrorResponse;
|
|
3477
3079
|
};
|
|
@@ -3533,22 +3135,28 @@ type ToolsListToolsData = {
|
|
|
3533
3135
|
url: '/v1/tools';
|
|
3534
3136
|
};
|
|
3535
3137
|
type ToolsListToolsErrors = {
|
|
3138
|
+
/**
|
|
3139
|
+
* Bad request - malformed body or invalid parameters.
|
|
3140
|
+
*/
|
|
3536
3141
|
400: ErrorResponse;
|
|
3142
|
+
/**
|
|
3143
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3144
|
+
*/
|
|
3537
3145
|
401: ErrorResponse;
|
|
3538
3146
|
/**
|
|
3539
|
-
* Forbidden
|
|
3147
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3540
3148
|
*/
|
|
3541
3149
|
403: ErrorResponse;
|
|
3542
3150
|
/**
|
|
3543
|
-
* Not found
|
|
3151
|
+
* Not found - the resource does not exist.
|
|
3544
3152
|
*/
|
|
3545
3153
|
404: ErrorResponse;
|
|
3546
3154
|
/**
|
|
3547
|
-
* Too many requests
|
|
3155
|
+
* Too many requests - rate limit exceeded.
|
|
3548
3156
|
*/
|
|
3549
3157
|
429: ErrorResponse;
|
|
3550
3158
|
/**
|
|
3551
|
-
* Internal server error
|
|
3159
|
+
* Internal server error - an unexpected error occurred.
|
|
3552
3160
|
*/
|
|
3553
3161
|
500: ErrorResponse;
|
|
3554
3162
|
};
|
|
@@ -3587,19 +3195,28 @@ type ToolsGetToolData = {
|
|
|
3587
3195
|
url: '/v1/tools/{toolSlug}';
|
|
3588
3196
|
};
|
|
3589
3197
|
type ToolsGetToolErrors = {
|
|
3198
|
+
/**
|
|
3199
|
+
* Bad request - malformed body or invalid parameters.
|
|
3200
|
+
*/
|
|
3590
3201
|
400: ErrorResponse;
|
|
3202
|
+
/**
|
|
3203
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3204
|
+
*/
|
|
3591
3205
|
401: ErrorResponse;
|
|
3592
3206
|
/**
|
|
3593
|
-
* Forbidden
|
|
3207
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3594
3208
|
*/
|
|
3595
3209
|
403: ErrorResponse;
|
|
3210
|
+
/**
|
|
3211
|
+
* Not found - the resource does not exist.
|
|
3212
|
+
*/
|
|
3596
3213
|
404: ErrorResponse;
|
|
3597
3214
|
/**
|
|
3598
|
-
* Too many requests
|
|
3215
|
+
* Too many requests - rate limit exceeded.
|
|
3599
3216
|
*/
|
|
3600
3217
|
429: ErrorResponse;
|
|
3601
3218
|
/**
|
|
3602
|
-
* Internal server error
|
|
3219
|
+
* Internal server error - an unexpected error occurred.
|
|
3603
3220
|
*/
|
|
3604
3221
|
500: ErrorResponse;
|
|
3605
3222
|
};
|
|
@@ -3641,17 +3258,32 @@ type ToolsExecuteToolData = {
|
|
|
3641
3258
|
url: '/v1/tools/{toolSlug}/execute';
|
|
3642
3259
|
};
|
|
3643
3260
|
type ToolsExecuteToolErrors = {
|
|
3261
|
+
/**
|
|
3262
|
+
* Bad request - malformed body or invalid parameters.
|
|
3263
|
+
*/
|
|
3644
3264
|
400: ErrorResponse;
|
|
3265
|
+
/**
|
|
3266
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3267
|
+
*/
|
|
3645
3268
|
401: ErrorResponse;
|
|
3269
|
+
/**
|
|
3270
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3271
|
+
*/
|
|
3646
3272
|
403: ErrorResponse;
|
|
3273
|
+
/**
|
|
3274
|
+
* Not found - the resource does not exist.
|
|
3275
|
+
*/
|
|
3647
3276
|
404: ErrorResponse;
|
|
3277
|
+
/**
|
|
3278
|
+
* Conflict - the tool has no resolvable connection: either the supplied toolset has no connection for the tool's application (NO_TOOLSET_CONNECTION), or the caller has no default connection configured and none can be resolved (NO_DEFAULT_CONNECTION).
|
|
3279
|
+
*/
|
|
3648
3280
|
409: ErrorResponse;
|
|
3649
3281
|
/**
|
|
3650
|
-
* Too many requests
|
|
3282
|
+
* Too many requests - rate limit exceeded.
|
|
3651
3283
|
*/
|
|
3652
3284
|
429: ErrorResponse;
|
|
3653
3285
|
/**
|
|
3654
|
-
* Internal server error
|
|
3286
|
+
* Internal server error - an unexpected error occurred.
|
|
3655
3287
|
*/
|
|
3656
3288
|
500: ErrorResponse;
|
|
3657
3289
|
};
|
|
@@ -3686,27 +3318,27 @@ type ToolsetsListToolsetsData = {
|
|
|
3686
3318
|
};
|
|
3687
3319
|
type ToolsetsListToolsetsErrors = {
|
|
3688
3320
|
/**
|
|
3689
|
-
* Bad request
|
|
3321
|
+
* Bad request - malformed body or invalid parameters.
|
|
3690
3322
|
*/
|
|
3691
3323
|
400: ErrorResponse;
|
|
3692
3324
|
/**
|
|
3693
|
-
* Unauthorized
|
|
3325
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3694
3326
|
*/
|
|
3695
3327
|
401: ErrorResponse;
|
|
3696
3328
|
/**
|
|
3697
|
-
* Forbidden
|
|
3329
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3698
3330
|
*/
|
|
3699
3331
|
403: ErrorResponse;
|
|
3700
3332
|
/**
|
|
3701
|
-
* Not found
|
|
3333
|
+
* Not found - the resource does not exist.
|
|
3702
3334
|
*/
|
|
3703
3335
|
404: ErrorResponse;
|
|
3704
3336
|
/**
|
|
3705
|
-
* Too many requests
|
|
3337
|
+
* Too many requests - rate limit exceeded.
|
|
3706
3338
|
*/
|
|
3707
3339
|
429: ErrorResponse;
|
|
3708
3340
|
/**
|
|
3709
|
-
* Internal server error
|
|
3341
|
+
* Internal server error - an unexpected error occurred.
|
|
3710
3342
|
*/
|
|
3711
3343
|
500: ErrorResponse;
|
|
3712
3344
|
};
|
|
@@ -3735,27 +3367,27 @@ type ToolsetsCreateToolsetData = {
|
|
|
3735
3367
|
};
|
|
3736
3368
|
type ToolsetsCreateToolsetErrors = {
|
|
3737
3369
|
/**
|
|
3738
|
-
* Bad request
|
|
3370
|
+
* Bad request - malformed body or invalid parameters.
|
|
3739
3371
|
*/
|
|
3740
3372
|
400: ErrorResponse;
|
|
3741
3373
|
/**
|
|
3742
|
-
* Unauthorized
|
|
3374
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3743
3375
|
*/
|
|
3744
3376
|
401: ErrorResponse;
|
|
3745
3377
|
/**
|
|
3746
|
-
* Forbidden
|
|
3378
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3747
3379
|
*/
|
|
3748
3380
|
403: ErrorResponse;
|
|
3749
3381
|
/**
|
|
3750
|
-
* Not found
|
|
3382
|
+
* Not found - the resource does not exist.
|
|
3751
3383
|
*/
|
|
3752
3384
|
404: ErrorResponse;
|
|
3753
3385
|
/**
|
|
3754
|
-
* Too many requests
|
|
3386
|
+
* Too many requests - rate limit exceeded.
|
|
3755
3387
|
*/
|
|
3756
3388
|
429: ErrorResponse;
|
|
3757
3389
|
/**
|
|
3758
|
-
* Internal server error
|
|
3390
|
+
* Internal server error - an unexpected error occurred.
|
|
3759
3391
|
*/
|
|
3760
3392
|
500: ErrorResponse;
|
|
3761
3393
|
};
|
|
@@ -3786,27 +3418,27 @@ type ToolsetsDeleteToolsetData = {
|
|
|
3786
3418
|
};
|
|
3787
3419
|
type ToolsetsDeleteToolsetErrors = {
|
|
3788
3420
|
/**
|
|
3789
|
-
* Bad request
|
|
3421
|
+
* Bad request - malformed body or invalid parameters.
|
|
3790
3422
|
*/
|
|
3791
3423
|
400: ErrorResponse;
|
|
3792
3424
|
/**
|
|
3793
|
-
* Unauthorized
|
|
3425
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3794
3426
|
*/
|
|
3795
3427
|
401: ErrorResponse;
|
|
3796
3428
|
/**
|
|
3797
|
-
* Forbidden
|
|
3429
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3798
3430
|
*/
|
|
3799
3431
|
403: ErrorResponse;
|
|
3800
3432
|
/**
|
|
3801
|
-
* Not found
|
|
3433
|
+
* Not found - the resource does not exist.
|
|
3802
3434
|
*/
|
|
3803
3435
|
404: ErrorResponse;
|
|
3804
3436
|
/**
|
|
3805
|
-
* Too many requests
|
|
3437
|
+
* Too many requests - rate limit exceeded.
|
|
3806
3438
|
*/
|
|
3807
3439
|
429: ErrorResponse;
|
|
3808
3440
|
/**
|
|
3809
|
-
* Internal server error
|
|
3441
|
+
* Internal server error - an unexpected error occurred.
|
|
3810
3442
|
*/
|
|
3811
3443
|
500: ErrorResponse;
|
|
3812
3444
|
};
|
|
@@ -3837,27 +3469,27 @@ type ToolsetsGetToolsetData = {
|
|
|
3837
3469
|
};
|
|
3838
3470
|
type ToolsetsGetToolsetErrors = {
|
|
3839
3471
|
/**
|
|
3840
|
-
* Bad request
|
|
3472
|
+
* Bad request - malformed body or invalid parameters.
|
|
3841
3473
|
*/
|
|
3842
3474
|
400: ErrorResponse;
|
|
3843
3475
|
/**
|
|
3844
|
-
* Unauthorized
|
|
3476
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3845
3477
|
*/
|
|
3846
3478
|
401: ErrorResponse;
|
|
3847
3479
|
/**
|
|
3848
|
-
* Forbidden
|
|
3480
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3849
3481
|
*/
|
|
3850
3482
|
403: ErrorResponse;
|
|
3851
3483
|
/**
|
|
3852
|
-
* Not found
|
|
3484
|
+
* Not found - the resource does not exist.
|
|
3853
3485
|
*/
|
|
3854
3486
|
404: ErrorResponse;
|
|
3855
3487
|
/**
|
|
3856
|
-
* Too many requests
|
|
3488
|
+
* Too many requests - rate limit exceeded.
|
|
3857
3489
|
*/
|
|
3858
3490
|
429: ErrorResponse;
|
|
3859
3491
|
/**
|
|
3860
|
-
* Internal server error
|
|
3492
|
+
* Internal server error - an unexpected error occurred.
|
|
3861
3493
|
*/
|
|
3862
3494
|
500: ErrorResponse;
|
|
3863
3495
|
};
|
|
@@ -3891,27 +3523,27 @@ type ToolsetsUpdateToolsetData = {
|
|
|
3891
3523
|
};
|
|
3892
3524
|
type ToolsetsUpdateToolsetErrors = {
|
|
3893
3525
|
/**
|
|
3894
|
-
* Bad request
|
|
3526
|
+
* Bad request - malformed body or invalid parameters.
|
|
3895
3527
|
*/
|
|
3896
3528
|
400: ErrorResponse;
|
|
3897
3529
|
/**
|
|
3898
|
-
* Unauthorized
|
|
3530
|
+
* Unauthorized - missing or invalid bearer token.
|
|
3899
3531
|
*/
|
|
3900
3532
|
401: ErrorResponse;
|
|
3901
3533
|
/**
|
|
3902
|
-
* Forbidden
|
|
3534
|
+
* Forbidden - the caller lacks access to the resource.
|
|
3903
3535
|
*/
|
|
3904
3536
|
403: ErrorResponse;
|
|
3905
3537
|
/**
|
|
3906
|
-
* Not found
|
|
3538
|
+
* Not found - the resource does not exist.
|
|
3907
3539
|
*/
|
|
3908
3540
|
404: ErrorResponse;
|
|
3909
3541
|
/**
|
|
3910
|
-
* Too many requests
|
|
3542
|
+
* Too many requests - rate limit exceeded.
|
|
3911
3543
|
*/
|
|
3912
3544
|
429: ErrorResponse;
|
|
3913
3545
|
/**
|
|
3914
|
-
* Internal server error
|
|
3546
|
+
* Internal server error - an unexpected error occurred.
|
|
3915
3547
|
*/
|
|
3916
3548
|
500: ErrorResponse;
|
|
3917
3549
|
};
|
|
@@ -3938,9 +3570,15 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
|
|
|
3938
3570
|
meta?: Record<string, unknown>;
|
|
3939
3571
|
};
|
|
3940
3572
|
/**
|
|
3573
|
+
* Get the caller's identity.
|
|
3574
|
+
*
|
|
3941
3575
|
* Returns the identity of the principal the request is authenticated as: full name, email,
|
|
3942
|
-
* current company, role, and caller type. For x-api-key
|
|
3943
|
-
*
|
|
3576
|
+
* current company, role, and caller type (userType). For an x-api-key request
|
|
3577
|
+
* the identity returned is the key's owner (the key acts as the owner) and userType is
|
|
3578
|
+
* reported as apiuser; a hard-deleted (anonymized) profile is reported as
|
|
3579
|
+
* anonymous; every other caller is user. Fields resolved from the current
|
|
3580
|
+
* company/role (currentCompany, role) are null when no company context could
|
|
3581
|
+
* be resolved for the caller.
|
|
3944
3582
|
*/
|
|
3945
3583
|
declare const authWhoAmI: <ThrowOnError extends boolean = false>(options?: Options<AuthWhoAmIData, ThrowOnError>) => RequestResult<AuthWhoAmIResponses, AuthWhoAmIErrors, ThrowOnError>;
|
|
3946
3584
|
/**
|
|
@@ -4006,110 +3644,238 @@ declare const solutionsUpdateInstallation: <ThrowOnError extends boolean = false
|
|
|
4006
3644
|
*/
|
|
4007
3645
|
declare const solutionsUninstallSolution: <ThrowOnError extends boolean = false>(options: Options<SolutionsUninstallSolutionData, ThrowOnError>) => RequestResult<SolutionsUninstallSolutionResponses, SolutionsUninstallSolutionErrors, ThrowOnError>;
|
|
4008
3646
|
/**
|
|
4009
|
-
* List
|
|
3647
|
+
* List applications.
|
|
3648
|
+
*
|
|
3649
|
+
* Returns the applications the caller's account can browse, honoring the optional filters
|
|
3650
|
+
* and pagination. Set available=true to restrict results to applications the caller
|
|
3651
|
+
* can currently use - i.e. their connection requirement is already satisfied - otherwise the
|
|
3652
|
+
* full catalog is returned regardless of connection state. Account context is resolved from
|
|
3653
|
+
* the caller's authenticated account / API key.
|
|
4010
3654
|
*/
|
|
4011
3655
|
declare const applicationsListApplications: <ThrowOnError extends boolean = false>(options?: Options<ApplicationsListApplicationsData, ThrowOnError>) => RequestResult<ApplicationsListApplicationsResponses, ApplicationsListApplicationsErrors, ThrowOnError>;
|
|
4012
3656
|
/**
|
|
4013
|
-
* Get
|
|
3657
|
+
* Get an application.
|
|
3658
|
+
*
|
|
3659
|
+
* Fetches the full detail record for a single application by slug, including its connection
|
|
3660
|
+
* requirement and the authentication methods it supports. Returns 404 if no application
|
|
3661
|
+
* exists with the given slug for the caller's account.
|
|
4014
3662
|
*/
|
|
4015
3663
|
declare const applicationsGetApplication: <ThrowOnError extends boolean = false>(options: Options<ApplicationsGetApplicationData, ThrowOnError>) => RequestResult<ApplicationsGetApplicationResponses, ApplicationsGetApplicationErrors, ThrowOnError>;
|
|
4016
3664
|
/**
|
|
4017
|
-
* List
|
|
3665
|
+
* List connections.
|
|
3666
|
+
*
|
|
3667
|
+
* Returns the connections owned by the caller's account, honoring the optional filters
|
|
3668
|
+
* and pagination. top is silently clamped to the range 1-100 (default 25) and a
|
|
3669
|
+
* negative offset is treated as 0. The optional metadata filter matches on
|
|
3670
|
+
* the connection's stored metadata key/value pairs.
|
|
4018
3671
|
*/
|
|
4019
3672
|
declare const connectionsGetConnections: <ThrowOnError extends boolean = false>(options?: Options<ConnectionsGetConnectionsData, ThrowOnError>) => RequestResult<ConnectionsGetConnectionsResponses, ConnectionsGetConnectionsErrors, ThrowOnError>;
|
|
4020
3673
|
/**
|
|
4021
|
-
* Create a
|
|
3674
|
+
* Create a connection.
|
|
3675
|
+
*
|
|
3676
|
+
* Creates a new connection for the caller's account using the given field values (e.g.
|
|
3677
|
+
* API key, credentials) for the target application. authenticationId selects which
|
|
3678
|
+
* of the application's authentication methods to use; omit it to use the application's
|
|
3679
|
+
* default. To connect via OAuth instead of directly supplying credentials, use
|
|
3680
|
+
* POST /connections/get-sign-in-url followed by
|
|
3681
|
+
* GET /connections/access-token/{state}.
|
|
4022
3682
|
*/
|
|
4023
3683
|
declare const connectionsCreateConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsCreateConnectionData, ThrowOnError>) => RequestResult<ConnectionsCreateConnectionResponses, ConnectionsCreateConnectionErrors, ThrowOnError>;
|
|
4024
3684
|
/**
|
|
4025
|
-
* Delete a connection
|
|
3685
|
+
* Delete a connection.
|
|
3686
|
+
*
|
|
3687
|
+
* Permanently deletes a connection owned by the caller's account. A public (shared)
|
|
3688
|
+
* connection cannot be deleted via this endpoint. Any toolsets referencing this
|
|
3689
|
+
* connection are updated as part of the deletion.
|
|
4026
3690
|
*/
|
|
4027
3691
|
declare const connectionsDeleteConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsDeleteConnectionData, ThrowOnError>) => RequestResult<ConnectionsDeleteConnectionResponses, ConnectionsDeleteConnectionErrors, ThrowOnError>;
|
|
4028
3692
|
/**
|
|
4029
|
-
* Get
|
|
3693
|
+
* Get a connection.
|
|
3694
|
+
*
|
|
3695
|
+
* Fetches the full detail record for a single connection owned by the caller's account,
|
|
3696
|
+
* including its field values and metadata.
|
|
4030
3697
|
*/
|
|
4031
3698
|
declare const connectionsGetConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetConnectionData, ThrowOnError>) => RequestResult<ConnectionsGetConnectionResponses, ConnectionsGetConnectionErrors, ThrowOnError>;
|
|
4032
3699
|
/**
|
|
4033
|
-
* Update
|
|
3700
|
+
* Update a connection.
|
|
3701
|
+
*
|
|
3702
|
+
* Updates a connection owned by the caller's account. Only the fields present in the
|
|
3703
|
+
* request body are changed; connectionName, description, fields, and
|
|
3704
|
+
* metadata are each left unchanged when omitted (null). Supplying fields or
|
|
3705
|
+
* metadata replaces the entire map, it does not merge with the existing one.
|
|
4034
3706
|
*/
|
|
4035
3707
|
declare const connectionsUpdateConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsUpdateConnectionData, ThrowOnError>) => RequestResult<ConnectionsUpdateConnectionResponses, ConnectionsUpdateConnectionErrors, ThrowOnError>;
|
|
4036
3708
|
/**
|
|
4037
|
-
* List
|
|
3709
|
+
* List default connections.
|
|
3710
|
+
*
|
|
3711
|
+
* Returns the caller's default connections, one per application where a default is set.
|
|
3712
|
+
* Defaults drive implicit connection resolution everywhere a connection isn't explicitly
|
|
3713
|
+
* specified - e.g. POST /tools/{toolSlug}/execute without a connectionId or
|
|
3714
|
+
* toolsetId.
|
|
4038
3715
|
*/
|
|
4039
3716
|
declare const connectionsGetDefaultConnections: <ThrowOnError extends boolean = false>(options?: Options<ConnectionsGetDefaultConnectionsData, ThrowOnError>) => RequestResult<ConnectionsGetDefaultConnectionsResponses, ConnectionsGetDefaultConnectionsErrors, ThrowOnError>;
|
|
4040
3717
|
/**
|
|
4041
|
-
* Clear
|
|
3718
|
+
* Clear a default connection.
|
|
3719
|
+
*
|
|
3720
|
+
* Clears the default designation for the given connection. After this, implicit
|
|
3721
|
+
* connection resolution for that application falls back to the single-connection rule
|
|
3722
|
+
* (used automatically when exactly one connection exists) or otherwise requires an
|
|
3723
|
+
* explicit connectionId/toolsetId.
|
|
4042
3724
|
*/
|
|
4043
3725
|
declare const connectionsClearDefaultConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsClearDefaultConnectionData, ThrowOnError>) => RequestResult<ConnectionsClearDefaultConnectionResponses, ConnectionsClearDefaultConnectionErrors, ThrowOnError>;
|
|
4044
3726
|
/**
|
|
4045
|
-
* Set
|
|
3727
|
+
* Set a default connection.
|
|
3728
|
+
*
|
|
3729
|
+
* Marks the given connection as the caller's default for its application, replacing any
|
|
3730
|
+
* previous default for that application. Subsequent calls that omit an explicit
|
|
3731
|
+
* connectionId/toolsetId resolve to this connection.
|
|
4046
3732
|
*/
|
|
4047
3733
|
declare const connectionsSetDefaultConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsSetDefaultConnectionData, ThrowOnError>) => RequestResult<ConnectionsSetDefaultConnectionResponses, ConnectionsSetDefaultConnectionErrors, ThrowOnError>;
|
|
4048
3734
|
/**
|
|
4049
|
-
* Replace
|
|
3735
|
+
* Replace a connection.
|
|
3736
|
+
*
|
|
3737
|
+
* Repoints a specific workflow's usage from originalConnectionId to
|
|
3738
|
+
* newConnectionId. Both connections must belong to the caller's account; the
|
|
3739
|
+
* original connection itself is left intact and is not deleted by this call.
|
|
4050
3740
|
*/
|
|
4051
3741
|
declare const connectionsReplaceConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsReplaceConnectionData, ThrowOnError>) => RequestResult<ConnectionsReplaceConnectionResponses, ConnectionsReplaceConnectionErrors, ThrowOnError>;
|
|
4052
3742
|
/**
|
|
4053
|
-
*
|
|
3743
|
+
* Refresh connection objects.
|
|
3744
|
+
*
|
|
3745
|
+
* Triggers an asynchronous refresh of the objects (e.g. tables, lists) the given
|
|
3746
|
+
* connection exposes. This returns immediately once the refresh is initiated; poll
|
|
3747
|
+
* GET /connections/{connectionId}/refresh-status to observe completion. A new
|
|
3748
|
+
* refresh cannot be started within 15 minutes of the previous one.
|
|
4054
3749
|
*/
|
|
4055
3750
|
declare const connectionsRefreshObjects: <ThrowOnError extends boolean = false>(options: Options<ConnectionsRefreshObjectsData, ThrowOnError>) => RequestResult<ConnectionsRefreshObjectsResponses, ConnectionsRefreshObjectsErrors, ThrowOnError>;
|
|
4056
3751
|
/**
|
|
4057
|
-
* Get the
|
|
3752
|
+
* Get the refresh status.
|
|
3753
|
+
*
|
|
3754
|
+
* Returns the status of the most recent object refresh triggered by
|
|
3755
|
+
* POST /connections/{connectionId}/refresh-objects for the given connection,
|
|
3756
|
+
* including whether it is still running, when it last completed, and any error.
|
|
4058
3757
|
*/
|
|
4059
3758
|
declare const connectionsGetRefreshStatus: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetRefreshStatusData, ThrowOnError>) => RequestResult<ConnectionsGetRefreshStatusResponses, ConnectionsGetRefreshStatusErrors, ThrowOnError>;
|
|
4060
3759
|
/**
|
|
4061
|
-
* Select
|
|
3760
|
+
* Select connection objects.
|
|
3761
|
+
*
|
|
3762
|
+
* Saves which objects (e.g. tables, lists) discovered on the given connection are active
|
|
3763
|
+
* - used where an application exposes more objects than are relevant, so the caller can
|
|
3764
|
+
* scope the connection down to the ones it needs. Replaces the entire selection; it does
|
|
3765
|
+
* not merge with the previous one.
|
|
4062
3766
|
*/
|
|
4063
3767
|
declare const connectionsSelectObjects: <ThrowOnError extends boolean = false>(options: Options<ConnectionsSelectObjectsData, ThrowOnError>) => RequestResult<ConnectionsSelectObjectsResponses, ConnectionsSelectObjectsErrors, ThrowOnError>;
|
|
4064
3768
|
/**
|
|
4065
|
-
* List
|
|
3769
|
+
* List connection objects.
|
|
3770
|
+
*
|
|
3771
|
+
* Returns the objects (e.g. tables, lists) discovered on the given connection, honoring
|
|
3772
|
+
* the optional name filter, sort expression, and pagination. top is silently
|
|
3773
|
+
* clamped to the range 1-1000 (default 100) and a negative offset is treated as 0.
|
|
3774
|
+
* Run POST /connections/{connectionId}/refresh-objects first if the connection's
|
|
3775
|
+
* objects have changed upstream.
|
|
4066
3776
|
*/
|
|
4067
3777
|
declare const connectionsGetConnectionObjects: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetConnectionObjectsData, ThrowOnError>) => RequestResult<ConnectionsGetConnectionObjectsResponses, ConnectionsGetConnectionObjectsErrors, ThrowOnError>;
|
|
4068
3778
|
/**
|
|
4069
|
-
*
|
|
3779
|
+
* Check a connection.
|
|
3780
|
+
*
|
|
3781
|
+
* Verifies that the given connection is valid and currently usable - e.g. its stored
|
|
3782
|
+
* credentials still authenticate against the target application. Returns a non-2xx error
|
|
3783
|
+
* if the connection is no longer healthy.
|
|
4070
3784
|
*/
|
|
4071
3785
|
declare const connectionsCheckConnection: <ThrowOnError extends boolean = false>(options: Options<ConnectionsCheckConnectionData, ThrowOnError>) => RequestResult<ConnectionsCheckConnectionResponses, ConnectionsCheckConnectionErrors, ThrowOnError>;
|
|
4072
3786
|
/**
|
|
4073
|
-
*
|
|
3787
|
+
* Get an OAuth sign-in URL.
|
|
3788
|
+
*
|
|
3789
|
+
* First half of the OAuth pairing with GET /connections/access-token/{state}.
|
|
3790
|
+
* Builds a sign-in URL for the given application and authentication method, along with a
|
|
3791
|
+
* freshly generated opaque state value. Redirect the end user to signInUrl to
|
|
3792
|
+
* authorize; once they complete the provider's consent screen, poll the access-token
|
|
3793
|
+
* endpoint with the same state to retrieve the resulting token data.
|
|
4074
3794
|
*/
|
|
4075
3795
|
declare const connectionsGetSignInUrl: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetSignInUrlData, ThrowOnError>) => RequestResult<ConnectionsGetSignInUrlResponses, ConnectionsGetSignInUrlErrors, ThrowOnError>;
|
|
4076
3796
|
/**
|
|
4077
|
-
*
|
|
3797
|
+
* Get the access token for a sign-in.
|
|
3798
|
+
*
|
|
3799
|
+
* Second half of the OAuth pairing with POST /connections/get-sign-in-url. Retrieves
|
|
3800
|
+
* the token data captured once the end user completes the sign-in flow for the given
|
|
3801
|
+
* state. Returns a null body if the flow hasn't completed yet - poll until a
|
|
3802
|
+
* non-null response is returned, then use tokenData/connectionData to
|
|
3803
|
+
* complete the connection.
|
|
4078
3804
|
*/
|
|
4079
3805
|
declare const connectionsGetAccessToken: <ThrowOnError extends boolean = false>(options: Options<ConnectionsGetAccessTokenData, ThrowOnError>) => RequestResult<ConnectionsGetAccessTokenResponses, ConnectionsGetAccessTokenErrors, ThrowOnError>;
|
|
4080
3806
|
/**
|
|
4081
|
-
* List
|
|
3807
|
+
* List tools.
|
|
3808
|
+
*
|
|
3809
|
+
* Returns the tools available to the caller across all applications, honoring the optional
|
|
3810
|
+
* filters and pagination. Set available=true to restrict results to tools the caller
|
|
3811
|
+
* can currently execute. Supplying toolsetId additionally includes the caller's
|
|
3812
|
+
* workflow-backed tools scoped to that toolset, alongside the standard activity tools.
|
|
3813
|
+
* Deprecated tools are excluded unless includeDeprecated=true.
|
|
4082
3814
|
*/
|
|
4083
3815
|
declare const toolsListTools: <ThrowOnError extends boolean = false>(options?: Options<ToolsListToolsData, ThrowOnError>) => RequestResult<ToolsListToolsResponses, ToolsListToolsErrors, ThrowOnError>;
|
|
4084
3816
|
/**
|
|
4085
|
-
* Get
|
|
3817
|
+
* Get a tool.
|
|
3818
|
+
*
|
|
3819
|
+
* Fetches the full detail for a single tool, identified by its slug, including its
|
|
3820
|
+
* input/output JSON schemas and execution capability flags (filters, sort, pagination).
|
|
3821
|
+
* Supply applicationSlug to disambiguate when the same tool slug exists under more
|
|
3822
|
+
* than one application. Supplying toolsetId additionally allows a workflow-backed tool
|
|
3823
|
+
* within that toolset to resolve by slug.
|
|
4086
3824
|
*/
|
|
4087
3825
|
declare const toolsGetTool: <ThrowOnError extends boolean = false>(options: Options<ToolsGetToolData, ThrowOnError>) => RequestResult<ToolsGetToolResponses, ToolsGetToolErrors, ThrowOnError>;
|
|
4088
3826
|
/**
|
|
4089
|
-
* Execute a tool.
|
|
4090
|
-
*
|
|
4091
|
-
*
|
|
4092
|
-
*
|
|
3827
|
+
* Execute a tool.
|
|
3828
|
+
*
|
|
3829
|
+
* Executes the named tool with the given input fields. The connection to use is resolved
|
|
3830
|
+
* implicitly: an explicit connectionId takes precedence, then toolsetId scopes
|
|
3831
|
+
* resolution to that toolset's connection for the tool's application, and otherwise the
|
|
3832
|
+
* caller's default connection for the application is used. Tool-runtime failures - the
|
|
3833
|
+
* downstream call itself failing - are reported as a 200 response with
|
|
3834
|
+
* isSuccess=false and an errorMessage, not as a 4xx/5xx, so callers must check
|
|
3835
|
+
* isSuccess even on a successful HTTP response. A 409 is returned only when no
|
|
3836
|
+
* connection can be resolved at all (no toolset connection for the app, or no default
|
|
3837
|
+
* connection configured); every other failure uses the standard error envelope.
|
|
4093
3838
|
*/
|
|
4094
3839
|
declare const toolsExecuteTool: <ThrowOnError extends boolean = false>(options: Options<ToolsExecuteToolData, ThrowOnError>) => RequestResult<ToolsExecuteToolResponses, ToolsExecuteToolErrors, ThrowOnError>;
|
|
4095
3840
|
/**
|
|
4096
|
-
* List
|
|
3841
|
+
* List toolsets.
|
|
3842
|
+
*
|
|
3843
|
+
* Returns the toolsets owned by the caller, paginated. top is silently clamped to
|
|
3844
|
+
* the range 1-100 and a negative offset is treated as 0.
|
|
4097
3845
|
*/
|
|
4098
3846
|
declare const toolsetsListToolsets: <ThrowOnError extends boolean = false>(options?: Options<ToolsetsListToolsetsData, ThrowOnError>) => RequestResult<ToolsetsListToolsetsResponses, ToolsetsListToolsetsErrors, ThrowOnError>;
|
|
4099
3847
|
/**
|
|
4100
|
-
* Create a
|
|
3848
|
+
* Create a toolset.
|
|
3849
|
+
*
|
|
3850
|
+
* Creates a new toolset owned by the caller, with the given connections (and their
|
|
3851
|
+
* permitted tool slugs) and workflows. A connection entry may omit connectionId and
|
|
3852
|
+
* instead supply applicationSlug or at least one tool slug, letting the caller's
|
|
3853
|
+
* default connection for that application be resolved and stored at save time.
|
|
4101
3854
|
*/
|
|
4102
3855
|
declare const toolsetsCreateToolset: <ThrowOnError extends boolean = false>(options: Options<ToolsetsCreateToolsetData, ThrowOnError>) => RequestResult<ToolsetsCreateToolsetResponses, ToolsetsCreateToolsetErrors, ThrowOnError>;
|
|
4103
3856
|
/**
|
|
4104
|
-
* Delete a toolset
|
|
3857
|
+
* Delete a toolset.
|
|
3858
|
+
*
|
|
3859
|
+
* Permanently deletes a toolset owned by the caller, including its connection and
|
|
3860
|
+
* workflow associations. This does not delete the underlying connections or workflows
|
|
3861
|
+
* themselves. Returns an error if the toolset does not exist.
|
|
4105
3862
|
*/
|
|
4106
3863
|
declare const toolsetsDeleteToolset: <ThrowOnError extends boolean = false>(options: Options<ToolsetsDeleteToolsetData, ThrowOnError>) => RequestResult<ToolsetsDeleteToolsetResponses, ToolsetsDeleteToolsetErrors, ThrowOnError>;
|
|
4107
3864
|
/**
|
|
4108
|
-
* Get a
|
|
3865
|
+
* Get a toolset.
|
|
3866
|
+
*
|
|
3867
|
+
* Fetches a single toolset by id, including its member connections (with their permitted
|
|
3868
|
+
* tools) and any included workflows. Returns an error if the toolset does not exist or is
|
|
3869
|
+
* not owned by the caller.
|
|
4109
3870
|
*/
|
|
4110
3871
|
declare const toolsetsGetToolset: <ThrowOnError extends boolean = false>(options: Options<ToolsetsGetToolsetData, ThrowOnError>) => RequestResult<ToolsetsGetToolsetResponses, ToolsetsGetToolsetErrors, ThrowOnError>;
|
|
4111
3872
|
/**
|
|
4112
|
-
* Update
|
|
3873
|
+
* Update a toolset.
|
|
3874
|
+
*
|
|
3875
|
+
* Updates a toolset owned by the caller. Only the fields present in the request body are
|
|
3876
|
+
* changed - name, connections, and workflows are each left unchanged
|
|
3877
|
+
* when omitted (null); supplying connections or workflows replaces the
|
|
3878
|
+
* entire set, it does not merge with the existing one.
|
|
4113
3879
|
*/
|
|
4114
3880
|
declare const toolsetsUpdateToolset: <ThrowOnError extends boolean = false>(options: Options<ToolsetsUpdateToolsetData, ThrowOnError>) => RequestResult<ToolsetsUpdateToolsetResponses, ToolsetsUpdateToolsetErrors, ThrowOnError>;
|
|
4115
3881
|
|
|
@@ -4134,4 +3900,4 @@ interface EnginiClientOptions {
|
|
|
4134
3900
|
*/
|
|
4135
3901
|
declare function createEnginiClient(options: EnginiClientOptions): Client;
|
|
4136
3902
|
|
|
4137
|
-
export { type AccessTokenResponse, type ActivityCondition, type ActivitySort, type AppConnectionFieldInputType, type ApplicationAuthMethod, type ApplicationConnectionField, type ApplicationDetailDto, type ApplicationDto, type ApplicationsGetApplicationData, type ApplicationsGetApplicationError, type ApplicationsGetApplicationErrors, type ApplicationsGetApplicationResponse, type ApplicationsGetApplicationResponses, type ApplicationsListApplicationsData, type ApplicationsListApplicationsError, type ApplicationsListApplicationsErrors, type ApplicationsListApplicationsResponse, type ApplicationsListApplicationsResponses, type AuthWhoAmIData, type AuthWhoAmIError, type AuthWhoAmIErrors, type AuthWhoAmIResponse, type AuthWhoAmIResponses, type BuildManifestRequest, type BuildManifestResponse, type BuildManifestTable, type BuildManifestWorkflow, type ClientOptions, type ConnectionInput, type ConnectionObject, type ConnectionPublicDetail, type ConnectionPublicListItem, type ConnectionsCheckConnectionData, type ConnectionsCheckConnectionError, type ConnectionsCheckConnectionErrors, type ConnectionsCheckConnectionResponse, type ConnectionsCheckConnectionResponses, type ConnectionsClearDefaultConnectionData, type ConnectionsClearDefaultConnectionError, type ConnectionsClearDefaultConnectionErrors, type ConnectionsClearDefaultConnectionResponse, type ConnectionsClearDefaultConnectionResponses, type ConnectionsCreateConnectionData, type ConnectionsCreateConnectionError, type ConnectionsCreateConnectionErrors, type ConnectionsCreateConnectionResponse, type ConnectionsCreateConnectionResponses, type ConnectionsDeleteConnectionData, type ConnectionsDeleteConnectionError, type ConnectionsDeleteConnectionErrors, type ConnectionsDeleteConnectionResponse, type ConnectionsDeleteConnectionResponses, type ConnectionsGetAccessTokenData, type ConnectionsGetAccessTokenError, type ConnectionsGetAccessTokenErrors, type ConnectionsGetAccessTokenResponse, type ConnectionsGetAccessTokenResponses, type ConnectionsGetConnectionData, type ConnectionsGetConnectionError, type ConnectionsGetConnectionErrors, type ConnectionsGetConnectionObjectsData, type ConnectionsGetConnectionObjectsError, type ConnectionsGetConnectionObjectsErrors, type ConnectionsGetConnectionObjectsResponse, type ConnectionsGetConnectionObjectsResponses, type ConnectionsGetConnectionResponse, type ConnectionsGetConnectionResponses, type ConnectionsGetConnectionsData, type ConnectionsGetConnectionsError, type ConnectionsGetConnectionsErrors, type ConnectionsGetConnectionsResponse, type ConnectionsGetConnectionsResponses, type ConnectionsGetDefaultConnectionsData, type ConnectionsGetDefaultConnectionsError, type ConnectionsGetDefaultConnectionsErrors, type ConnectionsGetDefaultConnectionsResponse, type ConnectionsGetDefaultConnectionsResponses, type ConnectionsGetRefreshStatusData, type ConnectionsGetRefreshStatusError, type ConnectionsGetRefreshStatusErrors, type ConnectionsGetRefreshStatusResponse, type ConnectionsGetRefreshStatusResponses, type ConnectionsGetSignInUrlData, type ConnectionsGetSignInUrlError, type ConnectionsGetSignInUrlErrors, type ConnectionsGetSignInUrlResponse, type ConnectionsGetSignInUrlResponses, type ConnectionsRefreshObjectsData, type ConnectionsRefreshObjectsError, type ConnectionsRefreshObjectsErrors, type ConnectionsRefreshObjectsResponse, type ConnectionsRefreshObjectsResponses, type ConnectionsReplaceConnectionData, type ConnectionsReplaceConnectionError, type ConnectionsReplaceConnectionErrors, type ConnectionsReplaceConnectionResponse, type ConnectionsReplaceConnectionResponses, type ConnectionsSelectObjectsData, type ConnectionsSelectObjectsError, type ConnectionsSelectObjectsErrors, type ConnectionsSelectObjectsResponse, type ConnectionsSelectObjectsResponses, type ConnectionsSetDefaultConnectionData, type ConnectionsSetDefaultConnectionError, type ConnectionsSetDefaultConnectionErrors, type ConnectionsSetDefaultConnectionResponse, type ConnectionsSetDefaultConnectionResponses, type ConnectionsUpdateConnectionData, type ConnectionsUpdateConnectionError, type ConnectionsUpdateConnectionErrors, type ConnectionsUpdateConnectionResponse, type ConnectionsUpdateConnectionResponses, type CreateConnectionRequest, type CreateSolutionRequest, type CreateToolsetRequest, type CustomConnectionDataItem, type DefaultConnectionDto, type DefaultConnectionsResponse, type EnginiClientOptions, type ErrorDetail, type ErrorResponse, type ExecutionInfo, type InstallSolutionRequest, type InstallSolutionResponse, type InstallationDetailResponse, type InstalledResourceResponse, type ManifestConnection, type ManifestConnectionDefaults, type ManifestTable, type ManifestWorkflow, type Options, type OrderDirection, type PaginatedResponseOfApplicationDto, type PaginatedResponseOfConnectionObject, type PaginatedResponseOfConnectionPublicListItem, type PaginatedResponseOfSolutionResponse, type PaginatedResponseOfToolDto, type PaginatedResponseOfToolsetDto, type ProvisionedResourceInfo, type RefreshStatus, type RefreshStatusResponse, type ReplaceConnectionRequest, type SelectObjectsRequest, type SetDefaultConnectionResponse, type SignInUrlRequest, type SignInUrlResponse, type SolutionAdminWriteResponse, type SolutionDetailResponse, type SolutionInstallationResponse, type SolutionManifest, type SolutionManifestBuildSpec, type SolutionResponse, type SolutionsArchiveSolutionData, type SolutionsArchiveSolutionError, type SolutionsArchiveSolutionErrors, type SolutionsArchiveSolutionResponse, type SolutionsArchiveSolutionResponses, type SolutionsBuildManifestData, type SolutionsBuildManifestError, type SolutionsBuildManifestErrors, type SolutionsBuildManifestResponse, type SolutionsBuildManifestResponses, type SolutionsCreateSolutionData, type SolutionsCreateSolutionError, type SolutionsCreateSolutionErrors, type SolutionsCreateSolutionResponse, type SolutionsCreateSolutionResponses, type SolutionsGetInstallationDetailData, type SolutionsGetInstallationDetailError, type SolutionsGetInstallationDetailErrors, type SolutionsGetInstallationDetailResponse, type SolutionsGetInstallationDetailResponses, type SolutionsGetInstallationResourcesData, type SolutionsGetInstallationResourcesError, type SolutionsGetInstallationResourcesErrors, type SolutionsGetInstallationResourcesResponse, type SolutionsGetInstallationResourcesResponses, type SolutionsGetInstallationsData, type SolutionsGetInstallationsError, type SolutionsGetInstallationsErrors, type SolutionsGetInstallationsResponse, type SolutionsGetInstallationsResponses, type SolutionsGetPublishedSolutionsData, type SolutionsGetPublishedSolutionsError, type SolutionsGetPublishedSolutionsErrors, type SolutionsGetPublishedSolutionsResponse, type SolutionsGetPublishedSolutionsResponses, type SolutionsGetSolutionBySlugData, type SolutionsGetSolutionBySlugError, type SolutionsGetSolutionBySlugErrors, type SolutionsGetSolutionBySlugResponse, type SolutionsGetSolutionBySlugResponses, type SolutionsInstallSolutionData, type SolutionsInstallSolutionError, type SolutionsInstallSolutionErrors, type SolutionsInstallSolutionResponse, type SolutionsInstallSolutionResponses, type SolutionsPublishSolutionData, type SolutionsPublishSolutionError, type SolutionsPublishSolutionErrors, type SolutionsPublishSolutionResponse, type SolutionsPublishSolutionResponses, type SolutionsUninstallSolutionData, type SolutionsUninstallSolutionError, type SolutionsUninstallSolutionErrors, type SolutionsUninstallSolutionResponse, type SolutionsUninstallSolutionResponses, type SolutionsUpdateInstallationData, type SolutionsUpdateInstallationError, type SolutionsUpdateInstallationErrors, type SolutionsUpdateInstallationResponse, type SolutionsUpdateInstallationResponses, type SolutionsUpdateSolutionData, type SolutionsUpdateSolutionError, type SolutionsUpdateSolutionErrors, type SolutionsUpdateSolutionResponse, type SolutionsUpdateSolutionResponses, type TableDefinitionDto, type TableFieldDto, type ToolDetailDto, type ToolDto, type ToolExecuteRequest, type ToolExecuteResponse, type ToolsExecuteToolData, type ToolsExecuteToolError, type ToolsExecuteToolErrors, type ToolsExecuteToolResponse, type ToolsExecuteToolResponses, type ToolsGetToolData, type ToolsGetToolError, type ToolsGetToolErrors, type ToolsGetToolResponse, type ToolsGetToolResponses, type ToolsListToolsData, type ToolsListToolsError, type ToolsListToolsErrors, type ToolsListToolsResponse, type ToolsListToolsResponses, type ToolsetConnectionDto, type ToolsetConnectionRequest, type ToolsetDto, type ToolsetsCreateToolsetData, type ToolsetsCreateToolsetError, type ToolsetsCreateToolsetErrors, type ToolsetsCreateToolsetResponse, type ToolsetsCreateToolsetResponses, type ToolsetsDeleteToolsetData, type ToolsetsDeleteToolsetError, type ToolsetsDeleteToolsetErrors, type ToolsetsDeleteToolsetResponse, type ToolsetsDeleteToolsetResponses, type ToolsetsGetToolsetData, type ToolsetsGetToolsetError, type ToolsetsGetToolsetErrors, type ToolsetsGetToolsetResponse, type ToolsetsGetToolsetResponses, type ToolsetsListToolsetsData, type ToolsetsListToolsetsError, type ToolsetsListToolsetsErrors, type ToolsetsListToolsetsResponse, type ToolsetsListToolsetsResponses, type ToolsetsUpdateToolsetData, type ToolsetsUpdateToolsetError, type ToolsetsUpdateToolsetErrors, type ToolsetsUpdateToolsetResponse, type ToolsetsUpdateToolsetResponses, type UninstallSolutionRequest, type UpdateBlockedResponse, type UpdateBlocker, type UpdateConnectionRequest, type UpdateInstallationRequest, type UpdateInstallationResponse, type UpdateSolutionRequest, type UpdateToolsetRequest, type WhoAmIResponse, applicationsGetApplication, applicationsListApplications, authWhoAmI, connectionsCheckConnection, connectionsClearDefaultConnection, connectionsCreateConnection, connectionsDeleteConnection, connectionsGetAccessToken, connectionsGetConnection, connectionsGetConnectionObjects, connectionsGetConnections, connectionsGetDefaultConnections, connectionsGetRefreshStatus, connectionsGetSignInUrl, connectionsRefreshObjects, connectionsReplaceConnection, connectionsSelectObjects, connectionsSetDefaultConnection, connectionsUpdateConnection, createEnginiClient, solutionsArchiveSolution, solutionsBuildManifest, solutionsCreateSolution, solutionsGetInstallationDetail, solutionsGetInstallationResources, solutionsGetInstallations, solutionsGetPublishedSolutions, solutionsGetSolutionBySlug, solutionsInstallSolution, solutionsPublishSolution, solutionsUninstallSolution, solutionsUpdateInstallation, solutionsUpdateSolution, toolsExecuteTool, toolsGetTool, toolsListTools, toolsetsCreateToolset, toolsetsDeleteToolset, toolsetsGetToolset, toolsetsListToolsets, toolsetsUpdateToolset };
|
|
3903
|
+
export { type AccessTokenResponse, type ActivityCondition, type ActivitySort, type AppConnectionFieldInputType, type ApplicationAuthMethod, type ApplicationConnectionField, type ApplicationDetailDto, type ApplicationDto, type ApplicationsGetApplicationData, type ApplicationsGetApplicationError, type ApplicationsGetApplicationErrors, type ApplicationsGetApplicationResponse, type ApplicationsGetApplicationResponses, type ApplicationsListApplicationsData, type ApplicationsListApplicationsError, type ApplicationsListApplicationsErrors, type ApplicationsListApplicationsResponse, type ApplicationsListApplicationsResponses, type AuthWhoAmIData, type AuthWhoAmIError, type AuthWhoAmIErrors, type AuthWhoAmIResponse, type AuthWhoAmIResponses, type BuildManifestRequest, type BuildManifestResponse, type BuildManifestTable, type BuildManifestWorkflow, type ClientOptions, type ConnectionInput, type ConnectionObject, type ConnectionPublicDetail, type ConnectionPublicListItem, type ConnectionReplaceActivityOutcome, type ConnectionReplaceResult, type ConnectionReplacementOutcome, type ConnectionsCheckConnectionData, type ConnectionsCheckConnectionError, type ConnectionsCheckConnectionErrors, type ConnectionsCheckConnectionResponse, type ConnectionsCheckConnectionResponses, type ConnectionsClearDefaultConnectionData, type ConnectionsClearDefaultConnectionError, type ConnectionsClearDefaultConnectionErrors, type ConnectionsClearDefaultConnectionResponse, type ConnectionsClearDefaultConnectionResponses, type ConnectionsCreateConnectionData, type ConnectionsCreateConnectionError, type ConnectionsCreateConnectionErrors, type ConnectionsCreateConnectionResponse, type ConnectionsCreateConnectionResponses, type ConnectionsDeleteConnectionData, type ConnectionsDeleteConnectionError, type ConnectionsDeleteConnectionErrors, type ConnectionsDeleteConnectionResponse, type ConnectionsDeleteConnectionResponses, type ConnectionsGetAccessTokenData, type ConnectionsGetAccessTokenError, type ConnectionsGetAccessTokenErrors, type ConnectionsGetAccessTokenResponse, type ConnectionsGetAccessTokenResponses, type ConnectionsGetConnectionData, type ConnectionsGetConnectionError, type ConnectionsGetConnectionErrors, type ConnectionsGetConnectionObjectsData, type ConnectionsGetConnectionObjectsError, type ConnectionsGetConnectionObjectsErrors, type ConnectionsGetConnectionObjectsResponse, type ConnectionsGetConnectionObjectsResponses, type ConnectionsGetConnectionResponse, type ConnectionsGetConnectionResponses, type ConnectionsGetConnectionsData, type ConnectionsGetConnectionsError, type ConnectionsGetConnectionsErrors, type ConnectionsGetConnectionsResponse, type ConnectionsGetConnectionsResponses, type ConnectionsGetDefaultConnectionsData, type ConnectionsGetDefaultConnectionsError, type ConnectionsGetDefaultConnectionsErrors, type ConnectionsGetDefaultConnectionsResponse, type ConnectionsGetDefaultConnectionsResponses, type ConnectionsGetRefreshStatusData, type ConnectionsGetRefreshStatusError, type ConnectionsGetRefreshStatusErrors, type ConnectionsGetRefreshStatusResponse, type ConnectionsGetRefreshStatusResponses, type ConnectionsGetSignInUrlData, type ConnectionsGetSignInUrlError, type ConnectionsGetSignInUrlErrors, type ConnectionsGetSignInUrlResponse, type ConnectionsGetSignInUrlResponses, type ConnectionsRefreshObjectsData, type ConnectionsRefreshObjectsError, type ConnectionsRefreshObjectsErrors, type ConnectionsRefreshObjectsResponse, type ConnectionsRefreshObjectsResponses, type ConnectionsReplaceConnectionData, type ConnectionsReplaceConnectionError, type ConnectionsReplaceConnectionErrors, type ConnectionsReplaceConnectionResponse, type ConnectionsReplaceConnectionResponses, type ConnectionsSelectObjectsData, type ConnectionsSelectObjectsError, type ConnectionsSelectObjectsErrors, type ConnectionsSelectObjectsResponse, type ConnectionsSelectObjectsResponses, type ConnectionsSetDefaultConnectionData, type ConnectionsSetDefaultConnectionError, type ConnectionsSetDefaultConnectionErrors, type ConnectionsSetDefaultConnectionResponse, type ConnectionsSetDefaultConnectionResponses, type ConnectionsUpdateConnectionData, type ConnectionsUpdateConnectionError, type ConnectionsUpdateConnectionErrors, type ConnectionsUpdateConnectionResponse, type ConnectionsUpdateConnectionResponses, type CreateConnectionRequest, type CreateSolutionRequest, type CreateToolsetRequest, type CustomConnectionDataItem, type DefaultConnectionDto, type DefaultConnectionsResponse, type EnginiClientOptions, type ErrorDetail, type ErrorResponse, type ExecutionInfo, type InstallSolutionRequest, type InstallSolutionResponse, type InstallationDetailResponse, type InstalledResourceResponse, type ManifestConnection, type ManifestConnectionDefaults, type ManifestTable, type ManifestWorkflow, type Options, type OrderDirection, type PaginatedResponseOfApplicationDto, type PaginatedResponseOfConnectionObject, type PaginatedResponseOfConnectionPublicListItem, type PaginatedResponseOfSolutionResponse, type PaginatedResponseOfToolDto, type PaginatedResponseOfToolsetDto, type ProvisionedResourceInfo, type RefreshStatus, type RefreshStatusResponse, type ReplaceConnectionRequest, type SelectObjectsRequest, type SetDefaultConnectionResponse, type SignInUrlRequest, type SignInUrlResponse, type SolutionAdminWriteResponse, type SolutionDetailResponse, type SolutionInstallationResponse, type SolutionManifest, type SolutionManifestBuildSpec, type SolutionResponse, type SolutionsArchiveSolutionData, type SolutionsArchiveSolutionError, type SolutionsArchiveSolutionErrors, type SolutionsArchiveSolutionResponse, type SolutionsArchiveSolutionResponses, type SolutionsBuildManifestData, type SolutionsBuildManifestError, type SolutionsBuildManifestErrors, type SolutionsBuildManifestResponse, type SolutionsBuildManifestResponses, type SolutionsCreateSolutionData, type SolutionsCreateSolutionError, type SolutionsCreateSolutionErrors, type SolutionsCreateSolutionResponse, type SolutionsCreateSolutionResponses, type SolutionsGetInstallationDetailData, type SolutionsGetInstallationDetailError, type SolutionsGetInstallationDetailErrors, type SolutionsGetInstallationDetailResponse, type SolutionsGetInstallationDetailResponses, type SolutionsGetInstallationResourcesData, type SolutionsGetInstallationResourcesError, type SolutionsGetInstallationResourcesErrors, type SolutionsGetInstallationResourcesResponse, type SolutionsGetInstallationResourcesResponses, type SolutionsGetInstallationsData, type SolutionsGetInstallationsError, type SolutionsGetInstallationsErrors, type SolutionsGetInstallationsResponse, type SolutionsGetInstallationsResponses, type SolutionsGetPublishedSolutionsData, type SolutionsGetPublishedSolutionsError, type SolutionsGetPublishedSolutionsErrors, type SolutionsGetPublishedSolutionsResponse, type SolutionsGetPublishedSolutionsResponses, type SolutionsGetSolutionBySlugData, type SolutionsGetSolutionBySlugError, type SolutionsGetSolutionBySlugErrors, type SolutionsGetSolutionBySlugResponse, type SolutionsGetSolutionBySlugResponses, type SolutionsInstallSolutionData, type SolutionsInstallSolutionError, type SolutionsInstallSolutionErrors, type SolutionsInstallSolutionResponse, type SolutionsInstallSolutionResponses, type SolutionsPublishSolutionData, type SolutionsPublishSolutionError, type SolutionsPublishSolutionErrors, type SolutionsPublishSolutionResponse, type SolutionsPublishSolutionResponses, type SolutionsUninstallSolutionData, type SolutionsUninstallSolutionError, type SolutionsUninstallSolutionErrors, type SolutionsUninstallSolutionResponse, type SolutionsUninstallSolutionResponses, type SolutionsUpdateInstallationData, type SolutionsUpdateInstallationError, type SolutionsUpdateInstallationErrors, type SolutionsUpdateInstallationResponse, type SolutionsUpdateInstallationResponses, type SolutionsUpdateSolutionData, type SolutionsUpdateSolutionError, type SolutionsUpdateSolutionErrors, type SolutionsUpdateSolutionResponse, type SolutionsUpdateSolutionResponses, type TableDefinitionDto, type TableFieldDto, type ToolDetailDto, type ToolDto, type ToolExecuteRequest, type ToolExecuteResponse, type ToolsExecuteToolData, type ToolsExecuteToolError, type ToolsExecuteToolErrors, type ToolsExecuteToolResponse, type ToolsExecuteToolResponses, type ToolsGetToolData, type ToolsGetToolError, type ToolsGetToolErrors, type ToolsGetToolResponse, type ToolsGetToolResponses, type ToolsListToolsData, type ToolsListToolsError, type ToolsListToolsErrors, type ToolsListToolsResponse, type ToolsListToolsResponses, type ToolsetConnectionDto, type ToolsetConnectionRequest, type ToolsetDto, type ToolsetsCreateToolsetData, type ToolsetsCreateToolsetError, type ToolsetsCreateToolsetErrors, type ToolsetsCreateToolsetResponse, type ToolsetsCreateToolsetResponses, type ToolsetsDeleteToolsetData, type ToolsetsDeleteToolsetError, type ToolsetsDeleteToolsetErrors, type ToolsetsDeleteToolsetResponse, type ToolsetsDeleteToolsetResponses, type ToolsetsGetToolsetData, type ToolsetsGetToolsetError, type ToolsetsGetToolsetErrors, type ToolsetsGetToolsetResponse, type ToolsetsGetToolsetResponses, type ToolsetsListToolsetsData, type ToolsetsListToolsetsError, type ToolsetsListToolsetsErrors, type ToolsetsListToolsetsResponse, type ToolsetsListToolsetsResponses, type ToolsetsUpdateToolsetData, type ToolsetsUpdateToolsetError, type ToolsetsUpdateToolsetErrors, type ToolsetsUpdateToolsetResponse, type ToolsetsUpdateToolsetResponses, type UninstallSolutionRequest, type UpdateBlockedResponse, type UpdateBlocker, type UpdateConnectionRequest, type UpdateInstallationRequest, type UpdateInstallationResponse, type UpdateSolutionRequest, type UpdateToolsetRequest, type WhoAmIResponse, applicationsGetApplication, applicationsListApplications, authWhoAmI, connectionsCheckConnection, connectionsClearDefaultConnection, connectionsCreateConnection, connectionsDeleteConnection, connectionsGetAccessToken, connectionsGetConnection, connectionsGetConnectionObjects, connectionsGetConnections, connectionsGetDefaultConnections, connectionsGetRefreshStatus, connectionsGetSignInUrl, connectionsRefreshObjects, connectionsReplaceConnection, connectionsSelectObjects, connectionsSetDefaultConnection, connectionsUpdateConnection, createEnginiClient, solutionsArchiveSolution, solutionsBuildManifest, solutionsCreateSolution, solutionsGetInstallationDetail, solutionsGetInstallationResources, solutionsGetInstallations, solutionsGetPublishedSolutions, solutionsGetSolutionBySlug, solutionsInstallSolution, solutionsPublishSolution, solutionsUninstallSolution, solutionsUpdateInstallation, solutionsUpdateSolution, toolsExecuteTool, toolsGetTool, toolsListTools, toolsetsCreateToolset, toolsetsDeleteToolset, toolsetsGetToolset, toolsetsListToolsets, toolsetsUpdateToolset };
|