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