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