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