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