@gpt-core/client 0.5.2 → 0.5.3
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 +646 -4811
- package/dist/index.d.ts +646 -4811
- package/dist/index.js +449 -0
- package/dist/index.mjs +449 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1103,6 +1103,7 @@ var client = createClient(
|
|
|
1103
1103
|
|
|
1104
1104
|
// src/_internal/sdk.gen.ts
|
|
1105
1105
|
var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
1106
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1106
1107
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1107
1108
|
url: "/ai/search/advanced",
|
|
1108
1109
|
...options,
|
|
@@ -1112,21 +1113,31 @@ var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
|
1112
1113
|
}
|
|
1113
1114
|
});
|
|
1114
1115
|
var deleteExtractionDocumentsById = (options) => (options.client ?? client).delete({
|
|
1116
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1115
1117
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1116
1118
|
url: "/extraction/documents/{id}",
|
|
1117
1119
|
...options
|
|
1118
1120
|
});
|
|
1119
1121
|
var getExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
1122
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1120
1123
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1121
1124
|
url: "/extraction/documents/{id}",
|
|
1122
1125
|
...options
|
|
1123
1126
|
});
|
|
1124
1127
|
var getThreads = (options) => (options.client ?? client).get({
|
|
1128
|
+
querySerializer: {
|
|
1129
|
+
parameters: {
|
|
1130
|
+
filter: { object: { style: "form" } },
|
|
1131
|
+
page: { object: { style: "form" } },
|
|
1132
|
+
fields: { object: { style: "form" } }
|
|
1133
|
+
}
|
|
1134
|
+
},
|
|
1125
1135
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1126
1136
|
url: "/threads",
|
|
1127
1137
|
...options
|
|
1128
1138
|
});
|
|
1129
1139
|
var postThreads = (options) => (options.client ?? client).post({
|
|
1140
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1130
1141
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1131
1142
|
url: "/threads",
|
|
1132
1143
|
...options,
|
|
@@ -1136,26 +1147,36 @@ var postThreads = (options) => (options.client ?? client).post({
|
|
|
1136
1147
|
}
|
|
1137
1148
|
});
|
|
1138
1149
|
var getExtractionSchemasWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1150
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1139
1151
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1140
1152
|
url: "/extraction/schemas/workspace/{workspace_id}",
|
|
1141
1153
|
...options
|
|
1142
1154
|
});
|
|
1143
1155
|
var getLlmAnalyticsCosts = (options) => (options.client ?? client).get({
|
|
1156
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1144
1157
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1145
1158
|
url: "/llm_analytics/costs",
|
|
1146
1159
|
...options
|
|
1147
1160
|
});
|
|
1148
1161
|
var getAiChunksDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
1162
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1149
1163
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1150
1164
|
url: "/ai/chunks/document/{document_id}",
|
|
1151
1165
|
...options
|
|
1152
1166
|
});
|
|
1153
1167
|
var getWorkspaces = (options) => (options.client ?? client).get({
|
|
1168
|
+
querySerializer: {
|
|
1169
|
+
parameters: {
|
|
1170
|
+
filter: { object: { style: "form" } },
|
|
1171
|
+
fields: { object: { style: "form" } }
|
|
1172
|
+
}
|
|
1173
|
+
},
|
|
1154
1174
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1155
1175
|
url: "/workspaces",
|
|
1156
1176
|
...options
|
|
1157
1177
|
});
|
|
1158
1178
|
var postWorkspaces = (options) => (options.client ?? client).post({
|
|
1179
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1159
1180
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1160
1181
|
url: "/workspaces",
|
|
1161
1182
|
...options,
|
|
@@ -1165,11 +1186,13 @@ var postWorkspaces = (options) => (options.client ?? client).post({
|
|
|
1165
1186
|
}
|
|
1166
1187
|
});
|
|
1167
1188
|
var getDocumentsStats = (options) => (options.client ?? client).get({
|
|
1189
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1168
1190
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1169
1191
|
url: "/documents/stats",
|
|
1170
1192
|
...options
|
|
1171
1193
|
});
|
|
1172
1194
|
var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
1195
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1173
1196
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1174
1197
|
url: "/objects/register",
|
|
1175
1198
|
...options,
|
|
@@ -1179,21 +1202,30 @@ var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
|
1179
1202
|
}
|
|
1180
1203
|
});
|
|
1181
1204
|
var getLlmAnalyticsWorkspace = (options) => (options.client ?? client).get({
|
|
1205
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1182
1206
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1183
1207
|
url: "/llm_analytics/workspace",
|
|
1184
1208
|
...options
|
|
1185
1209
|
});
|
|
1186
1210
|
var getSearchIndexes = (options) => (options.client ?? client).get({
|
|
1211
|
+
querySerializer: {
|
|
1212
|
+
parameters: {
|
|
1213
|
+
filter: { object: { style: "form" } },
|
|
1214
|
+
fields: { object: { style: "form" } }
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1187
1217
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1188
1218
|
url: "/search/indexes",
|
|
1189
1219
|
...options
|
|
1190
1220
|
});
|
|
1191
1221
|
var getCreditPackagesSlugBySlug = (options) => (options.client ?? client).get({
|
|
1222
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1192
1223
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1193
1224
|
url: "/credit-packages/slug/{slug}",
|
|
1194
1225
|
...options
|
|
1195
1226
|
});
|
|
1196
1227
|
var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
1228
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1197
1229
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1198
1230
|
url: "/extraction/batches",
|
|
1199
1231
|
...options,
|
|
@@ -1203,11 +1235,13 @@ var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
|
1203
1235
|
}
|
|
1204
1236
|
});
|
|
1205
1237
|
var getLlmAnalyticsPlatform = (options) => (options.client ?? client).get({
|
|
1238
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1206
1239
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1207
1240
|
url: "/llm_analytics/platform",
|
|
1208
1241
|
...options
|
|
1209
1242
|
});
|
|
1210
1243
|
var postPayments = (options) => (options.client ?? client).post({
|
|
1244
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1211
1245
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1212
1246
|
url: "/payments",
|
|
1213
1247
|
...options,
|
|
@@ -1217,11 +1251,18 @@ var postPayments = (options) => (options.client ?? client).post({
|
|
|
1217
1251
|
}
|
|
1218
1252
|
});
|
|
1219
1253
|
var getExtractionBatchesWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1254
|
+
querySerializer: {
|
|
1255
|
+
parameters: {
|
|
1256
|
+
filter: { object: { style: "form" } },
|
|
1257
|
+
fields: { object: { style: "form" } }
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1220
1260
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1221
1261
|
url: "/extraction/batches/workspace/{workspace_id}",
|
|
1222
1262
|
...options
|
|
1223
1263
|
});
|
|
1224
1264
|
var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1265
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1225
1266
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1226
1267
|
url: "/api_keys/{id}/revoke",
|
|
1227
1268
|
...options,
|
|
@@ -1231,16 +1272,19 @@ var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1231
1272
|
}
|
|
1232
1273
|
});
|
|
1233
1274
|
var getInvitationsConsumeByToken = (options) => (options.client ?? client).get({
|
|
1275
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1234
1276
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1235
1277
|
url: "/invitations/consume/{token}",
|
|
1236
1278
|
...options
|
|
1237
1279
|
});
|
|
1238
1280
|
var getExtractionDocumentsByIdStatus = (options) => (options.client ?? client).get({
|
|
1281
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1239
1282
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1240
1283
|
url: "/extraction/documents/{id}/status",
|
|
1241
1284
|
...options
|
|
1242
1285
|
});
|
|
1243
1286
|
var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client).patch({
|
|
1287
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1244
1288
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1245
1289
|
url: "/extraction/documents/{id}/status",
|
|
1246
1290
|
...options,
|
|
@@ -1250,6 +1294,7 @@ var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client)
|
|
|
1250
1294
|
}
|
|
1251
1295
|
});
|
|
1252
1296
|
var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? client).patch({
|
|
1297
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1253
1298
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1254
1299
|
url: "/extraction/documents/{id}/finish_upload",
|
|
1255
1300
|
...options,
|
|
@@ -1259,6 +1304,7 @@ var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? c
|
|
|
1259
1304
|
}
|
|
1260
1305
|
});
|
|
1261
1306
|
var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1307
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1262
1308
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1263
1309
|
url: "/workspaces/{id}/allocate",
|
|
1264
1310
|
...options,
|
|
@@ -1268,6 +1314,7 @@ var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch(
|
|
|
1268
1314
|
}
|
|
1269
1315
|
});
|
|
1270
1316
|
var postThreadsActive = (options) => (options.client ?? client).post({
|
|
1317
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1271
1318
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1272
1319
|
url: "/threads/active",
|
|
1273
1320
|
...options,
|
|
@@ -1277,6 +1324,7 @@ var postThreadsActive = (options) => (options.client ?? client).post({
|
|
|
1277
1324
|
}
|
|
1278
1325
|
});
|
|
1279
1326
|
var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1327
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1280
1328
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1281
1329
|
url: "/invitations/{id}/revoke",
|
|
1282
1330
|
...options,
|
|
@@ -1286,11 +1334,19 @@ var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1286
1334
|
}
|
|
1287
1335
|
});
|
|
1288
1336
|
var getConfigs = (options) => (options.client ?? client).get({
|
|
1337
|
+
querySerializer: {
|
|
1338
|
+
parameters: {
|
|
1339
|
+
filter: { object: { style: "form" } },
|
|
1340
|
+
page: { object: { style: "form" } },
|
|
1341
|
+
fields: { object: { style: "form" } }
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1289
1344
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1290
1345
|
url: "/configs",
|
|
1291
1346
|
...options
|
|
1292
1347
|
});
|
|
1293
1348
|
var postConfigs = (options) => (options.client ?? client).post({
|
|
1349
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1294
1350
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1295
1351
|
url: "/configs",
|
|
1296
1352
|
...options,
|
|
@@ -1300,6 +1356,7 @@ var postConfigs = (options) => (options.client ?? client).post({
|
|
|
1300
1356
|
}
|
|
1301
1357
|
});
|
|
1302
1358
|
var postTokens = (options) => (options.client ?? client).post({
|
|
1359
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1303
1360
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1304
1361
|
url: "/tokens",
|
|
1305
1362
|
...options,
|
|
@@ -1309,16 +1366,19 @@ var postTokens = (options) => (options.client ?? client).post({
|
|
|
1309
1366
|
}
|
|
1310
1367
|
});
|
|
1311
1368
|
var deleteTrainingExamplesById = (options) => (options.client ?? client).delete({
|
|
1369
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1312
1370
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1313
1371
|
url: "/training_examples/{id}",
|
|
1314
1372
|
...options
|
|
1315
1373
|
});
|
|
1316
1374
|
var getTrainingExamplesById = (options) => (options.client ?? client).get({
|
|
1375
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1317
1376
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1318
1377
|
url: "/training_examples/{id}",
|
|
1319
1378
|
...options
|
|
1320
1379
|
});
|
|
1321
1380
|
var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
1381
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1322
1382
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1323
1383
|
url: "/training_examples/{id}",
|
|
1324
1384
|
...options,
|
|
@@ -1328,11 +1388,13 @@ var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
|
1328
1388
|
}
|
|
1329
1389
|
});
|
|
1330
1390
|
var deleteSearchSavedById = (options) => (options.client ?? client).delete({
|
|
1391
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1331
1392
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1332
1393
|
url: "/search/saved/{id}",
|
|
1333
1394
|
...options
|
|
1334
1395
|
});
|
|
1335
1396
|
var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch({
|
|
1397
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1336
1398
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1337
1399
|
url: "/users/auth/reset-password",
|
|
1338
1400
|
...options,
|
|
@@ -1342,16 +1404,19 @@ var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1342
1404
|
}
|
|
1343
1405
|
});
|
|
1344
1406
|
var getBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
1407
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1345
1408
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1346
1409
|
url: "/buckets/{id}/stats",
|
|
1347
1410
|
...options
|
|
1348
1411
|
});
|
|
1349
1412
|
var getBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
1413
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1350
1414
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1351
1415
|
url: "/buckets/{id}/objects",
|
|
1352
1416
|
...options
|
|
1353
1417
|
});
|
|
1354
1418
|
var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
1419
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1355
1420
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1356
1421
|
url: "/invitations/{id}/resend",
|
|
1357
1422
|
...options,
|
|
@@ -1361,11 +1426,18 @@ var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
|
1361
1426
|
}
|
|
1362
1427
|
});
|
|
1363
1428
|
var getSearchSaved = (options) => (options.client ?? client).get({
|
|
1429
|
+
querySerializer: {
|
|
1430
|
+
parameters: {
|
|
1431
|
+
filter: { object: { style: "form" } },
|
|
1432
|
+
fields: { object: { style: "form" } }
|
|
1433
|
+
}
|
|
1434
|
+
},
|
|
1364
1435
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1365
1436
|
url: "/search/saved",
|
|
1366
1437
|
...options
|
|
1367
1438
|
});
|
|
1368
1439
|
var postSearchSaved = (options) => (options.client ?? client).post({
|
|
1440
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1369
1441
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1370
1442
|
url: "/search/saved",
|
|
1371
1443
|
...options,
|
|
@@ -1375,11 +1447,13 @@ var postSearchSaved = (options) => (options.client ?? client).post({
|
|
|
1375
1447
|
}
|
|
1376
1448
|
});
|
|
1377
1449
|
var getUserProfilesMe = (options) => (options.client ?? client).get({
|
|
1450
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1378
1451
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1379
1452
|
url: "/user_profiles/me",
|
|
1380
1453
|
...options
|
|
1381
1454
|
});
|
|
1382
1455
|
var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
1456
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1383
1457
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1384
1458
|
url: "/invitations/invite",
|
|
1385
1459
|
...options,
|
|
@@ -1389,16 +1463,19 @@ var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
|
1389
1463
|
}
|
|
1390
1464
|
});
|
|
1391
1465
|
var deleteWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
1466
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1392
1467
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1393
1468
|
url: "/webhook_configs/{id}",
|
|
1394
1469
|
...options
|
|
1395
1470
|
});
|
|
1396
1471
|
var getWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
1472
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1397
1473
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1398
1474
|
url: "/webhook_configs/{id}",
|
|
1399
1475
|
...options
|
|
1400
1476
|
});
|
|
1401
1477
|
var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
1478
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1402
1479
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1403
1480
|
url: "/webhook_configs/{id}",
|
|
1404
1481
|
...options,
|
|
@@ -1408,6 +1485,7 @@ var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
|
1408
1485
|
}
|
|
1409
1486
|
});
|
|
1410
1487
|
var postInvitationsAcceptByToken = (options) => (options.client ?? client).post({
|
|
1488
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1411
1489
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1412
1490
|
url: "/invitations/accept_by_token",
|
|
1413
1491
|
...options,
|
|
@@ -1417,11 +1495,13 @@ var postInvitationsAcceptByToken = (options) => (options.client ?? client).post(
|
|
|
1417
1495
|
}
|
|
1418
1496
|
});
|
|
1419
1497
|
var getExtractionBatchesByIdUploadUrls = (options) => (options.client ?? client).get({
|
|
1498
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1420
1499
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1421
1500
|
url: "/extraction/batches/{id}/upload-urls",
|
|
1422
1501
|
...options
|
|
1423
1502
|
});
|
|
1424
1503
|
var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1504
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1425
1505
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1426
1506
|
url: "/documents/bulk_delete",
|
|
1427
1507
|
...options,
|
|
@@ -1431,6 +1511,7 @@ var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
|
1431
1511
|
}
|
|
1432
1512
|
});
|
|
1433
1513
|
var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
1514
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1434
1515
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1435
1516
|
url: "/ai/chunks/search",
|
|
1436
1517
|
...options,
|
|
@@ -1440,6 +1521,7 @@ var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
|
1440
1521
|
}
|
|
1441
1522
|
});
|
|
1442
1523
|
var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
1524
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1443
1525
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1444
1526
|
url: "/threads/{id}/messages",
|
|
1445
1527
|
...options,
|
|
@@ -1449,6 +1531,7 @@ var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
|
1449
1531
|
}
|
|
1450
1532
|
});
|
|
1451
1533
|
var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
1534
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1452
1535
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1453
1536
|
url: "/agents/clone_for_workspace",
|
|
1454
1537
|
...options,
|
|
@@ -1458,6 +1541,7 @@ var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
|
1458
1541
|
}
|
|
1459
1542
|
});
|
|
1460
1543
|
var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
1544
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1461
1545
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1462
1546
|
url: "/invitations/{id}/accept",
|
|
1463
1547
|
...options,
|
|
@@ -1467,16 +1551,19 @@ var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
|
1467
1551
|
}
|
|
1468
1552
|
});
|
|
1469
1553
|
var getCreditPackagesById = (options) => (options.client ?? client).get({
|
|
1554
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1470
1555
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1471
1556
|
url: "/credit-packages/{id}",
|
|
1472
1557
|
...options
|
|
1473
1558
|
});
|
|
1474
1559
|
var getUsersById = (options) => (options.client ?? client).get({
|
|
1560
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1475
1561
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1476
1562
|
url: "/users/{id}",
|
|
1477
1563
|
...options
|
|
1478
1564
|
});
|
|
1479
1565
|
var patchUsersById = (options) => (options.client ?? client).patch({
|
|
1566
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1480
1567
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1481
1568
|
url: "/users/{id}",
|
|
1482
1569
|
...options,
|
|
@@ -1486,11 +1573,13 @@ var patchUsersById = (options) => (options.client ?? client).patch({
|
|
|
1486
1573
|
}
|
|
1487
1574
|
});
|
|
1488
1575
|
var getExtractionResultsById = (options) => (options.client ?? client).get({
|
|
1576
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1489
1577
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1490
1578
|
url: "/extraction/results/{id}",
|
|
1491
1579
|
...options
|
|
1492
1580
|
});
|
|
1493
1581
|
var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
1582
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1494
1583
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1495
1584
|
url: "/agents/{id}/validate",
|
|
1496
1585
|
...options,
|
|
@@ -1500,6 +1589,7 @@ var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
|
1500
1589
|
}
|
|
1501
1590
|
});
|
|
1502
1591
|
var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
1592
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1503
1593
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1504
1594
|
url: "/webhook_configs/{id}/test",
|
|
1505
1595
|
...options,
|
|
@@ -1509,11 +1599,13 @@ var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
|
1509
1599
|
}
|
|
1510
1600
|
});
|
|
1511
1601
|
var getUsersMe = (options) => (options.client ?? client).get({
|
|
1602
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1512
1603
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1513
1604
|
url: "/users/me",
|
|
1514
1605
|
...options
|
|
1515
1606
|
});
|
|
1516
1607
|
var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post({
|
|
1608
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1517
1609
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1518
1610
|
url: "/users/auth/register_with_oidc",
|
|
1519
1611
|
...options,
|
|
@@ -1523,16 +1615,25 @@ var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post
|
|
|
1523
1615
|
}
|
|
1524
1616
|
});
|
|
1525
1617
|
var getTransactionsById = (options) => (options.client ?? client).get({
|
|
1618
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1526
1619
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1527
1620
|
url: "/transactions/{id}",
|
|
1528
1621
|
...options
|
|
1529
1622
|
});
|
|
1530
1623
|
var getTenantMemberships = (options) => (options.client ?? client).get({
|
|
1624
|
+
querySerializer: {
|
|
1625
|
+
parameters: {
|
|
1626
|
+
filter: { object: { style: "form" } },
|
|
1627
|
+
page: { object: { style: "form" } },
|
|
1628
|
+
fields: { object: { style: "form" } }
|
|
1629
|
+
}
|
|
1630
|
+
},
|
|
1531
1631
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1532
1632
|
url: "/tenant-memberships",
|
|
1533
1633
|
...options
|
|
1534
1634
|
});
|
|
1535
1635
|
var postTenantMemberships = (options) => (options.client ?? client).post({
|
|
1636
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1536
1637
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1537
1638
|
url: "/tenant-memberships",
|
|
1538
1639
|
...options,
|
|
@@ -1551,21 +1652,25 @@ var postTrainingExamplesBulkDelete = (options) => (options.client ?? client).pos
|
|
|
1551
1652
|
}
|
|
1552
1653
|
});
|
|
1553
1654
|
var getLlmAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
1655
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1554
1656
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1555
1657
|
url: "/llm_analytics/summary",
|
|
1556
1658
|
...options
|
|
1557
1659
|
});
|
|
1558
1660
|
var deleteExtractionSchemaFieldsById = (options) => (options.client ?? client).delete({
|
|
1661
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1559
1662
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1560
1663
|
url: "/extraction/schema-fields/{id}",
|
|
1561
1664
|
...options
|
|
1562
1665
|
});
|
|
1563
1666
|
var getExtractionSchemaFieldsById = (options) => (options.client ?? client).get({
|
|
1667
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1564
1668
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1565
1669
|
url: "/extraction/schema-fields/{id}",
|
|
1566
1670
|
...options
|
|
1567
1671
|
});
|
|
1568
1672
|
var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).patch({
|
|
1673
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1569
1674
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1570
1675
|
url: "/extraction/schema-fields/{id}",
|
|
1571
1676
|
...options,
|
|
@@ -1575,6 +1680,7 @@ var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).pa
|
|
|
1575
1680
|
}
|
|
1576
1681
|
});
|
|
1577
1682
|
var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
1683
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1578
1684
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1579
1685
|
url: "/storage/sign_download",
|
|
1580
1686
|
...options,
|
|
@@ -1584,31 +1690,64 @@ var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
|
1584
1690
|
}
|
|
1585
1691
|
});
|
|
1586
1692
|
var getWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
1693
|
+
querySerializer: {
|
|
1694
|
+
parameters: {
|
|
1695
|
+
filter: { object: { style: "form" } },
|
|
1696
|
+
page: { object: { style: "form" } },
|
|
1697
|
+
fields: { object: { style: "form" } }
|
|
1698
|
+
}
|
|
1699
|
+
},
|
|
1587
1700
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1588
1701
|
url: "/webhook_deliveries",
|
|
1589
1702
|
...options
|
|
1590
1703
|
});
|
|
1591
1704
|
var getSearch = (options) => (options.client ?? client).get({
|
|
1705
|
+
querySerializer: {
|
|
1706
|
+
parameters: {
|
|
1707
|
+
filter: { object: { style: "form" } },
|
|
1708
|
+
fields: { object: { style: "form" } }
|
|
1709
|
+
}
|
|
1710
|
+
},
|
|
1592
1711
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1593
1712
|
url: "/search",
|
|
1594
1713
|
...options
|
|
1595
1714
|
});
|
|
1596
1715
|
var getInvitations = (options) => (options.client ?? client).get({
|
|
1716
|
+
querySerializer: {
|
|
1717
|
+
parameters: {
|
|
1718
|
+
filter: { object: { style: "form" } },
|
|
1719
|
+
fields: { object: { style: "form" } }
|
|
1720
|
+
}
|
|
1721
|
+
},
|
|
1597
1722
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1598
1723
|
url: "/invitations",
|
|
1599
1724
|
...options
|
|
1600
1725
|
});
|
|
1601
1726
|
var getSearchSemantic = (options) => (options.client ?? client).get({
|
|
1727
|
+
querySerializer: {
|
|
1728
|
+
parameters: {
|
|
1729
|
+
filter: { object: { style: "form" } },
|
|
1730
|
+
fields: { object: { style: "form" } }
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1602
1733
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1603
1734
|
url: "/search/semantic",
|
|
1604
1735
|
...options
|
|
1605
1736
|
});
|
|
1606
1737
|
var getMessages = (options) => (options.client ?? client).get({
|
|
1738
|
+
querySerializer: {
|
|
1739
|
+
parameters: {
|
|
1740
|
+
filter: { object: { style: "form" } },
|
|
1741
|
+
page: { object: { style: "form" } },
|
|
1742
|
+
fields: { object: { style: "form" } }
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1607
1745
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1608
1746
|
url: "/messages",
|
|
1609
1747
|
...options
|
|
1610
1748
|
});
|
|
1611
1749
|
var postMessages = (options) => (options.client ?? client).post({
|
|
1750
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1612
1751
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1613
1752
|
url: "/messages",
|
|
1614
1753
|
...options,
|
|
@@ -1618,11 +1757,19 @@ var postMessages = (options) => (options.client ?? client).post({
|
|
|
1618
1757
|
}
|
|
1619
1758
|
});
|
|
1620
1759
|
var getNotificationPreferences = (options) => (options.client ?? client).get({
|
|
1760
|
+
querySerializer: {
|
|
1761
|
+
parameters: {
|
|
1762
|
+
filter: { object: { style: "form" } },
|
|
1763
|
+
page: { object: { style: "form" } },
|
|
1764
|
+
fields: { object: { style: "form" } }
|
|
1765
|
+
}
|
|
1766
|
+
},
|
|
1621
1767
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1622
1768
|
url: "/notification_preferences",
|
|
1623
1769
|
...options
|
|
1624
1770
|
});
|
|
1625
1771
|
var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
1772
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1626
1773
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1627
1774
|
url: "/notification_preferences",
|
|
1628
1775
|
...options,
|
|
@@ -1632,11 +1779,19 @@ var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
|
1632
1779
|
}
|
|
1633
1780
|
});
|
|
1634
1781
|
var getApplications = (options) => (options.client ?? client).get({
|
|
1782
|
+
querySerializer: {
|
|
1783
|
+
parameters: {
|
|
1784
|
+
filter: { object: { style: "form" } },
|
|
1785
|
+
page: { object: { style: "form" } },
|
|
1786
|
+
fields: { object: { style: "form" } }
|
|
1787
|
+
}
|
|
1788
|
+
},
|
|
1635
1789
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1636
1790
|
url: "/applications",
|
|
1637
1791
|
...options
|
|
1638
1792
|
});
|
|
1639
1793
|
var postApplications = (options) => (options.client ?? client).post({
|
|
1794
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1640
1795
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1641
1796
|
url: "/applications",
|
|
1642
1797
|
...options,
|
|
@@ -1655,16 +1810,19 @@ var postAgentsPredict = (options) => (options.client ?? client).post({
|
|
|
1655
1810
|
}
|
|
1656
1811
|
});
|
|
1657
1812
|
var deleteThreadsById = (options) => (options.client ?? client).delete({
|
|
1813
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1658
1814
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1659
1815
|
url: "/threads/{id}",
|
|
1660
1816
|
...options
|
|
1661
1817
|
});
|
|
1662
1818
|
var getThreadsById = (options) => (options.client ?? client).get({
|
|
1819
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1663
1820
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1664
1821
|
url: "/threads/{id}",
|
|
1665
1822
|
...options
|
|
1666
1823
|
});
|
|
1667
1824
|
var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
1825
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1668
1826
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1669
1827
|
url: "/threads/{id}",
|
|
1670
1828
|
...options,
|
|
@@ -1674,11 +1832,19 @@ var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
|
1674
1832
|
}
|
|
1675
1833
|
});
|
|
1676
1834
|
var getLlmAnalytics = (options) => (options.client ?? client).get({
|
|
1835
|
+
querySerializer: {
|
|
1836
|
+
parameters: {
|
|
1837
|
+
filter: { object: { style: "form" } },
|
|
1838
|
+
page: { object: { style: "form" } },
|
|
1839
|
+
fields: { object: { style: "form" } }
|
|
1840
|
+
}
|
|
1841
|
+
},
|
|
1677
1842
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1678
1843
|
url: "/llm_analytics",
|
|
1679
1844
|
...options
|
|
1680
1845
|
});
|
|
1681
1846
|
var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
1847
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1682
1848
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1683
1849
|
url: "/llm_analytics",
|
|
1684
1850
|
...options,
|
|
@@ -1688,6 +1854,7 @@ var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
|
1688
1854
|
}
|
|
1689
1855
|
});
|
|
1690
1856
|
var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch({
|
|
1857
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1691
1858
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1692
1859
|
url: "/users/{id}/reset-password",
|
|
1693
1860
|
...options,
|
|
@@ -1697,6 +1864,7 @@ var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1697
1864
|
}
|
|
1698
1865
|
});
|
|
1699
1866
|
var postDocumentsPresignedUpload = (options) => (options.client ?? client).post({
|
|
1867
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1700
1868
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1701
1869
|
url: "/documents/presigned_upload",
|
|
1702
1870
|
...options,
|
|
@@ -1706,11 +1874,13 @@ var postDocumentsPresignedUpload = (options) => (options.client ?? client).post(
|
|
|
1706
1874
|
}
|
|
1707
1875
|
});
|
|
1708
1876
|
var getMessagesSearch = (options) => (options.client ?? client).get({
|
|
1877
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1709
1878
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1710
1879
|
url: "/messages/search",
|
|
1711
1880
|
...options
|
|
1712
1881
|
});
|
|
1713
1882
|
var postExtractionDocumentsUpload = (options) => (options.client ?? client).post({
|
|
1883
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1714
1884
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1715
1885
|
url: "/extraction/documents/upload",
|
|
1716
1886
|
...options,
|
|
@@ -1720,6 +1890,7 @@ var postExtractionDocumentsUpload = (options) => (options.client ?? client).post
|
|
|
1720
1890
|
}
|
|
1721
1891
|
});
|
|
1722
1892
|
var patchExtractionResultsByIdCorrections = (options) => (options.client ?? client).patch({
|
|
1893
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1723
1894
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1724
1895
|
url: "/extraction/results/{id}/corrections",
|
|
1725
1896
|
...options,
|
|
@@ -1729,21 +1900,25 @@ var patchExtractionResultsByIdCorrections = (options) => (options.client ?? clie
|
|
|
1729
1900
|
}
|
|
1730
1901
|
});
|
|
1731
1902
|
var getExtractionResultsDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
1903
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1732
1904
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1733
1905
|
url: "/extraction/results/document/{document_id}",
|
|
1734
1906
|
...options
|
|
1735
1907
|
});
|
|
1736
1908
|
var deleteWorkspacesById = (options) => (options.client ?? client).delete({
|
|
1909
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1737
1910
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1738
1911
|
url: "/workspaces/{id}",
|
|
1739
1912
|
...options
|
|
1740
1913
|
});
|
|
1741
1914
|
var getWorkspacesById = (options) => (options.client ?? client).get({
|
|
1915
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1742
1916
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1743
1917
|
url: "/workspaces/{id}",
|
|
1744
1918
|
...options
|
|
1745
1919
|
});
|
|
1746
1920
|
var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
1921
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1747
1922
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1748
1923
|
url: "/workspaces/{id}",
|
|
1749
1924
|
...options,
|
|
@@ -1753,11 +1928,19 @@ var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
|
1753
1928
|
}
|
|
1754
1929
|
});
|
|
1755
1930
|
var getTenants = (options) => (options.client ?? client).get({
|
|
1931
|
+
querySerializer: {
|
|
1932
|
+
parameters: {
|
|
1933
|
+
filter: { object: { style: "form" } },
|
|
1934
|
+
page: { object: { style: "form" } },
|
|
1935
|
+
fields: { object: { style: "form" } }
|
|
1936
|
+
}
|
|
1937
|
+
},
|
|
1756
1938
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1757
1939
|
url: "/tenants",
|
|
1758
1940
|
...options
|
|
1759
1941
|
});
|
|
1760
1942
|
var postTenants = (options) => (options.client ?? client).post({
|
|
1943
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1761
1944
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1762
1945
|
url: "/tenants",
|
|
1763
1946
|
...options,
|
|
@@ -1767,6 +1950,7 @@ var postTenants = (options) => (options.client ?? client).post({
|
|
|
1767
1950
|
}
|
|
1768
1951
|
});
|
|
1769
1952
|
var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post({
|
|
1953
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1770
1954
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1771
1955
|
url: "/tenants/{id}/remove-storage",
|
|
1772
1956
|
...options,
|
|
@@ -1776,11 +1960,13 @@ var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post(
|
|
|
1776
1960
|
}
|
|
1777
1961
|
});
|
|
1778
1962
|
var getNotificationLogsById = (options) => (options.client ?? client).get({
|
|
1963
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1779
1964
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1780
1965
|
url: "/notification_logs/{id}",
|
|
1781
1966
|
...options
|
|
1782
1967
|
});
|
|
1783
1968
|
var postExtractionDocumentsByIdView = (options) => (options.client ?? client).post({
|
|
1969
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1784
1970
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1785
1971
|
url: "/extraction/documents/{id}/view",
|
|
1786
1972
|
...options,
|
|
@@ -1790,21 +1976,37 @@ var postExtractionDocumentsByIdView = (options) => (options.client ?? client).po
|
|
|
1790
1976
|
}
|
|
1791
1977
|
});
|
|
1792
1978
|
var getWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
1979
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1793
1980
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1794
1981
|
url: "/webhook_deliveries/{id}",
|
|
1795
1982
|
...options
|
|
1796
1983
|
});
|
|
1797
1984
|
var getAuditLogs = (options) => (options.client ?? client).get({
|
|
1985
|
+
querySerializer: {
|
|
1986
|
+
parameters: {
|
|
1987
|
+
filter: { object: { style: "form" } },
|
|
1988
|
+
page: { object: { style: "form" } },
|
|
1989
|
+
fields: { object: { style: "form" } }
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1798
1992
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1799
1993
|
url: "/audit-logs",
|
|
1800
1994
|
...options
|
|
1801
1995
|
});
|
|
1802
1996
|
var getAiGraphEdges = (options) => (options.client ?? client).get({
|
|
1997
|
+
querySerializer: {
|
|
1998
|
+
parameters: {
|
|
1999
|
+
filter: { object: { style: "form" } },
|
|
2000
|
+
page: { object: { style: "form" } },
|
|
2001
|
+
fields: { object: { style: "form" } }
|
|
2002
|
+
}
|
|
2003
|
+
},
|
|
1803
2004
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1804
2005
|
url: "/ai/graph/edges",
|
|
1805
2006
|
...options
|
|
1806
2007
|
});
|
|
1807
2008
|
var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
2009
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1808
2010
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1809
2011
|
url: "/ai/graph/edges",
|
|
1810
2012
|
...options,
|
|
@@ -1814,11 +2016,19 @@ var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
|
1814
2016
|
}
|
|
1815
2017
|
});
|
|
1816
2018
|
var getTrainingExamples = (options) => (options.client ?? client).get({
|
|
2019
|
+
querySerializer: {
|
|
2020
|
+
parameters: {
|
|
2021
|
+
filter: { object: { style: "form" } },
|
|
2022
|
+
page: { object: { style: "form" } },
|
|
2023
|
+
fields: { object: { style: "form" } }
|
|
2024
|
+
}
|
|
2025
|
+
},
|
|
1817
2026
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1818
2027
|
url: "/training_examples",
|
|
1819
2028
|
...options
|
|
1820
2029
|
});
|
|
1821
2030
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
2031
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1822
2032
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1823
2033
|
url: "/training_examples",
|
|
1824
2034
|
...options,
|
|
@@ -1828,16 +2038,25 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
1828
2038
|
}
|
|
1829
2039
|
});
|
|
1830
2040
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
2041
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1831
2042
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1832
2043
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
1833
2044
|
...options
|
|
1834
2045
|
});
|
|
1835
2046
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
2047
|
+
querySerializer: {
|
|
2048
|
+
parameters: {
|
|
2049
|
+
filter: { object: { style: "form" } },
|
|
2050
|
+
page: { object: { style: "form" } },
|
|
2051
|
+
fields: { object: { style: "form" } }
|
|
2052
|
+
}
|
|
2053
|
+
},
|
|
1836
2054
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1837
2055
|
url: "/buckets",
|
|
1838
2056
|
...options
|
|
1839
2057
|
});
|
|
1840
2058
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
2059
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1841
2060
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1842
2061
|
url: "/buckets",
|
|
1843
2062
|
...options,
|
|
@@ -1847,11 +2066,13 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
1847
2066
|
}
|
|
1848
2067
|
});
|
|
1849
2068
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
2069
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1850
2070
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1851
2071
|
url: "/plans/{id}",
|
|
1852
2072
|
...options
|
|
1853
2073
|
});
|
|
1854
2074
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
2075
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1855
2076
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1856
2077
|
url: "/wallet/addons",
|
|
1857
2078
|
...options,
|
|
@@ -1861,6 +2082,7 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
1861
2082
|
}
|
|
1862
2083
|
});
|
|
1863
2084
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
2085
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1864
2086
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1865
2087
|
url: "/users/auth/magic_link/login",
|
|
1866
2088
|
...options,
|
|
@@ -1870,11 +2092,19 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
1870
2092
|
}
|
|
1871
2093
|
});
|
|
1872
2094
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
2095
|
+
querySerializer: {
|
|
2096
|
+
parameters: {
|
|
2097
|
+
filter: { object: { style: "form" } },
|
|
2098
|
+
page: { object: { style: "form" } },
|
|
2099
|
+
fields: { object: { style: "form" } }
|
|
2100
|
+
}
|
|
2101
|
+
},
|
|
1873
2102
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1874
2103
|
url: "/api_keys",
|
|
1875
2104
|
...options
|
|
1876
2105
|
});
|
|
1877
2106
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
2107
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1878
2108
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1879
2109
|
url: "/api_keys",
|
|
1880
2110
|
...options,
|
|
@@ -1884,21 +2114,25 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
1884
2114
|
}
|
|
1885
2115
|
});
|
|
1886
2116
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
2117
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1887
2118
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1888
2119
|
url: "/agents/{id}",
|
|
1889
2120
|
...options
|
|
1890
2121
|
});
|
|
1891
2122
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
2123
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1892
2124
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1893
2125
|
url: "/api_keys/{id}",
|
|
1894
2126
|
...options
|
|
1895
2127
|
});
|
|
1896
2128
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
2129
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1897
2130
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1898
2131
|
url: "/api_keys/{id}",
|
|
1899
2132
|
...options
|
|
1900
2133
|
});
|
|
1901
2134
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
2135
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1902
2136
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1903
2137
|
url: "/api_keys/{id}",
|
|
1904
2138
|
...options,
|
|
@@ -1908,11 +2142,19 @@ var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
|
1908
2142
|
}
|
|
1909
2143
|
});
|
|
1910
2144
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
2145
|
+
querySerializer: {
|
|
2146
|
+
parameters: {
|
|
2147
|
+
filter: { object: { style: "form" } },
|
|
2148
|
+
page: { object: { style: "form" } },
|
|
2149
|
+
fields: { object: { style: "form" } }
|
|
2150
|
+
}
|
|
2151
|
+
},
|
|
1911
2152
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1912
2153
|
url: "/ai/conversations",
|
|
1913
2154
|
...options
|
|
1914
2155
|
});
|
|
1915
2156
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
2157
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1916
2158
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1917
2159
|
url: "/ai/conversations",
|
|
1918
2160
|
...options,
|
|
@@ -1922,6 +2164,7 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
1922
2164
|
}
|
|
1923
2165
|
});
|
|
1924
2166
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
2167
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1925
2168
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1926
2169
|
url: "/ai/search",
|
|
1927
2170
|
...options,
|
|
@@ -1931,11 +2174,13 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
1931
2174
|
}
|
|
1932
2175
|
});
|
|
1933
2176
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
2177
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1934
2178
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1935
2179
|
url: "/ai/graph/nodes/{id}",
|
|
1936
2180
|
...options
|
|
1937
2181
|
});
|
|
1938
2182
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
2183
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1939
2184
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1940
2185
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
1941
2186
|
...options,
|
|
@@ -1945,16 +2190,19 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
1945
2190
|
}
|
|
1946
2191
|
});
|
|
1947
2192
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
2193
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1948
2194
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1949
2195
|
url: "/applications/{id}",
|
|
1950
2196
|
...options
|
|
1951
2197
|
});
|
|
1952
2198
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
2199
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1953
2200
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1954
2201
|
url: "/applications/{id}",
|
|
1955
2202
|
...options
|
|
1956
2203
|
});
|
|
1957
2204
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
2205
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1958
2206
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1959
2207
|
url: "/applications/{id}",
|
|
1960
2208
|
...options,
|
|
@@ -1964,21 +2212,41 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
1964
2212
|
}
|
|
1965
2213
|
});
|
|
1966
2214
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
2215
|
+
querySerializer: {
|
|
2216
|
+
parameters: {
|
|
2217
|
+
filter: { object: { style: "form" } },
|
|
2218
|
+
fields: { object: { style: "form" } }
|
|
2219
|
+
}
|
|
2220
|
+
},
|
|
1967
2221
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1968
2222
|
url: "/search/health",
|
|
1969
2223
|
...options
|
|
1970
2224
|
});
|
|
1971
2225
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
2226
|
+
querySerializer: {
|
|
2227
|
+
parameters: {
|
|
2228
|
+
filter: { object: { style: "form" } },
|
|
2229
|
+
fields: { object: { style: "form" } }
|
|
2230
|
+
}
|
|
2231
|
+
},
|
|
1972
2232
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1973
2233
|
url: "/transactions",
|
|
1974
2234
|
...options
|
|
1975
2235
|
});
|
|
1976
2236
|
var getUserProfiles = (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
|
+
},
|
|
1977
2244
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1978
2245
|
url: "/user_profiles",
|
|
1979
2246
|
...options
|
|
1980
2247
|
});
|
|
1981
2248
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
2249
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1982
2250
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1983
2251
|
url: "/user_profiles",
|
|
1984
2252
|
...options,
|
|
@@ -1988,6 +2256,7 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
1988
2256
|
}
|
|
1989
2257
|
});
|
|
1990
2258
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
2259
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1991
2260
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1992
2261
|
url: "/users/{id}/confirm-email",
|
|
1993
2262
|
...options,
|
|
@@ -1997,11 +2266,13 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
1997
2266
|
}
|
|
1998
2267
|
});
|
|
1999
2268
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
2269
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2000
2270
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2001
2271
|
url: "/threads/search",
|
|
2002
2272
|
...options
|
|
2003
2273
|
});
|
|
2004
2274
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
2275
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2005
2276
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2006
2277
|
url: "/wallet/plan",
|
|
2007
2278
|
...options,
|
|
@@ -2011,21 +2282,31 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
2011
2282
|
}
|
|
2012
2283
|
});
|
|
2013
2284
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
2285
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2014
2286
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2015
2287
|
url: "/plans/slug/{slug}",
|
|
2016
2288
|
...options
|
|
2017
2289
|
});
|
|
2018
2290
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
2291
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2019
2292
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2020
2293
|
url: "/llm_analytics/{id}",
|
|
2021
2294
|
...options
|
|
2022
2295
|
});
|
|
2023
2296
|
var getExtractionSchemaFields = (options) => (options.client ?? client).get({
|
|
2297
|
+
querySerializer: {
|
|
2298
|
+
parameters: {
|
|
2299
|
+
filter: { object: { style: "form" } },
|
|
2300
|
+
page: { object: { style: "form" } },
|
|
2301
|
+
fields: { object: { style: "form" } }
|
|
2302
|
+
}
|
|
2303
|
+
},
|
|
2024
2304
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2025
2305
|
url: "/extraction/schema-fields",
|
|
2026
2306
|
...options
|
|
2027
2307
|
});
|
|
2028
2308
|
var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
2309
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2029
2310
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2030
2311
|
url: "/extraction/schema-fields",
|
|
2031
2312
|
...options,
|
|
@@ -2035,11 +2316,18 @@ var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
|
2035
2316
|
}
|
|
2036
2317
|
});
|
|
2037
2318
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
2319
|
+
querySerializer: {
|
|
2320
|
+
parameters: {
|
|
2321
|
+
filter: { object: { style: "form" } },
|
|
2322
|
+
fields: { object: { style: "form" } }
|
|
2323
|
+
}
|
|
2324
|
+
},
|
|
2038
2325
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2039
2326
|
url: "/search/status",
|
|
2040
2327
|
...options
|
|
2041
2328
|
});
|
|
2042
2329
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
2330
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2043
2331
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2044
2332
|
url: "/api_keys/{id}/allocate",
|
|
2045
2333
|
...options,
|
|
@@ -2049,6 +2337,7 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
2049
2337
|
}
|
|
2050
2338
|
});
|
|
2051
2339
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
2340
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2052
2341
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2053
2342
|
url: "/users/auth/login",
|
|
2054
2343
|
...options,
|
|
@@ -2058,6 +2347,7 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
2058
2347
|
}
|
|
2059
2348
|
});
|
|
2060
2349
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
2350
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2061
2351
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2062
2352
|
url: "/ai/embed",
|
|
2063
2353
|
...options,
|
|
@@ -2067,11 +2357,18 @@ var postAiEmbed = (options) => (options.client ?? client).post({
|
|
|
2067
2357
|
}
|
|
2068
2358
|
});
|
|
2069
2359
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
2360
|
+
querySerializer: {
|
|
2361
|
+
parameters: {
|
|
2362
|
+
filter: { object: { style: "form" } },
|
|
2363
|
+
fields: { object: { style: "form" } }
|
|
2364
|
+
}
|
|
2365
|
+
},
|
|
2070
2366
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2071
2367
|
url: "/workspaces/mine",
|
|
2072
2368
|
...options
|
|
2073
2369
|
});
|
|
2074
2370
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
2371
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2075
2372
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2076
2373
|
url: "/search/reindex",
|
|
2077
2374
|
...options,
|
|
@@ -2081,6 +2378,7 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
2081
2378
|
}
|
|
2082
2379
|
});
|
|
2083
2380
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
2381
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2084
2382
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2085
2383
|
url: "/extraction/results/{id}/regenerate",
|
|
2086
2384
|
...options,
|
|
@@ -2090,6 +2388,7 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
2090
2388
|
}
|
|
2091
2389
|
});
|
|
2092
2390
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
2391
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2093
2392
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2094
2393
|
url: "/users/auth/confirm",
|
|
2095
2394
|
...options,
|
|
@@ -2099,6 +2398,7 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
2099
2398
|
}
|
|
2100
2399
|
});
|
|
2101
2400
|
var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
2401
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2102
2402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2103
2403
|
url: "/extraction/schemas",
|
|
2104
2404
|
...options,
|
|
@@ -2108,11 +2408,18 @@ var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
|
2108
2408
|
}
|
|
2109
2409
|
});
|
|
2110
2410
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
2411
|
+
querySerializer: {
|
|
2412
|
+
parameters: {
|
|
2413
|
+
filter: { object: { style: "form" } },
|
|
2414
|
+
fields: { object: { style: "form" } }
|
|
2415
|
+
}
|
|
2416
|
+
},
|
|
2111
2417
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2112
2418
|
url: "/storage/stats",
|
|
2113
2419
|
...options
|
|
2114
2420
|
});
|
|
2115
2421
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
2422
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2116
2423
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2117
2424
|
url: "/tenants/{id}/buy-storage",
|
|
2118
2425
|
...options,
|
|
@@ -2122,11 +2429,19 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
2122
2429
|
}
|
|
2123
2430
|
});
|
|
2124
2431
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
2432
|
+
querySerializer: {
|
|
2433
|
+
parameters: {
|
|
2434
|
+
filter: { object: { style: "form" } },
|
|
2435
|
+
page: { object: { style: "form" } },
|
|
2436
|
+
fields: { object: { style: "form" } }
|
|
2437
|
+
}
|
|
2438
|
+
},
|
|
2125
2439
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2126
2440
|
url: "/workspace-memberships",
|
|
2127
2441
|
...options
|
|
2128
2442
|
});
|
|
2129
2443
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
2444
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2130
2445
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2131
2446
|
url: "/workspace-memberships",
|
|
2132
2447
|
...options,
|
|
@@ -2136,6 +2451,7 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
2136
2451
|
}
|
|
2137
2452
|
});
|
|
2138
2453
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
2454
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2139
2455
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2140
2456
|
url: "/users/auth/magic_link/request",
|
|
2141
2457
|
...options,
|
|
@@ -2145,6 +2461,7 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
2145
2461
|
}
|
|
2146
2462
|
});
|
|
2147
2463
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
2464
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2148
2465
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2149
2466
|
url: "/users/auth/register",
|
|
2150
2467
|
...options,
|
|
@@ -2163,16 +2480,19 @@ var postTrainingExamplesBulk = (options) => (options.client ?? client).post({
|
|
|
2163
2480
|
}
|
|
2164
2481
|
});
|
|
2165
2482
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
2483
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2166
2484
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2167
2485
|
url: "/buckets/{id}",
|
|
2168
2486
|
...options
|
|
2169
2487
|
});
|
|
2170
2488
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
2489
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2171
2490
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2172
2491
|
url: "/buckets/{id}",
|
|
2173
2492
|
...options
|
|
2174
2493
|
});
|
|
2175
2494
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
2495
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2176
2496
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2177
2497
|
url: "/buckets/{id}",
|
|
2178
2498
|
...options,
|
|
@@ -2182,11 +2502,18 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
2182
2502
|
}
|
|
2183
2503
|
});
|
|
2184
2504
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
2505
|
+
querySerializer: {
|
|
2506
|
+
parameters: {
|
|
2507
|
+
filter: { object: { style: "form" } },
|
|
2508
|
+
fields: { object: { style: "form" } }
|
|
2509
|
+
}
|
|
2510
|
+
},
|
|
2185
2511
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2186
2512
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
2187
2513
|
...options
|
|
2188
2514
|
});
|
|
2189
2515
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
2516
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2190
2517
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2191
2518
|
url: "/extraction/documents/begin_upload",
|
|
2192
2519
|
...options,
|
|
@@ -2196,21 +2523,25 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
2196
2523
|
}
|
|
2197
2524
|
});
|
|
2198
2525
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
2526
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2199
2527
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2200
2528
|
url: "/ai/graph/edges/{id}",
|
|
2201
2529
|
...options
|
|
2202
2530
|
});
|
|
2203
2531
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
2532
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2204
2533
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2205
2534
|
url: "/tenants/{id}",
|
|
2206
2535
|
...options
|
|
2207
2536
|
});
|
|
2208
2537
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
2538
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2209
2539
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2210
2540
|
url: "/tenants/{id}",
|
|
2211
2541
|
...options
|
|
2212
2542
|
});
|
|
2213
2543
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
2544
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2214
2545
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2215
2546
|
url: "/tenants/{id}",
|
|
2216
2547
|
...options,
|
|
@@ -2220,16 +2551,25 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
2220
2551
|
}
|
|
2221
2552
|
});
|
|
2222
2553
|
var getPlans = (options) => (options.client ?? client).get({
|
|
2554
|
+
querySerializer: {
|
|
2555
|
+
parameters: {
|
|
2556
|
+
filter: { object: { style: "form" } },
|
|
2557
|
+
page: { object: { style: "form" } },
|
|
2558
|
+
fields: { object: { style: "form" } }
|
|
2559
|
+
}
|
|
2560
|
+
},
|
|
2223
2561
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2224
2562
|
url: "/plans",
|
|
2225
2563
|
...options
|
|
2226
2564
|
});
|
|
2227
2565
|
var getExtractionSchemasById = (options) => (options.client ?? client).get({
|
|
2566
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2228
2567
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2229
2568
|
url: "/extraction/schemas/{id}",
|
|
2230
2569
|
...options
|
|
2231
2570
|
});
|
|
2232
2571
|
var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
2572
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2233
2573
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2234
2574
|
url: "/extraction/schemas/{id}",
|
|
2235
2575
|
...options,
|
|
@@ -2239,6 +2579,7 @@ var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
|
2239
2579
|
}
|
|
2240
2580
|
});
|
|
2241
2581
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
2582
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2242
2583
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2243
2584
|
url: "/agents/{id}/test",
|
|
2244
2585
|
...options,
|
|
@@ -2248,16 +2589,24 @@ var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
|
2248
2589
|
}
|
|
2249
2590
|
});
|
|
2250
2591
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
2592
|
+
querySerializer: {
|
|
2593
|
+
parameters: {
|
|
2594
|
+
filter: { object: { style: "form" } },
|
|
2595
|
+
fields: { object: { style: "form" } }
|
|
2596
|
+
}
|
|
2597
|
+
},
|
|
2251
2598
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2252
2599
|
url: "/extraction/documents",
|
|
2253
2600
|
...options
|
|
2254
2601
|
});
|
|
2255
2602
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
2603
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2256
2604
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2257
2605
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2258
2606
|
...options
|
|
2259
2607
|
});
|
|
2260
2608
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
2609
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2261
2610
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2262
2611
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2263
2612
|
...options,
|
|
@@ -2267,6 +2616,7 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
2267
2616
|
}
|
|
2268
2617
|
});
|
|
2269
2618
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
2619
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2270
2620
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2271
2621
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
2272
2622
|
...options,
|
|
@@ -2276,11 +2626,19 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
2276
2626
|
}
|
|
2277
2627
|
});
|
|
2278
2628
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
2629
|
+
querySerializer: {
|
|
2630
|
+
parameters: {
|
|
2631
|
+
filter: { object: { style: "form" } },
|
|
2632
|
+
page: { object: { style: "form" } },
|
|
2633
|
+
fields: { object: { style: "form" } }
|
|
2634
|
+
}
|
|
2635
|
+
},
|
|
2279
2636
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2280
2637
|
url: "/ai/messages",
|
|
2281
2638
|
...options
|
|
2282
2639
|
});
|
|
2283
2640
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
2641
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2284
2642
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2285
2643
|
url: "/ai/messages",
|
|
2286
2644
|
...options,
|
|
@@ -2290,6 +2648,7 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
2290
2648
|
}
|
|
2291
2649
|
});
|
|
2292
2650
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
2651
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2293
2652
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2294
2653
|
url: "/storage/sign_upload",
|
|
2295
2654
|
...options,
|
|
@@ -2299,6 +2658,7 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
2299
2658
|
}
|
|
2300
2659
|
});
|
|
2301
2660
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
2661
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2302
2662
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2303
2663
|
url: "/webhook_deliveries/{id}/retry",
|
|
2304
2664
|
...options,
|
|
@@ -2308,6 +2668,7 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
2308
2668
|
}
|
|
2309
2669
|
});
|
|
2310
2670
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
2671
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2311
2672
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2312
2673
|
url: "/threads/{id}/summarize",
|
|
2313
2674
|
...options,
|
|
@@ -2317,6 +2678,7 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
2317
2678
|
}
|
|
2318
2679
|
});
|
|
2319
2680
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
2681
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2320
2682
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2321
2683
|
url: "/configs/{key}",
|
|
2322
2684
|
...options,
|
|
@@ -2326,6 +2688,7 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
2326
2688
|
}
|
|
2327
2689
|
});
|
|
2328
2690
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
2691
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2329
2692
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2330
2693
|
url: "/api_keys/{id}/rotate",
|
|
2331
2694
|
...options,
|
|
@@ -2335,6 +2698,7 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
2335
2698
|
}
|
|
2336
2699
|
});
|
|
2337
2700
|
var postExtractionResults = (options) => (options.client ?? client).post({
|
|
2701
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2338
2702
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2339
2703
|
url: "/extraction/results",
|
|
2340
2704
|
...options,
|
|
@@ -2344,6 +2708,7 @@ var postExtractionResults = (options) => (options.client ?? client).post({
|
|
|
2344
2708
|
}
|
|
2345
2709
|
});
|
|
2346
2710
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
2711
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2347
2712
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2348
2713
|
url: "/agents/{id}/clone",
|
|
2349
2714
|
...options,
|
|
@@ -2353,26 +2718,31 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
2353
2718
|
}
|
|
2354
2719
|
});
|
|
2355
2720
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
2721
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2356
2722
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2357
2723
|
url: "/ai/conversations/{id}",
|
|
2358
2724
|
...options
|
|
2359
2725
|
});
|
|
2360
2726
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
2727
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2361
2728
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2362
2729
|
url: "/ai/conversations/{id}",
|
|
2363
2730
|
...options
|
|
2364
2731
|
});
|
|
2365
2732
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
2733
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2366
2734
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2367
2735
|
url: "/user_profiles/{id}",
|
|
2368
2736
|
...options
|
|
2369
2737
|
});
|
|
2370
2738
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
2739
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2371
2740
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2372
2741
|
url: "/user_profiles/{id}",
|
|
2373
2742
|
...options
|
|
2374
2743
|
});
|
|
2375
2744
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
2745
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2376
2746
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2377
2747
|
url: "/user_profiles/{id}",
|
|
2378
2748
|
...options,
|
|
@@ -2382,21 +2752,31 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
2382
2752
|
}
|
|
2383
2753
|
});
|
|
2384
2754
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
2755
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2385
2756
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2386
2757
|
url: "/objects/{id}",
|
|
2387
2758
|
...options
|
|
2388
2759
|
});
|
|
2389
2760
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
2761
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2390
2762
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2391
2763
|
url: "/objects/{id}",
|
|
2392
2764
|
...options
|
|
2393
2765
|
});
|
|
2394
2766
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
2767
|
+
querySerializer: {
|
|
2768
|
+
parameters: {
|
|
2769
|
+
filter: { object: { style: "form" } },
|
|
2770
|
+
page: { object: { style: "form" } },
|
|
2771
|
+
fields: { object: { style: "form" } }
|
|
2772
|
+
}
|
|
2773
|
+
},
|
|
2395
2774
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2396
2775
|
url: "/webhook_configs",
|
|
2397
2776
|
...options
|
|
2398
2777
|
});
|
|
2399
2778
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
2779
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2400
2780
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2401
2781
|
url: "/webhook_configs",
|
|
2402
2782
|
...options,
|
|
@@ -2406,6 +2786,7 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
2406
2786
|
}
|
|
2407
2787
|
});
|
|
2408
2788
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
2789
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2409
2790
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2410
2791
|
url: "/objects/bulk-destroy",
|
|
2411
2792
|
...options,
|
|
@@ -2415,31 +2796,42 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
2415
2796
|
}
|
|
2416
2797
|
});
|
|
2417
2798
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
2799
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2418
2800
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2419
2801
|
url: "/applications/by-slug/{slug}",
|
|
2420
2802
|
...options
|
|
2421
2803
|
});
|
|
2422
2804
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
2805
|
+
querySerializer: {
|
|
2806
|
+
parameters: {
|
|
2807
|
+
filter: { object: { style: "form" } },
|
|
2808
|
+
fields: { object: { style: "form" } }
|
|
2809
|
+
}
|
|
2810
|
+
},
|
|
2423
2811
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2424
2812
|
url: "/notification_logs",
|
|
2425
2813
|
...options
|
|
2426
2814
|
});
|
|
2427
2815
|
var getWallet = (options) => (options.client ?? client).get({
|
|
2816
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2428
2817
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2429
2818
|
url: "/wallet",
|
|
2430
2819
|
...options
|
|
2431
2820
|
});
|
|
2432
2821
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
2822
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2433
2823
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2434
2824
|
url: "/messages/{id}",
|
|
2435
2825
|
...options
|
|
2436
2826
|
});
|
|
2437
2827
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
2828
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2438
2829
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2439
2830
|
url: "/messages/{id}",
|
|
2440
2831
|
...options
|
|
2441
2832
|
});
|
|
2442
2833
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
2834
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2443
2835
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2444
2836
|
url: "/messages/{id}",
|
|
2445
2837
|
...options,
|
|
@@ -2449,26 +2841,36 @@ var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
|
2449
2841
|
}
|
|
2450
2842
|
});
|
|
2451
2843
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
2844
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2452
2845
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2453
2846
|
url: "/llm_analytics/usage",
|
|
2454
2847
|
...options
|
|
2455
2848
|
});
|
|
2456
2849
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
2850
|
+
querySerializer: {
|
|
2851
|
+
parameters: {
|
|
2852
|
+
filter: { object: { style: "form" } },
|
|
2853
|
+
fields: { object: { style: "form" } }
|
|
2854
|
+
}
|
|
2855
|
+
},
|
|
2457
2856
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2458
2857
|
url: "/search/stats",
|
|
2459
2858
|
...options
|
|
2460
2859
|
});
|
|
2461
2860
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
2861
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2462
2862
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2463
2863
|
url: "/notification_preferences/{id}",
|
|
2464
2864
|
...options
|
|
2465
2865
|
});
|
|
2466
2866
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
2867
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2467
2868
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2468
2869
|
url: "/notification_preferences/{id}",
|
|
2469
2870
|
...options
|
|
2470
2871
|
});
|
|
2471
2872
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
2873
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2472
2874
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2473
2875
|
url: "/notification_preferences/{id}",
|
|
2474
2876
|
...options,
|
|
@@ -2478,11 +2880,19 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
2478
2880
|
}
|
|
2479
2881
|
});
|
|
2480
2882
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
2883
|
+
querySerializer: {
|
|
2884
|
+
parameters: {
|
|
2885
|
+
filter: { object: { style: "form" } },
|
|
2886
|
+
page: { object: { style: "form" } },
|
|
2887
|
+
fields: { object: { style: "form" } }
|
|
2888
|
+
}
|
|
2889
|
+
},
|
|
2481
2890
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2482
2891
|
url: "/ai/graph/nodes",
|
|
2483
2892
|
...options
|
|
2484
2893
|
});
|
|
2485
2894
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
2895
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2486
2896
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2487
2897
|
url: "/ai/graph/nodes",
|
|
2488
2898
|
...options,
|
|
@@ -2492,11 +2902,18 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
2492
2902
|
}
|
|
2493
2903
|
});
|
|
2494
2904
|
var getAgents = (options) => (options.client ?? client).get({
|
|
2905
|
+
querySerializer: {
|
|
2906
|
+
parameters: {
|
|
2907
|
+
filter: { object: { style: "form" } },
|
|
2908
|
+
fields: { object: { style: "form" } }
|
|
2909
|
+
}
|
|
2910
|
+
},
|
|
2495
2911
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2496
2912
|
url: "/agents",
|
|
2497
2913
|
...options
|
|
2498
2914
|
});
|
|
2499
2915
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
2916
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2500
2917
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2501
2918
|
url: "/users/register_isv",
|
|
2502
2919
|
...options,
|
|
@@ -2506,16 +2923,25 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
2506
2923
|
}
|
|
2507
2924
|
});
|
|
2508
2925
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
2926
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2509
2927
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2510
2928
|
url: "/extraction/batches/{id}",
|
|
2511
2929
|
...options
|
|
2512
2930
|
});
|
|
2513
2931
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
2932
|
+
querySerializer: {
|
|
2933
|
+
parameters: {
|
|
2934
|
+
filter: { object: { style: "form" } },
|
|
2935
|
+
page: { object: { style: "form" } },
|
|
2936
|
+
fields: { object: { style: "form" } }
|
|
2937
|
+
}
|
|
2938
|
+
},
|
|
2514
2939
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2515
2940
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2516
2941
|
...options
|
|
2517
2942
|
});
|
|
2518
2943
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
2944
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2519
2945
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2520
2946
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
2521
2947
|
...options,
|
|
@@ -2525,11 +2951,13 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
2525
2951
|
}
|
|
2526
2952
|
});
|
|
2527
2953
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
2954
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2528
2955
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2529
2956
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2530
2957
|
...options
|
|
2531
2958
|
});
|
|
2532
2959
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
2960
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2533
2961
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2534
2962
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
2535
2963
|
...options,
|
|
@@ -2539,16 +2967,37 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
2539
2967
|
}
|
|
2540
2968
|
});
|
|
2541
2969
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
2970
|
+
querySerializer: {
|
|
2971
|
+
parameters: {
|
|
2972
|
+
filter: { object: { style: "form" } },
|
|
2973
|
+
page: { object: { style: "form" } },
|
|
2974
|
+
fields: { object: { style: "form" } }
|
|
2975
|
+
}
|
|
2976
|
+
},
|
|
2542
2977
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2543
2978
|
url: "/credit-packages",
|
|
2544
2979
|
...options
|
|
2545
2980
|
});
|
|
2546
2981
|
var getUsers = (options) => (options.client ?? client).get({
|
|
2982
|
+
querySerializer: {
|
|
2983
|
+
parameters: {
|
|
2984
|
+
filter: { object: { style: "form" } },
|
|
2985
|
+
page: { object: { style: "form" } },
|
|
2986
|
+
fields: { object: { style: "form" } }
|
|
2987
|
+
}
|
|
2988
|
+
},
|
|
2547
2989
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2548
2990
|
url: "/users",
|
|
2549
2991
|
...options
|
|
2550
2992
|
});
|
|
2551
2993
|
var getObjects = (options) => (options.client ?? client).get({
|
|
2994
|
+
querySerializer: {
|
|
2995
|
+
parameters: {
|
|
2996
|
+
filter: { object: { style: "form" } },
|
|
2997
|
+
page: { object: { style: "form" } },
|
|
2998
|
+
fields: { object: { style: "form" } }
|
|
2999
|
+
}
|
|
3000
|
+
},
|
|
2552
3001
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2553
3002
|
url: "/objects",
|
|
2554
3003
|
...options
|