@gpt-core/client 0.8.22 → 0.8.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +9379 -967
- package/dist/index.d.ts +9379 -967
- package/dist/index.js +8 -690
- package/dist/index.mjs +7 -690
- package/llms.txt +1 -0
- package/package.json +11 -11
- package/dist/index.cjs +0 -4043
package/dist/index.mjs
CHANGED
|
@@ -43,6 +43,7 @@ __export(sdk_gen_exports, {
|
|
|
43
43
|
getAgentsByIdSchemaVersions: () => getAgentsByIdSchemaVersions,
|
|
44
44
|
getAgentsByIdStats: () => getAgentsByIdStats,
|
|
45
45
|
getAgentsByIdTrainingStats: () => getAgentsByIdTrainingStats,
|
|
46
|
+
getAgentsByIdUsage: () => getAgentsByIdUsage,
|
|
46
47
|
getAiChunksDocumentByDocumentId: () => getAiChunksDocumentByDocumentId,
|
|
47
48
|
getAiConversations: () => getAiConversations,
|
|
48
49
|
getAiConversationsById: () => getAiConversationsById,
|
|
@@ -1177,7 +1178,6 @@ var client = createClient(
|
|
|
1177
1178
|
|
|
1178
1179
|
// src/_internal/sdk.gen.ts
|
|
1179
1180
|
var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
1180
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1181
1181
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1182
1182
|
url: "/ai/search/advanced",
|
|
1183
1183
|
...options,
|
|
@@ -1187,31 +1187,21 @@ var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
|
1187
1187
|
}
|
|
1188
1188
|
});
|
|
1189
1189
|
var deleteExtractionDocumentsById = (options) => (options.client ?? client).delete({
|
|
1190
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1191
1190
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1192
1191
|
url: "/extraction/documents/{id}",
|
|
1193
1192
|
...options
|
|
1194
1193
|
});
|
|
1195
1194
|
var getExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
1196
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1197
1195
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1198
1196
|
url: "/extraction/documents/{id}",
|
|
1199
1197
|
...options
|
|
1200
1198
|
});
|
|
1201
1199
|
var getThreads = (options) => (options.client ?? client).get({
|
|
1202
|
-
querySerializer: {
|
|
1203
|
-
parameters: {
|
|
1204
|
-
filter: { object: { style: "form" } },
|
|
1205
|
-
page: { object: { style: "form" } },
|
|
1206
|
-
fields: { object: { style: "form" } }
|
|
1207
|
-
}
|
|
1208
|
-
},
|
|
1209
1200
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1210
1201
|
url: "/threads",
|
|
1211
1202
|
...options
|
|
1212
1203
|
});
|
|
1213
1204
|
var postThreads = (options) => (options.client ?? client).post({
|
|
1214
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1215
1205
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1216
1206
|
url: "/threads",
|
|
1217
1207
|
...options,
|
|
@@ -1221,7 +1211,6 @@ var postThreads = (options) => (options.client ?? client).post({
|
|
|
1221
1211
|
}
|
|
1222
1212
|
});
|
|
1223
1213
|
var patchExtractionDocumentsByIdCancel = (options) => (options.client ?? client).patch({
|
|
1224
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1225
1214
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1226
1215
|
url: "/extraction/documents/{id}/cancel",
|
|
1227
1216
|
...options,
|
|
@@ -1231,36 +1220,26 @@ var patchExtractionDocumentsByIdCancel = (options) => (options.client ?? client)
|
|
|
1231
1220
|
}
|
|
1232
1221
|
});
|
|
1233
1222
|
var getLlmAnalyticsCosts = (options) => (options.client ?? client).get({
|
|
1234
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1235
1223
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1236
1224
|
url: "/llm_analytics/costs",
|
|
1237
1225
|
...options
|
|
1238
1226
|
});
|
|
1239
1227
|
var getTrainingSessionsAgentsByAgentIdSessions = (options) => (options.client ?? client).get({
|
|
1240
|
-
querySerializer: {
|
|
1241
|
-
parameters: {
|
|
1242
|
-
filter: { object: { style: "form" } },
|
|
1243
|
-
fields: { object: { style: "form" } }
|
|
1244
|
-
}
|
|
1245
|
-
},
|
|
1246
1228
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1247
1229
|
url: "/training_sessions/agents/{agent_id}/sessions",
|
|
1248
1230
|
...options
|
|
1249
1231
|
});
|
|
1250
1232
|
var getWatcherEventsById = (options) => (options.client ?? client).get({
|
|
1251
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1252
1233
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1253
1234
|
url: "/watcher/events/{id}",
|
|
1254
1235
|
...options
|
|
1255
1236
|
});
|
|
1256
1237
|
var getAiChunksDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
1257
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1258
1238
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1259
1239
|
url: "/ai/chunks/document/{document_id}",
|
|
1260
1240
|
...options
|
|
1261
1241
|
});
|
|
1262
1242
|
var patchWalletCredits = (options) => (options.client ?? client).patch({
|
|
1263
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1264
1243
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1265
1244
|
url: "/wallet/credits",
|
|
1266
1245
|
...options,
|
|
@@ -1280,18 +1259,11 @@ var getApplicationsCurrent = (options) => (options.client ?? client).get({
|
|
|
1280
1259
|
...options
|
|
1281
1260
|
});
|
|
1282
1261
|
var getWorkspaces = (options) => (options.client ?? client).get({
|
|
1283
|
-
querySerializer: {
|
|
1284
|
-
parameters: {
|
|
1285
|
-
filter: { object: { style: "form" } },
|
|
1286
|
-
fields: { object: { style: "form" } }
|
|
1287
|
-
}
|
|
1288
|
-
},
|
|
1289
1262
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1290
1263
|
url: "/workspaces",
|
|
1291
1264
|
...options
|
|
1292
1265
|
});
|
|
1293
1266
|
var postWorkspaces = (options) => (options.client ?? client).post({
|
|
1294
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1295
1267
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1296
1268
|
url: "/workspaces",
|
|
1297
1269
|
...options,
|
|
@@ -1306,13 +1278,11 @@ var getAgentsByIdStats = (options) => (options.client ?? client).get({
|
|
|
1306
1278
|
...options
|
|
1307
1279
|
});
|
|
1308
1280
|
var getDocumentsStats = (options) => (options.client ?? client).get({
|
|
1309
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1310
1281
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1311
1282
|
url: "/documents/stats",
|
|
1312
1283
|
...options
|
|
1313
1284
|
});
|
|
1314
1285
|
var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client).patch({
|
|
1315
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1316
1286
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1317
1287
|
url: "/extraction/documents/{id}/dismiss",
|
|
1318
1288
|
...options,
|
|
@@ -1322,7 +1292,6 @@ var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client
|
|
|
1322
1292
|
}
|
|
1323
1293
|
});
|
|
1324
1294
|
var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
1325
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1326
1295
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1327
1296
|
url: "/objects/register",
|
|
1328
1297
|
...options,
|
|
@@ -1332,13 +1301,11 @@ var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
|
1332
1301
|
}
|
|
1333
1302
|
});
|
|
1334
1303
|
var getLlmAnalyticsWorkspace = (options) => (options.client ?? client).get({
|
|
1335
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1336
1304
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1337
1305
|
url: "/llm_analytics/workspace",
|
|
1338
1306
|
...options
|
|
1339
1307
|
});
|
|
1340
1308
|
var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?? client).patch({
|
|
1341
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1342
1309
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1343
1310
|
url: "/extraction/documents/{id}/dismiss-training",
|
|
1344
1311
|
...options,
|
|
@@ -1348,7 +1315,6 @@ var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?
|
|
|
1348
1315
|
}
|
|
1349
1316
|
});
|
|
1350
1317
|
var postAgentVersionComparisons = (options) => (options.client ?? client).post({
|
|
1351
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1352
1318
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1353
1319
|
url: "/agent_version_comparisons",
|
|
1354
1320
|
...options,
|
|
@@ -1358,12 +1324,6 @@ var postAgentVersionComparisons = (options) => (options.client ?? client).post({
|
|
|
1358
1324
|
}
|
|
1359
1325
|
});
|
|
1360
1326
|
var getSearchIndexes = (options) => (options.client ?? client).get({
|
|
1361
|
-
querySerializer: {
|
|
1362
|
-
parameters: {
|
|
1363
|
-
filter: { object: { style: "form" } },
|
|
1364
|
-
fields: { object: { style: "form" } }
|
|
1365
|
-
}
|
|
1366
|
-
},
|
|
1367
1327
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1368
1328
|
url: "/search/indexes",
|
|
1369
1329
|
...options
|
|
@@ -1378,13 +1338,11 @@ var postApplicationsByApplicationIdEmailTemplatesBySlugPreview = (options) => (o
|
|
|
1378
1338
|
}
|
|
1379
1339
|
});
|
|
1380
1340
|
var getCreditPackagesSlugBySlug = (options) => (options.client ?? client).get({
|
|
1381
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1382
1341
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1383
1342
|
url: "/credit-packages/slug/{slug}",
|
|
1384
1343
|
...options
|
|
1385
1344
|
});
|
|
1386
1345
|
var patchUsersAuthPasswordChange = (options) => (options.client ?? client).patch({
|
|
1387
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1388
1346
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1389
1347
|
url: "/users/auth/password/change",
|
|
1390
1348
|
...options,
|
|
@@ -1394,7 +1352,6 @@ var patchUsersAuthPasswordChange = (options) => (options.client ?? client).patch
|
|
|
1394
1352
|
}
|
|
1395
1353
|
});
|
|
1396
1354
|
var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
1397
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1398
1355
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1399
1356
|
url: "/extraction/batches",
|
|
1400
1357
|
...options,
|
|
@@ -1404,13 +1361,11 @@ var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
|
1404
1361
|
}
|
|
1405
1362
|
});
|
|
1406
1363
|
var getLlmAnalyticsPlatform = (options) => (options.client ?? client).get({
|
|
1407
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1408
1364
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1409
1365
|
url: "/llm_analytics/platform",
|
|
1410
1366
|
...options
|
|
1411
1367
|
});
|
|
1412
1368
|
var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client).patch({
|
|
1413
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1414
1369
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1415
1370
|
url: "/extraction/documents/{id}/exclude",
|
|
1416
1371
|
...options,
|
|
@@ -1420,7 +1375,6 @@ var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client
|
|
|
1420
1375
|
}
|
|
1421
1376
|
});
|
|
1422
1377
|
var postPayments = (options) => (options.client ?? client).post({
|
|
1423
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1424
1378
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1425
1379
|
url: "/payments",
|
|
1426
1380
|
...options,
|
|
@@ -1430,7 +1384,6 @@ var postPayments = (options) => (options.client ?? client).post({
|
|
|
1430
1384
|
}
|
|
1431
1385
|
});
|
|
1432
1386
|
var postAgentsImport = (options) => (options.client ?? client).post({
|
|
1433
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1434
1387
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1435
1388
|
url: "/agents/import",
|
|
1436
1389
|
...options,
|
|
@@ -1440,18 +1393,11 @@ var postAgentsImport = (options) => (options.client ?? client).post({
|
|
|
1440
1393
|
}
|
|
1441
1394
|
});
|
|
1442
1395
|
var getExtractionBatchesWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1443
|
-
querySerializer: {
|
|
1444
|
-
parameters: {
|
|
1445
|
-
filter: { object: { style: "form" } },
|
|
1446
|
-
fields: { object: { style: "form" } }
|
|
1447
|
-
}
|
|
1448
|
-
},
|
|
1449
1396
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1450
1397
|
url: "/extraction/batches/workspace/{workspace_id}",
|
|
1451
1398
|
...options
|
|
1452
1399
|
});
|
|
1453
1400
|
var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1454
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1455
1401
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1456
1402
|
url: "/api_keys/{id}/revoke",
|
|
1457
1403
|
...options,
|
|
@@ -1461,19 +1407,16 @@ var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1461
1407
|
}
|
|
1462
1408
|
});
|
|
1463
1409
|
var getInvitationsConsumeByToken = (options) => (options.client ?? client).get({
|
|
1464
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1465
1410
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1466
1411
|
url: "/invitations/consume/{token}",
|
|
1467
1412
|
...options
|
|
1468
1413
|
});
|
|
1469
1414
|
var getExtractionDocumentsByIdStatus = (options) => (options.client ?? client).get({
|
|
1470
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1471
1415
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1472
1416
|
url: "/extraction/documents/{id}/status",
|
|
1473
1417
|
...options
|
|
1474
1418
|
});
|
|
1475
1419
|
var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client).patch({
|
|
1476
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1477
1420
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1478
1421
|
url: "/extraction/documents/{id}/status",
|
|
1479
1422
|
...options,
|
|
@@ -1483,7 +1426,6 @@ var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client)
|
|
|
1483
1426
|
}
|
|
1484
1427
|
});
|
|
1485
1428
|
var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? client).patch({
|
|
1486
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1487
1429
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1488
1430
|
url: "/extraction/documents/{id}/finish_upload",
|
|
1489
1431
|
...options,
|
|
@@ -1498,7 +1440,6 @@ var getUsersMeDashboard = (options) => (options.client ?? client).get({
|
|
|
1498
1440
|
...options
|
|
1499
1441
|
});
|
|
1500
1442
|
var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1501
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1502
1443
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1503
1444
|
url: "/workspaces/{id}/allocate",
|
|
1504
1445
|
...options,
|
|
@@ -1508,7 +1449,6 @@ var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch(
|
|
|
1508
1449
|
}
|
|
1509
1450
|
});
|
|
1510
1451
|
var postThreadsActive = (options) => (options.client ?? client).post({
|
|
1511
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1512
1452
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1513
1453
|
url: "/threads/active",
|
|
1514
1454
|
...options,
|
|
@@ -1518,7 +1458,6 @@ var postThreadsActive = (options) => (options.client ?? client).post({
|
|
|
1518
1458
|
}
|
|
1519
1459
|
});
|
|
1520
1460
|
var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1521
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1522
1461
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1523
1462
|
url: "/invitations/{id}/revoke",
|
|
1524
1463
|
...options,
|
|
@@ -1528,18 +1467,11 @@ var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1528
1467
|
}
|
|
1529
1468
|
});
|
|
1530
1469
|
var getAiGraphNodesLabelByLabel = (options) => (options.client ?? client).get({
|
|
1531
|
-
querySerializer: {
|
|
1532
|
-
parameters: {
|
|
1533
|
-
filter: { object: { style: "form" } },
|
|
1534
|
-
fields: { object: { style: "form" } }
|
|
1535
|
-
}
|
|
1536
|
-
},
|
|
1537
1470
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1538
1471
|
url: "/ai/graph/nodes/label/{label}",
|
|
1539
1472
|
...options
|
|
1540
1473
|
});
|
|
1541
1474
|
var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options) => (options.client ?? client).post({
|
|
1542
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1543
1475
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1544
1476
|
url: "/workspaces/{workspace_id}/extraction/documents/dismiss-all-trained",
|
|
1545
1477
|
...options,
|
|
@@ -1549,19 +1481,11 @@ var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options)
|
|
|
1549
1481
|
}
|
|
1550
1482
|
});
|
|
1551
1483
|
var getConfigs = (options) => (options.client ?? client).get({
|
|
1552
|
-
querySerializer: {
|
|
1553
|
-
parameters: {
|
|
1554
|
-
filter: { object: { style: "form" } },
|
|
1555
|
-
page: { object: { style: "form" } },
|
|
1556
|
-
fields: { object: { style: "form" } }
|
|
1557
|
-
}
|
|
1558
|
-
},
|
|
1559
1484
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1560
1485
|
url: "/configs",
|
|
1561
1486
|
...options
|
|
1562
1487
|
});
|
|
1563
1488
|
var postConfigs = (options) => (options.client ?? client).post({
|
|
1564
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1565
1489
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1566
1490
|
url: "/configs",
|
|
1567
1491
|
...options,
|
|
@@ -1571,7 +1495,6 @@ var postConfigs = (options) => (options.client ?? client).post({
|
|
|
1571
1495
|
}
|
|
1572
1496
|
});
|
|
1573
1497
|
var patchWalletAutoTopUp = (options) => (options.client ?? client).patch({
|
|
1574
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1575
1498
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1576
1499
|
url: "/wallet/auto-top-up",
|
|
1577
1500
|
...options,
|
|
@@ -1581,7 +1504,6 @@ var patchWalletAutoTopUp = (options) => (options.client ?? client).patch({
|
|
|
1581
1504
|
}
|
|
1582
1505
|
});
|
|
1583
1506
|
var postTokens = (options) => (options.client ?? client).post({
|
|
1584
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1585
1507
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1586
1508
|
url: "/tokens",
|
|
1587
1509
|
...options,
|
|
@@ -1591,7 +1513,6 @@ var postTokens = (options) => (options.client ?? client).post({
|
|
|
1591
1513
|
}
|
|
1592
1514
|
});
|
|
1593
1515
|
var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
|
|
1594
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1595
1516
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1596
1517
|
url: "/api_keys/{id}/set_budget",
|
|
1597
1518
|
...options,
|
|
@@ -1601,19 +1522,16 @@ var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
|
|
|
1601
1522
|
}
|
|
1602
1523
|
});
|
|
1603
1524
|
var deleteTrainingExamplesById = (options) => (options.client ?? client).delete({
|
|
1604
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1605
1525
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1606
1526
|
url: "/training_examples/{id}",
|
|
1607
1527
|
...options
|
|
1608
1528
|
});
|
|
1609
1529
|
var getTrainingExamplesById = (options) => (options.client ?? client).get({
|
|
1610
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1611
1530
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1612
1531
|
url: "/training_examples/{id}",
|
|
1613
1532
|
...options
|
|
1614
1533
|
});
|
|
1615
1534
|
var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
1616
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1617
1535
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1618
1536
|
url: "/training_examples/{id}",
|
|
1619
1537
|
...options,
|
|
@@ -1623,13 +1541,11 @@ var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
|
1623
1541
|
}
|
|
1624
1542
|
});
|
|
1625
1543
|
var deleteSearchSavedById = (options) => (options.client ?? client).delete({
|
|
1626
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1627
1544
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1628
1545
|
url: "/search/saved/{id}",
|
|
1629
1546
|
...options
|
|
1630
1547
|
});
|
|
1631
1548
|
var patchSearchSavedById = (options) => (options.client ?? client).patch({
|
|
1632
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1633
1549
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1634
1550
|
url: "/search/saved/{id}",
|
|
1635
1551
|
...options,
|
|
@@ -1639,7 +1555,6 @@ var patchSearchSavedById = (options) => (options.client ?? client).patch({
|
|
|
1639
1555
|
}
|
|
1640
1556
|
});
|
|
1641
1557
|
var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
1642
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1643
1558
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1644
1559
|
url: "/users/{id}/admin/email",
|
|
1645
1560
|
...options,
|
|
@@ -1649,13 +1564,6 @@ var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
|
1649
1564
|
}
|
|
1650
1565
|
});
|
|
1651
1566
|
var getExtractionDocumentsWorkspaceByWorkspaceIdTrained = (options) => (options.client ?? client).get({
|
|
1652
|
-
querySerializer: {
|
|
1653
|
-
parameters: {
|
|
1654
|
-
filter: { object: { style: "form" } },
|
|
1655
|
-
page: { object: { style: "form" } },
|
|
1656
|
-
fields: { object: { style: "form" } }
|
|
1657
|
-
}
|
|
1658
|
-
},
|
|
1659
1567
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1660
1568
|
url: "/extraction/documents/workspace/{workspace_id}/trained",
|
|
1661
1569
|
...options
|
|
@@ -1666,7 +1574,6 @@ var getWatcherClaimsStatus = (options) => (options.client ?? client).get({
|
|
|
1666
1574
|
...options
|
|
1667
1575
|
});
|
|
1668
1576
|
var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch({
|
|
1669
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1670
1577
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1671
1578
|
url: "/users/auth/reset-password",
|
|
1672
1579
|
...options,
|
|
@@ -1676,25 +1583,16 @@ var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1676
1583
|
}
|
|
1677
1584
|
});
|
|
1678
1585
|
var getBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
1679
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1680
1586
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1681
1587
|
url: "/buckets/{id}/stats",
|
|
1682
1588
|
...options
|
|
1683
1589
|
});
|
|
1684
1590
|
var getApplicationsByApplicationIdEmailTemplates = (options) => (options.client ?? client).get({
|
|
1685
|
-
querySerializer: {
|
|
1686
|
-
parameters: {
|
|
1687
|
-
filter: { object: { style: "form" } },
|
|
1688
|
-
page: { object: { style: "form" } },
|
|
1689
|
-
fields: { object: { style: "form" } }
|
|
1690
|
-
}
|
|
1691
|
-
},
|
|
1692
1591
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1693
1592
|
url: "/applications/{application_id}/email-templates",
|
|
1694
1593
|
...options
|
|
1695
1594
|
});
|
|
1696
1595
|
var postApplicationsByApplicationIdEmailTemplates = (options) => (options.client ?? client).post({
|
|
1697
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1698
1596
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1699
1597
|
url: "/applications/{application_id}/email-templates",
|
|
1700
1598
|
...options,
|
|
@@ -1704,7 +1602,6 @@ var postApplicationsByApplicationIdEmailTemplates = (options) => (options.client
|
|
|
1704
1602
|
}
|
|
1705
1603
|
});
|
|
1706
1604
|
var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? client).patch({
|
|
1707
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1708
1605
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1709
1606
|
url: "/notification_methods/{id}/set_primary",
|
|
1710
1607
|
...options,
|
|
@@ -1714,13 +1611,11 @@ var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? cli
|
|
|
1714
1611
|
}
|
|
1715
1612
|
});
|
|
1716
1613
|
var getBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
1717
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1718
1614
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1719
1615
|
url: "/buckets/{id}/objects",
|
|
1720
1616
|
...options
|
|
1721
1617
|
});
|
|
1722
1618
|
var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
1723
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1724
1619
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1725
1620
|
url: "/invitations/{id}/resend",
|
|
1726
1621
|
...options,
|
|
@@ -1730,7 +1625,6 @@ var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
|
1730
1625
|
}
|
|
1731
1626
|
});
|
|
1732
1627
|
var postExtractionSchemaDiscoveries = (options) => (options.client ?? client).post({
|
|
1733
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1734
1628
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1735
1629
|
url: "/extraction/schema_discoveries",
|
|
1736
1630
|
...options,
|
|
@@ -1740,18 +1634,11 @@ var postExtractionSchemaDiscoveries = (options) => (options.client ?? client).po
|
|
|
1740
1634
|
}
|
|
1741
1635
|
});
|
|
1742
1636
|
var getSearchSaved = (options) => (options.client ?? client).get({
|
|
1743
|
-
querySerializer: {
|
|
1744
|
-
parameters: {
|
|
1745
|
-
filter: { object: { style: "form" } },
|
|
1746
|
-
fields: { object: { style: "form" } }
|
|
1747
|
-
}
|
|
1748
|
-
},
|
|
1749
1637
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1750
1638
|
url: "/search/saved",
|
|
1751
1639
|
...options
|
|
1752
1640
|
});
|
|
1753
1641
|
var postSearchSaved = (options) => (options.client ?? client).post({
|
|
1754
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1755
1642
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1756
1643
|
url: "/search/saved",
|
|
1757
1644
|
...options,
|
|
@@ -1761,7 +1648,6 @@ var postSearchSaved = (options) => (options.client ?? client).post({
|
|
|
1761
1648
|
}
|
|
1762
1649
|
});
|
|
1763
1650
|
var patchNotificationMethodsByIdSendVerification = (options) => (options.client ?? client).patch({
|
|
1764
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1765
1651
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1766
1652
|
url: "/notification_methods/{id}/send_verification",
|
|
1767
1653
|
...options,
|
|
@@ -1771,59 +1657,41 @@ var patchNotificationMethodsByIdSendVerification = (options) => (options.client
|
|
|
1771
1657
|
}
|
|
1772
1658
|
});
|
|
1773
1659
|
var deleteFieldTemplatesById = (options) => (options.client ?? client).delete({
|
|
1774
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1775
1660
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1776
1661
|
url: "/field_templates/{id}",
|
|
1777
1662
|
...options
|
|
1778
1663
|
});
|
|
1779
1664
|
var getFieldTemplatesById = (options) => (options.client ?? client).get({
|
|
1780
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1781
1665
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1782
1666
|
url: "/field_templates/{id}",
|
|
1783
1667
|
...options
|
|
1784
1668
|
});
|
|
1785
1669
|
var getWorkspacesByWorkspaceIdTrainingAnalytics = (options) => (options.client ?? client).get({
|
|
1786
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1787
1670
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1788
1671
|
url: "/workspaces/{workspace_id}/training/analytics",
|
|
1789
1672
|
...options
|
|
1790
1673
|
});
|
|
1791
1674
|
var getUserProfilesMe = (options) => (options.client ?? client).get({
|
|
1792
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1793
1675
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1794
1676
|
url: "/user_profiles/me",
|
|
1795
1677
|
...options
|
|
1796
1678
|
});
|
|
1797
1679
|
var getExtractionSchemaDiscoveriesById = (options) => (options.client ?? client).get({
|
|
1798
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1799
1680
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1800
1681
|
url: "/extraction/schema_discoveries/{id}",
|
|
1801
1682
|
...options
|
|
1802
1683
|
});
|
|
1803
1684
|
var getApiKeysActive = (options) => (options.client ?? client).get({
|
|
1804
|
-
querySerializer: {
|
|
1805
|
-
parameters: {
|
|
1806
|
-
filter: { object: { style: "form" } },
|
|
1807
|
-
fields: { object: { style: "form" } }
|
|
1808
|
-
}
|
|
1809
|
-
},
|
|
1810
1685
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1811
1686
|
url: "/api_keys/active",
|
|
1812
1687
|
...options
|
|
1813
1688
|
});
|
|
1814
1689
|
var getAgentVersions = (options) => (options.client ?? client).get({
|
|
1815
|
-
querySerializer: {
|
|
1816
|
-
parameters: {
|
|
1817
|
-
filter: { object: { style: "form" } },
|
|
1818
|
-
fields: { object: { style: "form" } }
|
|
1819
|
-
}
|
|
1820
|
-
},
|
|
1821
1690
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1822
1691
|
url: "/agent_versions",
|
|
1823
1692
|
...options
|
|
1824
1693
|
});
|
|
1825
1694
|
var postAgentVersions = (options) => (options.client ?? client).post({
|
|
1826
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1827
1695
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1828
1696
|
url: "/agent_versions",
|
|
1829
1697
|
...options,
|
|
@@ -1833,7 +1701,6 @@ var postAgentVersions = (options) => (options.client ?? client).post({
|
|
|
1833
1701
|
}
|
|
1834
1702
|
});
|
|
1835
1703
|
var patchInvitationsByIdAcceptByUser = (options) => (options.client ?? client).patch({
|
|
1836
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1837
1704
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1838
1705
|
url: "/invitations/{id}/accept-by-user",
|
|
1839
1706
|
...options,
|
|
@@ -1843,7 +1710,6 @@ var patchInvitationsByIdAcceptByUser = (options) => (options.client ?? client).p
|
|
|
1843
1710
|
}
|
|
1844
1711
|
});
|
|
1845
1712
|
var getPermissionsMeta = (options) => (options.client ?? client).get({
|
|
1846
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1847
1713
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1848
1714
|
url: "/permissions/meta",
|
|
1849
1715
|
...options
|
|
@@ -1858,30 +1724,21 @@ var postApplicationsByApplicationIdEmailTemplatesBySlugTest = (options) => (opti
|
|
|
1858
1724
|
}
|
|
1859
1725
|
});
|
|
1860
1726
|
var getSearchSuggest = (options) => (options.client ?? client).get({
|
|
1861
|
-
querySerializer: {
|
|
1862
|
-
parameters: {
|
|
1863
|
-
filter: { object: { style: "form" } },
|
|
1864
|
-
fields: { object: { style: "form" } }
|
|
1865
|
-
}
|
|
1866
|
-
},
|
|
1867
1727
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1868
1728
|
url: "/search/suggest",
|
|
1869
1729
|
...options
|
|
1870
1730
|
});
|
|
1871
1731
|
var deleteWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
1872
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1873
1732
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1874
1733
|
url: "/webhook_configs/{id}",
|
|
1875
1734
|
...options
|
|
1876
1735
|
});
|
|
1877
1736
|
var getWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
1878
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1879
1737
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1880
1738
|
url: "/webhook_configs/{id}",
|
|
1881
1739
|
...options
|
|
1882
1740
|
});
|
|
1883
1741
|
var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
1884
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1885
1742
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1886
1743
|
url: "/webhook_configs/{id}",
|
|
1887
1744
|
...options,
|
|
@@ -1900,7 +1757,6 @@ var postWebhookConfigsBulkEnable = (options) => (options.client ?? client).post(
|
|
|
1900
1757
|
}
|
|
1901
1758
|
});
|
|
1902
1759
|
var postInvitationsAcceptByToken = (options) => (options.client ?? client).post({
|
|
1903
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1904
1760
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1905
1761
|
url: "/invitations/accept_by_token",
|
|
1906
1762
|
...options,
|
|
@@ -1910,19 +1766,16 @@ var postInvitationsAcceptByToken = (options) => (options.client ?? client).post(
|
|
|
1910
1766
|
}
|
|
1911
1767
|
});
|
|
1912
1768
|
var deleteAiMessagesById = (options) => (options.client ?? client).delete({
|
|
1913
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1914
1769
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1915
1770
|
url: "/ai/messages/{id}",
|
|
1916
1771
|
...options
|
|
1917
1772
|
});
|
|
1918
1773
|
var getExtractionBatchesByIdUploadUrls = (options) => (options.client ?? client).get({
|
|
1919
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1920
1774
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1921
1775
|
url: "/extraction/batches/{id}/upload-urls",
|
|
1922
1776
|
...options
|
|
1923
1777
|
});
|
|
1924
1778
|
var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1925
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1926
1779
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1927
1780
|
url: "/documents/bulk_delete",
|
|
1928
1781
|
...options,
|
|
@@ -1932,19 +1785,16 @@ var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
|
1932
1785
|
}
|
|
1933
1786
|
});
|
|
1934
1787
|
var deleteAgentVersionsById = (options) => (options.client ?? client).delete({
|
|
1935
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1936
1788
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1937
1789
|
url: "/agent_versions/{id}",
|
|
1938
1790
|
...options
|
|
1939
1791
|
});
|
|
1940
1792
|
var getAgentVersionsById = (options) => (options.client ?? client).get({
|
|
1941
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1942
1793
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1943
1794
|
url: "/agent_versions/{id}",
|
|
1944
1795
|
...options
|
|
1945
1796
|
});
|
|
1946
1797
|
var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
1947
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1948
1798
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1949
1799
|
url: "/ai/chunks/search",
|
|
1950
1800
|
...options,
|
|
@@ -1954,13 +1804,11 @@ var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
|
1954
1804
|
}
|
|
1955
1805
|
});
|
|
1956
1806
|
var getThreadsByIdMessages = (options) => (options.client ?? client).get({
|
|
1957
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1958
1807
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1959
1808
|
url: "/threads/{id}/messages",
|
|
1960
1809
|
...options
|
|
1961
1810
|
});
|
|
1962
1811
|
var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
1963
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1964
1812
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1965
1813
|
url: "/threads/{id}/messages",
|
|
1966
1814
|
...options,
|
|
@@ -1970,7 +1818,6 @@ var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
|
1970
1818
|
}
|
|
1971
1819
|
});
|
|
1972
1820
|
var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
1973
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1974
1821
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1975
1822
|
url: "/agents/clone_for_workspace",
|
|
1976
1823
|
...options,
|
|
@@ -1980,7 +1827,6 @@ var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
|
1980
1827
|
}
|
|
1981
1828
|
});
|
|
1982
1829
|
var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
1983
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1984
1830
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1985
1831
|
url: "/invitations/{id}/accept",
|
|
1986
1832
|
...options,
|
|
@@ -1990,25 +1836,21 @@ var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
|
1990
1836
|
}
|
|
1991
1837
|
});
|
|
1992
1838
|
var getCreditPackagesById = (options) => (options.client ?? client).get({
|
|
1993
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1994
1839
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1995
1840
|
url: "/credit-packages/{id}",
|
|
1996
1841
|
...options
|
|
1997
1842
|
});
|
|
1998
1843
|
var deleteUsersById = (options) => (options.client ?? client).delete({
|
|
1999
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2000
1844
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2001
1845
|
url: "/users/{id}",
|
|
2002
1846
|
...options
|
|
2003
1847
|
});
|
|
2004
1848
|
var getUsersById = (options) => (options.client ?? client).get({
|
|
2005
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2006
1849
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2007
1850
|
url: "/users/{id}",
|
|
2008
1851
|
...options
|
|
2009
1852
|
});
|
|
2010
1853
|
var getExtractionResultsById = (options) => (options.client ?? client).get({
|
|
2011
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2012
1854
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2013
1855
|
url: "/extraction/results/{id}",
|
|
2014
1856
|
...options
|
|
@@ -2019,7 +1861,6 @@ var getWebhookDeliveriesStats = (options) => (options.client ?? client).get({
|
|
|
2019
1861
|
...options
|
|
2020
1862
|
});
|
|
2021
1863
|
var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
2022
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2023
1864
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2024
1865
|
url: "/agents/{id}/validate",
|
|
2025
1866
|
...options,
|
|
@@ -2029,7 +1870,6 @@ var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
|
2029
1870
|
}
|
|
2030
1871
|
});
|
|
2031
1872
|
var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
2032
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2033
1873
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2034
1874
|
url: "/webhook_configs/{id}/test",
|
|
2035
1875
|
...options,
|
|
@@ -2039,13 +1879,11 @@ var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
|
2039
1879
|
}
|
|
2040
1880
|
});
|
|
2041
1881
|
var getUsersMe = (options) => (options.client ?? client).get({
|
|
2042
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2043
1882
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2044
1883
|
url: "/users/me",
|
|
2045
1884
|
...options
|
|
2046
1885
|
});
|
|
2047
1886
|
var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post({
|
|
2048
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2049
1887
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2050
1888
|
url: "/users/auth/register_with_oidc",
|
|
2051
1889
|
...options,
|
|
@@ -2069,7 +1907,6 @@ var postAgentsByIdSchemaVersions = (options) => (options.client ?? client).post(
|
|
|
2069
1907
|
}
|
|
2070
1908
|
});
|
|
2071
1909
|
var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
2072
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2073
1910
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2074
1911
|
url: "/tenants/{id}/credit",
|
|
2075
1912
|
...options,
|
|
@@ -2079,7 +1916,6 @@ var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
|
2079
1916
|
}
|
|
2080
1917
|
});
|
|
2081
1918
|
var getTransactionsById = (options) => (options.client ?? client).get({
|
|
2082
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2083
1919
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2084
1920
|
url: "/transactions/{id}",
|
|
2085
1921
|
...options
|
|
@@ -2090,19 +1926,11 @@ var getUsersMeTenants = (options) => (options.client ?? client).get({
|
|
|
2090
1926
|
...options
|
|
2091
1927
|
});
|
|
2092
1928
|
var getTenantMemberships = (options) => (options.client ?? client).get({
|
|
2093
|
-
querySerializer: {
|
|
2094
|
-
parameters: {
|
|
2095
|
-
filter: { object: { style: "form" } },
|
|
2096
|
-
page: { object: { style: "form" } },
|
|
2097
|
-
fields: { object: { style: "form" } }
|
|
2098
|
-
}
|
|
2099
|
-
},
|
|
2100
1929
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2101
1930
|
url: "/tenant-memberships",
|
|
2102
1931
|
...options
|
|
2103
1932
|
});
|
|
2104
1933
|
var postTenantMemberships = (options) => (options.client ?? client).post({
|
|
2105
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2106
1934
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2107
1935
|
url: "/tenant-memberships",
|
|
2108
1936
|
...options,
|
|
@@ -2121,7 +1949,6 @@ var postTrainingExamplesBulkDelete = (options) => (options.client ?? client).pos
|
|
|
2121
1949
|
}
|
|
2122
1950
|
});
|
|
2123
1951
|
var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client).patch({
|
|
2124
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2125
1952
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2126
1953
|
url: "/extraction/documents/{id}/include",
|
|
2127
1954
|
...options,
|
|
@@ -2131,7 +1958,6 @@ var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client
|
|
|
2131
1958
|
}
|
|
2132
1959
|
});
|
|
2133
1960
|
var getLlmAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
2134
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2135
1961
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2136
1962
|
url: "/llm_analytics/summary",
|
|
2137
1963
|
...options
|
|
@@ -2147,7 +1973,6 @@ var getUsersMeStats = (options) => (options.client ?? client).get({
|
|
|
2147
1973
|
...options
|
|
2148
1974
|
});
|
|
2149
1975
|
var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
2150
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2151
1976
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2152
1977
|
url: "/storage/sign_download",
|
|
2153
1978
|
...options,
|
|
@@ -2157,37 +1982,31 @@ var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
|
2157
1982
|
}
|
|
2158
1983
|
});
|
|
2159
1984
|
var deleteTrainingSessionsById = (options) => (options.client ?? client).delete({
|
|
2160
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2161
1985
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2162
1986
|
url: "/training_sessions/{id}",
|
|
2163
1987
|
...options
|
|
2164
1988
|
});
|
|
2165
1989
|
var getTrainingSessionsById = (options) => (options.client ?? client).get({
|
|
2166
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2167
1990
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2168
1991
|
url: "/training_sessions/{id}",
|
|
2169
1992
|
...options
|
|
2170
1993
|
});
|
|
2171
1994
|
var getUsersByEmail = (options) => (options.client ?? client).get({
|
|
2172
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2173
1995
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2174
1996
|
url: "/users/by-email",
|
|
2175
1997
|
...options
|
|
2176
1998
|
});
|
|
2177
1999
|
var deleteNotificationMethodsById = (options) => (options.client ?? client).delete({
|
|
2178
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2179
2000
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2180
2001
|
url: "/notification_methods/{id}",
|
|
2181
2002
|
...options
|
|
2182
2003
|
});
|
|
2183
2004
|
var getNotificationMethodsById = (options) => (options.client ?? client).get({
|
|
2184
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2185
2005
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2186
2006
|
url: "/notification_methods/{id}",
|
|
2187
2007
|
...options
|
|
2188
2008
|
});
|
|
2189
2009
|
var patchNotificationMethodsById = (options) => (options.client ?? client).patch({
|
|
2190
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2191
2010
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2192
2011
|
url: "/notification_methods/{id}",
|
|
2193
2012
|
...options,
|
|
@@ -2197,13 +2016,6 @@ var patchNotificationMethodsById = (options) => (options.client ?? client).patch
|
|
|
2197
2016
|
}
|
|
2198
2017
|
});
|
|
2199
2018
|
var getWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
2200
|
-
querySerializer: {
|
|
2201
|
-
parameters: {
|
|
2202
|
-
filter: { object: { style: "form" } },
|
|
2203
|
-
page: { object: { style: "form" } },
|
|
2204
|
-
fields: { object: { style: "form" } }
|
|
2205
|
-
}
|
|
2206
|
-
},
|
|
2207
2019
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2208
2020
|
url: "/webhook_deliveries",
|
|
2209
2021
|
...options
|
|
@@ -2218,29 +2030,16 @@ var postWebhookConfigsBulkDisable = (options) => (options.client ?? client).post
|
|
|
2218
2030
|
}
|
|
2219
2031
|
});
|
|
2220
2032
|
var getSearch = (options) => (options.client ?? client).get({
|
|
2221
|
-
querySerializer: {
|
|
2222
|
-
parameters: {
|
|
2223
|
-
filter: { object: { style: "form" } },
|
|
2224
|
-
fields: { object: { style: "form" } }
|
|
2225
|
-
}
|
|
2226
|
-
},
|
|
2227
2033
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2228
2034
|
url: "/search",
|
|
2229
2035
|
...options
|
|
2230
2036
|
});
|
|
2231
2037
|
var getInvitations = (options) => (options.client ?? client).get({
|
|
2232
|
-
querySerializer: {
|
|
2233
|
-
parameters: {
|
|
2234
|
-
filter: { object: { style: "form" } },
|
|
2235
|
-
fields: { object: { style: "form" } }
|
|
2236
|
-
}
|
|
2237
|
-
},
|
|
2238
2038
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2239
2039
|
url: "/invitations",
|
|
2240
2040
|
...options
|
|
2241
2041
|
});
|
|
2242
2042
|
var postInvitations = (options) => (options.client ?? client).post({
|
|
2243
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2244
2043
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2245
2044
|
url: "/invitations",
|
|
2246
2045
|
...options,
|
|
@@ -2250,7 +2049,6 @@ var postInvitations = (options) => (options.client ?? client).post({
|
|
|
2250
2049
|
}
|
|
2251
2050
|
});
|
|
2252
2051
|
var patchThreadsByIdArchive = (options) => (options.client ?? client).patch({
|
|
2253
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2254
2052
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2255
2053
|
url: "/threads/{id}/archive",
|
|
2256
2054
|
...options,
|
|
@@ -2260,23 +2058,11 @@ var patchThreadsByIdArchive = (options) => (options.client ?? client).patch({
|
|
|
2260
2058
|
}
|
|
2261
2059
|
});
|
|
2262
2060
|
var getApiKeysStats = (options) => (options.client ?? client).get({
|
|
2263
|
-
querySerializer: {
|
|
2264
|
-
parameters: {
|
|
2265
|
-
filter: { object: { style: "form" } },
|
|
2266
|
-
fields: { object: { style: "form" } }
|
|
2267
|
-
}
|
|
2268
|
-
},
|
|
2269
2061
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2270
2062
|
url: "/api_keys/stats",
|
|
2271
2063
|
...options
|
|
2272
2064
|
});
|
|
2273
2065
|
var getSearchSemantic = (options) => (options.client ?? client).get({
|
|
2274
|
-
querySerializer: {
|
|
2275
|
-
parameters: {
|
|
2276
|
-
filter: { object: { style: "form" } },
|
|
2277
|
-
fields: { object: { style: "form" } }
|
|
2278
|
-
}
|
|
2279
|
-
},
|
|
2280
2066
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2281
2067
|
url: "/search/semantic",
|
|
2282
2068
|
...options
|
|
@@ -2287,19 +2073,11 @@ var getThreadsStats = (options) => (options.client ?? client).get({
|
|
|
2287
2073
|
...options
|
|
2288
2074
|
});
|
|
2289
2075
|
var getMessages = (options) => (options.client ?? client).get({
|
|
2290
|
-
querySerializer: {
|
|
2291
|
-
parameters: {
|
|
2292
|
-
filter: { object: { style: "form" } },
|
|
2293
|
-
page: { object: { style: "form" } },
|
|
2294
|
-
fields: { object: { style: "form" } }
|
|
2295
|
-
}
|
|
2296
|
-
},
|
|
2297
2076
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2298
2077
|
url: "/messages",
|
|
2299
2078
|
...options
|
|
2300
2079
|
});
|
|
2301
2080
|
var postMessages = (options) => (options.client ?? client).post({
|
|
2302
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2303
2081
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2304
2082
|
url: "/messages",
|
|
2305
2083
|
...options,
|
|
@@ -2309,19 +2087,11 @@ var postMessages = (options) => (options.client ?? client).post({
|
|
|
2309
2087
|
}
|
|
2310
2088
|
});
|
|
2311
2089
|
var getNotificationPreferences = (options) => (options.client ?? client).get({
|
|
2312
|
-
querySerializer: {
|
|
2313
|
-
parameters: {
|
|
2314
|
-
filter: { object: { style: "form" } },
|
|
2315
|
-
page: { object: { style: "form" } },
|
|
2316
|
-
fields: { object: { style: "form" } }
|
|
2317
|
-
}
|
|
2318
|
-
},
|
|
2319
2090
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2320
2091
|
url: "/notification_preferences",
|
|
2321
2092
|
...options
|
|
2322
2093
|
});
|
|
2323
2094
|
var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
2324
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2325
2095
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2326
2096
|
url: "/notification_preferences",
|
|
2327
2097
|
...options,
|
|
@@ -2331,19 +2101,11 @@ var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
|
2331
2101
|
}
|
|
2332
2102
|
});
|
|
2333
2103
|
var getApplications = (options) => (options.client ?? client).get({
|
|
2334
|
-
querySerializer: {
|
|
2335
|
-
parameters: {
|
|
2336
|
-
filter: { object: { style: "form" } },
|
|
2337
|
-
page: { object: { style: "form" } },
|
|
2338
|
-
fields: { object: { style: "form" } }
|
|
2339
|
-
}
|
|
2340
|
-
},
|
|
2341
2104
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2342
2105
|
url: "/applications",
|
|
2343
2106
|
...options
|
|
2344
2107
|
});
|
|
2345
2108
|
var postApplications = (options) => (options.client ?? client).post({
|
|
2346
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2347
2109
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2348
2110
|
url: "/applications",
|
|
2349
2111
|
...options,
|
|
@@ -2353,7 +2115,6 @@ var postApplications = (options) => (options.client ?? client).post({
|
|
|
2353
2115
|
}
|
|
2354
2116
|
});
|
|
2355
2117
|
var patchWatcherClaimsByIdRetry = (options) => (options.client ?? client).patch({
|
|
2356
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2357
2118
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2358
2119
|
url: "/watcher/claims/{id}/retry",
|
|
2359
2120
|
...options,
|
|
@@ -2372,7 +2133,6 @@ var postAgentsPredict = (options) => (options.client ?? client).post({
|
|
|
2372
2133
|
}
|
|
2373
2134
|
});
|
|
2374
2135
|
var patchExtractionDocumentsByIdReprocess = (options) => (options.client ?? client).patch({
|
|
2375
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2376
2136
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2377
2137
|
url: "/extraction/documents/{id}/reprocess",
|
|
2378
2138
|
...options,
|
|
@@ -2382,19 +2142,16 @@ var patchExtractionDocumentsByIdReprocess = (options) => (options.client ?? clie
|
|
|
2382
2142
|
}
|
|
2383
2143
|
});
|
|
2384
2144
|
var deleteThreadsById = (options) => (options.client ?? client).delete({
|
|
2385
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2386
2145
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2387
2146
|
url: "/threads/{id}",
|
|
2388
2147
|
...options
|
|
2389
2148
|
});
|
|
2390
2149
|
var getThreadsById = (options) => (options.client ?? client).get({
|
|
2391
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2392
2150
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2393
2151
|
url: "/threads/{id}",
|
|
2394
2152
|
...options
|
|
2395
2153
|
});
|
|
2396
2154
|
var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
2397
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2398
2155
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2399
2156
|
url: "/threads/{id}",
|
|
2400
2157
|
...options,
|
|
@@ -2404,29 +2161,16 @@ var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
|
2404
2161
|
}
|
|
2405
2162
|
});
|
|
2406
2163
|
var getWorkspacesByIdMembers = (options) => (options.client ?? client).get({
|
|
2407
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2408
2164
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2409
2165
|
url: "/workspaces/{id}/members",
|
|
2410
2166
|
...options
|
|
2411
2167
|
});
|
|
2412
2168
|
var getBucketsAll = (options) => (options.client ?? client).get({
|
|
2413
|
-
querySerializer: {
|
|
2414
|
-
parameters: {
|
|
2415
|
-
filter: { object: { style: "form" } },
|
|
2416
|
-
fields: { object: { style: "form" } }
|
|
2417
|
-
}
|
|
2418
|
-
},
|
|
2419
2169
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2420
2170
|
url: "/buckets/all",
|
|
2421
2171
|
...options
|
|
2422
2172
|
});
|
|
2423
2173
|
var getWatcherClaims = (options) => (options.client ?? client).get({
|
|
2424
|
-
querySerializer: {
|
|
2425
|
-
parameters: {
|
|
2426
|
-
filter: { object: { style: "form" } },
|
|
2427
|
-
fields: { object: { style: "form" } }
|
|
2428
|
-
}
|
|
2429
|
-
},
|
|
2430
2174
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2431
2175
|
url: "/watcher/claims",
|
|
2432
2176
|
...options
|
|
@@ -2441,19 +2185,11 @@ var postWatcherClaims = (options) => (options.client ?? client).post({
|
|
|
2441
2185
|
}
|
|
2442
2186
|
});
|
|
2443
2187
|
var getLlmAnalytics = (options) => (options.client ?? client).get({
|
|
2444
|
-
querySerializer: {
|
|
2445
|
-
parameters: {
|
|
2446
|
-
filter: { object: { style: "form" } },
|
|
2447
|
-
page: { object: { style: "form" } },
|
|
2448
|
-
fields: { object: { style: "form" } }
|
|
2449
|
-
}
|
|
2450
|
-
},
|
|
2451
2188
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2452
2189
|
url: "/llm_analytics",
|
|
2453
2190
|
...options
|
|
2454
2191
|
});
|
|
2455
2192
|
var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
2456
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2457
2193
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2458
2194
|
url: "/llm_analytics",
|
|
2459
2195
|
...options,
|
|
@@ -2468,7 +2204,6 @@ var getStorageStatsTenantByTenantId = (options) => (options.client ?? client).ge
|
|
|
2468
2204
|
...options
|
|
2469
2205
|
});
|
|
2470
2206
|
var postAgentTestResults = (options) => (options.client ?? client).post({
|
|
2471
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2472
2207
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2473
2208
|
url: "/agent_test_results",
|
|
2474
2209
|
...options,
|
|
@@ -2478,7 +2213,6 @@ var postAgentTestResults = (options) => (options.client ?? client).post({
|
|
|
2478
2213
|
}
|
|
2479
2214
|
});
|
|
2480
2215
|
var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch({
|
|
2481
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2482
2216
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2483
2217
|
url: "/users/{id}/reset-password",
|
|
2484
2218
|
...options,
|
|
@@ -2497,7 +2231,6 @@ var postThreadsByIdExport = (options) => (options.client ?? client).post({
|
|
|
2497
2231
|
}
|
|
2498
2232
|
});
|
|
2499
2233
|
var postDocumentsPresignedUpload = (options) => (options.client ?? client).post({
|
|
2500
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2501
2234
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2502
2235
|
url: "/documents/presigned_upload",
|
|
2503
2236
|
...options,
|
|
@@ -2512,13 +2245,11 @@ var getWebhookConfigsByIdEvents = (options) => (options.client ?? client).get({
|
|
|
2512
2245
|
...options
|
|
2513
2246
|
});
|
|
2514
2247
|
var getMessagesSearch = (options) => (options.client ?? client).get({
|
|
2515
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2516
2248
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2517
2249
|
url: "/messages/search",
|
|
2518
2250
|
...options
|
|
2519
2251
|
});
|
|
2520
2252
|
var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
2521
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2522
2253
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2523
2254
|
url: "/agents/{id}/teach",
|
|
2524
2255
|
...options,
|
|
@@ -2528,19 +2259,11 @@ var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
|
2528
2259
|
}
|
|
2529
2260
|
});
|
|
2530
2261
|
var getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue = (options) => (options.client ?? client).get({
|
|
2531
|
-
querySerializer: {
|
|
2532
|
-
parameters: {
|
|
2533
|
-
filter: { object: { style: "form" } },
|
|
2534
|
-
page: { object: { style: "form" } },
|
|
2535
|
-
fields: { object: { style: "form" } }
|
|
2536
|
-
}
|
|
2537
|
-
},
|
|
2538
2262
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2539
2263
|
url: "/extraction/documents/workspace/{workspace_id}/review_queue",
|
|
2540
2264
|
...options
|
|
2541
2265
|
});
|
|
2542
2266
|
var patchInvitationsByIdDecline = (options) => (options.client ?? client).patch({
|
|
2543
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2544
2267
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2545
2268
|
url: "/invitations/{id}/decline",
|
|
2546
2269
|
...options,
|
|
@@ -2550,7 +2273,6 @@ var patchInvitationsByIdDecline = (options) => (options.client ?? client).patch(
|
|
|
2550
2273
|
}
|
|
2551
2274
|
});
|
|
2552
2275
|
var postExtractionDocumentsUpload = (options) => (options.client ?? client).post({
|
|
2553
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2554
2276
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2555
2277
|
url: "/extraction/documents/upload",
|
|
2556
2278
|
...options,
|
|
@@ -2560,7 +2282,6 @@ var postExtractionDocumentsUpload = (options) => (options.client ?? client).post
|
|
|
2560
2282
|
}
|
|
2561
2283
|
});
|
|
2562
2284
|
var patchExtractionResultsByIdCorrections = (options) => (options.client ?? client).patch({
|
|
2563
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2564
2285
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2565
2286
|
url: "/extraction/results/{id}/corrections",
|
|
2566
2287
|
...options,
|
|
@@ -2570,7 +2291,6 @@ var patchExtractionResultsByIdCorrections = (options) => (options.client ?? clie
|
|
|
2570
2291
|
}
|
|
2571
2292
|
});
|
|
2572
2293
|
var patchNotificationMethodsByIdVerify = (options) => (options.client ?? client).patch({
|
|
2573
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2574
2294
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2575
2295
|
url: "/notification_methods/{id}/verify",
|
|
2576
2296
|
...options,
|
|
@@ -2580,25 +2300,21 @@ var patchNotificationMethodsByIdVerify = (options) => (options.client ?? client)
|
|
|
2580
2300
|
}
|
|
2581
2301
|
});
|
|
2582
2302
|
var getExtractionResultsDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
2583
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2584
2303
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2585
2304
|
url: "/extraction/results/document/{document_id}",
|
|
2586
2305
|
...options
|
|
2587
2306
|
});
|
|
2588
2307
|
var deleteWorkspacesById = (options) => (options.client ?? client).delete({
|
|
2589
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2590
2308
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2591
2309
|
url: "/workspaces/{id}",
|
|
2592
2310
|
...options
|
|
2593
2311
|
});
|
|
2594
2312
|
var getWorkspacesById = (options) => (options.client ?? client).get({
|
|
2595
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2596
2313
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2597
2314
|
url: "/workspaces/{id}",
|
|
2598
2315
|
...options
|
|
2599
2316
|
});
|
|
2600
2317
|
var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
2601
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2602
2318
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2603
2319
|
url: "/workspaces/{id}",
|
|
2604
2320
|
...options,
|
|
@@ -2608,19 +2324,11 @@ var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
|
2608
2324
|
}
|
|
2609
2325
|
});
|
|
2610
2326
|
var getTenants = (options) => (options.client ?? client).get({
|
|
2611
|
-
querySerializer: {
|
|
2612
|
-
parameters: {
|
|
2613
|
-
filter: { object: { style: "form" } },
|
|
2614
|
-
page: { object: { style: "form" } },
|
|
2615
|
-
fields: { object: { style: "form" } }
|
|
2616
|
-
}
|
|
2617
|
-
},
|
|
2618
2327
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2619
2328
|
url: "/tenants",
|
|
2620
2329
|
...options
|
|
2621
2330
|
});
|
|
2622
2331
|
var postTenants = (options) => (options.client ?? client).post({
|
|
2623
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2624
2332
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2625
2333
|
url: "/tenants",
|
|
2626
2334
|
...options,
|
|
@@ -2630,7 +2338,6 @@ var postTenants = (options) => (options.client ?? client).post({
|
|
|
2630
2338
|
}
|
|
2631
2339
|
});
|
|
2632
2340
|
var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post({
|
|
2633
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2634
2341
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2635
2342
|
url: "/tenants/{id}/remove-storage",
|
|
2636
2343
|
...options,
|
|
@@ -2640,13 +2347,11 @@ var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post(
|
|
|
2640
2347
|
}
|
|
2641
2348
|
});
|
|
2642
2349
|
var getWalletInvoices = (options) => (options.client ?? client).get({
|
|
2643
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2644
2350
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2645
2351
|
url: "/wallet/invoices",
|
|
2646
2352
|
...options
|
|
2647
2353
|
});
|
|
2648
2354
|
var patchWorkspacesByIdStorageSettings = (options) => (options.client ?? client).patch({
|
|
2649
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2650
2355
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2651
2356
|
url: "/workspaces/{id}/storage-settings",
|
|
2652
2357
|
...options,
|
|
@@ -2656,49 +2361,31 @@ var patchWorkspacesByIdStorageSettings = (options) => (options.client ?? client)
|
|
|
2656
2361
|
}
|
|
2657
2362
|
});
|
|
2658
2363
|
var getNotificationLogsById = (options) => (options.client ?? client).get({
|
|
2659
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2660
2364
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2661
2365
|
url: "/notification_logs/{id}",
|
|
2662
2366
|
...options
|
|
2663
2367
|
});
|
|
2664
2368
|
var getExtractionDocumentsByIdView = (options) => (options.client ?? client).get({
|
|
2665
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2666
2369
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2667
2370
|
url: "/extraction/documents/{id}/view",
|
|
2668
2371
|
...options
|
|
2669
2372
|
});
|
|
2670
2373
|
var getWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
2671
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2672
2374
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2673
2375
|
url: "/webhook_deliveries/{id}",
|
|
2674
2376
|
...options
|
|
2675
2377
|
});
|
|
2676
2378
|
var getAuditLogs = (options) => (options.client ?? client).get({
|
|
2677
|
-
querySerializer: {
|
|
2678
|
-
parameters: {
|
|
2679
|
-
filter: { object: { style: "form" } },
|
|
2680
|
-
page: { object: { style: "form" } },
|
|
2681
|
-
fields: { object: { style: "form" } }
|
|
2682
|
-
}
|
|
2683
|
-
},
|
|
2684
2379
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2685
2380
|
url: "/audit-logs",
|
|
2686
2381
|
...options
|
|
2687
2382
|
});
|
|
2688
2383
|
var getAiGraphEdges = (options) => (options.client ?? client).get({
|
|
2689
|
-
querySerializer: {
|
|
2690
|
-
parameters: {
|
|
2691
|
-
filter: { object: { style: "form" } },
|
|
2692
|
-
page: { object: { style: "form" } },
|
|
2693
|
-
fields: { object: { style: "form" } }
|
|
2694
|
-
}
|
|
2695
|
-
},
|
|
2696
2384
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2697
2385
|
url: "/ai/graph/edges",
|
|
2698
2386
|
...options
|
|
2699
2387
|
});
|
|
2700
2388
|
var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
2701
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2702
2389
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2703
2390
|
url: "/ai/graph/edges",
|
|
2704
2391
|
...options,
|
|
@@ -2708,19 +2395,11 @@ var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
|
2708
2395
|
}
|
|
2709
2396
|
});
|
|
2710
2397
|
var getTrainingExamples = (options) => (options.client ?? client).get({
|
|
2711
|
-
querySerializer: {
|
|
2712
|
-
parameters: {
|
|
2713
|
-
filter: { object: { style: "form" } },
|
|
2714
|
-
page: { object: { style: "form" } },
|
|
2715
|
-
fields: { object: { style: "form" } }
|
|
2716
|
-
}
|
|
2717
|
-
},
|
|
2718
2398
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2719
2399
|
url: "/training_examples",
|
|
2720
2400
|
...options
|
|
2721
2401
|
});
|
|
2722
2402
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
2723
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2724
2403
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2725
2404
|
url: "/training_examples",
|
|
2726
2405
|
...options,
|
|
@@ -2730,7 +2409,6 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
2730
2409
|
}
|
|
2731
2410
|
});
|
|
2732
2411
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
2733
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2734
2412
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2735
2413
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
2736
2414
|
...options
|
|
@@ -2741,7 +2419,6 @@ var getAgentsByIdTrainingStats = (options) => (options.client ?? client).get({
|
|
|
2741
2419
|
...options
|
|
2742
2420
|
});
|
|
2743
2421
|
var postObjectsCopy = (options) => (options.client ?? client).post({
|
|
2744
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2745
2422
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2746
2423
|
url: "/objects/copy",
|
|
2747
2424
|
...options,
|
|
@@ -2751,18 +2428,11 @@ var postObjectsCopy = (options) => (options.client ?? client).post({
|
|
|
2751
2428
|
}
|
|
2752
2429
|
});
|
|
2753
2430
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
2754
|
-
querySerializer: {
|
|
2755
|
-
parameters: {
|
|
2756
|
-
filter: { object: { style: "form" } },
|
|
2757
|
-
fields: { object: { style: "form" } }
|
|
2758
|
-
}
|
|
2759
|
-
},
|
|
2760
2431
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2761
2432
|
url: "/buckets",
|
|
2762
2433
|
...options
|
|
2763
2434
|
});
|
|
2764
2435
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
2765
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2766
2436
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2767
2437
|
url: "/buckets",
|
|
2768
2438
|
...options,
|
|
@@ -2772,13 +2442,11 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
2772
2442
|
}
|
|
2773
2443
|
});
|
|
2774
2444
|
var getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping = (options) => (options.client ?? client).get({
|
|
2775
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2776
2445
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2777
2446
|
url: "/workspaces/{workspace_id}/extraction/{document_id}/mapping",
|
|
2778
2447
|
...options
|
|
2779
2448
|
});
|
|
2780
2449
|
var postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping = (options) => (options.client ?? client).post({
|
|
2781
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2782
2450
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2783
2451
|
url: "/workspaces/{workspace_id}/extraction/{document_id}/mapping",
|
|
2784
2452
|
...options,
|
|
@@ -2798,19 +2466,16 @@ var getNotificationLogsStats = (options) => (options.client ?? client).get({
|
|
|
2798
2466
|
...options
|
|
2799
2467
|
});
|
|
2800
2468
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
2801
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2802
2469
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2803
2470
|
url: "/plans/{id}",
|
|
2804
2471
|
...options
|
|
2805
2472
|
});
|
|
2806
2473
|
var getTenantsByTenantIdStats = (options) => (options.client ?? client).get({
|
|
2807
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2808
2474
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2809
2475
|
url: "/tenants/{tenant_id}/stats",
|
|
2810
2476
|
...options
|
|
2811
2477
|
});
|
|
2812
2478
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
2813
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2814
2479
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2815
2480
|
url: "/wallet/addons",
|
|
2816
2481
|
...options,
|
|
@@ -2820,7 +2485,6 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
2820
2485
|
}
|
|
2821
2486
|
});
|
|
2822
2487
|
var postTenantsByIdSchedulePurge = (options) => (options.client ?? client).post({
|
|
2823
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2824
2488
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2825
2489
|
url: "/tenants/{id}/schedule-purge",
|
|
2826
2490
|
...options,
|
|
@@ -2830,13 +2494,11 @@ var postTenantsByIdSchedulePurge = (options) => (options.client ?? client).post(
|
|
|
2830
2494
|
}
|
|
2831
2495
|
});
|
|
2832
2496
|
var getMessagesSemanticSearch = (options) => (options.client ?? client).get({
|
|
2833
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2834
2497
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2835
2498
|
url: "/messages/semantic-search",
|
|
2836
2499
|
...options
|
|
2837
2500
|
});
|
|
2838
2501
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
2839
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2840
2502
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2841
2503
|
url: "/users/auth/magic_link/login",
|
|
2842
2504
|
...options,
|
|
@@ -2846,19 +2508,11 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
2846
2508
|
}
|
|
2847
2509
|
});
|
|
2848
2510
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
2849
|
-
querySerializer: {
|
|
2850
|
-
parameters: {
|
|
2851
|
-
filter: { object: { style: "form" } },
|
|
2852
|
-
page: { object: { style: "form" } },
|
|
2853
|
-
fields: { object: { style: "form" } }
|
|
2854
|
-
}
|
|
2855
|
-
},
|
|
2856
2511
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2857
2512
|
url: "/api_keys",
|
|
2858
2513
|
...options
|
|
2859
2514
|
});
|
|
2860
2515
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
2861
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2862
2516
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2863
2517
|
url: "/api_keys",
|
|
2864
2518
|
...options,
|
|
@@ -2868,7 +2522,6 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
2868
2522
|
}
|
|
2869
2523
|
});
|
|
2870
2524
|
var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
2871
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2872
2525
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2873
2526
|
url: "/users/{id}/admin",
|
|
2874
2527
|
...options,
|
|
@@ -2887,19 +2540,16 @@ var postObjectsMove = (options) => (options.client ?? client).post({
|
|
|
2887
2540
|
}
|
|
2888
2541
|
});
|
|
2889
2542
|
var deleteAgentsById = (options) => (options.client ?? client).delete({
|
|
2890
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2891
2543
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2892
2544
|
url: "/agents/{id}",
|
|
2893
2545
|
...options
|
|
2894
2546
|
});
|
|
2895
2547
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
2896
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2897
2548
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2898
2549
|
url: "/agents/{id}",
|
|
2899
2550
|
...options
|
|
2900
2551
|
});
|
|
2901
2552
|
var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
2902
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2903
2553
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2904
2554
|
url: "/agents/{id}",
|
|
2905
2555
|
...options,
|
|
@@ -2909,7 +2559,6 @@ var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
|
2909
2559
|
}
|
|
2910
2560
|
});
|
|
2911
2561
|
var patchThreadsByIdUnarchive = (options) => (options.client ?? client).patch({
|
|
2912
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2913
2562
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2914
2563
|
url: "/threads/{id}/unarchive",
|
|
2915
2564
|
...options,
|
|
@@ -2918,20 +2567,22 @@ var patchThreadsByIdUnarchive = (options) => (options.client ?? client).patch({
|
|
|
2918
2567
|
...options.headers
|
|
2919
2568
|
}
|
|
2920
2569
|
});
|
|
2570
|
+
var getAgentsByIdUsage = (options) => (options.client ?? client).get({
|
|
2571
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
2572
|
+
url: "/agents/{id}/usage",
|
|
2573
|
+
...options
|
|
2574
|
+
});
|
|
2921
2575
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
2922
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2923
2576
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2924
2577
|
url: "/api_keys/{id}",
|
|
2925
2578
|
...options
|
|
2926
2579
|
});
|
|
2927
2580
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
2928
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2929
2581
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2930
2582
|
url: "/api_keys/{id}",
|
|
2931
2583
|
...options
|
|
2932
2584
|
});
|
|
2933
2585
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
2934
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2935
2586
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2936
2587
|
url: "/api_keys/{id}",
|
|
2937
2588
|
...options,
|
|
@@ -2950,7 +2601,6 @@ var postTrainingExamplesSearch = (options) => (options.client ?? client).post({
|
|
|
2950
2601
|
}
|
|
2951
2602
|
});
|
|
2952
2603
|
var patchWatcherClaimsByIdRelease = (options) => (options.client ?? client).patch({
|
|
2953
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2954
2604
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2955
2605
|
url: "/watcher/claims/{id}/release",
|
|
2956
2606
|
...options,
|
|
@@ -2960,19 +2610,11 @@ var patchWatcherClaimsByIdRelease = (options) => (options.client ?? client).patc
|
|
|
2960
2610
|
}
|
|
2961
2611
|
});
|
|
2962
2612
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
2963
|
-
querySerializer: {
|
|
2964
|
-
parameters: {
|
|
2965
|
-
filter: { object: { style: "form" } },
|
|
2966
|
-
page: { object: { style: "form" } },
|
|
2967
|
-
fields: { object: { style: "form" } }
|
|
2968
|
-
}
|
|
2969
|
-
},
|
|
2970
2613
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2971
2614
|
url: "/ai/conversations",
|
|
2972
2615
|
...options
|
|
2973
2616
|
});
|
|
2974
2617
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
2975
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2976
2618
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2977
2619
|
url: "/ai/conversations",
|
|
2978
2620
|
...options,
|
|
@@ -2982,7 +2624,6 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
2982
2624
|
}
|
|
2983
2625
|
});
|
|
2984
2626
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
2985
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2986
2627
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2987
2628
|
url: "/ai/search",
|
|
2988
2629
|
...options,
|
|
@@ -2992,24 +2633,16 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
2992
2633
|
}
|
|
2993
2634
|
});
|
|
2994
2635
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
2995
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2996
2636
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2997
2637
|
url: "/ai/graph/nodes/{id}",
|
|
2998
2638
|
...options
|
|
2999
2639
|
});
|
|
3000
2640
|
var getWorkspacesShared = (options) => (options.client ?? client).get({
|
|
3001
|
-
querySerializer: {
|
|
3002
|
-
parameters: {
|
|
3003
|
-
filter: { object: { style: "form" } },
|
|
3004
|
-
fields: { object: { style: "form" } }
|
|
3005
|
-
}
|
|
3006
|
-
},
|
|
3007
2641
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3008
2642
|
url: "/workspaces/shared",
|
|
3009
2643
|
...options
|
|
3010
2644
|
});
|
|
3011
2645
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
3012
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3013
2646
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3014
2647
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
3015
2648
|
...options,
|
|
@@ -3019,19 +2652,16 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
3019
2652
|
}
|
|
3020
2653
|
});
|
|
3021
2654
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
3022
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3023
2655
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3024
2656
|
url: "/applications/{id}",
|
|
3025
2657
|
...options
|
|
3026
2658
|
});
|
|
3027
2659
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
3028
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3029
2660
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3030
2661
|
url: "/applications/{id}",
|
|
3031
2662
|
...options
|
|
3032
2663
|
});
|
|
3033
2664
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
3034
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3035
2665
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3036
2666
|
url: "/applications/{id}",
|
|
3037
2667
|
...options,
|
|
@@ -3041,18 +2671,11 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
3041
2671
|
}
|
|
3042
2672
|
});
|
|
3043
2673
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
3044
|
-
querySerializer: {
|
|
3045
|
-
parameters: {
|
|
3046
|
-
filter: { object: { style: "form" } },
|
|
3047
|
-
fields: { object: { style: "form" } }
|
|
3048
|
-
}
|
|
3049
|
-
},
|
|
3050
2674
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3051
2675
|
url: "/search/health",
|
|
3052
2676
|
...options
|
|
3053
2677
|
});
|
|
3054
2678
|
var patchExtractionDocumentsByIdVerification = (options) => (options.client ?? client).patch({
|
|
3055
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3056
2679
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3057
2680
|
url: "/extraction/documents/{id}/verification",
|
|
3058
2681
|
...options,
|
|
@@ -3062,7 +2685,6 @@ var patchExtractionDocumentsByIdVerification = (options) => (options.client ?? c
|
|
|
3062
2685
|
}
|
|
3063
2686
|
});
|
|
3064
2687
|
var postThreadsByIdFork = (options) => (options.client ?? client).post({
|
|
3065
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3066
2688
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3067
2689
|
url: "/threads/{id}/fork",
|
|
3068
2690
|
...options,
|
|
@@ -3072,30 +2694,16 @@ var postThreadsByIdFork = (options) => (options.client ?? client).post({
|
|
|
3072
2694
|
}
|
|
3073
2695
|
});
|
|
3074
2696
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
3075
|
-
querySerializer: {
|
|
3076
|
-
parameters: {
|
|
3077
|
-
filter: { object: { style: "form" } },
|
|
3078
|
-
fields: { object: { style: "form" } }
|
|
3079
|
-
}
|
|
3080
|
-
},
|
|
3081
2697
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3082
2698
|
url: "/transactions",
|
|
3083
2699
|
...options
|
|
3084
2700
|
});
|
|
3085
2701
|
var getUserProfiles = (options) => (options.client ?? client).get({
|
|
3086
|
-
querySerializer: {
|
|
3087
|
-
parameters: {
|
|
3088
|
-
filter: { object: { style: "form" } },
|
|
3089
|
-
page: { object: { style: "form" } },
|
|
3090
|
-
fields: { object: { style: "form" } }
|
|
3091
|
-
}
|
|
3092
|
-
},
|
|
3093
2702
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3094
2703
|
url: "/user_profiles",
|
|
3095
2704
|
...options
|
|
3096
2705
|
});
|
|
3097
2706
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
3098
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3099
2707
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3100
2708
|
url: "/user_profiles",
|
|
3101
2709
|
...options,
|
|
@@ -3105,7 +2713,6 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
3105
2713
|
}
|
|
3106
2714
|
});
|
|
3107
2715
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
3108
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3109
2716
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3110
2717
|
url: "/users/{id}/confirm-email",
|
|
3111
2718
|
...options,
|
|
@@ -3115,13 +2722,11 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
3115
2722
|
}
|
|
3116
2723
|
});
|
|
3117
2724
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
3118
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3119
2725
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3120
2726
|
url: "/threads/search",
|
|
3121
2727
|
...options
|
|
3122
2728
|
});
|
|
3123
2729
|
var postSearchSavedByIdRun = (options) => (options.client ?? client).post({
|
|
3124
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3125
2730
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3126
2731
|
url: "/search/saved/{id}/run",
|
|
3127
2732
|
...options,
|
|
@@ -3131,7 +2736,6 @@ var postSearchSavedByIdRun = (options) => (options.client ?? client).post({
|
|
|
3131
2736
|
}
|
|
3132
2737
|
});
|
|
3133
2738
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
3134
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3135
2739
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3136
2740
|
url: "/wallet/plan",
|
|
3137
2741
|
...options,
|
|
@@ -3141,13 +2745,11 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
3141
2745
|
}
|
|
3142
2746
|
});
|
|
3143
2747
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
3144
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3145
2748
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3146
2749
|
url: "/plans/slug/{slug}",
|
|
3147
2750
|
...options
|
|
3148
2751
|
});
|
|
3149
2752
|
var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client).patch({
|
|
3150
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3151
2753
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3152
2754
|
url: "/extraction/documents/{id}/restore",
|
|
3153
2755
|
...options,
|
|
@@ -3157,24 +2759,16 @@ var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client
|
|
|
3157
2759
|
}
|
|
3158
2760
|
});
|
|
3159
2761
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
3160
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3161
2762
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3162
2763
|
url: "/llm_analytics/{id}",
|
|
3163
2764
|
...options
|
|
3164
2765
|
});
|
|
3165
2766
|
var getPermissions = (options) => (options.client ?? client).get({
|
|
3166
|
-
querySerializer: {
|
|
3167
|
-
parameters: {
|
|
3168
|
-
filter: { object: { style: "form" } },
|
|
3169
|
-
fields: { object: { style: "form" } }
|
|
3170
|
-
}
|
|
3171
|
-
},
|
|
3172
2767
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3173
2768
|
url: "/permissions",
|
|
3174
2769
|
...options
|
|
3175
2770
|
});
|
|
3176
2771
|
var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? client).patch({
|
|
3177
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3178
2772
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3179
2773
|
url: "/extraction/documents/{id}/mark_trained",
|
|
3180
2774
|
...options,
|
|
@@ -3184,7 +2778,6 @@ var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? cl
|
|
|
3184
2778
|
}
|
|
3185
2779
|
});
|
|
3186
2780
|
var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).patch({
|
|
3187
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3188
2781
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3189
2782
|
url: "/applications/{id}/grant-credits",
|
|
3190
2783
|
...options,
|
|
@@ -3194,29 +2787,16 @@ var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).
|
|
|
3194
2787
|
}
|
|
3195
2788
|
});
|
|
3196
2789
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
3197
|
-
querySerializer: {
|
|
3198
|
-
parameters: {
|
|
3199
|
-
filter: { object: { style: "form" } },
|
|
3200
|
-
fields: { object: { style: "form" } }
|
|
3201
|
-
}
|
|
3202
|
-
},
|
|
3203
2790
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3204
2791
|
url: "/search/status",
|
|
3205
2792
|
...options
|
|
3206
2793
|
});
|
|
3207
2794
|
var getTenantsByTenantIdWorkspaceStats = (options) => (options.client ?? client).get({
|
|
3208
|
-
querySerializer: {
|
|
3209
|
-
parameters: {
|
|
3210
|
-
filter: { object: { style: "form" } },
|
|
3211
|
-
fields: { object: { style: "form" } }
|
|
3212
|
-
}
|
|
3213
|
-
},
|
|
3214
2795
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3215
2796
|
url: "/tenants/{tenant_id}/workspace_stats",
|
|
3216
2797
|
...options
|
|
3217
2798
|
});
|
|
3218
2799
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
3219
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3220
2800
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3221
2801
|
url: "/api_keys/{id}/allocate",
|
|
3222
2802
|
...options,
|
|
@@ -3226,13 +2806,11 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
3226
2806
|
}
|
|
3227
2807
|
});
|
|
3228
2808
|
var getWatcherClaimsById = (options) => (options.client ?? client).get({
|
|
3229
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3230
2809
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3231
2810
|
url: "/watcher/claims/{id}",
|
|
3232
2811
|
...options
|
|
3233
2812
|
});
|
|
3234
2813
|
var patchWatcherClaimsById = (options) => (options.client ?? client).patch({
|
|
3235
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3236
2814
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3237
2815
|
url: "/watcher/claims/{id}",
|
|
3238
2816
|
...options,
|
|
@@ -3242,7 +2820,6 @@ var patchWatcherClaimsById = (options) => (options.client ?? client).patch({
|
|
|
3242
2820
|
}
|
|
3243
2821
|
});
|
|
3244
2822
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
3245
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3246
2823
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3247
2824
|
url: "/users/auth/login",
|
|
3248
2825
|
...options,
|
|
@@ -3252,19 +2829,11 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
3252
2829
|
}
|
|
3253
2830
|
});
|
|
3254
2831
|
var getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus = (options) => (options.client ?? client).get({
|
|
3255
|
-
querySerializer: {
|
|
3256
|
-
parameters: {
|
|
3257
|
-
filter: { object: { style: "form" } },
|
|
3258
|
-
page: { object: { style: "form" } },
|
|
3259
|
-
fields: { object: { style: "form" } }
|
|
3260
|
-
}
|
|
3261
|
-
},
|
|
3262
2832
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3263
2833
|
url: "/extraction/documents/workspace/{workspace_id}/by_status/{status}",
|
|
3264
2834
|
...options
|
|
3265
2835
|
});
|
|
3266
2836
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
3267
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3268
2837
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3269
2838
|
url: "/ai/embed",
|
|
3270
2839
|
...options,
|
|
@@ -3283,18 +2852,11 @@ var postWebhookConfigsByIdReplay = (options) => (options.client ?? client).post(
|
|
|
3283
2852
|
}
|
|
3284
2853
|
});
|
|
3285
2854
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
3286
|
-
querySerializer: {
|
|
3287
|
-
parameters: {
|
|
3288
|
-
filter: { object: { style: "form" } },
|
|
3289
|
-
fields: { object: { style: "form" } }
|
|
3290
|
-
}
|
|
3291
|
-
},
|
|
3292
2855
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3293
2856
|
url: "/workspaces/mine",
|
|
3294
2857
|
...options
|
|
3295
2858
|
});
|
|
3296
2859
|
var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
3297
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3298
2860
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3299
2861
|
url: "/tenants/isv",
|
|
3300
2862
|
...options,
|
|
@@ -3304,7 +2866,6 @@ var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
|
3304
2866
|
}
|
|
3305
2867
|
});
|
|
3306
2868
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
3307
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3308
2869
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3309
2870
|
url: "/search/reindex",
|
|
3310
2871
|
...options,
|
|
@@ -3314,7 +2875,6 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
3314
2875
|
}
|
|
3315
2876
|
});
|
|
3316
2877
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
3317
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3318
2878
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3319
2879
|
url: "/extraction/results/{id}/regenerate",
|
|
3320
2880
|
...options,
|
|
@@ -3324,7 +2884,6 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
3324
2884
|
}
|
|
3325
2885
|
});
|
|
3326
2886
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
3327
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3328
2887
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3329
2888
|
url: "/users/auth/confirm",
|
|
3330
2889
|
...options,
|
|
@@ -3334,18 +2893,11 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
3334
2893
|
}
|
|
3335
2894
|
});
|
|
3336
2895
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
3337
|
-
querySerializer: {
|
|
3338
|
-
parameters: {
|
|
3339
|
-
filter: { object: { style: "form" } },
|
|
3340
|
-
fields: { object: { style: "form" } }
|
|
3341
|
-
}
|
|
3342
|
-
},
|
|
3343
2896
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3344
2897
|
url: "/storage/stats",
|
|
3345
2898
|
...options
|
|
3346
2899
|
});
|
|
3347
2900
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
3348
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3349
2901
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3350
2902
|
url: "/tenants/{id}/buy-storage",
|
|
3351
2903
|
...options,
|
|
@@ -3355,19 +2907,11 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
3355
2907
|
}
|
|
3356
2908
|
});
|
|
3357
2909
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
3358
|
-
querySerializer: {
|
|
3359
|
-
parameters: {
|
|
3360
|
-
filter: { object: { style: "form" } },
|
|
3361
|
-
page: { object: { style: "form" } },
|
|
3362
|
-
fields: { object: { style: "form" } }
|
|
3363
|
-
}
|
|
3364
|
-
},
|
|
3365
2910
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3366
2911
|
url: "/workspace-memberships",
|
|
3367
2912
|
...options
|
|
3368
2913
|
});
|
|
3369
2914
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
3370
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3371
2915
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3372
2916
|
url: "/workspace-memberships",
|
|
3373
2917
|
...options,
|
|
@@ -3377,7 +2921,6 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
3377
2921
|
}
|
|
3378
2922
|
});
|
|
3379
2923
|
var patchApiKeysByIdResetPeriod = (options) => (options.client ?? client).patch({
|
|
3380
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3381
2924
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3382
2925
|
url: "/api_keys/{id}/reset-period",
|
|
3383
2926
|
...options,
|
|
@@ -3387,25 +2930,16 @@ var patchApiKeysByIdResetPeriod = (options) => (options.client ?? client).patch(
|
|
|
3387
2930
|
}
|
|
3388
2931
|
});
|
|
3389
2932
|
var getTenantsByTenantIdDocumentStats = (options) => (options.client ?? client).get({
|
|
3390
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3391
2933
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3392
2934
|
url: "/tenants/{tenant_id}/document_stats",
|
|
3393
2935
|
...options
|
|
3394
2936
|
});
|
|
3395
2937
|
var getSearchAnalytics = (options) => (options.client ?? client).get({
|
|
3396
|
-
querySerializer: {
|
|
3397
|
-
parameters: {
|
|
3398
|
-
filter: { object: { style: "form" } },
|
|
3399
|
-
page: { object: { style: "form" } },
|
|
3400
|
-
fields: { object: { style: "form" } }
|
|
3401
|
-
}
|
|
3402
|
-
},
|
|
3403
2938
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3404
2939
|
url: "/search/analytics",
|
|
3405
2940
|
...options
|
|
3406
2941
|
});
|
|
3407
2942
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
3408
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3409
2943
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3410
2944
|
url: "/users/auth/magic_link/request",
|
|
3411
2945
|
...options,
|
|
@@ -3415,18 +2949,11 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
3415
2949
|
}
|
|
3416
2950
|
});
|
|
3417
2951
|
var getPermissionsPresetsById = (options) => (options.client ?? client).get({
|
|
3418
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3419
2952
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3420
2953
|
url: "/permissions/presets/{id}",
|
|
3421
2954
|
...options
|
|
3422
2955
|
});
|
|
3423
2956
|
var getPermissionsPresets = (options) => (options.client ?? client).get({
|
|
3424
|
-
querySerializer: {
|
|
3425
|
-
parameters: {
|
|
3426
|
-
filter: { object: { style: "form" } },
|
|
3427
|
-
fields: { object: { style: "form" } }
|
|
3428
|
-
}
|
|
3429
|
-
},
|
|
3430
2957
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3431
2958
|
url: "/permissions/presets",
|
|
3432
2959
|
...options
|
|
@@ -3441,7 +2968,6 @@ var postWebhookDeliveriesBulkRetry = (options) => (options.client ?? client).pos
|
|
|
3441
2968
|
}
|
|
3442
2969
|
});
|
|
3443
2970
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
3444
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3445
2971
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3446
2972
|
url: "/users/auth/register",
|
|
3447
2973
|
...options,
|
|
@@ -3465,19 +2991,16 @@ var postAgentsByIdSchemaVersionsByVersionIdActivate = (options) => (options.clie
|
|
|
3465
2991
|
...options
|
|
3466
2992
|
});
|
|
3467
2993
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
3468
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3469
2994
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3470
2995
|
url: "/buckets/{id}",
|
|
3471
2996
|
...options
|
|
3472
2997
|
});
|
|
3473
2998
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
3474
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3475
2999
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3476
3000
|
url: "/buckets/{id}",
|
|
3477
3001
|
...options
|
|
3478
3002
|
});
|
|
3479
3003
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
3480
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3481
3004
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3482
3005
|
url: "/buckets/{id}",
|
|
3483
3006
|
...options,
|
|
@@ -3487,35 +3010,21 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
3487
3010
|
}
|
|
3488
3011
|
});
|
|
3489
3012
|
var getPermissionsById = (options) => (options.client ?? client).get({
|
|
3490
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3491
3013
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3492
3014
|
url: "/permissions/{id}",
|
|
3493
3015
|
...options
|
|
3494
3016
|
});
|
|
3495
3017
|
var getAiGraphNodesBySourceNodeIdRelated = (options) => (options.client ?? client).get({
|
|
3496
|
-
querySerializer: {
|
|
3497
|
-
parameters: {
|
|
3498
|
-
filter: { object: { style: "form" } },
|
|
3499
|
-
fields: { object: { style: "form" } }
|
|
3500
|
-
}
|
|
3501
|
-
},
|
|
3502
3018
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3503
3019
|
url: "/ai/graph/nodes/{source_node_id}/related",
|
|
3504
3020
|
...options
|
|
3505
3021
|
});
|
|
3506
3022
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
3507
|
-
querySerializer: {
|
|
3508
|
-
parameters: {
|
|
3509
|
-
filter: { object: { style: "form" } },
|
|
3510
|
-
fields: { object: { style: "form" } }
|
|
3511
|
-
}
|
|
3512
|
-
},
|
|
3513
3023
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3514
3024
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
3515
3025
|
...options
|
|
3516
3026
|
});
|
|
3517
3027
|
var patchApplicationsByIdAllocateCredits = (options) => (options.client ?? client).patch({
|
|
3518
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3519
3028
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3520
3029
|
url: "/applications/{id}/allocate-credits",
|
|
3521
3030
|
...options,
|
|
@@ -3525,30 +3034,16 @@ var patchApplicationsByIdAllocateCredits = (options) => (options.client ?? clien
|
|
|
3525
3034
|
}
|
|
3526
3035
|
});
|
|
3527
3036
|
var getExtractionResultsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
3528
|
-
querySerializer: {
|
|
3529
|
-
parameters: {
|
|
3530
|
-
filter: { object: { style: "form" } },
|
|
3531
|
-
page: { object: { style: "form" } },
|
|
3532
|
-
fields: { object: { style: "form" } }
|
|
3533
|
-
}
|
|
3534
|
-
},
|
|
3535
3037
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3536
3038
|
url: "/extraction/results/workspace/{workspace_id}",
|
|
3537
3039
|
...options
|
|
3538
3040
|
});
|
|
3539
3041
|
var getSearchAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
3540
|
-
querySerializer: {
|
|
3541
|
-
parameters: {
|
|
3542
|
-
filter: { object: { style: "form" } },
|
|
3543
|
-
fields: { object: { style: "form" } }
|
|
3544
|
-
}
|
|
3545
|
-
},
|
|
3546
3042
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3547
3043
|
url: "/search/analytics/summary",
|
|
3548
3044
|
...options
|
|
3549
3045
|
});
|
|
3550
3046
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
3551
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3552
3047
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3553
3048
|
url: "/extraction/documents/begin_upload",
|
|
3554
3049
|
...options,
|
|
@@ -3558,25 +3053,21 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
3558
3053
|
}
|
|
3559
3054
|
});
|
|
3560
3055
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
3561
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3562
3056
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3563
3057
|
url: "/ai/graph/edges/{id}",
|
|
3564
3058
|
...options
|
|
3565
3059
|
});
|
|
3566
3060
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
3567
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3568
3061
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3569
3062
|
url: "/tenants/{id}",
|
|
3570
3063
|
...options
|
|
3571
3064
|
});
|
|
3572
3065
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
3573
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3574
3066
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3575
3067
|
url: "/tenants/{id}",
|
|
3576
3068
|
...options
|
|
3577
3069
|
});
|
|
3578
3070
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
3579
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3580
3071
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3581
3072
|
url: "/tenants/{id}",
|
|
3582
3073
|
...options,
|
|
@@ -3586,19 +3077,11 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
3586
3077
|
}
|
|
3587
3078
|
});
|
|
3588
3079
|
var getPlans = (options) => (options.client ?? client).get({
|
|
3589
|
-
querySerializer: {
|
|
3590
|
-
parameters: {
|
|
3591
|
-
filter: { object: { style: "form" } },
|
|
3592
|
-
page: { object: { style: "form" } },
|
|
3593
|
-
fields: { object: { style: "form" } }
|
|
3594
|
-
}
|
|
3595
|
-
},
|
|
3596
3080
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3597
3081
|
url: "/plans",
|
|
3598
3082
|
...options
|
|
3599
3083
|
});
|
|
3600
3084
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
3601
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3602
3085
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3603
3086
|
url: "/agents/{id}/test",
|
|
3604
3087
|
...options,
|
|
@@ -3608,24 +3091,16 @@ var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
|
3608
3091
|
}
|
|
3609
3092
|
});
|
|
3610
3093
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
3611
|
-
querySerializer: {
|
|
3612
|
-
parameters: {
|
|
3613
|
-
filter: { object: { style: "form" } },
|
|
3614
|
-
fields: { object: { style: "form" } }
|
|
3615
|
-
}
|
|
3616
|
-
},
|
|
3617
3094
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3618
3095
|
url: "/extraction/documents",
|
|
3619
3096
|
...options
|
|
3620
3097
|
});
|
|
3621
3098
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
3622
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3623
3099
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3624
3100
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
3625
3101
|
...options
|
|
3626
3102
|
});
|
|
3627
3103
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
3628
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3629
3104
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3630
3105
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
3631
3106
|
...options,
|
|
@@ -3635,7 +3110,6 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
3635
3110
|
}
|
|
3636
3111
|
});
|
|
3637
3112
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
3638
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3639
3113
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3640
3114
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
3641
3115
|
...options,
|
|
@@ -3645,18 +3119,11 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
3645
3119
|
}
|
|
3646
3120
|
});
|
|
3647
3121
|
var getAuditLogsActivity = (options) => (options.client ?? client).get({
|
|
3648
|
-
querySerializer: {
|
|
3649
|
-
parameters: {
|
|
3650
|
-
filter: { object: { style: "form" } },
|
|
3651
|
-
fields: { object: { style: "form" } }
|
|
3652
|
-
}
|
|
3653
|
-
},
|
|
3654
3122
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3655
3123
|
url: "/audit-logs/activity",
|
|
3656
3124
|
...options
|
|
3657
3125
|
});
|
|
3658
3126
|
var postUsersAuthResendConfirmation = (options) => (options.client ?? client).post({
|
|
3659
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3660
3127
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3661
3128
|
url: "/users/auth/resend-confirmation",
|
|
3662
3129
|
...options,
|
|
@@ -3666,18 +3133,11 @@ var postUsersAuthResendConfirmation = (options) => (options.client ?? client).po
|
|
|
3666
3133
|
}
|
|
3667
3134
|
});
|
|
3668
3135
|
var getFieldTemplates = (options) => (options.client ?? client).get({
|
|
3669
|
-
querySerializer: {
|
|
3670
|
-
parameters: {
|
|
3671
|
-
filter: { object: { style: "form" } },
|
|
3672
|
-
fields: { object: { style: "form" } }
|
|
3673
|
-
}
|
|
3674
|
-
},
|
|
3675
3136
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3676
3137
|
url: "/field_templates",
|
|
3677
3138
|
...options
|
|
3678
3139
|
});
|
|
3679
3140
|
var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
3680
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3681
3141
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3682
3142
|
url: "/field_templates",
|
|
3683
3143
|
...options,
|
|
@@ -3687,19 +3147,11 @@ var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
|
3687
3147
|
}
|
|
3688
3148
|
});
|
|
3689
3149
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
3690
|
-
querySerializer: {
|
|
3691
|
-
parameters: {
|
|
3692
|
-
filter: { object: { style: "form" } },
|
|
3693
|
-
page: { object: { style: "form" } },
|
|
3694
|
-
fields: { object: { style: "form" } }
|
|
3695
|
-
}
|
|
3696
|
-
},
|
|
3697
3150
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3698
3151
|
url: "/ai/messages",
|
|
3699
3152
|
...options
|
|
3700
3153
|
});
|
|
3701
3154
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
3702
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3703
3155
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3704
3156
|
url: "/ai/messages",
|
|
3705
3157
|
...options,
|
|
@@ -3709,13 +3161,6 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
3709
3161
|
}
|
|
3710
3162
|
});
|
|
3711
3163
|
var getWatcherEvents = (options) => (options.client ?? client).get({
|
|
3712
|
-
querySerializer: {
|
|
3713
|
-
parameters: {
|
|
3714
|
-
filter: { object: { style: "form" } },
|
|
3715
|
-
page: { object: { style: "form" } },
|
|
3716
|
-
fields: { object: { style: "form" } }
|
|
3717
|
-
}
|
|
3718
|
-
},
|
|
3719
3164
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3720
3165
|
url: "/watcher/events",
|
|
3721
3166
|
...options
|
|
@@ -3730,7 +3175,6 @@ var postWatcherEvents = (options) => (options.client ?? client).post({
|
|
|
3730
3175
|
}
|
|
3731
3176
|
});
|
|
3732
3177
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
3733
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3734
3178
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3735
3179
|
url: "/storage/sign_upload",
|
|
3736
3180
|
...options,
|
|
@@ -3740,7 +3184,6 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
3740
3184
|
}
|
|
3741
3185
|
});
|
|
3742
3186
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
3743
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3744
3187
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3745
3188
|
url: "/webhook_deliveries/{id}/retry",
|
|
3746
3189
|
...options,
|
|
@@ -3750,19 +3193,11 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
3750
3193
|
}
|
|
3751
3194
|
});
|
|
3752
3195
|
var getNotificationMethods = (options) => (options.client ?? client).get({
|
|
3753
|
-
querySerializer: {
|
|
3754
|
-
parameters: {
|
|
3755
|
-
filter: { object: { style: "form" } },
|
|
3756
|
-
page: { object: { style: "form" } },
|
|
3757
|
-
fields: { object: { style: "form" } }
|
|
3758
|
-
}
|
|
3759
|
-
},
|
|
3760
3196
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3761
3197
|
url: "/notification_methods",
|
|
3762
3198
|
...options
|
|
3763
3199
|
});
|
|
3764
3200
|
var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
3765
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3766
3201
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3767
3202
|
url: "/notification_methods",
|
|
3768
3203
|
...options,
|
|
@@ -3772,7 +3207,6 @@ var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
|
3772
3207
|
}
|
|
3773
3208
|
});
|
|
3774
3209
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
3775
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3776
3210
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3777
3211
|
url: "/threads/{id}/summarize",
|
|
3778
3212
|
...options,
|
|
@@ -3782,7 +3216,6 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
3782
3216
|
}
|
|
3783
3217
|
});
|
|
3784
3218
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
3785
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3786
3219
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3787
3220
|
url: "/configs/{key}",
|
|
3788
3221
|
...options,
|
|
@@ -3792,7 +3225,6 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
3792
3225
|
}
|
|
3793
3226
|
});
|
|
3794
3227
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
3795
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3796
3228
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3797
3229
|
url: "/api_keys/{id}/rotate",
|
|
3798
3230
|
...options,
|
|
@@ -3802,7 +3234,6 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
3802
3234
|
}
|
|
3803
3235
|
});
|
|
3804
3236
|
var postExtractionResults = (options) => (options.client ?? client).post({
|
|
3805
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3806
3237
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3807
3238
|
url: "/extraction/results",
|
|
3808
3239
|
...options,
|
|
@@ -3812,7 +3243,6 @@ var postExtractionResults = (options) => (options.client ?? client).post({
|
|
|
3812
3243
|
}
|
|
3813
3244
|
});
|
|
3814
3245
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
3815
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3816
3246
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3817
3247
|
url: "/agents/{id}/clone",
|
|
3818
3248
|
...options,
|
|
@@ -3822,19 +3252,16 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
3822
3252
|
}
|
|
3823
3253
|
});
|
|
3824
3254
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
3825
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3826
3255
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3827
3256
|
url: "/ai/conversations/{id}",
|
|
3828
3257
|
...options
|
|
3829
3258
|
});
|
|
3830
3259
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
3831
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3832
3260
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3833
3261
|
url: "/ai/conversations/{id}",
|
|
3834
3262
|
...options
|
|
3835
3263
|
});
|
|
3836
3264
|
var patchAiConversationsById = (options) => (options.client ?? client).patch({
|
|
3837
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3838
3265
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3839
3266
|
url: "/ai/conversations/{id}",
|
|
3840
3267
|
...options,
|
|
@@ -3844,19 +3271,16 @@ var patchAiConversationsById = (options) => (options.client ?? client).patch({
|
|
|
3844
3271
|
}
|
|
3845
3272
|
});
|
|
3846
3273
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
3847
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3848
3274
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3849
3275
|
url: "/user_profiles/{id}",
|
|
3850
3276
|
...options
|
|
3851
3277
|
});
|
|
3852
3278
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
3853
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3854
3279
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3855
3280
|
url: "/user_profiles/{id}",
|
|
3856
3281
|
...options
|
|
3857
3282
|
});
|
|
3858
3283
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
3859
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3860
3284
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3861
3285
|
url: "/user_profiles/{id}",
|
|
3862
3286
|
...options,
|
|
@@ -3866,12 +3290,6 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
3866
3290
|
}
|
|
3867
3291
|
});
|
|
3868
3292
|
var getInvitationsMe = (options) => (options.client ?? client).get({
|
|
3869
|
-
querySerializer: {
|
|
3870
|
-
parameters: {
|
|
3871
|
-
filter: { object: { style: "form" } },
|
|
3872
|
-
fields: { object: { style: "form" } }
|
|
3873
|
-
}
|
|
3874
|
-
},
|
|
3875
3293
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3876
3294
|
url: "/invitations/me",
|
|
3877
3295
|
...options
|
|
@@ -3886,7 +3304,6 @@ var patchAgentsByIdSchemaVersionsByVersionId = (options) => (options.client ?? c
|
|
|
3886
3304
|
}
|
|
3887
3305
|
});
|
|
3888
3306
|
var postSearchBatch = (options) => (options.client ?? client).post({
|
|
3889
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3890
3307
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3891
3308
|
url: "/search/batch",
|
|
3892
3309
|
...options,
|
|
@@ -3901,43 +3318,26 @@ var getThreadsWorkspaceStats = (options) => (options.client ?? client).get({
|
|
|
3901
3318
|
...options
|
|
3902
3319
|
});
|
|
3903
3320
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
3904
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3905
3321
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3906
3322
|
url: "/objects/{id}",
|
|
3907
3323
|
...options
|
|
3908
3324
|
});
|
|
3909
3325
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
3910
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3911
3326
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3912
3327
|
url: "/objects/{id}",
|
|
3913
3328
|
...options
|
|
3914
3329
|
});
|
|
3915
3330
|
var getExtractionDocumentsWorkspaceByWorkspaceIdExcluded = (options) => (options.client ?? client).get({
|
|
3916
|
-
querySerializer: {
|
|
3917
|
-
parameters: {
|
|
3918
|
-
filter: { object: { style: "form" } },
|
|
3919
|
-
page: { object: { style: "form" } },
|
|
3920
|
-
fields: { object: { style: "form" } }
|
|
3921
|
-
}
|
|
3922
|
-
},
|
|
3923
3331
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3924
3332
|
url: "/extraction/documents/workspace/{workspace_id}/excluded",
|
|
3925
3333
|
...options
|
|
3926
3334
|
});
|
|
3927
3335
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
3928
|
-
querySerializer: {
|
|
3929
|
-
parameters: {
|
|
3930
|
-
filter: { object: { style: "form" } },
|
|
3931
|
-
page: { object: { style: "form" } },
|
|
3932
|
-
fields: { object: { style: "form" } }
|
|
3933
|
-
}
|
|
3934
|
-
},
|
|
3935
3336
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3936
3337
|
url: "/webhook_configs",
|
|
3937
3338
|
...options
|
|
3938
3339
|
});
|
|
3939
3340
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
3940
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3941
3341
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3942
3342
|
url: "/webhook_configs",
|
|
3943
3343
|
...options,
|
|
@@ -3947,7 +3347,6 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
3947
3347
|
}
|
|
3948
3348
|
});
|
|
3949
3349
|
var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post({
|
|
3950
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3951
3350
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3952
3351
|
url: "/agents/{id}/publish_version",
|
|
3953
3352
|
...options,
|
|
@@ -3957,7 +3356,6 @@ var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post(
|
|
|
3957
3356
|
}
|
|
3958
3357
|
});
|
|
3959
3358
|
var postExtractionDocumentsBulkReprocess = (options) => (options.client ?? client).post({
|
|
3960
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3961
3359
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3962
3360
|
url: "/extraction/documents/bulk-reprocess",
|
|
3963
3361
|
...options,
|
|
@@ -3967,7 +3365,6 @@ var postExtractionDocumentsBulkReprocess = (options) => (options.client ?? clien
|
|
|
3967
3365
|
}
|
|
3968
3366
|
});
|
|
3969
3367
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
3970
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3971
3368
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3972
3369
|
url: "/objects/bulk-destroy",
|
|
3973
3370
|
...options,
|
|
@@ -3977,42 +3374,31 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
3977
3374
|
}
|
|
3978
3375
|
});
|
|
3979
3376
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
3980
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3981
3377
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3982
3378
|
url: "/applications/by-slug/{slug}",
|
|
3983
3379
|
...options
|
|
3984
3380
|
});
|
|
3985
3381
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
3986
|
-
querySerializer: {
|
|
3987
|
-
parameters: {
|
|
3988
|
-
filter: { object: { style: "form" } },
|
|
3989
|
-
fields: { object: { style: "form" } }
|
|
3990
|
-
}
|
|
3991
|
-
},
|
|
3992
3382
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3993
3383
|
url: "/notification_logs",
|
|
3994
3384
|
...options
|
|
3995
3385
|
});
|
|
3996
3386
|
var getWallet = (options) => (options.client ?? client).get({
|
|
3997
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3998
3387
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3999
3388
|
url: "/wallet",
|
|
4000
3389
|
...options
|
|
4001
3390
|
});
|
|
4002
3391
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
4003
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4004
3392
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4005
3393
|
url: "/messages/{id}",
|
|
4006
3394
|
...options
|
|
4007
3395
|
});
|
|
4008
3396
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
4009
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4010
3397
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4011
3398
|
url: "/messages/{id}",
|
|
4012
3399
|
...options
|
|
4013
3400
|
});
|
|
4014
3401
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
4015
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4016
3402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4017
3403
|
url: "/messages/{id}",
|
|
4018
3404
|
...options,
|
|
@@ -4031,36 +3417,26 @@ var postAgentsByIdDiscoverSchema = (options) => (options.client ?? client).post(
|
|
|
4031
3417
|
}
|
|
4032
3418
|
});
|
|
4033
3419
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
4034
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4035
3420
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4036
3421
|
url: "/llm_analytics/usage",
|
|
4037
3422
|
...options
|
|
4038
3423
|
});
|
|
4039
3424
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
4040
|
-
querySerializer: {
|
|
4041
|
-
parameters: {
|
|
4042
|
-
filter: { object: { style: "form" } },
|
|
4043
|
-
fields: { object: { style: "form" } }
|
|
4044
|
-
}
|
|
4045
|
-
},
|
|
4046
3425
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4047
3426
|
url: "/search/stats",
|
|
4048
3427
|
...options
|
|
4049
3428
|
});
|
|
4050
3429
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
4051
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4052
3430
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4053
3431
|
url: "/notification_preferences/{id}",
|
|
4054
3432
|
...options
|
|
4055
3433
|
});
|
|
4056
3434
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
4057
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4058
3435
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4059
3436
|
url: "/notification_preferences/{id}",
|
|
4060
3437
|
...options
|
|
4061
3438
|
});
|
|
4062
3439
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
4063
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4064
3440
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4065
3441
|
url: "/notification_preferences/{id}",
|
|
4066
3442
|
...options,
|
|
@@ -4070,19 +3446,11 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
4070
3446
|
}
|
|
4071
3447
|
});
|
|
4072
3448
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
4073
|
-
querySerializer: {
|
|
4074
|
-
parameters: {
|
|
4075
|
-
filter: { object: { style: "form" } },
|
|
4076
|
-
page: { object: { style: "form" } },
|
|
4077
|
-
fields: { object: { style: "form" } }
|
|
4078
|
-
}
|
|
4079
|
-
},
|
|
4080
3449
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4081
3450
|
url: "/ai/graph/nodes",
|
|
4082
3451
|
...options
|
|
4083
3452
|
});
|
|
4084
3453
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
4085
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4086
3454
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4087
3455
|
url: "/ai/graph/nodes",
|
|
4088
3456
|
...options,
|
|
@@ -4092,19 +3460,11 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
4092
3460
|
}
|
|
4093
3461
|
});
|
|
4094
3462
|
var getAgents = (options) => (options.client ?? client).get({
|
|
4095
|
-
querySerializer: {
|
|
4096
|
-
parameters: {
|
|
4097
|
-
filter: { object: { style: "form" } },
|
|
4098
|
-
page: { object: { style: "form" } },
|
|
4099
|
-
fields: { object: { style: "form" } }
|
|
4100
|
-
}
|
|
4101
|
-
},
|
|
4102
3463
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4103
3464
|
url: "/agents",
|
|
4104
3465
|
...options
|
|
4105
3466
|
});
|
|
4106
3467
|
var postAgents = (options) => (options.client ?? client).post({
|
|
4107
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4108
3468
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4109
3469
|
url: "/agents",
|
|
4110
3470
|
...options,
|
|
@@ -4114,19 +3474,16 @@ var postAgents = (options) => (options.client ?? client).post({
|
|
|
4114
3474
|
}
|
|
4115
3475
|
});
|
|
4116
3476
|
var deleteApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).delete({
|
|
4117
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4118
3477
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4119
3478
|
url: "/applications/{application_id}/email-templates/{slug}",
|
|
4120
3479
|
...options
|
|
4121
3480
|
});
|
|
4122
3481
|
var getApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).get({
|
|
4123
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4124
3482
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4125
3483
|
url: "/applications/{application_id}/email-templates/{slug}",
|
|
4126
3484
|
...options
|
|
4127
3485
|
});
|
|
4128
3486
|
var patchApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).patch({
|
|
4129
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4130
3487
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4131
3488
|
url: "/applications/{application_id}/email-templates/{slug}",
|
|
4132
3489
|
...options,
|
|
@@ -4141,7 +3498,6 @@ var postAgentsByIdExport = (options) => (options.client ?? client).post({
|
|
|
4141
3498
|
...options
|
|
4142
3499
|
});
|
|
4143
3500
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
4144
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4145
3501
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4146
3502
|
url: "/users/register_isv",
|
|
4147
3503
|
...options,
|
|
@@ -4151,31 +3507,21 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
4151
3507
|
}
|
|
4152
3508
|
});
|
|
4153
3509
|
var deleteExtractionBatchesById = (options) => (options.client ?? client).delete({
|
|
4154
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4155
3510
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4156
3511
|
url: "/extraction/batches/{id}",
|
|
4157
3512
|
...options
|
|
4158
3513
|
});
|
|
4159
3514
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
4160
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4161
3515
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4162
3516
|
url: "/extraction/batches/{id}",
|
|
4163
3517
|
...options
|
|
4164
3518
|
});
|
|
4165
3519
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
4166
|
-
querySerializer: {
|
|
4167
|
-
parameters: {
|
|
4168
|
-
filter: { object: { style: "form" } },
|
|
4169
|
-
page: { object: { style: "form" } },
|
|
4170
|
-
fields: { object: { style: "form" } }
|
|
4171
|
-
}
|
|
4172
|
-
},
|
|
4173
3520
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4174
3521
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
4175
3522
|
...options
|
|
4176
3523
|
});
|
|
4177
3524
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
4178
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4179
3525
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4180
3526
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
4181
3527
|
...options,
|
|
@@ -4185,13 +3531,11 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
4185
3531
|
}
|
|
4186
3532
|
});
|
|
4187
3533
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
4188
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4189
3534
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4190
3535
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
4191
3536
|
...options
|
|
4192
3537
|
});
|
|
4193
3538
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
4194
|
-
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4195
3539
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4196
3540
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
4197
3541
|
...options,
|
|
@@ -4201,49 +3545,21 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
4201
3545
|
}
|
|
4202
3546
|
});
|
|
4203
3547
|
var getExtractionDocumentsWorkspaceByWorkspaceIdTrashed = (options) => (options.client ?? client).get({
|
|
4204
|
-
querySerializer: {
|
|
4205
|
-
parameters: {
|
|
4206
|
-
filter: { object: { style: "form" } },
|
|
4207
|
-
page: { object: { style: "form" } },
|
|
4208
|
-
fields: { object: { style: "form" } }
|
|
4209
|
-
}
|
|
4210
|
-
},
|
|
4211
3548
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4212
3549
|
url: "/extraction/documents/workspace/{workspace_id}/trashed",
|
|
4213
3550
|
...options
|
|
4214
3551
|
});
|
|
4215
3552
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
4216
|
-
querySerializer: {
|
|
4217
|
-
parameters: {
|
|
4218
|
-
filter: { object: { style: "form" } },
|
|
4219
|
-
page: { object: { style: "form" } },
|
|
4220
|
-
fields: { object: { style: "form" } }
|
|
4221
|
-
}
|
|
4222
|
-
},
|
|
4223
3553
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4224
3554
|
url: "/credit-packages",
|
|
4225
3555
|
...options
|
|
4226
3556
|
});
|
|
4227
3557
|
var getUsers = (options) => (options.client ?? client).get({
|
|
4228
|
-
querySerializer: {
|
|
4229
|
-
parameters: {
|
|
4230
|
-
filter: { object: { style: "form" } },
|
|
4231
|
-
page: { object: { style: "form" } },
|
|
4232
|
-
fields: { object: { style: "form" } }
|
|
4233
|
-
}
|
|
4234
|
-
},
|
|
4235
3558
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4236
3559
|
url: "/users",
|
|
4237
3560
|
...options
|
|
4238
3561
|
});
|
|
4239
3562
|
var getObjects = (options) => (options.client ?? client).get({
|
|
4240
|
-
querySerializer: {
|
|
4241
|
-
parameters: {
|
|
4242
|
-
filter: { object: { style: "form" } },
|
|
4243
|
-
page: { object: { style: "form" } },
|
|
4244
|
-
fields: { object: { style: "form" } }
|
|
4245
|
-
}
|
|
4246
|
-
},
|
|
4247
3563
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4248
3564
|
url: "/objects",
|
|
4249
3565
|
...options
|
|
@@ -4879,6 +4195,7 @@ export {
|
|
|
4879
4195
|
getAgentsByIdSchemaVersions,
|
|
4880
4196
|
getAgentsByIdStats,
|
|
4881
4197
|
getAgentsByIdTrainingStats,
|
|
4198
|
+
getAgentsByIdUsage,
|
|
4882
4199
|
getAiChunksDocumentByDocumentId,
|
|
4883
4200
|
getAiConversations,
|
|
4884
4201
|
getAiConversationsById,
|