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