@gpt-core/client 0.6.52 → 0.6.61
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 +910 -6168
- package/dist/index.d.ts +910 -6168
- package/dist/index.js +525 -0
- package/dist/index.mjs +523 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -110,6 +110,7 @@ __export(index_exports, {
|
|
|
110
110
|
getExtractionResultsDocumentByDocumentId: () => getExtractionResultsDocumentByDocumentId,
|
|
111
111
|
getExtractionSchemaFields: () => getExtractionSchemaFields,
|
|
112
112
|
getExtractionSchemaFieldsById: () => getExtractionSchemaFieldsById,
|
|
113
|
+
getExtractionSchemas: () => getExtractionSchemas,
|
|
113
114
|
getExtractionSchemasById: () => getExtractionSchemasById,
|
|
114
115
|
getExtractionSchemasWorkspaceByWorkspaceId: () => getExtractionSchemasWorkspaceByWorkspaceId,
|
|
115
116
|
getFieldTemplates: () => getFieldTemplates,
|
|
@@ -195,6 +196,7 @@ __export(index_exports, {
|
|
|
195
196
|
patchExtractionResultsByIdRegenerate: () => patchExtractionResultsByIdRegenerate,
|
|
196
197
|
patchExtractionSchemaFieldsById: () => patchExtractionSchemaFieldsById,
|
|
197
198
|
patchExtractionSchemasById: () => patchExtractionSchemasById,
|
|
199
|
+
patchExtractionSchemasByIdActivate: () => patchExtractionSchemasByIdActivate,
|
|
198
200
|
patchExtractionSchemasByIdFields: () => patchExtractionSchemasByIdFields,
|
|
199
201
|
patchInvitationsByIdAccept: () => patchInvitationsByIdAccept,
|
|
200
202
|
patchInvitationsByIdResend: () => patchInvitationsByIdResend,
|
|
@@ -1133,6 +1135,7 @@ var client = createClient(
|
|
|
1133
1135
|
|
|
1134
1136
|
// src/_internal/sdk.gen.ts
|
|
1135
1137
|
var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
1138
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1136
1139
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1137
1140
|
url: "/ai/search/advanced",
|
|
1138
1141
|
...options,
|
|
@@ -1142,21 +1145,31 @@ var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
|
1142
1145
|
}
|
|
1143
1146
|
});
|
|
1144
1147
|
var deleteExtractionDocumentsById = (options) => (options.client ?? client).delete({
|
|
1148
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1145
1149
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1146
1150
|
url: "/extraction/documents/{id}",
|
|
1147
1151
|
...options
|
|
1148
1152
|
});
|
|
1149
1153
|
var getExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
1154
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1150
1155
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1151
1156
|
url: "/extraction/documents/{id}",
|
|
1152
1157
|
...options
|
|
1153
1158
|
});
|
|
1154
1159
|
var getThreads = (options) => (options.client ?? client).get({
|
|
1160
|
+
querySerializer: {
|
|
1161
|
+
parameters: {
|
|
1162
|
+
filter: { object: { style: "form" } },
|
|
1163
|
+
page: { object: { style: "form" } },
|
|
1164
|
+
fields: { object: { style: "form" } }
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1155
1167
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1156
1168
|
url: "/threads",
|
|
1157
1169
|
...options
|
|
1158
1170
|
});
|
|
1159
1171
|
var postThreads = (options) => (options.client ?? client).post({
|
|
1172
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1160
1173
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1161
1174
|
url: "/threads",
|
|
1162
1175
|
...options,
|
|
@@ -1166,21 +1179,25 @@ var postThreads = (options) => (options.client ?? client).post({
|
|
|
1166
1179
|
}
|
|
1167
1180
|
});
|
|
1168
1181
|
var getExtractionSchemasWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1182
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1169
1183
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1170
1184
|
url: "/extraction/schemas/workspace/{workspace_id}",
|
|
1171
1185
|
...options
|
|
1172
1186
|
});
|
|
1173
1187
|
var getLlmAnalyticsCosts = (options) => (options.client ?? client).get({
|
|
1188
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1174
1189
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1175
1190
|
url: "/llm_analytics/costs",
|
|
1176
1191
|
...options
|
|
1177
1192
|
});
|
|
1178
1193
|
var getAiChunksDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
1194
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1179
1195
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1180
1196
|
url: "/ai/chunks/document/{document_id}",
|
|
1181
1197
|
...options
|
|
1182
1198
|
});
|
|
1183
1199
|
var patchWalletCredits = (options) => (options.client ?? client).patch({
|
|
1200
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1184
1201
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1185
1202
|
url: "/wallet/credits",
|
|
1186
1203
|
...options,
|
|
@@ -1190,11 +1207,18 @@ var patchWalletCredits = (options) => (options.client ?? client).patch({
|
|
|
1190
1207
|
}
|
|
1191
1208
|
});
|
|
1192
1209
|
var getWorkspaces = (options) => (options.client ?? client).get({
|
|
1210
|
+
querySerializer: {
|
|
1211
|
+
parameters: {
|
|
1212
|
+
filter: { object: { style: "form" } },
|
|
1213
|
+
fields: { object: { style: "form" } }
|
|
1214
|
+
}
|
|
1215
|
+
},
|
|
1193
1216
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1194
1217
|
url: "/workspaces",
|
|
1195
1218
|
...options
|
|
1196
1219
|
});
|
|
1197
1220
|
var postWorkspaces = (options) => (options.client ?? client).post({
|
|
1221
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1198
1222
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1199
1223
|
url: "/workspaces",
|
|
1200
1224
|
...options,
|
|
@@ -1204,11 +1228,13 @@ var postWorkspaces = (options) => (options.client ?? client).post({
|
|
|
1204
1228
|
}
|
|
1205
1229
|
});
|
|
1206
1230
|
var getDocumentsStats = (options) => (options.client ?? client).get({
|
|
1231
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1207
1232
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1208
1233
|
url: "/documents/stats",
|
|
1209
1234
|
...options
|
|
1210
1235
|
});
|
|
1211
1236
|
var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
1237
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1212
1238
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1213
1239
|
url: "/objects/register",
|
|
1214
1240
|
...options,
|
|
@@ -1218,21 +1244,30 @@ var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
|
1218
1244
|
}
|
|
1219
1245
|
});
|
|
1220
1246
|
var getLlmAnalyticsWorkspace = (options) => (options.client ?? client).get({
|
|
1247
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1221
1248
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1222
1249
|
url: "/llm_analytics/workspace",
|
|
1223
1250
|
...options
|
|
1224
1251
|
});
|
|
1225
1252
|
var getSearchIndexes = (options) => (options.client ?? client).get({
|
|
1253
|
+
querySerializer: {
|
|
1254
|
+
parameters: {
|
|
1255
|
+
filter: { object: { style: "form" } },
|
|
1256
|
+
fields: { object: { style: "form" } }
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1226
1259
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1227
1260
|
url: "/search/indexes",
|
|
1228
1261
|
...options
|
|
1229
1262
|
});
|
|
1230
1263
|
var getCreditPackagesSlugBySlug = (options) => (options.client ?? client).get({
|
|
1264
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1231
1265
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1232
1266
|
url: "/credit-packages/slug/{slug}",
|
|
1233
1267
|
...options
|
|
1234
1268
|
});
|
|
1235
1269
|
var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
1270
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1236
1271
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1237
1272
|
url: "/extraction/batches",
|
|
1238
1273
|
...options,
|
|
@@ -1242,11 +1277,13 @@ var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
|
1242
1277
|
}
|
|
1243
1278
|
});
|
|
1244
1279
|
var getLlmAnalyticsPlatform = (options) => (options.client ?? client).get({
|
|
1280
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1245
1281
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1246
1282
|
url: "/llm_analytics/platform",
|
|
1247
1283
|
...options
|
|
1248
1284
|
});
|
|
1249
1285
|
var postPayments = (options) => (options.client ?? client).post({
|
|
1286
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1250
1287
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1251
1288
|
url: "/payments",
|
|
1252
1289
|
...options,
|
|
@@ -1256,11 +1293,18 @@ var postPayments = (options) => (options.client ?? client).post({
|
|
|
1256
1293
|
}
|
|
1257
1294
|
});
|
|
1258
1295
|
var getExtractionBatchesWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1296
|
+
querySerializer: {
|
|
1297
|
+
parameters: {
|
|
1298
|
+
filter: { object: { style: "form" } },
|
|
1299
|
+
fields: { object: { style: "form" } }
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1259
1302
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1260
1303
|
url: "/extraction/batches/workspace/{workspace_id}",
|
|
1261
1304
|
...options
|
|
1262
1305
|
});
|
|
1263
1306
|
var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1307
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1264
1308
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1265
1309
|
url: "/api_keys/{id}/revoke",
|
|
1266
1310
|
...options,
|
|
@@ -1270,16 +1314,19 @@ var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1270
1314
|
}
|
|
1271
1315
|
});
|
|
1272
1316
|
var getInvitationsConsumeByToken = (options) => (options.client ?? client).get({
|
|
1317
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1273
1318
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1274
1319
|
url: "/invitations/consume/{token}",
|
|
1275
1320
|
...options
|
|
1276
1321
|
});
|
|
1277
1322
|
var getExtractionDocumentsByIdStatus = (options) => (options.client ?? client).get({
|
|
1323
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1278
1324
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1279
1325
|
url: "/extraction/documents/{id}/status",
|
|
1280
1326
|
...options
|
|
1281
1327
|
});
|
|
1282
1328
|
var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client).patch({
|
|
1329
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1283
1330
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1284
1331
|
url: "/extraction/documents/{id}/status",
|
|
1285
1332
|
...options,
|
|
@@ -1289,6 +1336,7 @@ var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client)
|
|
|
1289
1336
|
}
|
|
1290
1337
|
});
|
|
1291
1338
|
var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? client).patch({
|
|
1339
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1292
1340
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1293
1341
|
url: "/extraction/documents/{id}/finish_upload",
|
|
1294
1342
|
...options,
|
|
@@ -1298,6 +1346,7 @@ var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? c
|
|
|
1298
1346
|
}
|
|
1299
1347
|
});
|
|
1300
1348
|
var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1349
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1301
1350
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1302
1351
|
url: "/workspaces/{id}/allocate",
|
|
1303
1352
|
...options,
|
|
@@ -1307,6 +1356,7 @@ var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch(
|
|
|
1307
1356
|
}
|
|
1308
1357
|
});
|
|
1309
1358
|
var postThreadsActive = (options) => (options.client ?? client).post({
|
|
1359
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1310
1360
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1311
1361
|
url: "/threads/active",
|
|
1312
1362
|
...options,
|
|
@@ -1316,6 +1366,7 @@ var postThreadsActive = (options) => (options.client ?? client).post({
|
|
|
1316
1366
|
}
|
|
1317
1367
|
});
|
|
1318
1368
|
var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1369
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1319
1370
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1320
1371
|
url: "/invitations/{id}/revoke",
|
|
1321
1372
|
...options,
|
|
@@ -1325,11 +1376,19 @@ var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1325
1376
|
}
|
|
1326
1377
|
});
|
|
1327
1378
|
var getConfigs = (options) => (options.client ?? client).get({
|
|
1379
|
+
querySerializer: {
|
|
1380
|
+
parameters: {
|
|
1381
|
+
filter: { object: { style: "form" } },
|
|
1382
|
+
page: { object: { style: "form" } },
|
|
1383
|
+
fields: { object: { style: "form" } }
|
|
1384
|
+
}
|
|
1385
|
+
},
|
|
1328
1386
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1329
1387
|
url: "/configs",
|
|
1330
1388
|
...options
|
|
1331
1389
|
});
|
|
1332
1390
|
var postConfigs = (options) => (options.client ?? client).post({
|
|
1391
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1333
1392
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1334
1393
|
url: "/configs",
|
|
1335
1394
|
...options,
|
|
@@ -1339,6 +1398,7 @@ var postConfigs = (options) => (options.client ?? client).post({
|
|
|
1339
1398
|
}
|
|
1340
1399
|
});
|
|
1341
1400
|
var postTokens = (options) => (options.client ?? client).post({
|
|
1401
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1342
1402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1343
1403
|
url: "/tokens",
|
|
1344
1404
|
...options,
|
|
@@ -1348,16 +1408,19 @@ var postTokens = (options) => (options.client ?? client).post({
|
|
|
1348
1408
|
}
|
|
1349
1409
|
});
|
|
1350
1410
|
var deleteTrainingExamplesById = (options) => (options.client ?? client).delete({
|
|
1411
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1351
1412
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1352
1413
|
url: "/training_examples/{id}",
|
|
1353
1414
|
...options
|
|
1354
1415
|
});
|
|
1355
1416
|
var getTrainingExamplesById = (options) => (options.client ?? client).get({
|
|
1417
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1356
1418
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1357
1419
|
url: "/training_examples/{id}",
|
|
1358
1420
|
...options
|
|
1359
1421
|
});
|
|
1360
1422
|
var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
1423
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1361
1424
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1362
1425
|
url: "/training_examples/{id}",
|
|
1363
1426
|
...options,
|
|
@@ -1367,11 +1430,13 @@ var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
|
1367
1430
|
}
|
|
1368
1431
|
});
|
|
1369
1432
|
var deleteSearchSavedById = (options) => (options.client ?? client).delete({
|
|
1433
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1370
1434
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1371
1435
|
url: "/search/saved/{id}",
|
|
1372
1436
|
...options
|
|
1373
1437
|
});
|
|
1374
1438
|
var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
1439
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1375
1440
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1376
1441
|
url: "/users/{id}/admin/email",
|
|
1377
1442
|
...options,
|
|
@@ -1381,6 +1446,7 @@ var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
|
1381
1446
|
}
|
|
1382
1447
|
});
|
|
1383
1448
|
var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch({
|
|
1449
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1384
1450
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1385
1451
|
url: "/users/auth/reset-password",
|
|
1386
1452
|
...options,
|
|
@@ -1390,11 +1456,13 @@ var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1390
1456
|
}
|
|
1391
1457
|
});
|
|
1392
1458
|
var getBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
1459
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1393
1460
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1394
1461
|
url: "/buckets/{id}/stats",
|
|
1395
1462
|
...options
|
|
1396
1463
|
});
|
|
1397
1464
|
var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? client).patch({
|
|
1465
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1398
1466
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1399
1467
|
url: "/notification_methods/{id}/set_primary",
|
|
1400
1468
|
...options,
|
|
@@ -1404,11 +1472,13 @@ var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? cli
|
|
|
1404
1472
|
}
|
|
1405
1473
|
});
|
|
1406
1474
|
var getBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
1475
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1407
1476
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1408
1477
|
url: "/buckets/{id}/objects",
|
|
1409
1478
|
...options
|
|
1410
1479
|
});
|
|
1411
1480
|
var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
1481
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1412
1482
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1413
1483
|
url: "/invitations/{id}/resend",
|
|
1414
1484
|
...options,
|
|
@@ -1418,11 +1488,18 @@ var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
|
1418
1488
|
}
|
|
1419
1489
|
});
|
|
1420
1490
|
var getSearchSaved = (options) => (options.client ?? client).get({
|
|
1491
|
+
querySerializer: {
|
|
1492
|
+
parameters: {
|
|
1493
|
+
filter: { object: { style: "form" } },
|
|
1494
|
+
fields: { object: { style: "form" } }
|
|
1495
|
+
}
|
|
1496
|
+
},
|
|
1421
1497
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1422
1498
|
url: "/search/saved",
|
|
1423
1499
|
...options
|
|
1424
1500
|
});
|
|
1425
1501
|
var postSearchSaved = (options) => (options.client ?? client).post({
|
|
1502
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1426
1503
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1427
1504
|
url: "/search/saved",
|
|
1428
1505
|
...options,
|
|
@@ -1432,26 +1509,31 @@ var postSearchSaved = (options) => (options.client ?? client).post({
|
|
|
1432
1509
|
}
|
|
1433
1510
|
});
|
|
1434
1511
|
var deleteFieldTemplatesById = (options) => (options.client ?? client).delete({
|
|
1512
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1435
1513
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1436
1514
|
url: "/field_templates/{id}",
|
|
1437
1515
|
...options
|
|
1438
1516
|
});
|
|
1439
1517
|
var getFieldTemplatesById = (options) => (options.client ?? client).get({
|
|
1518
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1440
1519
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1441
1520
|
url: "/field_templates/{id}",
|
|
1442
1521
|
...options
|
|
1443
1522
|
});
|
|
1444
1523
|
var getWorkspacesByWorkspaceIdTrainingAnalytics = (options) => (options.client ?? client).get({
|
|
1524
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1445
1525
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1446
1526
|
url: "/workspaces/{workspace_id}/training/analytics",
|
|
1447
1527
|
...options
|
|
1448
1528
|
});
|
|
1449
1529
|
var getUserProfilesMe = (options) => (options.client ?? client).get({
|
|
1530
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1450
1531
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1451
1532
|
url: "/user_profiles/me",
|
|
1452
1533
|
...options
|
|
1453
1534
|
});
|
|
1454
1535
|
var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
1536
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1455
1537
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1456
1538
|
url: "/invitations/invite",
|
|
1457
1539
|
...options,
|
|
@@ -1461,11 +1543,18 @@ var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
|
1461
1543
|
}
|
|
1462
1544
|
});
|
|
1463
1545
|
var getAgentVersions = (options) => (options.client ?? client).get({
|
|
1546
|
+
querySerializer: {
|
|
1547
|
+
parameters: {
|
|
1548
|
+
filter: { object: { style: "form" } },
|
|
1549
|
+
fields: { object: { style: "form" } }
|
|
1550
|
+
}
|
|
1551
|
+
},
|
|
1464
1552
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1465
1553
|
url: "/agent_versions",
|
|
1466
1554
|
...options
|
|
1467
1555
|
});
|
|
1468
1556
|
var postAgentVersions = (options) => (options.client ?? client).post({
|
|
1557
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1469
1558
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1470
1559
|
url: "/agent_versions",
|
|
1471
1560
|
...options,
|
|
@@ -1475,16 +1564,19 @@ var postAgentVersions = (options) => (options.client ?? client).post({
|
|
|
1475
1564
|
}
|
|
1476
1565
|
});
|
|
1477
1566
|
var deleteWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
1567
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1478
1568
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1479
1569
|
url: "/webhook_configs/{id}",
|
|
1480
1570
|
...options
|
|
1481
1571
|
});
|
|
1482
1572
|
var getWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
1573
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1483
1574
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1484
1575
|
url: "/webhook_configs/{id}",
|
|
1485
1576
|
...options
|
|
1486
1577
|
});
|
|
1487
1578
|
var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
1579
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1488
1580
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1489
1581
|
url: "/webhook_configs/{id}",
|
|
1490
1582
|
...options,
|
|
@@ -1494,6 +1586,7 @@ var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
|
1494
1586
|
}
|
|
1495
1587
|
});
|
|
1496
1588
|
var postInvitationsAcceptByToken = (options) => (options.client ?? client).post({
|
|
1589
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1497
1590
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1498
1591
|
url: "/invitations/accept_by_token",
|
|
1499
1592
|
...options,
|
|
@@ -1503,11 +1596,13 @@ var postInvitationsAcceptByToken = (options) => (options.client ?? client).post(
|
|
|
1503
1596
|
}
|
|
1504
1597
|
});
|
|
1505
1598
|
var getExtractionBatchesByIdUploadUrls = (options) => (options.client ?? client).get({
|
|
1599
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1506
1600
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1507
1601
|
url: "/extraction/batches/{id}/upload-urls",
|
|
1508
1602
|
...options
|
|
1509
1603
|
});
|
|
1510
1604
|
var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1605
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1511
1606
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1512
1607
|
url: "/documents/bulk_delete",
|
|
1513
1608
|
...options,
|
|
@@ -1517,11 +1612,13 @@ var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
|
1517
1612
|
}
|
|
1518
1613
|
});
|
|
1519
1614
|
var getAgentVersionsById = (options) => (options.client ?? client).get({
|
|
1615
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1520
1616
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1521
1617
|
url: "/agent_versions/{id}",
|
|
1522
1618
|
...options
|
|
1523
1619
|
});
|
|
1524
1620
|
var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
1621
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1525
1622
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1526
1623
|
url: "/ai/chunks/search",
|
|
1527
1624
|
...options,
|
|
@@ -1531,6 +1628,7 @@ var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
|
1531
1628
|
}
|
|
1532
1629
|
});
|
|
1533
1630
|
var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
1631
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1534
1632
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1535
1633
|
url: "/threads/{id}/messages",
|
|
1536
1634
|
...options,
|
|
@@ -1540,6 +1638,7 @@ var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
|
1540
1638
|
}
|
|
1541
1639
|
});
|
|
1542
1640
|
var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
1641
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1543
1642
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1544
1643
|
url: "/agents/clone_for_workspace",
|
|
1545
1644
|
...options,
|
|
@@ -1549,6 +1648,7 @@ var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
|
1549
1648
|
}
|
|
1550
1649
|
});
|
|
1551
1650
|
var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
1651
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1552
1652
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1553
1653
|
url: "/invitations/{id}/accept",
|
|
1554
1654
|
...options,
|
|
@@ -1558,21 +1658,25 @@ var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
|
1558
1658
|
}
|
|
1559
1659
|
});
|
|
1560
1660
|
var getCreditPackagesById = (options) => (options.client ?? client).get({
|
|
1661
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1561
1662
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1562
1663
|
url: "/credit-packages/{id}",
|
|
1563
1664
|
...options
|
|
1564
1665
|
});
|
|
1565
1666
|
var getUsersById = (options) => (options.client ?? client).get({
|
|
1667
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1566
1668
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1567
1669
|
url: "/users/{id}",
|
|
1568
1670
|
...options
|
|
1569
1671
|
});
|
|
1570
1672
|
var getExtractionResultsById = (options) => (options.client ?? client).get({
|
|
1673
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1571
1674
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1572
1675
|
url: "/extraction/results/{id}",
|
|
1573
1676
|
...options
|
|
1574
1677
|
});
|
|
1575
1678
|
var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
1679
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1576
1680
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1577
1681
|
url: "/agents/{id}/validate",
|
|
1578
1682
|
...options,
|
|
@@ -1582,6 +1686,7 @@ var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
|
1582
1686
|
}
|
|
1583
1687
|
});
|
|
1584
1688
|
var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
1689
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1585
1690
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1586
1691
|
url: "/webhook_configs/{id}/test",
|
|
1587
1692
|
...options,
|
|
@@ -1591,11 +1696,13 @@ var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
|
1591
1696
|
}
|
|
1592
1697
|
});
|
|
1593
1698
|
var getUsersMe = (options) => (options.client ?? client).get({
|
|
1699
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1594
1700
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1595
1701
|
url: "/users/me",
|
|
1596
1702
|
...options
|
|
1597
1703
|
});
|
|
1598
1704
|
var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post({
|
|
1705
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1599
1706
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1600
1707
|
url: "/users/auth/register_with_oidc",
|
|
1601
1708
|
...options,
|
|
@@ -1605,6 +1712,7 @@ var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post
|
|
|
1605
1712
|
}
|
|
1606
1713
|
});
|
|
1607
1714
|
var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
1715
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1608
1716
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1609
1717
|
url: "/tenants/{id}/credit",
|
|
1610
1718
|
...options,
|
|
@@ -1614,16 +1722,25 @@ var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
|
1614
1722
|
}
|
|
1615
1723
|
});
|
|
1616
1724
|
var getTransactionsById = (options) => (options.client ?? client).get({
|
|
1725
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1617
1726
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1618
1727
|
url: "/transactions/{id}",
|
|
1619
1728
|
...options
|
|
1620
1729
|
});
|
|
1621
1730
|
var getTenantMemberships = (options) => (options.client ?? client).get({
|
|
1731
|
+
querySerializer: {
|
|
1732
|
+
parameters: {
|
|
1733
|
+
filter: { object: { style: "form" } },
|
|
1734
|
+
page: { object: { style: "form" } },
|
|
1735
|
+
fields: { object: { style: "form" } }
|
|
1736
|
+
}
|
|
1737
|
+
},
|
|
1622
1738
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1623
1739
|
url: "/tenant-memberships",
|
|
1624
1740
|
...options
|
|
1625
1741
|
});
|
|
1626
1742
|
var postTenantMemberships = (options) => (options.client ?? client).post({
|
|
1743
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1627
1744
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1628
1745
|
url: "/tenant-memberships",
|
|
1629
1746
|
...options,
|
|
@@ -1642,21 +1759,25 @@ var postTrainingExamplesBulkDelete = (options) => (options.client ?? client).pos
|
|
|
1642
1759
|
}
|
|
1643
1760
|
});
|
|
1644
1761
|
var getLlmAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
1762
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1645
1763
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1646
1764
|
url: "/llm_analytics/summary",
|
|
1647
1765
|
...options
|
|
1648
1766
|
});
|
|
1649
1767
|
var deleteExtractionSchemaFieldsById = (options) => (options.client ?? client).delete({
|
|
1768
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1650
1769
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1651
1770
|
url: "/extraction/schema-fields/{id}",
|
|
1652
1771
|
...options
|
|
1653
1772
|
});
|
|
1654
1773
|
var getExtractionSchemaFieldsById = (options) => (options.client ?? client).get({
|
|
1774
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1655
1775
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1656
1776
|
url: "/extraction/schema-fields/{id}",
|
|
1657
1777
|
...options
|
|
1658
1778
|
});
|
|
1659
1779
|
var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).patch({
|
|
1780
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1660
1781
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1661
1782
|
url: "/extraction/schema-fields/{id}",
|
|
1662
1783
|
...options,
|
|
@@ -1666,6 +1787,7 @@ var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).pa
|
|
|
1666
1787
|
}
|
|
1667
1788
|
});
|
|
1668
1789
|
var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
1790
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1669
1791
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1670
1792
|
url: "/storage/sign_download",
|
|
1671
1793
|
...options,
|
|
@@ -1675,16 +1797,19 @@ var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
|
1675
1797
|
}
|
|
1676
1798
|
});
|
|
1677
1799
|
var deleteNotificationMethodsById = (options) => (options.client ?? client).delete({
|
|
1800
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1678
1801
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1679
1802
|
url: "/notification_methods/{id}",
|
|
1680
1803
|
...options
|
|
1681
1804
|
});
|
|
1682
1805
|
var getNotificationMethodsById = (options) => (options.client ?? client).get({
|
|
1806
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1683
1807
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1684
1808
|
url: "/notification_methods/{id}",
|
|
1685
1809
|
...options
|
|
1686
1810
|
});
|
|
1687
1811
|
var patchNotificationMethodsById = (options) => (options.client ?? client).patch({
|
|
1812
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1688
1813
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1689
1814
|
url: "/notification_methods/{id}",
|
|
1690
1815
|
...options,
|
|
@@ -1694,31 +1819,64 @@ var patchNotificationMethodsById = (options) => (options.client ?? client).patch
|
|
|
1694
1819
|
}
|
|
1695
1820
|
});
|
|
1696
1821
|
var getWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
1822
|
+
querySerializer: {
|
|
1823
|
+
parameters: {
|
|
1824
|
+
filter: { object: { style: "form" } },
|
|
1825
|
+
page: { object: { style: "form" } },
|
|
1826
|
+
fields: { object: { style: "form" } }
|
|
1827
|
+
}
|
|
1828
|
+
},
|
|
1697
1829
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1698
1830
|
url: "/webhook_deliveries",
|
|
1699
1831
|
...options
|
|
1700
1832
|
});
|
|
1701
1833
|
var getSearch = (options) => (options.client ?? client).get({
|
|
1834
|
+
querySerializer: {
|
|
1835
|
+
parameters: {
|
|
1836
|
+
filter: { object: { style: "form" } },
|
|
1837
|
+
fields: { object: { style: "form" } }
|
|
1838
|
+
}
|
|
1839
|
+
},
|
|
1702
1840
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1703
1841
|
url: "/search",
|
|
1704
1842
|
...options
|
|
1705
1843
|
});
|
|
1706
1844
|
var getInvitations = (options) => (options.client ?? client).get({
|
|
1845
|
+
querySerializer: {
|
|
1846
|
+
parameters: {
|
|
1847
|
+
filter: { object: { style: "form" } },
|
|
1848
|
+
fields: { object: { style: "form" } }
|
|
1849
|
+
}
|
|
1850
|
+
},
|
|
1707
1851
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1708
1852
|
url: "/invitations",
|
|
1709
1853
|
...options
|
|
1710
1854
|
});
|
|
1711
1855
|
var getSearchSemantic = (options) => (options.client ?? client).get({
|
|
1856
|
+
querySerializer: {
|
|
1857
|
+
parameters: {
|
|
1858
|
+
filter: { object: { style: "form" } },
|
|
1859
|
+
fields: { object: { style: "form" } }
|
|
1860
|
+
}
|
|
1861
|
+
},
|
|
1712
1862
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1713
1863
|
url: "/search/semantic",
|
|
1714
1864
|
...options
|
|
1715
1865
|
});
|
|
1716
1866
|
var getMessages = (options) => (options.client ?? client).get({
|
|
1867
|
+
querySerializer: {
|
|
1868
|
+
parameters: {
|
|
1869
|
+
filter: { object: { style: "form" } },
|
|
1870
|
+
page: { object: { style: "form" } },
|
|
1871
|
+
fields: { object: { style: "form" } }
|
|
1872
|
+
}
|
|
1873
|
+
},
|
|
1717
1874
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1718
1875
|
url: "/messages",
|
|
1719
1876
|
...options
|
|
1720
1877
|
});
|
|
1721
1878
|
var postMessages = (options) => (options.client ?? client).post({
|
|
1879
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1722
1880
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1723
1881
|
url: "/messages",
|
|
1724
1882
|
...options,
|
|
@@ -1728,11 +1886,19 @@ var postMessages = (options) => (options.client ?? client).post({
|
|
|
1728
1886
|
}
|
|
1729
1887
|
});
|
|
1730
1888
|
var getNotificationPreferences = (options) => (options.client ?? client).get({
|
|
1889
|
+
querySerializer: {
|
|
1890
|
+
parameters: {
|
|
1891
|
+
filter: { object: { style: "form" } },
|
|
1892
|
+
page: { object: { style: "form" } },
|
|
1893
|
+
fields: { object: { style: "form" } }
|
|
1894
|
+
}
|
|
1895
|
+
},
|
|
1731
1896
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1732
1897
|
url: "/notification_preferences",
|
|
1733
1898
|
...options
|
|
1734
1899
|
});
|
|
1735
1900
|
var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
1901
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1736
1902
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1737
1903
|
url: "/notification_preferences",
|
|
1738
1904
|
...options,
|
|
@@ -1742,11 +1908,19 @@ var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
|
1742
1908
|
}
|
|
1743
1909
|
});
|
|
1744
1910
|
var getApplications = (options) => (options.client ?? client).get({
|
|
1911
|
+
querySerializer: {
|
|
1912
|
+
parameters: {
|
|
1913
|
+
filter: { object: { style: "form" } },
|
|
1914
|
+
page: { object: { style: "form" } },
|
|
1915
|
+
fields: { object: { style: "form" } }
|
|
1916
|
+
}
|
|
1917
|
+
},
|
|
1745
1918
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1746
1919
|
url: "/applications",
|
|
1747
1920
|
...options
|
|
1748
1921
|
});
|
|
1749
1922
|
var postApplications = (options) => (options.client ?? client).post({
|
|
1923
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1750
1924
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1751
1925
|
url: "/applications",
|
|
1752
1926
|
...options,
|
|
@@ -1765,16 +1939,19 @@ var postAgentsPredict = (options) => (options.client ?? client).post({
|
|
|
1765
1939
|
}
|
|
1766
1940
|
});
|
|
1767
1941
|
var deleteThreadsById = (options) => (options.client ?? client).delete({
|
|
1942
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1768
1943
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1769
1944
|
url: "/threads/{id}",
|
|
1770
1945
|
...options
|
|
1771
1946
|
});
|
|
1772
1947
|
var getThreadsById = (options) => (options.client ?? client).get({
|
|
1948
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1773
1949
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1774
1950
|
url: "/threads/{id}",
|
|
1775
1951
|
...options
|
|
1776
1952
|
});
|
|
1777
1953
|
var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
1954
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1778
1955
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1779
1956
|
url: "/threads/{id}",
|
|
1780
1957
|
...options,
|
|
@@ -1784,11 +1961,19 @@ var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
|
1784
1961
|
}
|
|
1785
1962
|
});
|
|
1786
1963
|
var getLlmAnalytics = (options) => (options.client ?? client).get({
|
|
1964
|
+
querySerializer: {
|
|
1965
|
+
parameters: {
|
|
1966
|
+
filter: { object: { style: "form" } },
|
|
1967
|
+
page: { object: { style: "form" } },
|
|
1968
|
+
fields: { object: { style: "form" } }
|
|
1969
|
+
}
|
|
1970
|
+
},
|
|
1787
1971
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1788
1972
|
url: "/llm_analytics",
|
|
1789
1973
|
...options
|
|
1790
1974
|
});
|
|
1791
1975
|
var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
1976
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1792
1977
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1793
1978
|
url: "/llm_analytics",
|
|
1794
1979
|
...options,
|
|
@@ -1798,6 +1983,7 @@ var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
|
1798
1983
|
}
|
|
1799
1984
|
});
|
|
1800
1985
|
var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch({
|
|
1986
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1801
1987
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1802
1988
|
url: "/users/{id}/reset-password",
|
|
1803
1989
|
...options,
|
|
@@ -1807,6 +1993,7 @@ var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1807
1993
|
}
|
|
1808
1994
|
});
|
|
1809
1995
|
var postDocumentsPresignedUpload = (options) => (options.client ?? client).post({
|
|
1996
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1810
1997
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1811
1998
|
url: "/documents/presigned_upload",
|
|
1812
1999
|
...options,
|
|
@@ -1816,11 +2003,13 @@ var postDocumentsPresignedUpload = (options) => (options.client ?? client).post(
|
|
|
1816
2003
|
}
|
|
1817
2004
|
});
|
|
1818
2005
|
var getMessagesSearch = (options) => (options.client ?? client).get({
|
|
2006
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1819
2007
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1820
2008
|
url: "/messages/search",
|
|
1821
2009
|
...options
|
|
1822
2010
|
});
|
|
1823
2011
|
var postExtractionDocumentsUpload = (options) => (options.client ?? client).post({
|
|
2012
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1824
2013
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1825
2014
|
url: "/extraction/documents/upload",
|
|
1826
2015
|
...options,
|
|
@@ -1830,6 +2019,7 @@ var postExtractionDocumentsUpload = (options) => (options.client ?? client).post
|
|
|
1830
2019
|
}
|
|
1831
2020
|
});
|
|
1832
2021
|
var patchExtractionResultsByIdCorrections = (options) => (options.client ?? client).patch({
|
|
2022
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1833
2023
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1834
2024
|
url: "/extraction/results/{id}/corrections",
|
|
1835
2025
|
...options,
|
|
@@ -1839,21 +2029,25 @@ var patchExtractionResultsByIdCorrections = (options) => (options.client ?? clie
|
|
|
1839
2029
|
}
|
|
1840
2030
|
});
|
|
1841
2031
|
var getExtractionResultsDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
2032
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1842
2033
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1843
2034
|
url: "/extraction/results/document/{document_id}",
|
|
1844
2035
|
...options
|
|
1845
2036
|
});
|
|
1846
2037
|
var deleteWorkspacesById = (options) => (options.client ?? client).delete({
|
|
2038
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1847
2039
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1848
2040
|
url: "/workspaces/{id}",
|
|
1849
2041
|
...options
|
|
1850
2042
|
});
|
|
1851
2043
|
var getWorkspacesById = (options) => (options.client ?? client).get({
|
|
2044
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1852
2045
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1853
2046
|
url: "/workspaces/{id}",
|
|
1854
2047
|
...options
|
|
1855
2048
|
});
|
|
1856
2049
|
var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
2050
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1857
2051
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1858
2052
|
url: "/workspaces/{id}",
|
|
1859
2053
|
...options,
|
|
@@ -1863,11 +2057,19 @@ var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
|
1863
2057
|
}
|
|
1864
2058
|
});
|
|
1865
2059
|
var getTenants = (options) => (options.client ?? client).get({
|
|
2060
|
+
querySerializer: {
|
|
2061
|
+
parameters: {
|
|
2062
|
+
filter: { object: { style: "form" } },
|
|
2063
|
+
page: { object: { style: "form" } },
|
|
2064
|
+
fields: { object: { style: "form" } }
|
|
2065
|
+
}
|
|
2066
|
+
},
|
|
1866
2067
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1867
2068
|
url: "/tenants",
|
|
1868
2069
|
...options
|
|
1869
2070
|
});
|
|
1870
2071
|
var postTenants = (options) => (options.client ?? client).post({
|
|
2072
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1871
2073
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1872
2074
|
url: "/tenants",
|
|
1873
2075
|
...options,
|
|
@@ -1877,6 +2079,7 @@ var postTenants = (options) => (options.client ?? client).post({
|
|
|
1877
2079
|
}
|
|
1878
2080
|
});
|
|
1879
2081
|
var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post({
|
|
2082
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1880
2083
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1881
2084
|
url: "/tenants/{id}/remove-storage",
|
|
1882
2085
|
...options,
|
|
@@ -1886,31 +2089,49 @@ var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post(
|
|
|
1886
2089
|
}
|
|
1887
2090
|
});
|
|
1888
2091
|
var getNotificationLogsById = (options) => (options.client ?? client).get({
|
|
2092
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1889
2093
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1890
2094
|
url: "/notification_logs/{id}",
|
|
1891
2095
|
...options
|
|
1892
2096
|
});
|
|
1893
2097
|
var getExtractionDocumentsByIdView = (options) => (options.client ?? client).get({
|
|
2098
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1894
2099
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1895
2100
|
url: "/extraction/documents/{id}/view",
|
|
1896
2101
|
...options
|
|
1897
2102
|
});
|
|
1898
2103
|
var getWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
2104
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1899
2105
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1900
2106
|
url: "/webhook_deliveries/{id}",
|
|
1901
2107
|
...options
|
|
1902
2108
|
});
|
|
1903
2109
|
var getAuditLogs = (options) => (options.client ?? client).get({
|
|
2110
|
+
querySerializer: {
|
|
2111
|
+
parameters: {
|
|
2112
|
+
filter: { object: { style: "form" } },
|
|
2113
|
+
page: { object: { style: "form" } },
|
|
2114
|
+
fields: { object: { style: "form" } }
|
|
2115
|
+
}
|
|
2116
|
+
},
|
|
1904
2117
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1905
2118
|
url: "/audit-logs",
|
|
1906
2119
|
...options
|
|
1907
2120
|
});
|
|
1908
2121
|
var getAiGraphEdges = (options) => (options.client ?? client).get({
|
|
2122
|
+
querySerializer: {
|
|
2123
|
+
parameters: {
|
|
2124
|
+
filter: { object: { style: "form" } },
|
|
2125
|
+
page: { object: { style: "form" } },
|
|
2126
|
+
fields: { object: { style: "form" } }
|
|
2127
|
+
}
|
|
2128
|
+
},
|
|
1909
2129
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1910
2130
|
url: "/ai/graph/edges",
|
|
1911
2131
|
...options
|
|
1912
2132
|
});
|
|
1913
2133
|
var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
2134
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1914
2135
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1915
2136
|
url: "/ai/graph/edges",
|
|
1916
2137
|
...options,
|
|
@@ -1920,11 +2141,18 @@ var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
|
1920
2141
|
}
|
|
1921
2142
|
});
|
|
1922
2143
|
var getTrainingExamples = (options) => (options.client ?? client).get({
|
|
2144
|
+
querySerializer: {
|
|
2145
|
+
parameters: {
|
|
2146
|
+
filter: { object: { style: "form" } },
|
|
2147
|
+
fields: { object: { style: "form" } }
|
|
2148
|
+
}
|
|
2149
|
+
},
|
|
1923
2150
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1924
2151
|
url: "/training_examples",
|
|
1925
2152
|
...options
|
|
1926
2153
|
});
|
|
1927
2154
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
2155
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1928
2156
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1929
2157
|
url: "/training_examples",
|
|
1930
2158
|
...options,
|
|
@@ -1934,6 +2162,7 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
1934
2162
|
}
|
|
1935
2163
|
});
|
|
1936
2164
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
2165
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1937
2166
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1938
2167
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
1939
2168
|
...options
|
|
@@ -1944,11 +2173,19 @@ var getAgentsByIdTrainingStats = (options) => (options.client ?? client).get({
|
|
|
1944
2173
|
...options
|
|
1945
2174
|
});
|
|
1946
2175
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
2176
|
+
querySerializer: {
|
|
2177
|
+
parameters: {
|
|
2178
|
+
filter: { object: { style: "form" } },
|
|
2179
|
+
page: { object: { style: "form" } },
|
|
2180
|
+
fields: { object: { style: "form" } }
|
|
2181
|
+
}
|
|
2182
|
+
},
|
|
1947
2183
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1948
2184
|
url: "/buckets",
|
|
1949
2185
|
...options
|
|
1950
2186
|
});
|
|
1951
2187
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
2188
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1952
2189
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1953
2190
|
url: "/buckets",
|
|
1954
2191
|
...options,
|
|
@@ -1958,16 +2195,19 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
1958
2195
|
}
|
|
1959
2196
|
});
|
|
1960
2197
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
2198
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1961
2199
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1962
2200
|
url: "/plans/{id}",
|
|
1963
2201
|
...options
|
|
1964
2202
|
});
|
|
1965
2203
|
var getTenantsByTenantIdStats = (options) => (options.client ?? client).get({
|
|
2204
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1966
2205
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1967
2206
|
url: "/tenants/{tenant_id}/stats",
|
|
1968
2207
|
...options
|
|
1969
2208
|
});
|
|
1970
2209
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
2210
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1971
2211
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1972
2212
|
url: "/wallet/addons",
|
|
1973
2213
|
...options,
|
|
@@ -1977,6 +2217,7 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
1977
2217
|
}
|
|
1978
2218
|
});
|
|
1979
2219
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
2220
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1980
2221
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1981
2222
|
url: "/users/auth/magic_link/login",
|
|
1982
2223
|
...options,
|
|
@@ -1986,11 +2227,19 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
1986
2227
|
}
|
|
1987
2228
|
});
|
|
1988
2229
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
2230
|
+
querySerializer: {
|
|
2231
|
+
parameters: {
|
|
2232
|
+
filter: { object: { style: "form" } },
|
|
2233
|
+
page: { object: { style: "form" } },
|
|
2234
|
+
fields: { object: { style: "form" } }
|
|
2235
|
+
}
|
|
2236
|
+
},
|
|
1989
2237
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1990
2238
|
url: "/api_keys",
|
|
1991
2239
|
...options
|
|
1992
2240
|
});
|
|
1993
2241
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
2242
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1994
2243
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1995
2244
|
url: "/api_keys",
|
|
1996
2245
|
...options,
|
|
@@ -2000,6 +2249,7 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
2000
2249
|
}
|
|
2001
2250
|
});
|
|
2002
2251
|
var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
2252
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2003
2253
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2004
2254
|
url: "/users/{id}/admin",
|
|
2005
2255
|
...options,
|
|
@@ -2009,16 +2259,19 @@ var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
|
2009
2259
|
}
|
|
2010
2260
|
});
|
|
2011
2261
|
var deleteAgentsById = (options) => (options.client ?? client).delete({
|
|
2262
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2012
2263
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2013
2264
|
url: "/agents/{id}",
|
|
2014
2265
|
...options
|
|
2015
2266
|
});
|
|
2016
2267
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
2268
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2017
2269
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2018
2270
|
url: "/agents/{id}",
|
|
2019
2271
|
...options
|
|
2020
2272
|
});
|
|
2021
2273
|
var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
2274
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2022
2275
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2023
2276
|
url: "/agents/{id}",
|
|
2024
2277
|
...options,
|
|
@@ -2028,16 +2281,19 @@ var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
|
2028
2281
|
}
|
|
2029
2282
|
});
|
|
2030
2283
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
2284
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2031
2285
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2032
2286
|
url: "/api_keys/{id}",
|
|
2033
2287
|
...options
|
|
2034
2288
|
});
|
|
2035
2289
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
2290
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2036
2291
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2037
2292
|
url: "/api_keys/{id}",
|
|
2038
2293
|
...options
|
|
2039
2294
|
});
|
|
2040
2295
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
2296
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2041
2297
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2042
2298
|
url: "/api_keys/{id}",
|
|
2043
2299
|
...options,
|
|
@@ -2047,11 +2303,19 @@ var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
|
2047
2303
|
}
|
|
2048
2304
|
});
|
|
2049
2305
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
2306
|
+
querySerializer: {
|
|
2307
|
+
parameters: {
|
|
2308
|
+
filter: { object: { style: "form" } },
|
|
2309
|
+
page: { object: { style: "form" } },
|
|
2310
|
+
fields: { object: { style: "form" } }
|
|
2311
|
+
}
|
|
2312
|
+
},
|
|
2050
2313
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2051
2314
|
url: "/ai/conversations",
|
|
2052
2315
|
...options
|
|
2053
2316
|
});
|
|
2054
2317
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
2318
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2055
2319
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2056
2320
|
url: "/ai/conversations",
|
|
2057
2321
|
...options,
|
|
@@ -2061,6 +2325,7 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
2061
2325
|
}
|
|
2062
2326
|
});
|
|
2063
2327
|
var postAgentsByIdLearnFromDocument = (options) => (options.client ?? client).post({
|
|
2328
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2064
2329
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2065
2330
|
url: "/agents/{id}/learn_from_document",
|
|
2066
2331
|
...options,
|
|
@@ -2070,6 +2335,7 @@ var postAgentsByIdLearnFromDocument = (options) => (options.client ?? client).po
|
|
|
2070
2335
|
}
|
|
2071
2336
|
});
|
|
2072
2337
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
2338
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2073
2339
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2074
2340
|
url: "/ai/search",
|
|
2075
2341
|
...options,
|
|
@@ -2079,11 +2345,13 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
2079
2345
|
}
|
|
2080
2346
|
});
|
|
2081
2347
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
2348
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2082
2349
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2083
2350
|
url: "/ai/graph/nodes/{id}",
|
|
2084
2351
|
...options
|
|
2085
2352
|
});
|
|
2086
2353
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
2354
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2087
2355
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2088
2356
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
2089
2357
|
...options,
|
|
@@ -2093,16 +2361,19 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
2093
2361
|
}
|
|
2094
2362
|
});
|
|
2095
2363
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
2364
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2096
2365
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2097
2366
|
url: "/applications/{id}",
|
|
2098
2367
|
...options
|
|
2099
2368
|
});
|
|
2100
2369
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
2370
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2101
2371
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2102
2372
|
url: "/applications/{id}",
|
|
2103
2373
|
...options
|
|
2104
2374
|
});
|
|
2105
2375
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
2376
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2106
2377
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2107
2378
|
url: "/applications/{id}",
|
|
2108
2379
|
...options,
|
|
@@ -2112,21 +2383,41 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
2112
2383
|
}
|
|
2113
2384
|
});
|
|
2114
2385
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
2386
|
+
querySerializer: {
|
|
2387
|
+
parameters: {
|
|
2388
|
+
filter: { object: { style: "form" } },
|
|
2389
|
+
fields: { object: { style: "form" } }
|
|
2390
|
+
}
|
|
2391
|
+
},
|
|
2115
2392
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2116
2393
|
url: "/search/health",
|
|
2117
2394
|
...options
|
|
2118
2395
|
});
|
|
2119
2396
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
2397
|
+
querySerializer: {
|
|
2398
|
+
parameters: {
|
|
2399
|
+
filter: { object: { style: "form" } },
|
|
2400
|
+
fields: { object: { style: "form" } }
|
|
2401
|
+
}
|
|
2402
|
+
},
|
|
2120
2403
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2121
2404
|
url: "/transactions",
|
|
2122
2405
|
...options
|
|
2123
2406
|
});
|
|
2124
2407
|
var getUserProfiles = (options) => (options.client ?? client).get({
|
|
2408
|
+
querySerializer: {
|
|
2409
|
+
parameters: {
|
|
2410
|
+
filter: { object: { style: "form" } },
|
|
2411
|
+
page: { object: { style: "form" } },
|
|
2412
|
+
fields: { object: { style: "form" } }
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2125
2415
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2126
2416
|
url: "/user_profiles",
|
|
2127
2417
|
...options
|
|
2128
2418
|
});
|
|
2129
2419
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
2420
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2130
2421
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2131
2422
|
url: "/user_profiles",
|
|
2132
2423
|
...options,
|
|
@@ -2136,6 +2427,7 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
2136
2427
|
}
|
|
2137
2428
|
});
|
|
2138
2429
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
2430
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2139
2431
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2140
2432
|
url: "/users/{id}/confirm-email",
|
|
2141
2433
|
...options,
|
|
@@ -2145,11 +2437,13 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
2145
2437
|
}
|
|
2146
2438
|
});
|
|
2147
2439
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
2440
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2148
2441
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2149
2442
|
url: "/threads/search",
|
|
2150
2443
|
...options
|
|
2151
2444
|
});
|
|
2152
2445
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
2446
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2153
2447
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2154
2448
|
url: "/wallet/plan",
|
|
2155
2449
|
...options,
|
|
@@ -2159,21 +2453,31 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
2159
2453
|
}
|
|
2160
2454
|
});
|
|
2161
2455
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
2456
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2162
2457
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2163
2458
|
url: "/plans/slug/{slug}",
|
|
2164
2459
|
...options
|
|
2165
2460
|
});
|
|
2166
2461
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
2462
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2167
2463
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2168
2464
|
url: "/llm_analytics/{id}",
|
|
2169
2465
|
...options
|
|
2170
2466
|
});
|
|
2171
2467
|
var getExtractionSchemaFields = (options) => (options.client ?? client).get({
|
|
2468
|
+
querySerializer: {
|
|
2469
|
+
parameters: {
|
|
2470
|
+
filter: { object: { style: "form" } },
|
|
2471
|
+
page: { object: { style: "form" } },
|
|
2472
|
+
fields: { object: { style: "form" } }
|
|
2473
|
+
}
|
|
2474
|
+
},
|
|
2172
2475
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2173
2476
|
url: "/extraction/schema-fields",
|
|
2174
2477
|
...options
|
|
2175
2478
|
});
|
|
2176
2479
|
var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
2480
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2177
2481
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2178
2482
|
url: "/extraction/schema-fields",
|
|
2179
2483
|
...options,
|
|
@@ -2183,6 +2487,7 @@ var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
|
2183
2487
|
}
|
|
2184
2488
|
});
|
|
2185
2489
|
var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).patch({
|
|
2490
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2186
2491
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2187
2492
|
url: "/applications/{id}/grant-credits",
|
|
2188
2493
|
...options,
|
|
@@ -2192,16 +2497,29 @@ var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).
|
|
|
2192
2497
|
}
|
|
2193
2498
|
});
|
|
2194
2499
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
2500
|
+
querySerializer: {
|
|
2501
|
+
parameters: {
|
|
2502
|
+
filter: { object: { style: "form" } },
|
|
2503
|
+
fields: { object: { style: "form" } }
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2195
2506
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2196
2507
|
url: "/search/status",
|
|
2197
2508
|
...options
|
|
2198
2509
|
});
|
|
2199
2510
|
var getTenantsByTenantIdWorkspaceStats = (options) => (options.client ?? client).get({
|
|
2511
|
+
querySerializer: {
|
|
2512
|
+
parameters: {
|
|
2513
|
+
filter: { object: { style: "form" } },
|
|
2514
|
+
fields: { object: { style: "form" } }
|
|
2515
|
+
}
|
|
2516
|
+
},
|
|
2200
2517
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2201
2518
|
url: "/tenants/{tenant_id}/workspace_stats",
|
|
2202
2519
|
...options
|
|
2203
2520
|
});
|
|
2204
2521
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
2522
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2205
2523
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2206
2524
|
url: "/api_keys/{id}/allocate",
|
|
2207
2525
|
...options,
|
|
@@ -2211,6 +2529,7 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
2211
2529
|
}
|
|
2212
2530
|
});
|
|
2213
2531
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
2532
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2214
2533
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2215
2534
|
url: "/users/auth/login",
|
|
2216
2535
|
...options,
|
|
@@ -2220,6 +2539,7 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
2220
2539
|
}
|
|
2221
2540
|
});
|
|
2222
2541
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
2542
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2223
2543
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2224
2544
|
url: "/ai/embed",
|
|
2225
2545
|
...options,
|
|
@@ -2229,11 +2549,18 @@ var postAiEmbed = (options) => (options.client ?? client).post({
|
|
|
2229
2549
|
}
|
|
2230
2550
|
});
|
|
2231
2551
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
2552
|
+
querySerializer: {
|
|
2553
|
+
parameters: {
|
|
2554
|
+
filter: { object: { style: "form" } },
|
|
2555
|
+
fields: { object: { style: "form" } }
|
|
2556
|
+
}
|
|
2557
|
+
},
|
|
2232
2558
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2233
2559
|
url: "/workspaces/mine",
|
|
2234
2560
|
...options
|
|
2235
2561
|
});
|
|
2236
2562
|
var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
2563
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2237
2564
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2238
2565
|
url: "/tenants/isv",
|
|
2239
2566
|
...options,
|
|
@@ -2243,6 +2570,7 @@ var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
|
2243
2570
|
}
|
|
2244
2571
|
});
|
|
2245
2572
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
2573
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2246
2574
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2247
2575
|
url: "/search/reindex",
|
|
2248
2576
|
...options,
|
|
@@ -2252,6 +2580,7 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
2252
2580
|
}
|
|
2253
2581
|
});
|
|
2254
2582
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
2583
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2255
2584
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2256
2585
|
url: "/extraction/results/{id}/regenerate",
|
|
2257
2586
|
...options,
|
|
@@ -2261,6 +2590,7 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
2261
2590
|
}
|
|
2262
2591
|
});
|
|
2263
2592
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
2593
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2264
2594
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2265
2595
|
url: "/users/auth/confirm",
|
|
2266
2596
|
...options,
|
|
@@ -2269,7 +2599,20 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
2269
2599
|
...options.headers
|
|
2270
2600
|
}
|
|
2271
2601
|
});
|
|
2602
|
+
var getExtractionSchemas = (options) => (options.client ?? client).get({
|
|
2603
|
+
querySerializer: {
|
|
2604
|
+
parameters: {
|
|
2605
|
+
filter: { object: { style: "form" } },
|
|
2606
|
+
page: { object: { style: "form" } },
|
|
2607
|
+
fields: { object: { style: "form" } }
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
2611
|
+
url: "/extraction/schemas",
|
|
2612
|
+
...options
|
|
2613
|
+
});
|
|
2272
2614
|
var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
2615
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2273
2616
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2274
2617
|
url: "/extraction/schemas",
|
|
2275
2618
|
...options,
|
|
@@ -2279,11 +2622,18 @@ var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
|
2279
2622
|
}
|
|
2280
2623
|
});
|
|
2281
2624
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
2625
|
+
querySerializer: {
|
|
2626
|
+
parameters: {
|
|
2627
|
+
filter: { object: { style: "form" } },
|
|
2628
|
+
fields: { object: { style: "form" } }
|
|
2629
|
+
}
|
|
2630
|
+
},
|
|
2282
2631
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2283
2632
|
url: "/storage/stats",
|
|
2284
2633
|
...options
|
|
2285
2634
|
});
|
|
2286
2635
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
2636
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2287
2637
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2288
2638
|
url: "/tenants/{id}/buy-storage",
|
|
2289
2639
|
...options,
|
|
@@ -2293,11 +2643,19 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
2293
2643
|
}
|
|
2294
2644
|
});
|
|
2295
2645
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
2646
|
+
querySerializer: {
|
|
2647
|
+
parameters: {
|
|
2648
|
+
filter: { object: { style: "form" } },
|
|
2649
|
+
page: { object: { style: "form" } },
|
|
2650
|
+
fields: { object: { style: "form" } }
|
|
2651
|
+
}
|
|
2652
|
+
},
|
|
2296
2653
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2297
2654
|
url: "/workspace-memberships",
|
|
2298
2655
|
...options
|
|
2299
2656
|
});
|
|
2300
2657
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
2658
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2301
2659
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2302
2660
|
url: "/workspace-memberships",
|
|
2303
2661
|
...options,
|
|
@@ -2307,11 +2665,13 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
2307
2665
|
}
|
|
2308
2666
|
});
|
|
2309
2667
|
var getTenantsByTenantIdDocumentStats = (options) => (options.client ?? client).get({
|
|
2668
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2310
2669
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2311
2670
|
url: "/tenants/{tenant_id}/document_stats",
|
|
2312
2671
|
...options
|
|
2313
2672
|
});
|
|
2314
2673
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
2674
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2315
2675
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2316
2676
|
url: "/users/auth/magic_link/request",
|
|
2317
2677
|
...options,
|
|
@@ -2321,6 +2681,7 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
2321
2681
|
}
|
|
2322
2682
|
});
|
|
2323
2683
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
2684
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2324
2685
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2325
2686
|
url: "/users/auth/register",
|
|
2326
2687
|
...options,
|
|
@@ -2339,16 +2700,19 @@ var postTrainingExamplesBulk = (options) => (options.client ?? client).post({
|
|
|
2339
2700
|
}
|
|
2340
2701
|
});
|
|
2341
2702
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
2703
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2342
2704
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2343
2705
|
url: "/buckets/{id}",
|
|
2344
2706
|
...options
|
|
2345
2707
|
});
|
|
2346
2708
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
2709
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2347
2710
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2348
2711
|
url: "/buckets/{id}",
|
|
2349
2712
|
...options
|
|
2350
2713
|
});
|
|
2351
2714
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
2715
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2352
2716
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2353
2717
|
url: "/buckets/{id}",
|
|
2354
2718
|
...options,
|
|
@@ -2358,11 +2722,18 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
2358
2722
|
}
|
|
2359
2723
|
});
|
|
2360
2724
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
2725
|
+
querySerializer: {
|
|
2726
|
+
parameters: {
|
|
2727
|
+
filter: { object: { style: "form" } },
|
|
2728
|
+
fields: { object: { style: "form" } }
|
|
2729
|
+
}
|
|
2730
|
+
},
|
|
2361
2731
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2362
2732
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
2363
2733
|
...options
|
|
2364
2734
|
});
|
|
2365
2735
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
2736
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2366
2737
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2367
2738
|
url: "/extraction/documents/begin_upload",
|
|
2368
2739
|
...options,
|
|
@@ -2372,21 +2743,25 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
2372
2743
|
}
|
|
2373
2744
|
});
|
|
2374
2745
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
2746
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2375
2747
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2376
2748
|
url: "/ai/graph/edges/{id}",
|
|
2377
2749
|
...options
|
|
2378
2750
|
});
|
|
2379
2751
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
2752
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2380
2753
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2381
2754
|
url: "/tenants/{id}",
|
|
2382
2755
|
...options
|
|
2383
2756
|
});
|
|
2384
2757
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
2758
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2385
2759
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2386
2760
|
url: "/tenants/{id}",
|
|
2387
2761
|
...options
|
|
2388
2762
|
});
|
|
2389
2763
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
2764
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2390
2765
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2391
2766
|
url: "/tenants/{id}",
|
|
2392
2767
|
...options,
|
|
@@ -2396,11 +2771,19 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
2396
2771
|
}
|
|
2397
2772
|
});
|
|
2398
2773
|
var getPlans = (options) => (options.client ?? client).get({
|
|
2774
|
+
querySerializer: {
|
|
2775
|
+
parameters: {
|
|
2776
|
+
filter: { object: { style: "form" } },
|
|
2777
|
+
page: { object: { style: "form" } },
|
|
2778
|
+
fields: { object: { style: "form" } }
|
|
2779
|
+
}
|
|
2780
|
+
},
|
|
2399
2781
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2400
2782
|
url: "/plans",
|
|
2401
2783
|
...options
|
|
2402
2784
|
});
|
|
2403
2785
|
var patchExtractionSchemasByIdFields = (options) => (options.client ?? client).patch({
|
|
2786
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2404
2787
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2405
2788
|
url: "/extraction/schemas/{id}/fields",
|
|
2406
2789
|
...options,
|
|
@@ -2410,11 +2793,13 @@ var patchExtractionSchemasByIdFields = (options) => (options.client ?? client).p
|
|
|
2410
2793
|
}
|
|
2411
2794
|
});
|
|
2412
2795
|
var getExtractionSchemasById = (options) => (options.client ?? client).get({
|
|
2796
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2413
2797
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2414
2798
|
url: "/extraction/schemas/{id}",
|
|
2415
2799
|
...options
|
|
2416
2800
|
});
|
|
2417
2801
|
var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
2802
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2418
2803
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2419
2804
|
url: "/extraction/schemas/{id}",
|
|
2420
2805
|
...options,
|
|
@@ -2424,6 +2809,7 @@ var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
|
2424
2809
|
}
|
|
2425
2810
|
});
|
|
2426
2811
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
2812
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2427
2813
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2428
2814
|
url: "/agents/{id}/test",
|
|
2429
2815
|
...options,
|
|
@@ -2433,16 +2819,24 @@ var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
|
2433
2819
|
}
|
|
2434
2820
|
});
|
|
2435
2821
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
2822
|
+
querySerializer: {
|
|
2823
|
+
parameters: {
|
|
2824
|
+
filter: { object: { style: "form" } },
|
|
2825
|
+
fields: { object: { style: "form" } }
|
|
2826
|
+
}
|
|
2827
|
+
},
|
|
2436
2828
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2437
2829
|
url: "/extraction/documents",
|
|
2438
2830
|
...options
|
|
2439
2831
|
});
|
|
2440
2832
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
2833
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2441
2834
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2442
2835
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2443
2836
|
...options
|
|
2444
2837
|
});
|
|
2445
2838
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
2839
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2446
2840
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2447
2841
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2448
2842
|
...options,
|
|
@@ -2452,6 +2846,7 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
2452
2846
|
}
|
|
2453
2847
|
});
|
|
2454
2848
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
2849
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2455
2850
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2456
2851
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
2457
2852
|
...options,
|
|
@@ -2461,11 +2856,18 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
2461
2856
|
}
|
|
2462
2857
|
});
|
|
2463
2858
|
var getFieldTemplates = (options) => (options.client ?? client).get({
|
|
2859
|
+
querySerializer: {
|
|
2860
|
+
parameters: {
|
|
2861
|
+
filter: { object: { style: "form" } },
|
|
2862
|
+
fields: { object: { style: "form" } }
|
|
2863
|
+
}
|
|
2864
|
+
},
|
|
2464
2865
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2465
2866
|
url: "/field_templates",
|
|
2466
2867
|
...options
|
|
2467
2868
|
});
|
|
2468
2869
|
var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
2870
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2469
2871
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2470
2872
|
url: "/field_templates",
|
|
2471
2873
|
...options,
|
|
@@ -2475,11 +2877,19 @@ var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
|
2475
2877
|
}
|
|
2476
2878
|
});
|
|
2477
2879
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
2880
|
+
querySerializer: {
|
|
2881
|
+
parameters: {
|
|
2882
|
+
filter: { object: { style: "form" } },
|
|
2883
|
+
page: { object: { style: "form" } },
|
|
2884
|
+
fields: { object: { style: "form" } }
|
|
2885
|
+
}
|
|
2886
|
+
},
|
|
2478
2887
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2479
2888
|
url: "/ai/messages",
|
|
2480
2889
|
...options
|
|
2481
2890
|
});
|
|
2482
2891
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
2892
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2483
2893
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2484
2894
|
url: "/ai/messages",
|
|
2485
2895
|
...options,
|
|
@@ -2489,6 +2899,7 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
2489
2899
|
}
|
|
2490
2900
|
});
|
|
2491
2901
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
2902
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2492
2903
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2493
2904
|
url: "/storage/sign_upload",
|
|
2494
2905
|
...options,
|
|
@@ -2498,6 +2909,7 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
2498
2909
|
}
|
|
2499
2910
|
});
|
|
2500
2911
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
2912
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2501
2913
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2502
2914
|
url: "/webhook_deliveries/{id}/retry",
|
|
2503
2915
|
...options,
|
|
@@ -2507,11 +2919,19 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
2507
2919
|
}
|
|
2508
2920
|
});
|
|
2509
2921
|
var getNotificationMethods = (options) => (options.client ?? client).get({
|
|
2922
|
+
querySerializer: {
|
|
2923
|
+
parameters: {
|
|
2924
|
+
filter: { object: { style: "form" } },
|
|
2925
|
+
page: { object: { style: "form" } },
|
|
2926
|
+
fields: { object: { style: "form" } }
|
|
2927
|
+
}
|
|
2928
|
+
},
|
|
2510
2929
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2511
2930
|
url: "/notification_methods",
|
|
2512
2931
|
...options
|
|
2513
2932
|
});
|
|
2514
2933
|
var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
2934
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2515
2935
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2516
2936
|
url: "/notification_methods",
|
|
2517
2937
|
...options,
|
|
@@ -2521,6 +2941,7 @@ var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
|
2521
2941
|
}
|
|
2522
2942
|
});
|
|
2523
2943
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
2944
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2524
2945
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2525
2946
|
url: "/threads/{id}/summarize",
|
|
2526
2947
|
...options,
|
|
@@ -2530,6 +2951,7 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
2530
2951
|
}
|
|
2531
2952
|
});
|
|
2532
2953
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
2954
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2533
2955
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2534
2956
|
url: "/configs/{key}",
|
|
2535
2957
|
...options,
|
|
@@ -2539,6 +2961,7 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
2539
2961
|
}
|
|
2540
2962
|
});
|
|
2541
2963
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
2964
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2542
2965
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2543
2966
|
url: "/api_keys/{id}/rotate",
|
|
2544
2967
|
...options,
|
|
@@ -2548,6 +2971,7 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
2548
2971
|
}
|
|
2549
2972
|
});
|
|
2550
2973
|
var postExtractionResults = (options) => (options.client ?? client).post({
|
|
2974
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2551
2975
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2552
2976
|
url: "/extraction/results",
|
|
2553
2977
|
...options,
|
|
@@ -2557,6 +2981,7 @@ var postExtractionResults = (options) => (options.client ?? client).post({
|
|
|
2557
2981
|
}
|
|
2558
2982
|
});
|
|
2559
2983
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
2984
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2560
2985
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2561
2986
|
url: "/agents/{id}/clone",
|
|
2562
2987
|
...options,
|
|
@@ -2566,16 +2991,19 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
2566
2991
|
}
|
|
2567
2992
|
});
|
|
2568
2993
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
2994
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2569
2995
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2570
2996
|
url: "/ai/conversations/{id}",
|
|
2571
2997
|
...options
|
|
2572
2998
|
});
|
|
2573
2999
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
3000
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2574
3001
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2575
3002
|
url: "/ai/conversations/{id}",
|
|
2576
3003
|
...options
|
|
2577
3004
|
});
|
|
2578
3005
|
var postExtractionSchemasBulkCreate = (options) => (options.client ?? client).post({
|
|
3006
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2579
3007
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2580
3008
|
url: "/extraction/schemas/bulk_create",
|
|
2581
3009
|
...options,
|
|
@@ -2585,16 +3013,19 @@ var postExtractionSchemasBulkCreate = (options) => (options.client ?? client).po
|
|
|
2585
3013
|
}
|
|
2586
3014
|
});
|
|
2587
3015
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
3016
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2588
3017
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2589
3018
|
url: "/user_profiles/{id}",
|
|
2590
3019
|
...options
|
|
2591
3020
|
});
|
|
2592
3021
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
3022
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2593
3023
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2594
3024
|
url: "/user_profiles/{id}",
|
|
2595
3025
|
...options
|
|
2596
3026
|
});
|
|
2597
3027
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
3028
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2598
3029
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2599
3030
|
url: "/user_profiles/{id}",
|
|
2600
3031
|
...options,
|
|
@@ -2604,21 +3035,31 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
2604
3035
|
}
|
|
2605
3036
|
});
|
|
2606
3037
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
3038
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2607
3039
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2608
3040
|
url: "/objects/{id}",
|
|
2609
3041
|
...options
|
|
2610
3042
|
});
|
|
2611
3043
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
3044
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2612
3045
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2613
3046
|
url: "/objects/{id}",
|
|
2614
3047
|
...options
|
|
2615
3048
|
});
|
|
2616
3049
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
3050
|
+
querySerializer: {
|
|
3051
|
+
parameters: {
|
|
3052
|
+
filter: { object: { style: "form" } },
|
|
3053
|
+
page: { object: { style: "form" } },
|
|
3054
|
+
fields: { object: { style: "form" } }
|
|
3055
|
+
}
|
|
3056
|
+
},
|
|
2617
3057
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2618
3058
|
url: "/webhook_configs",
|
|
2619
3059
|
...options
|
|
2620
3060
|
});
|
|
2621
3061
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
3062
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2622
3063
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2623
3064
|
url: "/webhook_configs",
|
|
2624
3065
|
...options,
|
|
@@ -2628,6 +3069,7 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
2628
3069
|
}
|
|
2629
3070
|
});
|
|
2630
3071
|
var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post({
|
|
3072
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2631
3073
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2632
3074
|
url: "/agents/{id}/publish_version",
|
|
2633
3075
|
...options,
|
|
@@ -2637,6 +3079,7 @@ var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post(
|
|
|
2637
3079
|
}
|
|
2638
3080
|
});
|
|
2639
3081
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
3082
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2640
3083
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2641
3084
|
url: "/objects/bulk-destroy",
|
|
2642
3085
|
...options,
|
|
@@ -2646,31 +3089,52 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
2646
3089
|
}
|
|
2647
3090
|
});
|
|
2648
3091
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
3092
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2649
3093
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2650
3094
|
url: "/applications/by-slug/{slug}",
|
|
2651
3095
|
...options
|
|
2652
3096
|
});
|
|
2653
3097
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
3098
|
+
querySerializer: {
|
|
3099
|
+
parameters: {
|
|
3100
|
+
filter: { object: { style: "form" } },
|
|
3101
|
+
fields: { object: { style: "form" } }
|
|
3102
|
+
}
|
|
3103
|
+
},
|
|
2654
3104
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2655
3105
|
url: "/notification_logs",
|
|
2656
3106
|
...options
|
|
2657
3107
|
});
|
|
2658
3108
|
var getWallet = (options) => (options.client ?? client).get({
|
|
3109
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2659
3110
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2660
3111
|
url: "/wallet",
|
|
2661
3112
|
...options
|
|
2662
3113
|
});
|
|
3114
|
+
var patchExtractionSchemasByIdActivate = (options) => (options.client ?? client).patch({
|
|
3115
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3116
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
3117
|
+
url: "/extraction/schemas/{id}/activate",
|
|
3118
|
+
...options,
|
|
3119
|
+
headers: {
|
|
3120
|
+
"Content-Type": "application/vnd.api+json",
|
|
3121
|
+
...options.headers
|
|
3122
|
+
}
|
|
3123
|
+
});
|
|
2663
3124
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
3125
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2664
3126
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2665
3127
|
url: "/messages/{id}",
|
|
2666
3128
|
...options
|
|
2667
3129
|
});
|
|
2668
3130
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
3131
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2669
3132
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2670
3133
|
url: "/messages/{id}",
|
|
2671
3134
|
...options
|
|
2672
3135
|
});
|
|
2673
3136
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
3137
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2674
3138
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2675
3139
|
url: "/messages/{id}",
|
|
2676
3140
|
...options,
|
|
@@ -2680,26 +3144,36 @@ var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
|
2680
3144
|
}
|
|
2681
3145
|
});
|
|
2682
3146
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
3147
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2683
3148
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2684
3149
|
url: "/llm_analytics/usage",
|
|
2685
3150
|
...options
|
|
2686
3151
|
});
|
|
2687
3152
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
3153
|
+
querySerializer: {
|
|
3154
|
+
parameters: {
|
|
3155
|
+
filter: { object: { style: "form" } },
|
|
3156
|
+
fields: { object: { style: "form" } }
|
|
3157
|
+
}
|
|
3158
|
+
},
|
|
2688
3159
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2689
3160
|
url: "/search/stats",
|
|
2690
3161
|
...options
|
|
2691
3162
|
});
|
|
2692
3163
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
3164
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2693
3165
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2694
3166
|
url: "/notification_preferences/{id}",
|
|
2695
3167
|
...options
|
|
2696
3168
|
});
|
|
2697
3169
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
3170
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2698
3171
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2699
3172
|
url: "/notification_preferences/{id}",
|
|
2700
3173
|
...options
|
|
2701
3174
|
});
|
|
2702
3175
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
3176
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2703
3177
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2704
3178
|
url: "/notification_preferences/{id}",
|
|
2705
3179
|
...options,
|
|
@@ -2709,11 +3183,19 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
2709
3183
|
}
|
|
2710
3184
|
});
|
|
2711
3185
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
3186
|
+
querySerializer: {
|
|
3187
|
+
parameters: {
|
|
3188
|
+
filter: { object: { style: "form" } },
|
|
3189
|
+
page: { object: { style: "form" } },
|
|
3190
|
+
fields: { object: { style: "form" } }
|
|
3191
|
+
}
|
|
3192
|
+
},
|
|
2712
3193
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2713
3194
|
url: "/ai/graph/nodes",
|
|
2714
3195
|
...options
|
|
2715
3196
|
});
|
|
2716
3197
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
3198
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2717
3199
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2718
3200
|
url: "/ai/graph/nodes",
|
|
2719
3201
|
...options,
|
|
@@ -2723,11 +3205,19 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
2723
3205
|
}
|
|
2724
3206
|
});
|
|
2725
3207
|
var getAgents = (options) => (options.client ?? client).get({
|
|
3208
|
+
querySerializer: {
|
|
3209
|
+
parameters: {
|
|
3210
|
+
filter: { object: { style: "form" } },
|
|
3211
|
+
page: { object: { style: "form" } },
|
|
3212
|
+
fields: { object: { style: "form" } }
|
|
3213
|
+
}
|
|
3214
|
+
},
|
|
2726
3215
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2727
3216
|
url: "/agents",
|
|
2728
3217
|
...options
|
|
2729
3218
|
});
|
|
2730
3219
|
var postAgents = (options) => (options.client ?? client).post({
|
|
3220
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2731
3221
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2732
3222
|
url: "/agents",
|
|
2733
3223
|
...options,
|
|
@@ -2737,6 +3227,7 @@ var postAgents = (options) => (options.client ?? client).post({
|
|
|
2737
3227
|
}
|
|
2738
3228
|
});
|
|
2739
3229
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
3230
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2740
3231
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2741
3232
|
url: "/users/register_isv",
|
|
2742
3233
|
...options,
|
|
@@ -2746,16 +3237,25 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
2746
3237
|
}
|
|
2747
3238
|
});
|
|
2748
3239
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
3240
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2749
3241
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2750
3242
|
url: "/extraction/batches/{id}",
|
|
2751
3243
|
...options
|
|
2752
3244
|
});
|
|
2753
3245
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
3246
|
+
querySerializer: {
|
|
3247
|
+
parameters: {
|
|
3248
|
+
filter: { object: { style: "form" } },
|
|
3249
|
+
page: { object: { style: "form" } },
|
|
3250
|
+
fields: { object: { style: "form" } }
|
|
3251
|
+
}
|
|
3252
|
+
},
|
|
2754
3253
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2755
3254
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2756
3255
|
...options
|
|
2757
3256
|
});
|
|
2758
3257
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
3258
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2759
3259
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2760
3260
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2761
3261
|
...options,
|
|
@@ -2765,11 +3265,13 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
2765
3265
|
}
|
|
2766
3266
|
});
|
|
2767
3267
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
3268
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2768
3269
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2769
3270
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2770
3271
|
...options
|
|
2771
3272
|
});
|
|
2772
3273
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
3274
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2773
3275
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2774
3276
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2775
3277
|
...options,
|
|
@@ -2779,16 +3281,37 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
2779
3281
|
}
|
|
2780
3282
|
});
|
|
2781
3283
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
3284
|
+
querySerializer: {
|
|
3285
|
+
parameters: {
|
|
3286
|
+
filter: { object: { style: "form" } },
|
|
3287
|
+
page: { object: { style: "form" } },
|
|
3288
|
+
fields: { object: { style: "form" } }
|
|
3289
|
+
}
|
|
3290
|
+
},
|
|
2782
3291
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2783
3292
|
url: "/credit-packages",
|
|
2784
3293
|
...options
|
|
2785
3294
|
});
|
|
2786
3295
|
var getUsers = (options) => (options.client ?? client).get({
|
|
3296
|
+
querySerializer: {
|
|
3297
|
+
parameters: {
|
|
3298
|
+
filter: { object: { style: "form" } },
|
|
3299
|
+
page: { object: { style: "form" } },
|
|
3300
|
+
fields: { object: { style: "form" } }
|
|
3301
|
+
}
|
|
3302
|
+
},
|
|
2787
3303
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2788
3304
|
url: "/users",
|
|
2789
3305
|
...options
|
|
2790
3306
|
});
|
|
2791
3307
|
var getObjects = (options) => (options.client ?? client).get({
|
|
3308
|
+
querySerializer: {
|
|
3309
|
+
parameters: {
|
|
3310
|
+
filter: { object: { style: "form" } },
|
|
3311
|
+
page: { object: { style: "form" } },
|
|
3312
|
+
fields: { object: { style: "form" } }
|
|
3313
|
+
}
|
|
3314
|
+
},
|
|
2792
3315
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2793
3316
|
url: "/objects",
|
|
2794
3317
|
...options
|
|
@@ -3221,6 +3744,7 @@ async function collectStreamedMessage(stream) {
|
|
|
3221
3744
|
getExtractionResultsDocumentByDocumentId,
|
|
3222
3745
|
getExtractionSchemaFields,
|
|
3223
3746
|
getExtractionSchemaFieldsById,
|
|
3747
|
+
getExtractionSchemas,
|
|
3224
3748
|
getExtractionSchemasById,
|
|
3225
3749
|
getExtractionSchemasWorkspaceByWorkspaceId,
|
|
3226
3750
|
getFieldTemplates,
|
|
@@ -3306,6 +3830,7 @@ async function collectStreamedMessage(stream) {
|
|
|
3306
3830
|
patchExtractionResultsByIdRegenerate,
|
|
3307
3831
|
patchExtractionSchemaFieldsById,
|
|
3308
3832
|
patchExtractionSchemasById,
|
|
3833
|
+
patchExtractionSchemasByIdActivate,
|
|
3309
3834
|
patchExtractionSchemasByIdFields,
|
|
3310
3835
|
patchInvitationsByIdAccept,
|
|
3311
3836
|
patchInvitationsByIdResend,
|