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