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