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