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