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