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