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