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