@gpt-core/client 0.6.52 → 0.6.71
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 +964 -6172
- package/dist/index.d.ts +964 -6172
- package/dist/index.js +526 -0
- package/dist/index.mjs +524 -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,19 @@ 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
|
+
page: { object: { style: "form" } },
|
|
2148
|
+
fields: { object: { style: "form" } }
|
|
2149
|
+
}
|
|
2150
|
+
},
|
|
1923
2151
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1924
2152
|
url: "/training_examples",
|
|
1925
2153
|
...options
|
|
1926
2154
|
});
|
|
1927
2155
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
2156
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1928
2157
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1929
2158
|
url: "/training_examples",
|
|
1930
2159
|
...options,
|
|
@@ -1934,6 +2163,7 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
1934
2163
|
}
|
|
1935
2164
|
});
|
|
1936
2165
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
2166
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1937
2167
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1938
2168
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
1939
2169
|
...options
|
|
@@ -1944,11 +2174,19 @@ var getAgentsByIdTrainingStats = (options) => (options.client ?? client).get({
|
|
|
1944
2174
|
...options
|
|
1945
2175
|
});
|
|
1946
2176
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
2177
|
+
querySerializer: {
|
|
2178
|
+
parameters: {
|
|
2179
|
+
filter: { object: { style: "form" } },
|
|
2180
|
+
page: { object: { style: "form" } },
|
|
2181
|
+
fields: { object: { style: "form" } }
|
|
2182
|
+
}
|
|
2183
|
+
},
|
|
1947
2184
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1948
2185
|
url: "/buckets",
|
|
1949
2186
|
...options
|
|
1950
2187
|
});
|
|
1951
2188
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
2189
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1952
2190
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1953
2191
|
url: "/buckets",
|
|
1954
2192
|
...options,
|
|
@@ -1958,16 +2196,19 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
1958
2196
|
}
|
|
1959
2197
|
});
|
|
1960
2198
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
2199
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1961
2200
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1962
2201
|
url: "/plans/{id}",
|
|
1963
2202
|
...options
|
|
1964
2203
|
});
|
|
1965
2204
|
var getTenantsByTenantIdStats = (options) => (options.client ?? client).get({
|
|
2205
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1966
2206
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1967
2207
|
url: "/tenants/{tenant_id}/stats",
|
|
1968
2208
|
...options
|
|
1969
2209
|
});
|
|
1970
2210
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
2211
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1971
2212
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1972
2213
|
url: "/wallet/addons",
|
|
1973
2214
|
...options,
|
|
@@ -1977,6 +2218,7 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
1977
2218
|
}
|
|
1978
2219
|
});
|
|
1979
2220
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
2221
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1980
2222
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1981
2223
|
url: "/users/auth/magic_link/login",
|
|
1982
2224
|
...options,
|
|
@@ -1986,11 +2228,19 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
1986
2228
|
}
|
|
1987
2229
|
});
|
|
1988
2230
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
2231
|
+
querySerializer: {
|
|
2232
|
+
parameters: {
|
|
2233
|
+
filter: { object: { style: "form" } },
|
|
2234
|
+
page: { object: { style: "form" } },
|
|
2235
|
+
fields: { object: { style: "form" } }
|
|
2236
|
+
}
|
|
2237
|
+
},
|
|
1989
2238
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1990
2239
|
url: "/api_keys",
|
|
1991
2240
|
...options
|
|
1992
2241
|
});
|
|
1993
2242
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
2243
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1994
2244
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1995
2245
|
url: "/api_keys",
|
|
1996
2246
|
...options,
|
|
@@ -2000,6 +2250,7 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
2000
2250
|
}
|
|
2001
2251
|
});
|
|
2002
2252
|
var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
2253
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2003
2254
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2004
2255
|
url: "/users/{id}/admin",
|
|
2005
2256
|
...options,
|
|
@@ -2009,16 +2260,19 @@ var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
|
2009
2260
|
}
|
|
2010
2261
|
});
|
|
2011
2262
|
var deleteAgentsById = (options) => (options.client ?? client).delete({
|
|
2263
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2012
2264
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2013
2265
|
url: "/agents/{id}",
|
|
2014
2266
|
...options
|
|
2015
2267
|
});
|
|
2016
2268
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
2269
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2017
2270
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2018
2271
|
url: "/agents/{id}",
|
|
2019
2272
|
...options
|
|
2020
2273
|
});
|
|
2021
2274
|
var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
2275
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2022
2276
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2023
2277
|
url: "/agents/{id}",
|
|
2024
2278
|
...options,
|
|
@@ -2028,16 +2282,19 @@ var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
|
2028
2282
|
}
|
|
2029
2283
|
});
|
|
2030
2284
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
2285
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2031
2286
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2032
2287
|
url: "/api_keys/{id}",
|
|
2033
2288
|
...options
|
|
2034
2289
|
});
|
|
2035
2290
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
2291
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2036
2292
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2037
2293
|
url: "/api_keys/{id}",
|
|
2038
2294
|
...options
|
|
2039
2295
|
});
|
|
2040
2296
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
2297
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2041
2298
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2042
2299
|
url: "/api_keys/{id}",
|
|
2043
2300
|
...options,
|
|
@@ -2047,11 +2304,19 @@ var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
|
2047
2304
|
}
|
|
2048
2305
|
});
|
|
2049
2306
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
2307
|
+
querySerializer: {
|
|
2308
|
+
parameters: {
|
|
2309
|
+
filter: { object: { style: "form" } },
|
|
2310
|
+
page: { object: { style: "form" } },
|
|
2311
|
+
fields: { object: { style: "form" } }
|
|
2312
|
+
}
|
|
2313
|
+
},
|
|
2050
2314
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2051
2315
|
url: "/ai/conversations",
|
|
2052
2316
|
...options
|
|
2053
2317
|
});
|
|
2054
2318
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
2319
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2055
2320
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2056
2321
|
url: "/ai/conversations",
|
|
2057
2322
|
...options,
|
|
@@ -2061,6 +2326,7 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
2061
2326
|
}
|
|
2062
2327
|
});
|
|
2063
2328
|
var postAgentsByIdLearnFromDocument = (options) => (options.client ?? client).post({
|
|
2329
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2064
2330
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2065
2331
|
url: "/agents/{id}/learn_from_document",
|
|
2066
2332
|
...options,
|
|
@@ -2070,6 +2336,7 @@ var postAgentsByIdLearnFromDocument = (options) => (options.client ?? client).po
|
|
|
2070
2336
|
}
|
|
2071
2337
|
});
|
|
2072
2338
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
2339
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2073
2340
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2074
2341
|
url: "/ai/search",
|
|
2075
2342
|
...options,
|
|
@@ -2079,11 +2346,13 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
2079
2346
|
}
|
|
2080
2347
|
});
|
|
2081
2348
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
2349
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2082
2350
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2083
2351
|
url: "/ai/graph/nodes/{id}",
|
|
2084
2352
|
...options
|
|
2085
2353
|
});
|
|
2086
2354
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
2355
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2087
2356
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2088
2357
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
2089
2358
|
...options,
|
|
@@ -2093,16 +2362,19 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
2093
2362
|
}
|
|
2094
2363
|
});
|
|
2095
2364
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
2365
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2096
2366
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2097
2367
|
url: "/applications/{id}",
|
|
2098
2368
|
...options
|
|
2099
2369
|
});
|
|
2100
2370
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
2371
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2101
2372
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2102
2373
|
url: "/applications/{id}",
|
|
2103
2374
|
...options
|
|
2104
2375
|
});
|
|
2105
2376
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
2377
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2106
2378
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2107
2379
|
url: "/applications/{id}",
|
|
2108
2380
|
...options,
|
|
@@ -2112,21 +2384,41 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
2112
2384
|
}
|
|
2113
2385
|
});
|
|
2114
2386
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
2387
|
+
querySerializer: {
|
|
2388
|
+
parameters: {
|
|
2389
|
+
filter: { object: { style: "form" } },
|
|
2390
|
+
fields: { object: { style: "form" } }
|
|
2391
|
+
}
|
|
2392
|
+
},
|
|
2115
2393
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2116
2394
|
url: "/search/health",
|
|
2117
2395
|
...options
|
|
2118
2396
|
});
|
|
2119
2397
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
2398
|
+
querySerializer: {
|
|
2399
|
+
parameters: {
|
|
2400
|
+
filter: { object: { style: "form" } },
|
|
2401
|
+
fields: { object: { style: "form" } }
|
|
2402
|
+
}
|
|
2403
|
+
},
|
|
2120
2404
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2121
2405
|
url: "/transactions",
|
|
2122
2406
|
...options
|
|
2123
2407
|
});
|
|
2124
2408
|
var getUserProfiles = (options) => (options.client ?? client).get({
|
|
2409
|
+
querySerializer: {
|
|
2410
|
+
parameters: {
|
|
2411
|
+
filter: { object: { style: "form" } },
|
|
2412
|
+
page: { object: { style: "form" } },
|
|
2413
|
+
fields: { object: { style: "form" } }
|
|
2414
|
+
}
|
|
2415
|
+
},
|
|
2125
2416
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2126
2417
|
url: "/user_profiles",
|
|
2127
2418
|
...options
|
|
2128
2419
|
});
|
|
2129
2420
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
2421
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2130
2422
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2131
2423
|
url: "/user_profiles",
|
|
2132
2424
|
...options,
|
|
@@ -2136,6 +2428,7 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
2136
2428
|
}
|
|
2137
2429
|
});
|
|
2138
2430
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
2431
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2139
2432
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2140
2433
|
url: "/users/{id}/confirm-email",
|
|
2141
2434
|
...options,
|
|
@@ -2145,11 +2438,13 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
2145
2438
|
}
|
|
2146
2439
|
});
|
|
2147
2440
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
2441
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2148
2442
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2149
2443
|
url: "/threads/search",
|
|
2150
2444
|
...options
|
|
2151
2445
|
});
|
|
2152
2446
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
2447
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2153
2448
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2154
2449
|
url: "/wallet/plan",
|
|
2155
2450
|
...options,
|
|
@@ -2159,21 +2454,31 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
2159
2454
|
}
|
|
2160
2455
|
});
|
|
2161
2456
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
2457
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2162
2458
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2163
2459
|
url: "/plans/slug/{slug}",
|
|
2164
2460
|
...options
|
|
2165
2461
|
});
|
|
2166
2462
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
2463
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2167
2464
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2168
2465
|
url: "/llm_analytics/{id}",
|
|
2169
2466
|
...options
|
|
2170
2467
|
});
|
|
2171
2468
|
var getExtractionSchemaFields = (options) => (options.client ?? client).get({
|
|
2469
|
+
querySerializer: {
|
|
2470
|
+
parameters: {
|
|
2471
|
+
filter: { object: { style: "form" } },
|
|
2472
|
+
page: { object: { style: "form" } },
|
|
2473
|
+
fields: { object: { style: "form" } }
|
|
2474
|
+
}
|
|
2475
|
+
},
|
|
2172
2476
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2173
2477
|
url: "/extraction/schema-fields",
|
|
2174
2478
|
...options
|
|
2175
2479
|
});
|
|
2176
2480
|
var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
2481
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2177
2482
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2178
2483
|
url: "/extraction/schema-fields",
|
|
2179
2484
|
...options,
|
|
@@ -2183,6 +2488,7 @@ var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
|
2183
2488
|
}
|
|
2184
2489
|
});
|
|
2185
2490
|
var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).patch({
|
|
2491
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2186
2492
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2187
2493
|
url: "/applications/{id}/grant-credits",
|
|
2188
2494
|
...options,
|
|
@@ -2192,16 +2498,29 @@ var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).
|
|
|
2192
2498
|
}
|
|
2193
2499
|
});
|
|
2194
2500
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
2501
|
+
querySerializer: {
|
|
2502
|
+
parameters: {
|
|
2503
|
+
filter: { object: { style: "form" } },
|
|
2504
|
+
fields: { object: { style: "form" } }
|
|
2505
|
+
}
|
|
2506
|
+
},
|
|
2195
2507
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2196
2508
|
url: "/search/status",
|
|
2197
2509
|
...options
|
|
2198
2510
|
});
|
|
2199
2511
|
var getTenantsByTenantIdWorkspaceStats = (options) => (options.client ?? client).get({
|
|
2512
|
+
querySerializer: {
|
|
2513
|
+
parameters: {
|
|
2514
|
+
filter: { object: { style: "form" } },
|
|
2515
|
+
fields: { object: { style: "form" } }
|
|
2516
|
+
}
|
|
2517
|
+
},
|
|
2200
2518
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2201
2519
|
url: "/tenants/{tenant_id}/workspace_stats",
|
|
2202
2520
|
...options
|
|
2203
2521
|
});
|
|
2204
2522
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
2523
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2205
2524
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2206
2525
|
url: "/api_keys/{id}/allocate",
|
|
2207
2526
|
...options,
|
|
@@ -2211,6 +2530,7 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
2211
2530
|
}
|
|
2212
2531
|
});
|
|
2213
2532
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
2533
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2214
2534
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2215
2535
|
url: "/users/auth/login",
|
|
2216
2536
|
...options,
|
|
@@ -2220,6 +2540,7 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
2220
2540
|
}
|
|
2221
2541
|
});
|
|
2222
2542
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
2543
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2223
2544
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2224
2545
|
url: "/ai/embed",
|
|
2225
2546
|
...options,
|
|
@@ -2229,11 +2550,18 @@ var postAiEmbed = (options) => (options.client ?? client).post({
|
|
|
2229
2550
|
}
|
|
2230
2551
|
});
|
|
2231
2552
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
2553
|
+
querySerializer: {
|
|
2554
|
+
parameters: {
|
|
2555
|
+
filter: { object: { style: "form" } },
|
|
2556
|
+
fields: { object: { style: "form" } }
|
|
2557
|
+
}
|
|
2558
|
+
},
|
|
2232
2559
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2233
2560
|
url: "/workspaces/mine",
|
|
2234
2561
|
...options
|
|
2235
2562
|
});
|
|
2236
2563
|
var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
2564
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2237
2565
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2238
2566
|
url: "/tenants/isv",
|
|
2239
2567
|
...options,
|
|
@@ -2243,6 +2571,7 @@ var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
|
2243
2571
|
}
|
|
2244
2572
|
});
|
|
2245
2573
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
2574
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2246
2575
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2247
2576
|
url: "/search/reindex",
|
|
2248
2577
|
...options,
|
|
@@ -2252,6 +2581,7 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
2252
2581
|
}
|
|
2253
2582
|
});
|
|
2254
2583
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
2584
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2255
2585
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2256
2586
|
url: "/extraction/results/{id}/regenerate",
|
|
2257
2587
|
...options,
|
|
@@ -2261,6 +2591,7 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
2261
2591
|
}
|
|
2262
2592
|
});
|
|
2263
2593
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
2594
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2264
2595
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2265
2596
|
url: "/users/auth/confirm",
|
|
2266
2597
|
...options,
|
|
@@ -2269,7 +2600,20 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
2269
2600
|
...options.headers
|
|
2270
2601
|
}
|
|
2271
2602
|
});
|
|
2603
|
+
var getExtractionSchemas = (options) => (options.client ?? client).get({
|
|
2604
|
+
querySerializer: {
|
|
2605
|
+
parameters: {
|
|
2606
|
+
filter: { object: { style: "form" } },
|
|
2607
|
+
page: { object: { style: "form" } },
|
|
2608
|
+
fields: { object: { style: "form" } }
|
|
2609
|
+
}
|
|
2610
|
+
},
|
|
2611
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
2612
|
+
url: "/extraction/schemas",
|
|
2613
|
+
...options
|
|
2614
|
+
});
|
|
2272
2615
|
var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
2616
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2273
2617
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2274
2618
|
url: "/extraction/schemas",
|
|
2275
2619
|
...options,
|
|
@@ -2279,11 +2623,18 @@ var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
|
2279
2623
|
}
|
|
2280
2624
|
});
|
|
2281
2625
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
2626
|
+
querySerializer: {
|
|
2627
|
+
parameters: {
|
|
2628
|
+
filter: { object: { style: "form" } },
|
|
2629
|
+
fields: { object: { style: "form" } }
|
|
2630
|
+
}
|
|
2631
|
+
},
|
|
2282
2632
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2283
2633
|
url: "/storage/stats",
|
|
2284
2634
|
...options
|
|
2285
2635
|
});
|
|
2286
2636
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
2637
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2287
2638
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2288
2639
|
url: "/tenants/{id}/buy-storage",
|
|
2289
2640
|
...options,
|
|
@@ -2293,11 +2644,19 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
2293
2644
|
}
|
|
2294
2645
|
});
|
|
2295
2646
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
2647
|
+
querySerializer: {
|
|
2648
|
+
parameters: {
|
|
2649
|
+
filter: { object: { style: "form" } },
|
|
2650
|
+
page: { object: { style: "form" } },
|
|
2651
|
+
fields: { object: { style: "form" } }
|
|
2652
|
+
}
|
|
2653
|
+
},
|
|
2296
2654
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2297
2655
|
url: "/workspace-memberships",
|
|
2298
2656
|
...options
|
|
2299
2657
|
});
|
|
2300
2658
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
2659
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2301
2660
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2302
2661
|
url: "/workspace-memberships",
|
|
2303
2662
|
...options,
|
|
@@ -2307,11 +2666,13 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
2307
2666
|
}
|
|
2308
2667
|
});
|
|
2309
2668
|
var getTenantsByTenantIdDocumentStats = (options) => (options.client ?? client).get({
|
|
2669
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2310
2670
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2311
2671
|
url: "/tenants/{tenant_id}/document_stats",
|
|
2312
2672
|
...options
|
|
2313
2673
|
});
|
|
2314
2674
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
2675
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2315
2676
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2316
2677
|
url: "/users/auth/magic_link/request",
|
|
2317
2678
|
...options,
|
|
@@ -2321,6 +2682,7 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
2321
2682
|
}
|
|
2322
2683
|
});
|
|
2323
2684
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
2685
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2324
2686
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2325
2687
|
url: "/users/auth/register",
|
|
2326
2688
|
...options,
|
|
@@ -2339,16 +2701,19 @@ var postTrainingExamplesBulk = (options) => (options.client ?? client).post({
|
|
|
2339
2701
|
}
|
|
2340
2702
|
});
|
|
2341
2703
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
2704
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2342
2705
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2343
2706
|
url: "/buckets/{id}",
|
|
2344
2707
|
...options
|
|
2345
2708
|
});
|
|
2346
2709
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
2710
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2347
2711
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2348
2712
|
url: "/buckets/{id}",
|
|
2349
2713
|
...options
|
|
2350
2714
|
});
|
|
2351
2715
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
2716
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2352
2717
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2353
2718
|
url: "/buckets/{id}",
|
|
2354
2719
|
...options,
|
|
@@ -2358,11 +2723,18 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
2358
2723
|
}
|
|
2359
2724
|
});
|
|
2360
2725
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
2726
|
+
querySerializer: {
|
|
2727
|
+
parameters: {
|
|
2728
|
+
filter: { object: { style: "form" } },
|
|
2729
|
+
fields: { object: { style: "form" } }
|
|
2730
|
+
}
|
|
2731
|
+
},
|
|
2361
2732
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2362
2733
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
2363
2734
|
...options
|
|
2364
2735
|
});
|
|
2365
2736
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
2737
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2366
2738
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2367
2739
|
url: "/extraction/documents/begin_upload",
|
|
2368
2740
|
...options,
|
|
@@ -2372,21 +2744,25 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
2372
2744
|
}
|
|
2373
2745
|
});
|
|
2374
2746
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
2747
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2375
2748
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2376
2749
|
url: "/ai/graph/edges/{id}",
|
|
2377
2750
|
...options
|
|
2378
2751
|
});
|
|
2379
2752
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
2753
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2380
2754
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2381
2755
|
url: "/tenants/{id}",
|
|
2382
2756
|
...options
|
|
2383
2757
|
});
|
|
2384
2758
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
2759
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2385
2760
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2386
2761
|
url: "/tenants/{id}",
|
|
2387
2762
|
...options
|
|
2388
2763
|
});
|
|
2389
2764
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
2765
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2390
2766
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2391
2767
|
url: "/tenants/{id}",
|
|
2392
2768
|
...options,
|
|
@@ -2396,11 +2772,19 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
2396
2772
|
}
|
|
2397
2773
|
});
|
|
2398
2774
|
var getPlans = (options) => (options.client ?? client).get({
|
|
2775
|
+
querySerializer: {
|
|
2776
|
+
parameters: {
|
|
2777
|
+
filter: { object: { style: "form" } },
|
|
2778
|
+
page: { object: { style: "form" } },
|
|
2779
|
+
fields: { object: { style: "form" } }
|
|
2780
|
+
}
|
|
2781
|
+
},
|
|
2399
2782
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2400
2783
|
url: "/plans",
|
|
2401
2784
|
...options
|
|
2402
2785
|
});
|
|
2403
2786
|
var patchExtractionSchemasByIdFields = (options) => (options.client ?? client).patch({
|
|
2787
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2404
2788
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2405
2789
|
url: "/extraction/schemas/{id}/fields",
|
|
2406
2790
|
...options,
|
|
@@ -2410,11 +2794,13 @@ var patchExtractionSchemasByIdFields = (options) => (options.client ?? client).p
|
|
|
2410
2794
|
}
|
|
2411
2795
|
});
|
|
2412
2796
|
var getExtractionSchemasById = (options) => (options.client ?? client).get({
|
|
2797
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2413
2798
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2414
2799
|
url: "/extraction/schemas/{id}",
|
|
2415
2800
|
...options
|
|
2416
2801
|
});
|
|
2417
2802
|
var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
2803
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2418
2804
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2419
2805
|
url: "/extraction/schemas/{id}",
|
|
2420
2806
|
...options,
|
|
@@ -2424,6 +2810,7 @@ var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
|
2424
2810
|
}
|
|
2425
2811
|
});
|
|
2426
2812
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
2813
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2427
2814
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2428
2815
|
url: "/agents/{id}/test",
|
|
2429
2816
|
...options,
|
|
@@ -2433,16 +2820,24 @@ var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
|
2433
2820
|
}
|
|
2434
2821
|
});
|
|
2435
2822
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
2823
|
+
querySerializer: {
|
|
2824
|
+
parameters: {
|
|
2825
|
+
filter: { object: { style: "form" } },
|
|
2826
|
+
fields: { object: { style: "form" } }
|
|
2827
|
+
}
|
|
2828
|
+
},
|
|
2436
2829
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2437
2830
|
url: "/extraction/documents",
|
|
2438
2831
|
...options
|
|
2439
2832
|
});
|
|
2440
2833
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
2834
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2441
2835
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2442
2836
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2443
2837
|
...options
|
|
2444
2838
|
});
|
|
2445
2839
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
2840
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2446
2841
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2447
2842
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2448
2843
|
...options,
|
|
@@ -2452,6 +2847,7 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
2452
2847
|
}
|
|
2453
2848
|
});
|
|
2454
2849
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
2850
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2455
2851
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2456
2852
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
2457
2853
|
...options,
|
|
@@ -2461,11 +2857,18 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
2461
2857
|
}
|
|
2462
2858
|
});
|
|
2463
2859
|
var getFieldTemplates = (options) => (options.client ?? client).get({
|
|
2860
|
+
querySerializer: {
|
|
2861
|
+
parameters: {
|
|
2862
|
+
filter: { object: { style: "form" } },
|
|
2863
|
+
fields: { object: { style: "form" } }
|
|
2864
|
+
}
|
|
2865
|
+
},
|
|
2464
2866
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2465
2867
|
url: "/field_templates",
|
|
2466
2868
|
...options
|
|
2467
2869
|
});
|
|
2468
2870
|
var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
2871
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2469
2872
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2470
2873
|
url: "/field_templates",
|
|
2471
2874
|
...options,
|
|
@@ -2475,11 +2878,19 @@ var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
|
2475
2878
|
}
|
|
2476
2879
|
});
|
|
2477
2880
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
2881
|
+
querySerializer: {
|
|
2882
|
+
parameters: {
|
|
2883
|
+
filter: { object: { style: "form" } },
|
|
2884
|
+
page: { object: { style: "form" } },
|
|
2885
|
+
fields: { object: { style: "form" } }
|
|
2886
|
+
}
|
|
2887
|
+
},
|
|
2478
2888
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2479
2889
|
url: "/ai/messages",
|
|
2480
2890
|
...options
|
|
2481
2891
|
});
|
|
2482
2892
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
2893
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2483
2894
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2484
2895
|
url: "/ai/messages",
|
|
2485
2896
|
...options,
|
|
@@ -2489,6 +2900,7 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
2489
2900
|
}
|
|
2490
2901
|
});
|
|
2491
2902
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
2903
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2492
2904
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2493
2905
|
url: "/storage/sign_upload",
|
|
2494
2906
|
...options,
|
|
@@ -2498,6 +2910,7 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
2498
2910
|
}
|
|
2499
2911
|
});
|
|
2500
2912
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
2913
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2501
2914
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2502
2915
|
url: "/webhook_deliveries/{id}/retry",
|
|
2503
2916
|
...options,
|
|
@@ -2507,11 +2920,19 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
2507
2920
|
}
|
|
2508
2921
|
});
|
|
2509
2922
|
var getNotificationMethods = (options) => (options.client ?? client).get({
|
|
2923
|
+
querySerializer: {
|
|
2924
|
+
parameters: {
|
|
2925
|
+
filter: { object: { style: "form" } },
|
|
2926
|
+
page: { object: { style: "form" } },
|
|
2927
|
+
fields: { object: { style: "form" } }
|
|
2928
|
+
}
|
|
2929
|
+
},
|
|
2510
2930
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2511
2931
|
url: "/notification_methods",
|
|
2512
2932
|
...options
|
|
2513
2933
|
});
|
|
2514
2934
|
var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
2935
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2515
2936
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2516
2937
|
url: "/notification_methods",
|
|
2517
2938
|
...options,
|
|
@@ -2521,6 +2942,7 @@ var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
|
2521
2942
|
}
|
|
2522
2943
|
});
|
|
2523
2944
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
2945
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2524
2946
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2525
2947
|
url: "/threads/{id}/summarize",
|
|
2526
2948
|
...options,
|
|
@@ -2530,6 +2952,7 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
2530
2952
|
}
|
|
2531
2953
|
});
|
|
2532
2954
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
2955
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2533
2956
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2534
2957
|
url: "/configs/{key}",
|
|
2535
2958
|
...options,
|
|
@@ -2539,6 +2962,7 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
2539
2962
|
}
|
|
2540
2963
|
});
|
|
2541
2964
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
2965
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2542
2966
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2543
2967
|
url: "/api_keys/{id}/rotate",
|
|
2544
2968
|
...options,
|
|
@@ -2548,6 +2972,7 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
2548
2972
|
}
|
|
2549
2973
|
});
|
|
2550
2974
|
var postExtractionResults = (options) => (options.client ?? client).post({
|
|
2975
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2551
2976
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2552
2977
|
url: "/extraction/results",
|
|
2553
2978
|
...options,
|
|
@@ -2557,6 +2982,7 @@ var postExtractionResults = (options) => (options.client ?? client).post({
|
|
|
2557
2982
|
}
|
|
2558
2983
|
});
|
|
2559
2984
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
2985
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2560
2986
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2561
2987
|
url: "/agents/{id}/clone",
|
|
2562
2988
|
...options,
|
|
@@ -2566,16 +2992,19 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
2566
2992
|
}
|
|
2567
2993
|
});
|
|
2568
2994
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
2995
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2569
2996
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2570
2997
|
url: "/ai/conversations/{id}",
|
|
2571
2998
|
...options
|
|
2572
2999
|
});
|
|
2573
3000
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
3001
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2574
3002
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2575
3003
|
url: "/ai/conversations/{id}",
|
|
2576
3004
|
...options
|
|
2577
3005
|
});
|
|
2578
3006
|
var postExtractionSchemasBulkCreate = (options) => (options.client ?? client).post({
|
|
3007
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2579
3008
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2580
3009
|
url: "/extraction/schemas/bulk_create",
|
|
2581
3010
|
...options,
|
|
@@ -2585,16 +3014,19 @@ var postExtractionSchemasBulkCreate = (options) => (options.client ?? client).po
|
|
|
2585
3014
|
}
|
|
2586
3015
|
});
|
|
2587
3016
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
3017
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2588
3018
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2589
3019
|
url: "/user_profiles/{id}",
|
|
2590
3020
|
...options
|
|
2591
3021
|
});
|
|
2592
3022
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
3023
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2593
3024
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2594
3025
|
url: "/user_profiles/{id}",
|
|
2595
3026
|
...options
|
|
2596
3027
|
});
|
|
2597
3028
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
3029
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2598
3030
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2599
3031
|
url: "/user_profiles/{id}",
|
|
2600
3032
|
...options,
|
|
@@ -2604,21 +3036,31 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
2604
3036
|
}
|
|
2605
3037
|
});
|
|
2606
3038
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
3039
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2607
3040
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2608
3041
|
url: "/objects/{id}",
|
|
2609
3042
|
...options
|
|
2610
3043
|
});
|
|
2611
3044
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
3045
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2612
3046
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2613
3047
|
url: "/objects/{id}",
|
|
2614
3048
|
...options
|
|
2615
3049
|
});
|
|
2616
3050
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
3051
|
+
querySerializer: {
|
|
3052
|
+
parameters: {
|
|
3053
|
+
filter: { object: { style: "form" } },
|
|
3054
|
+
page: { object: { style: "form" } },
|
|
3055
|
+
fields: { object: { style: "form" } }
|
|
3056
|
+
}
|
|
3057
|
+
},
|
|
2617
3058
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2618
3059
|
url: "/webhook_configs",
|
|
2619
3060
|
...options
|
|
2620
3061
|
});
|
|
2621
3062
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
3063
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2622
3064
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2623
3065
|
url: "/webhook_configs",
|
|
2624
3066
|
...options,
|
|
@@ -2628,6 +3070,7 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
2628
3070
|
}
|
|
2629
3071
|
});
|
|
2630
3072
|
var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post({
|
|
3073
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2631
3074
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2632
3075
|
url: "/agents/{id}/publish_version",
|
|
2633
3076
|
...options,
|
|
@@ -2637,6 +3080,7 @@ var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post(
|
|
|
2637
3080
|
}
|
|
2638
3081
|
});
|
|
2639
3082
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
3083
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2640
3084
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2641
3085
|
url: "/objects/bulk-destroy",
|
|
2642
3086
|
...options,
|
|
@@ -2646,31 +3090,52 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
2646
3090
|
}
|
|
2647
3091
|
});
|
|
2648
3092
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
3093
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2649
3094
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2650
3095
|
url: "/applications/by-slug/{slug}",
|
|
2651
3096
|
...options
|
|
2652
3097
|
});
|
|
2653
3098
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
3099
|
+
querySerializer: {
|
|
3100
|
+
parameters: {
|
|
3101
|
+
filter: { object: { style: "form" } },
|
|
3102
|
+
fields: { object: { style: "form" } }
|
|
3103
|
+
}
|
|
3104
|
+
},
|
|
2654
3105
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2655
3106
|
url: "/notification_logs",
|
|
2656
3107
|
...options
|
|
2657
3108
|
});
|
|
2658
3109
|
var getWallet = (options) => (options.client ?? client).get({
|
|
3110
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2659
3111
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2660
3112
|
url: "/wallet",
|
|
2661
3113
|
...options
|
|
2662
3114
|
});
|
|
3115
|
+
var patchExtractionSchemasByIdActivate = (options) => (options.client ?? client).patch({
|
|
3116
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3117
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
3118
|
+
url: "/extraction/schemas/{id}/activate",
|
|
3119
|
+
...options,
|
|
3120
|
+
headers: {
|
|
3121
|
+
"Content-Type": "application/vnd.api+json",
|
|
3122
|
+
...options.headers
|
|
3123
|
+
}
|
|
3124
|
+
});
|
|
2663
3125
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
3126
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2664
3127
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2665
3128
|
url: "/messages/{id}",
|
|
2666
3129
|
...options
|
|
2667
3130
|
});
|
|
2668
3131
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
3132
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2669
3133
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2670
3134
|
url: "/messages/{id}",
|
|
2671
3135
|
...options
|
|
2672
3136
|
});
|
|
2673
3137
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
3138
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2674
3139
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2675
3140
|
url: "/messages/{id}",
|
|
2676
3141
|
...options,
|
|
@@ -2680,26 +3145,36 @@ var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
|
2680
3145
|
}
|
|
2681
3146
|
});
|
|
2682
3147
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
3148
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2683
3149
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2684
3150
|
url: "/llm_analytics/usage",
|
|
2685
3151
|
...options
|
|
2686
3152
|
});
|
|
2687
3153
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
3154
|
+
querySerializer: {
|
|
3155
|
+
parameters: {
|
|
3156
|
+
filter: { object: { style: "form" } },
|
|
3157
|
+
fields: { object: { style: "form" } }
|
|
3158
|
+
}
|
|
3159
|
+
},
|
|
2688
3160
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2689
3161
|
url: "/search/stats",
|
|
2690
3162
|
...options
|
|
2691
3163
|
});
|
|
2692
3164
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
3165
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2693
3166
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2694
3167
|
url: "/notification_preferences/{id}",
|
|
2695
3168
|
...options
|
|
2696
3169
|
});
|
|
2697
3170
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
3171
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2698
3172
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2699
3173
|
url: "/notification_preferences/{id}",
|
|
2700
3174
|
...options
|
|
2701
3175
|
});
|
|
2702
3176
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
3177
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2703
3178
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2704
3179
|
url: "/notification_preferences/{id}",
|
|
2705
3180
|
...options,
|
|
@@ -2709,11 +3184,19 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
2709
3184
|
}
|
|
2710
3185
|
});
|
|
2711
3186
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
3187
|
+
querySerializer: {
|
|
3188
|
+
parameters: {
|
|
3189
|
+
filter: { object: { style: "form" } },
|
|
3190
|
+
page: { object: { style: "form" } },
|
|
3191
|
+
fields: { object: { style: "form" } }
|
|
3192
|
+
}
|
|
3193
|
+
},
|
|
2712
3194
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2713
3195
|
url: "/ai/graph/nodes",
|
|
2714
3196
|
...options
|
|
2715
3197
|
});
|
|
2716
3198
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
3199
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2717
3200
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2718
3201
|
url: "/ai/graph/nodes",
|
|
2719
3202
|
...options,
|
|
@@ -2723,11 +3206,19 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
2723
3206
|
}
|
|
2724
3207
|
});
|
|
2725
3208
|
var getAgents = (options) => (options.client ?? client).get({
|
|
3209
|
+
querySerializer: {
|
|
3210
|
+
parameters: {
|
|
3211
|
+
filter: { object: { style: "form" } },
|
|
3212
|
+
page: { object: { style: "form" } },
|
|
3213
|
+
fields: { object: { style: "form" } }
|
|
3214
|
+
}
|
|
3215
|
+
},
|
|
2726
3216
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2727
3217
|
url: "/agents",
|
|
2728
3218
|
...options
|
|
2729
3219
|
});
|
|
2730
3220
|
var postAgents = (options) => (options.client ?? client).post({
|
|
3221
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2731
3222
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2732
3223
|
url: "/agents",
|
|
2733
3224
|
...options,
|
|
@@ -2737,6 +3228,7 @@ var postAgents = (options) => (options.client ?? client).post({
|
|
|
2737
3228
|
}
|
|
2738
3229
|
});
|
|
2739
3230
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
3231
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2740
3232
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2741
3233
|
url: "/users/register_isv",
|
|
2742
3234
|
...options,
|
|
@@ -2746,16 +3238,25 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
2746
3238
|
}
|
|
2747
3239
|
});
|
|
2748
3240
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
3241
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2749
3242
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2750
3243
|
url: "/extraction/batches/{id}",
|
|
2751
3244
|
...options
|
|
2752
3245
|
});
|
|
2753
3246
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
3247
|
+
querySerializer: {
|
|
3248
|
+
parameters: {
|
|
3249
|
+
filter: { object: { style: "form" } },
|
|
3250
|
+
page: { object: { style: "form" } },
|
|
3251
|
+
fields: { object: { style: "form" } }
|
|
3252
|
+
}
|
|
3253
|
+
},
|
|
2754
3254
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2755
3255
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2756
3256
|
...options
|
|
2757
3257
|
});
|
|
2758
3258
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
3259
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2759
3260
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2760
3261
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2761
3262
|
...options,
|
|
@@ -2765,11 +3266,13 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
2765
3266
|
}
|
|
2766
3267
|
});
|
|
2767
3268
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
3269
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2768
3270
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2769
3271
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2770
3272
|
...options
|
|
2771
3273
|
});
|
|
2772
3274
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
3275
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2773
3276
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2774
3277
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2775
3278
|
...options,
|
|
@@ -2779,16 +3282,37 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
2779
3282
|
}
|
|
2780
3283
|
});
|
|
2781
3284
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
3285
|
+
querySerializer: {
|
|
3286
|
+
parameters: {
|
|
3287
|
+
filter: { object: { style: "form" } },
|
|
3288
|
+
page: { object: { style: "form" } },
|
|
3289
|
+
fields: { object: { style: "form" } }
|
|
3290
|
+
}
|
|
3291
|
+
},
|
|
2782
3292
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2783
3293
|
url: "/credit-packages",
|
|
2784
3294
|
...options
|
|
2785
3295
|
});
|
|
2786
3296
|
var getUsers = (options) => (options.client ?? client).get({
|
|
3297
|
+
querySerializer: {
|
|
3298
|
+
parameters: {
|
|
3299
|
+
filter: { object: { style: "form" } },
|
|
3300
|
+
page: { object: { style: "form" } },
|
|
3301
|
+
fields: { object: { style: "form" } }
|
|
3302
|
+
}
|
|
3303
|
+
},
|
|
2787
3304
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2788
3305
|
url: "/users",
|
|
2789
3306
|
...options
|
|
2790
3307
|
});
|
|
2791
3308
|
var getObjects = (options) => (options.client ?? client).get({
|
|
3309
|
+
querySerializer: {
|
|
3310
|
+
parameters: {
|
|
3311
|
+
filter: { object: { style: "form" } },
|
|
3312
|
+
page: { object: { style: "form" } },
|
|
3313
|
+
fields: { object: { style: "form" } }
|
|
3314
|
+
}
|
|
3315
|
+
},
|
|
2792
3316
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2793
3317
|
url: "/objects",
|
|
2794
3318
|
...options
|
|
@@ -3221,6 +3745,7 @@ async function collectStreamedMessage(stream) {
|
|
|
3221
3745
|
getExtractionResultsDocumentByDocumentId,
|
|
3222
3746
|
getExtractionSchemaFields,
|
|
3223
3747
|
getExtractionSchemaFieldsById,
|
|
3748
|
+
getExtractionSchemas,
|
|
3224
3749
|
getExtractionSchemasById,
|
|
3225
3750
|
getExtractionSchemasWorkspaceByWorkspaceId,
|
|
3226
3751
|
getFieldTemplates,
|
|
@@ -3306,6 +3831,7 @@ async function collectStreamedMessage(stream) {
|
|
|
3306
3831
|
patchExtractionResultsByIdRegenerate,
|
|
3307
3832
|
patchExtractionSchemaFieldsById,
|
|
3308
3833
|
patchExtractionSchemasById,
|
|
3834
|
+
patchExtractionSchemasByIdActivate,
|
|
3309
3835
|
patchExtractionSchemasByIdFields,
|
|
3310
3836
|
patchInvitationsByIdAccept,
|
|
3311
3837
|
patchInvitationsByIdResend,
|