@gpt-core/client 0.9.21 → 0.9.30

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.mjs CHANGED
@@ -37,9 +37,12 @@ __export(sdk_gen_exports, {
37
37
  deleteWebhookConfigsById: () => deleteWebhookConfigsById,
38
38
  deleteWorkspaceMembershipsByWorkspaceIdByUserId: () => deleteWorkspaceMembershipsByWorkspaceIdByUserId,
39
39
  deleteWorkspacesById: () => deleteWorkspacesById,
40
+ getAgentVersionRevisions: () => getAgentVersionRevisions,
41
+ getAgentVersionRevisionsById: () => getAgentVersionRevisionsById,
40
42
  getAgentVersions: () => getAgentVersions,
41
43
  getAgentVersionsById: () => getAgentVersionsById,
42
44
  getAgentVersionsByIdMetrics: () => getAgentVersionsByIdMetrics,
45
+ getAgentVersionsByIdRevisions: () => getAgentVersionsByIdRevisions,
43
46
  getAgents: () => getAgents,
44
47
  getAgentsById: () => getAgentsById,
45
48
  getAgentsByIdSchemaVersions: () => getAgentsByIdSchemaVersions,
@@ -178,6 +181,7 @@ __export(sdk_gen_exports, {
178
181
  getWalletPlanPreview: () => getWalletPlanPreview,
179
182
  getWatcherClaims: () => getWatcherClaims,
180
183
  getWatcherClaimsById: () => getWatcherClaimsById,
184
+ getWatcherClaimsHistory: () => getWatcherClaimsHistory,
181
185
  getWatcherClaimsStatus: () => getWatcherClaimsStatus,
182
186
  getWatcherEvents: () => getWatcherEvents,
183
187
  getWatcherEventsById: () => getWatcherEventsById,
@@ -272,6 +276,7 @@ __export(sdk_gen_exports, {
272
276
  patchWorkspaceMembershipsByWorkspaceIdByUserId: () => patchWorkspaceMembershipsByWorkspaceIdByUserId,
273
277
  patchWorkspacesById: () => patchWorkspacesById,
274
278
  patchWorkspacesByIdAllocate: () => patchWorkspacesByIdAllocate,
279
+ patchWorkspacesByIdPopulateHashes: () => patchWorkspacesByIdPopulateHashes,
275
280
  patchWorkspacesByIdStorageSettings: () => patchWorkspacesByIdStorageSettings,
276
281
  postAgentTestResults: () => postAgentTestResults,
277
282
  postAgentVersionComparisons: () => postAgentVersionComparisons,
@@ -313,6 +318,7 @@ __export(sdk_gen_exports, {
313
318
  postExtractionConfigEnums: () => postExtractionConfigEnums,
314
319
  postExtractionDocumentsBeginUpload: () => postExtractionDocumentsBeginUpload,
315
320
  postExtractionDocumentsBulkReprocess: () => postExtractionDocumentsBulkReprocess,
321
+ postExtractionDocumentsFindOrBeginUpload: () => postExtractionDocumentsFindOrBeginUpload,
316
322
  postExtractionDocumentsUpload: () => postExtractionDocumentsUpload,
317
323
  postExtractionSchemaDiscoveries: () => postExtractionSchemaDiscoveries,
318
324
  postFieldTemplates: () => postFieldTemplates,
@@ -1200,7 +1206,6 @@ var client = createClient(
1200
1206
 
1201
1207
  // src/_internal/sdk.gen.ts
1202
1208
  var postAiSearchAdvanced = (options) => (options.client ?? client).post({
1203
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1204
1209
  security: [{ scheme: "bearer", type: "http" }],
1205
1210
  url: "/ai/search/advanced",
1206
1211
  ...options,
@@ -1210,31 +1215,21 @@ var postAiSearchAdvanced = (options) => (options.client ?? client).post({
1210
1215
  }
1211
1216
  });
1212
1217
  var deleteExtractionDocumentsById = (options) => (options.client ?? client).delete({
1213
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1214
1218
  security: [{ scheme: "bearer", type: "http" }],
1215
1219
  url: "/extraction/documents/{id}",
1216
1220
  ...options
1217
1221
  });
1218
1222
  var getExtractionDocumentsById = (options) => (options.client ?? client).get({
1219
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1220
1223
  security: [{ scheme: "bearer", type: "http" }],
1221
1224
  url: "/extraction/documents/{id}",
1222
1225
  ...options
1223
1226
  });
1224
1227
  var getThreads = (options) => (options.client ?? client).get({
1225
- querySerializer: {
1226
- parameters: {
1227
- filter: { object: { style: "form" } },
1228
- page: { object: { style: "form" } },
1229
- fields: { object: { style: "form" } }
1230
- }
1231
- },
1232
1228
  security: [{ scheme: "bearer", type: "http" }],
1233
1229
  url: "/threads",
1234
1230
  ...options
1235
1231
  });
1236
1232
  var postThreads = (options) => (options.client ?? client).post({
1237
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1238
1233
  security: [{ scheme: "bearer", type: "http" }],
1239
1234
  url: "/threads",
1240
1235
  ...options,
@@ -1244,7 +1239,6 @@ var postThreads = (options) => (options.client ?? client).post({
1244
1239
  }
1245
1240
  });
1246
1241
  var patchExtractionDocumentsByIdCancel = (options) => (options.client ?? client).patch({
1247
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1248
1242
  security: [{ scheme: "bearer", type: "http" }],
1249
1243
  url: "/extraction/documents/{id}/cancel",
1250
1244
  ...options,
@@ -1254,19 +1248,16 @@ var patchExtractionDocumentsByIdCancel = (options) => (options.client ?? client)
1254
1248
  }
1255
1249
  });
1256
1250
  var getLlmAnalyticsCosts = (options) => (options.client ?? client).get({
1257
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1258
1251
  security: [{ scheme: "bearer", type: "http" }],
1259
1252
  url: "/llm_analytics/costs",
1260
1253
  ...options
1261
1254
  });
1262
1255
  var getExtractionConfigEnumsById = (options) => (options.client ?? client).get({
1263
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1264
1256
  security: [{ scheme: "bearer", type: "http" }],
1265
1257
  url: "/extraction/config-enums/{id}",
1266
1258
  ...options
1267
1259
  });
1268
1260
  var patchExtractionConfigEnumsById = (options) => (options.client ?? client).patch({
1269
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1270
1261
  security: [{ scheme: "bearer", type: "http" }],
1271
1262
  url: "/extraction/config-enums/{id}",
1272
1263
  ...options,
@@ -1276,30 +1267,21 @@ var patchExtractionConfigEnumsById = (options) => (options.client ?? client).pat
1276
1267
  }
1277
1268
  });
1278
1269
  var getTrainingSessionsAgentsByAgentIdSessions = (options) => (options.client ?? client).get({
1279
- querySerializer: {
1280
- parameters: {
1281
- filter: { object: { style: "form" } },
1282
- fields: { object: { style: "form" } }
1283
- }
1284
- },
1285
1270
  security: [{ scheme: "bearer", type: "http" }],
1286
1271
  url: "/training_sessions/agents/{agent_id}/sessions",
1287
1272
  ...options
1288
1273
  });
1289
1274
  var getWatcherEventsById = (options) => (options.client ?? client).get({
1290
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1291
1275
  security: [{ scheme: "bearer", type: "http" }],
1292
1276
  url: "/watcher/events/{id}",
1293
1277
  ...options
1294
1278
  });
1295
1279
  var getAiChunksDocumentByDocumentId = (options) => (options.client ?? client).get({
1296
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1297
1280
  security: [{ scheme: "bearer", type: "http" }],
1298
1281
  url: "/ai/chunks/document/{document_id}",
1299
1282
  ...options
1300
1283
  });
1301
1284
  var patchWalletCredits = (options) => (options.client ?? client).patch({
1302
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1303
1285
  security: [{ scheme: "bearer", type: "http" }],
1304
1286
  url: "/wallet/credits",
1305
1287
  ...options,
@@ -1319,18 +1301,11 @@ var getApplicationsCurrent = (options) => (options.client ?? client).get({
1319
1301
  ...options
1320
1302
  });
1321
1303
  var getWorkspaces = (options) => (options.client ?? client).get({
1322
- querySerializer: {
1323
- parameters: {
1324
- filter: { object: { style: "form" } },
1325
- fields: { object: { style: "form" } }
1326
- }
1327
- },
1328
1304
  security: [{ scheme: "bearer", type: "http" }],
1329
1305
  url: "/workspaces",
1330
1306
  ...options
1331
1307
  });
1332
1308
  var postWorkspaces = (options) => (options.client ?? client).post({
1333
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1334
1309
  security: [{ scheme: "bearer", type: "http" }],
1335
1310
  url: "/workspaces",
1336
1311
  ...options,
@@ -1340,19 +1315,11 @@ var postWorkspaces = (options) => (options.client ?? client).post({
1340
1315
  }
1341
1316
  });
1342
1317
  var getPaymentMethods = (options) => (options.client ?? client).get({
1343
- querySerializer: {
1344
- parameters: {
1345
- filter: { object: { style: "form" } },
1346
- page: { object: { style: "form" } },
1347
- fields: { object: { style: "form" } }
1348
- }
1349
- },
1350
1318
  security: [{ scheme: "bearer", type: "http" }],
1351
1319
  url: "/payment-methods",
1352
1320
  ...options
1353
1321
  });
1354
1322
  var postPaymentMethods = (options) => (options.client ?? client).post({
1355
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1356
1323
  security: [{ scheme: "bearer", type: "http" }],
1357
1324
  url: "/payment-methods",
1358
1325
  ...options,
@@ -1362,19 +1329,16 @@ var postPaymentMethods = (options) => (options.client ?? client).post({
1362
1329
  }
1363
1330
  });
1364
1331
  var getAgentsByIdStats = (options) => (options.client ?? client).get({
1365
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1366
1332
  security: [{ scheme: "bearer", type: "http" }],
1367
1333
  url: "/agents/{id}/stats",
1368
1334
  ...options
1369
1335
  });
1370
1336
  var getDocumentsStats = (options) => (options.client ?? client).get({
1371
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1372
1337
  security: [{ scheme: "bearer", type: "http" }],
1373
1338
  url: "/documents/stats",
1374
1339
  ...options
1375
1340
  });
1376
1341
  var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client).patch({
1377
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1378
1342
  security: [{ scheme: "bearer", type: "http" }],
1379
1343
  url: "/extraction/documents/{id}/dismiss",
1380
1344
  ...options,
@@ -1384,7 +1348,6 @@ var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client
1384
1348
  }
1385
1349
  });
1386
1350
  var postObjectsRegister = (options) => (options.client ?? client).post({
1387
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1388
1351
  security: [{ scheme: "bearer", type: "http" }],
1389
1352
  url: "/objects/register",
1390
1353
  ...options,
@@ -1394,13 +1357,11 @@ var postObjectsRegister = (options) => (options.client ?? client).post({
1394
1357
  }
1395
1358
  });
1396
1359
  var getLlmAnalyticsWorkspace = (options) => (options.client ?? client).get({
1397
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1398
1360
  security: [{ scheme: "bearer", type: "http" }],
1399
1361
  url: "/llm_analytics/workspace",
1400
1362
  ...options
1401
1363
  });
1402
1364
  var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?? client).patch({
1403
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1404
1365
  security: [{ scheme: "bearer", type: "http" }],
1405
1366
  url: "/extraction/documents/{id}/dismiss-training",
1406
1367
  ...options,
@@ -1410,7 +1371,6 @@ var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?
1410
1371
  }
1411
1372
  });
1412
1373
  var postAgentVersionComparisons = (options) => (options.client ?? client).post({
1413
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1414
1374
  security: [{ scheme: "bearer", type: "http" }],
1415
1375
  url: "/agent_version_comparisons",
1416
1376
  ...options,
@@ -1420,12 +1380,6 @@ var postAgentVersionComparisons = (options) => (options.client ?? client).post({
1420
1380
  }
1421
1381
  });
1422
1382
  var getSearchIndexes = (options) => (options.client ?? client).get({
1423
- querySerializer: {
1424
- parameters: {
1425
- filter: { object: { style: "form" } },
1426
- fields: { object: { style: "form" } }
1427
- }
1428
- },
1429
1383
  security: [{ scheme: "bearer", type: "http" }],
1430
1384
  url: "/search/indexes",
1431
1385
  ...options
@@ -1440,13 +1394,11 @@ var postApplicationsByApplicationIdEmailTemplatesBySlugPreview = (options) => (o
1440
1394
  }
1441
1395
  });
1442
1396
  var getCreditPackagesSlugBySlug = (options) => (options.client ?? client).get({
1443
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1444
1397
  security: [{ scheme: "bearer", type: "http" }],
1445
1398
  url: "/credit-packages/slug/{slug}",
1446
1399
  ...options
1447
1400
  });
1448
1401
  var patchUsersAuthPasswordChange = (options) => (options.client ?? client).patch({
1449
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1450
1402
  security: [{ scheme: "bearer", type: "http" }],
1451
1403
  url: "/users/auth/password/change",
1452
1404
  ...options,
@@ -1456,7 +1408,6 @@ var patchUsersAuthPasswordChange = (options) => (options.client ?? client).patch
1456
1408
  }
1457
1409
  });
1458
1410
  var postExtractionBatches = (options) => (options.client ?? client).post({
1459
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1460
1411
  security: [{ scheme: "bearer", type: "http" }],
1461
1412
  url: "/extraction/batches",
1462
1413
  ...options,
@@ -1466,13 +1417,11 @@ var postExtractionBatches = (options) => (options.client ?? client).post({
1466
1417
  }
1467
1418
  });
1468
1419
  var getLlmAnalyticsPlatform = (options) => (options.client ?? client).get({
1469
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1470
1420
  security: [{ scheme: "bearer", type: "http" }],
1471
1421
  url: "/llm_analytics/platform",
1472
1422
  ...options
1473
1423
  });
1474
1424
  var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client).patch({
1475
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1476
1425
  security: [{ scheme: "bearer", type: "http" }],
1477
1426
  url: "/extraction/documents/{id}/exclude",
1478
1427
  ...options,
@@ -1482,7 +1431,6 @@ var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client
1482
1431
  }
1483
1432
  });
1484
1433
  var postPayments = (options) => (options.client ?? client).post({
1485
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1486
1434
  security: [{ scheme: "bearer", type: "http" }],
1487
1435
  url: "/payments",
1488
1436
  ...options,
@@ -1492,7 +1440,6 @@ var postPayments = (options) => (options.client ?? client).post({
1492
1440
  }
1493
1441
  });
1494
1442
  var postAgentsImport = (options) => (options.client ?? client).post({
1495
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1496
1443
  security: [{ scheme: "bearer", type: "http" }],
1497
1444
  url: "/agents/import",
1498
1445
  ...options,
@@ -1502,12 +1449,6 @@ var postAgentsImport = (options) => (options.client ?? client).post({
1502
1449
  }
1503
1450
  });
1504
1451
  var getExtractionBatchesWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
1505
- querySerializer: {
1506
- parameters: {
1507
- filter: { object: { style: "form" } },
1508
- fields: { object: { style: "form" } }
1509
- }
1510
- },
1511
1452
  security: [{ scheme: "bearer", type: "http" }],
1512
1453
  url: "/extraction/batches/workspace/{workspace_id}",
1513
1454
  ...options
@@ -1522,7 +1463,6 @@ var postAgentVersionsByIdRemoveSystemField = (options) => (options.client ?? cli
1522
1463
  }
1523
1464
  });
1524
1465
  var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
1525
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1526
1466
  security: [{ scheme: "bearer", type: "http" }],
1527
1467
  url: "/api_keys/{id}/revoke",
1528
1468
  ...options,
@@ -1532,19 +1472,16 @@ var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
1532
1472
  }
1533
1473
  });
1534
1474
  var getInvitationsConsumeByToken = (options) => (options.client ?? client).get({
1535
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1536
1475
  security: [{ scheme: "bearer", type: "http" }],
1537
1476
  url: "/invitations/consume/{token}",
1538
1477
  ...options
1539
1478
  });
1540
1479
  var getExtractionDocumentsByIdStatus = (options) => (options.client ?? client).get({
1541
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1542
1480
  security: [{ scheme: "bearer", type: "http" }],
1543
1481
  url: "/extraction/documents/{id}/status",
1544
1482
  ...options
1545
1483
  });
1546
1484
  var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client).patch({
1547
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1548
1485
  security: [{ scheme: "bearer", type: "http" }],
1549
1486
  url: "/extraction/documents/{id}/status",
1550
1487
  ...options,
@@ -1554,7 +1491,6 @@ var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client)
1554
1491
  }
1555
1492
  });
1556
1493
  var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? client).patch({
1557
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1558
1494
  security: [{ scheme: "bearer", type: "http" }],
1559
1495
  url: "/extraction/documents/{id}/finish_upload",
1560
1496
  ...options,
@@ -1569,7 +1505,6 @@ var getUsersMeDashboard = (options) => (options.client ?? client).get({
1569
1505
  ...options
1570
1506
  });
1571
1507
  var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch({
1572
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1573
1508
  security: [{ scheme: "bearer", type: "http" }],
1574
1509
  url: "/workspaces/{id}/allocate",
1575
1510
  ...options,
@@ -1579,7 +1514,6 @@ var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch(
1579
1514
  }
1580
1515
  });
1581
1516
  var postThreadsActive = (options) => (options.client ?? client).post({
1582
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1583
1517
  security: [{ scheme: "bearer", type: "http" }],
1584
1518
  url: "/threads/active",
1585
1519
  ...options,
@@ -1589,7 +1523,6 @@ var postThreadsActive = (options) => (options.client ?? client).post({
1589
1523
  }
1590
1524
  });
1591
1525
  var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
1592
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1593
1526
  security: [{ scheme: "bearer", type: "http" }],
1594
1527
  url: "/invitations/{id}/revoke",
1595
1528
  ...options,
@@ -1599,18 +1532,11 @@ var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
1599
1532
  }
1600
1533
  });
1601
1534
  var getAiGraphNodesLabelByLabel = (options) => (options.client ?? client).get({
1602
- querySerializer: {
1603
- parameters: {
1604
- filter: { object: { style: "form" } },
1605
- fields: { object: { style: "form" } }
1606
- }
1607
- },
1608
1535
  security: [{ scheme: "bearer", type: "http" }],
1609
1536
  url: "/ai/graph/nodes/label/{label}",
1610
1537
  ...options
1611
1538
  });
1612
1539
  var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options) => (options.client ?? client).post({
1613
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1614
1540
  security: [{ scheme: "bearer", type: "http" }],
1615
1541
  url: "/workspaces/{workspace_id}/extraction/documents/dismiss-all-trained",
1616
1542
  ...options,
@@ -1620,19 +1546,11 @@ var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options)
1620
1546
  }
1621
1547
  });
1622
1548
  var getConfigs = (options) => (options.client ?? client).get({
1623
- querySerializer: {
1624
- parameters: {
1625
- filter: { object: { style: "form" } },
1626
- page: { object: { style: "form" } },
1627
- fields: { object: { style: "form" } }
1628
- }
1629
- },
1630
1549
  security: [{ scheme: "bearer", type: "http" }],
1631
1550
  url: "/configs",
1632
1551
  ...options
1633
1552
  });
1634
1553
  var postConfigs = (options) => (options.client ?? client).post({
1635
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1636
1554
  security: [{ scheme: "bearer", type: "http" }],
1637
1555
  url: "/configs",
1638
1556
  ...options,
@@ -1642,7 +1560,6 @@ var postConfigs = (options) => (options.client ?? client).post({
1642
1560
  }
1643
1561
  });
1644
1562
  var patchWalletAutoTopUp = (options) => (options.client ?? client).patch({
1645
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1646
1563
  security: [{ scheme: "bearer", type: "http" }],
1647
1564
  url: "/wallet/auto-top-up",
1648
1565
  ...options,
@@ -1652,7 +1569,6 @@ var patchWalletAutoTopUp = (options) => (options.client ?? client).patch({
1652
1569
  }
1653
1570
  });
1654
1571
  var postTokens = (options) => (options.client ?? client).post({
1655
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1656
1572
  security: [{ scheme: "bearer", type: "http" }],
1657
1573
  url: "/tokens",
1658
1574
  ...options,
@@ -1662,7 +1578,6 @@ var postTokens = (options) => (options.client ?? client).post({
1662
1578
  }
1663
1579
  });
1664
1580
  var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
1665
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1666
1581
  security: [{ scheme: "bearer", type: "http" }],
1667
1582
  url: "/api_keys/{id}/set_budget",
1668
1583
  ...options,
@@ -1672,19 +1587,16 @@ var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
1672
1587
  }
1673
1588
  });
1674
1589
  var deleteTrainingExamplesById = (options) => (options.client ?? client).delete({
1675
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1676
1590
  security: [{ scheme: "bearer", type: "http" }],
1677
1591
  url: "/training_examples/{id}",
1678
1592
  ...options
1679
1593
  });
1680
1594
  var getTrainingExamplesById = (options) => (options.client ?? client).get({
1681
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1682
1595
  security: [{ scheme: "bearer", type: "http" }],
1683
1596
  url: "/training_examples/{id}",
1684
1597
  ...options
1685
1598
  });
1686
1599
  var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
1687
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1688
1600
  security: [{ scheme: "bearer", type: "http" }],
1689
1601
  url: "/training_examples/{id}",
1690
1602
  ...options,
@@ -1694,13 +1606,11 @@ var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
1694
1606
  }
1695
1607
  });
1696
1608
  var deleteSearchSavedById = (options) => (options.client ?? client).delete({
1697
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1698
1609
  security: [{ scheme: "bearer", type: "http" }],
1699
1610
  url: "/search/saved/{id}",
1700
1611
  ...options
1701
1612
  });
1702
1613
  var patchSearchSavedById = (options) => (options.client ?? client).patch({
1703
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1704
1614
  security: [{ scheme: "bearer", type: "http" }],
1705
1615
  url: "/search/saved/{id}",
1706
1616
  ...options,
@@ -1710,7 +1620,6 @@ var patchSearchSavedById = (options) => (options.client ?? client).patch({
1710
1620
  }
1711
1621
  });
1712
1622
  var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
1713
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1714
1623
  security: [{ scheme: "bearer", type: "http" }],
1715
1624
  url: "/users/{id}/admin/email",
1716
1625
  ...options,
@@ -1720,13 +1629,6 @@ var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
1720
1629
  }
1721
1630
  });
1722
1631
  var getExtractionDocumentsWorkspaceByWorkspaceIdTrained = (options) => (options.client ?? client).get({
1723
- querySerializer: {
1724
- parameters: {
1725
- filter: { object: { style: "form" } },
1726
- page: { object: { style: "form" } },
1727
- fields: { object: { style: "form" } }
1728
- }
1729
- },
1730
1632
  security: [{ scheme: "bearer", type: "http" }],
1731
1633
  url: "/extraction/documents/workspace/{workspace_id}/trained",
1732
1634
  ...options
@@ -1746,7 +1648,6 @@ var getWatcherClaimsStatus = (options) => (options.client ?? client).get({
1746
1648
  ...options
1747
1649
  });
1748
1650
  var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch({
1749
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1750
1651
  security: [{ scheme: "bearer", type: "http" }],
1751
1652
  url: "/users/auth/reset-password",
1752
1653
  ...options,
@@ -1756,25 +1657,16 @@ var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch(
1756
1657
  }
1757
1658
  });
1758
1659
  var getBucketsByIdStats = (options) => (options.client ?? client).get({
1759
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1760
1660
  security: [{ scheme: "bearer", type: "http" }],
1761
1661
  url: "/buckets/{id}/stats",
1762
1662
  ...options
1763
1663
  });
1764
1664
  var getApplicationsByApplicationIdEmailTemplates = (options) => (options.client ?? client).get({
1765
- querySerializer: {
1766
- parameters: {
1767
- filter: { object: { style: "form" } },
1768
- page: { object: { style: "form" } },
1769
- fields: { object: { style: "form" } }
1770
- }
1771
- },
1772
1665
  security: [{ scheme: "bearer", type: "http" }],
1773
1666
  url: "/applications/{application_id}/email-templates",
1774
1667
  ...options
1775
1668
  });
1776
1669
  var postApplicationsByApplicationIdEmailTemplates = (options) => (options.client ?? client).post({
1777
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1778
1670
  security: [{ scheme: "bearer", type: "http" }],
1779
1671
  url: "/applications/{application_id}/email-templates",
1780
1672
  ...options,
@@ -1784,18 +1676,20 @@ var postApplicationsByApplicationIdEmailTemplates = (options) => (options.client
1784
1676
  }
1785
1677
  });
1786
1678
  var getAgentsUsage = (options) => (options.client ?? client).get({
1787
- querySerializer: {
1788
- parameters: {
1789
- filter: { object: { style: "form" } },
1790
- fields: { object: { style: "form" } }
1791
- }
1792
- },
1793
1679
  security: [{ scheme: "bearer", type: "http" }],
1794
1680
  url: "/agents/usage",
1795
1681
  ...options
1796
1682
  });
1683
+ var patchWorkspacesByIdPopulateHashes = (options) => (options.client ?? client).patch({
1684
+ security: [{ scheme: "bearer", type: "http" }],
1685
+ url: "/workspaces/{id}/populate-hashes",
1686
+ ...options,
1687
+ headers: {
1688
+ "Content-Type": "application/vnd.api+json",
1689
+ ...options.headers
1690
+ }
1691
+ });
1797
1692
  var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? client).patch({
1798
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1799
1693
  security: [{ scheme: "bearer", type: "http" }],
1800
1694
  url: "/notification_methods/{id}/set_primary",
1801
1695
  ...options,
@@ -1805,13 +1699,11 @@ var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? cli
1805
1699
  }
1806
1700
  });
1807
1701
  var getBucketsByIdObjects = (options) => (options.client ?? client).get({
1808
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1809
1702
  security: [{ scheme: "bearer", type: "http" }],
1810
1703
  url: "/buckets/{id}/objects",
1811
1704
  ...options
1812
1705
  });
1813
1706
  var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
1814
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1815
1707
  security: [{ scheme: "bearer", type: "http" }],
1816
1708
  url: "/invitations/{id}/resend",
1817
1709
  ...options,
@@ -1821,7 +1713,6 @@ var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
1821
1713
  }
1822
1714
  });
1823
1715
  var postExtractionSchemaDiscoveries = (options) => (options.client ?? client).post({
1824
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1825
1716
  security: [{ scheme: "bearer", type: "http" }],
1826
1717
  url: "/extraction/schema_discoveries",
1827
1718
  ...options,
@@ -1831,18 +1722,11 @@ var postExtractionSchemaDiscoveries = (options) => (options.client ?? client).po
1831
1722
  }
1832
1723
  });
1833
1724
  var getSearchSaved = (options) => (options.client ?? client).get({
1834
- querySerializer: {
1835
- parameters: {
1836
- filter: { object: { style: "form" } },
1837
- fields: { object: { style: "form" } }
1838
- }
1839
- },
1840
1725
  security: [{ scheme: "bearer", type: "http" }],
1841
1726
  url: "/search/saved",
1842
1727
  ...options
1843
1728
  });
1844
1729
  var postSearchSaved = (options) => (options.client ?? client).post({
1845
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1846
1730
  security: [{ scheme: "bearer", type: "http" }],
1847
1731
  url: "/search/saved",
1848
1732
  ...options,
@@ -1852,7 +1736,6 @@ var postSearchSaved = (options) => (options.client ?? client).post({
1852
1736
  }
1853
1737
  });
1854
1738
  var patchNotificationMethodsByIdSendVerification = (options) => (options.client ?? client).patch({
1855
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1856
1739
  security: [{ scheme: "bearer", type: "http" }],
1857
1740
  url: "/notification_methods/{id}/send_verification",
1858
1741
  ...options,
@@ -1862,59 +1745,41 @@ var patchNotificationMethodsByIdSendVerification = (options) => (options.client
1862
1745
  }
1863
1746
  });
1864
1747
  var deleteFieldTemplatesById = (options) => (options.client ?? client).delete({
1865
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1866
1748
  security: [{ scheme: "bearer", type: "http" }],
1867
1749
  url: "/field_templates/{id}",
1868
1750
  ...options
1869
1751
  });
1870
1752
  var getFieldTemplatesById = (options) => (options.client ?? client).get({
1871
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1872
1753
  security: [{ scheme: "bearer", type: "http" }],
1873
1754
  url: "/field_templates/{id}",
1874
1755
  ...options
1875
1756
  });
1876
1757
  var getWorkspacesByWorkspaceIdTrainingAnalytics = (options) => (options.client ?? client).get({
1877
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1878
1758
  security: [{ scheme: "bearer", type: "http" }],
1879
1759
  url: "/workspaces/{workspace_id}/training/analytics",
1880
1760
  ...options
1881
1761
  });
1882
1762
  var getUserProfilesMe = (options) => (options.client ?? client).get({
1883
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1884
1763
  security: [{ scheme: "bearer", type: "http" }],
1885
1764
  url: "/user_profiles/me",
1886
1765
  ...options
1887
1766
  });
1888
1767
  var getExtractionSchemaDiscoveriesById = (options) => (options.client ?? client).get({
1889
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1890
1768
  security: [{ scheme: "bearer", type: "http" }],
1891
1769
  url: "/extraction/schema_discoveries/{id}",
1892
1770
  ...options
1893
1771
  });
1894
1772
  var getApiKeysActive = (options) => (options.client ?? client).get({
1895
- querySerializer: {
1896
- parameters: {
1897
- filter: { object: { style: "form" } },
1898
- fields: { object: { style: "form" } }
1899
- }
1900
- },
1901
1773
  security: [{ scheme: "bearer", type: "http" }],
1902
1774
  url: "/api_keys/active",
1903
1775
  ...options
1904
1776
  });
1905
1777
  var getAgentVersions = (options) => (options.client ?? client).get({
1906
- querySerializer: {
1907
- parameters: {
1908
- filter: { object: { style: "form" } },
1909
- fields: { object: { style: "form" } }
1910
- }
1911
- },
1912
1778
  security: [{ scheme: "bearer", type: "http" }],
1913
1779
  url: "/agent_versions",
1914
1780
  ...options
1915
1781
  });
1916
1782
  var postAgentVersions = (options) => (options.client ?? client).post({
1917
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1918
1783
  security: [{ scheme: "bearer", type: "http" }],
1919
1784
  url: "/agent_versions",
1920
1785
  ...options,
@@ -1924,7 +1789,6 @@ var postAgentVersions = (options) => (options.client ?? client).post({
1924
1789
  }
1925
1790
  });
1926
1791
  var patchInvitationsByIdAcceptByUser = (options) => (options.client ?? client).patch({
1927
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1928
1792
  security: [{ scheme: "bearer", type: "http" }],
1929
1793
  url: "/invitations/{id}/accept-by-user",
1930
1794
  ...options,
@@ -1934,7 +1798,6 @@ var patchInvitationsByIdAcceptByUser = (options) => (options.client ?? client).p
1934
1798
  }
1935
1799
  });
1936
1800
  var getPermissionsMeta = (options) => (options.client ?? client).get({
1937
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1938
1801
  security: [{ scheme: "bearer", type: "http" }],
1939
1802
  url: "/permissions/meta",
1940
1803
  ...options
@@ -1949,30 +1812,21 @@ var postApplicationsByApplicationIdEmailTemplatesBySlugTest = (options) => (opti
1949
1812
  }
1950
1813
  });
1951
1814
  var getSearchSuggest = (options) => (options.client ?? client).get({
1952
- querySerializer: {
1953
- parameters: {
1954
- filter: { object: { style: "form" } },
1955
- fields: { object: { style: "form" } }
1956
- }
1957
- },
1958
1815
  security: [{ scheme: "bearer", type: "http" }],
1959
1816
  url: "/search/suggest",
1960
1817
  ...options
1961
1818
  });
1962
1819
  var deleteWebhookConfigsById = (options) => (options.client ?? client).delete({
1963
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1964
1820
  security: [{ scheme: "bearer", type: "http" }],
1965
1821
  url: "/webhook_configs/{id}",
1966
1822
  ...options
1967
1823
  });
1968
1824
  var getWebhookConfigsById = (options) => (options.client ?? client).get({
1969
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1970
1825
  security: [{ scheme: "bearer", type: "http" }],
1971
1826
  url: "/webhook_configs/{id}",
1972
1827
  ...options
1973
1828
  });
1974
1829
  var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
1975
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1976
1830
  security: [{ scheme: "bearer", type: "http" }],
1977
1831
  url: "/webhook_configs/{id}",
1978
1832
  ...options,
@@ -1991,7 +1845,6 @@ var postWebhookConfigsBulkEnable = (options) => (options.client ?? client).post(
1991
1845
  }
1992
1846
  });
1993
1847
  var postInvitationsAcceptByToken = (options) => (options.client ?? client).post({
1994
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
1995
1848
  security: [{ scheme: "bearer", type: "http" }],
1996
1849
  url: "/invitations/accept_by_token",
1997
1850
  ...options,
@@ -2001,19 +1854,16 @@ var postInvitationsAcceptByToken = (options) => (options.client ?? client).post(
2001
1854
  }
2002
1855
  });
2003
1856
  var deleteAiMessagesById = (options) => (options.client ?? client).delete({
2004
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2005
1857
  security: [{ scheme: "bearer", type: "http" }],
2006
1858
  url: "/ai/messages/{id}",
2007
1859
  ...options
2008
1860
  });
2009
1861
  var getExtractionBatchesByIdUploadUrls = (options) => (options.client ?? client).get({
2010
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2011
1862
  security: [{ scheme: "bearer", type: "http" }],
2012
1863
  url: "/extraction/batches/{id}/upload-urls",
2013
1864
  ...options
2014
1865
  });
2015
1866
  var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
2016
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2017
1867
  security: [{ scheme: "bearer", type: "http" }],
2018
1868
  url: "/documents/bulk_delete",
2019
1869
  ...options,
@@ -2023,19 +1873,16 @@ var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
2023
1873
  }
2024
1874
  });
2025
1875
  var deleteAgentVersionsById = (options) => (options.client ?? client).delete({
2026
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2027
1876
  security: [{ scheme: "bearer", type: "http" }],
2028
1877
  url: "/agent_versions/{id}",
2029
1878
  ...options
2030
1879
  });
2031
1880
  var getAgentVersionsById = (options) => (options.client ?? client).get({
2032
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2033
1881
  security: [{ scheme: "bearer", type: "http" }],
2034
1882
  url: "/agent_versions/{id}",
2035
1883
  ...options
2036
1884
  });
2037
1885
  var postAiChunksSearch = (options) => (options.client ?? client).post({
2038
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2039
1886
  security: [{ scheme: "bearer", type: "http" }],
2040
1887
  url: "/ai/chunks/search",
2041
1888
  ...options,
@@ -2045,13 +1892,11 @@ var postAiChunksSearch = (options) => (options.client ?? client).post({
2045
1892
  }
2046
1893
  });
2047
1894
  var getThreadsByIdMessages = (options) => (options.client ?? client).get({
2048
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2049
1895
  security: [{ scheme: "bearer", type: "http" }],
2050
1896
  url: "/threads/{id}/messages",
2051
1897
  ...options
2052
1898
  });
2053
1899
  var postThreadsByIdMessages = (options) => (options.client ?? client).post({
2054
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2055
1900
  security: [{ scheme: "bearer", type: "http" }],
2056
1901
  url: "/threads/{id}/messages",
2057
1902
  ...options,
@@ -2061,7 +1906,6 @@ var postThreadsByIdMessages = (options) => (options.client ?? client).post({
2061
1906
  }
2062
1907
  });
2063
1908
  var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
2064
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2065
1909
  security: [{ scheme: "bearer", type: "http" }],
2066
1910
  url: "/agents/clone_for_workspace",
2067
1911
  ...options,
@@ -2071,7 +1915,6 @@ var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
2071
1915
  }
2072
1916
  });
2073
1917
  var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
2074
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2075
1918
  security: [{ scheme: "bearer", type: "http" }],
2076
1919
  url: "/invitations/{id}/accept",
2077
1920
  ...options,
@@ -2081,37 +1924,31 @@ var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
2081
1924
  }
2082
1925
  });
2083
1926
  var getCreditPackagesById = (options) => (options.client ?? client).get({
2084
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2085
1927
  security: [{ scheme: "bearer", type: "http" }],
2086
1928
  url: "/credit-packages/{id}",
2087
1929
  ...options
2088
1930
  });
2089
1931
  var deleteUsersById = (options) => (options.client ?? client).delete({
2090
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2091
1932
  security: [{ scheme: "bearer", type: "http" }],
2092
1933
  url: "/users/{id}",
2093
1934
  ...options
2094
1935
  });
2095
1936
  var getUsersById = (options) => (options.client ?? client).get({
2096
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2097
1937
  security: [{ scheme: "bearer", type: "http" }],
2098
1938
  url: "/users/{id}",
2099
1939
  ...options
2100
1940
  });
2101
1941
  var deleteExtractionResultsById = (options) => (options.client ?? client).delete({
2102
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2103
1942
  security: [{ scheme: "bearer", type: "http" }],
2104
1943
  url: "/extraction/results/{id}",
2105
1944
  ...options
2106
1945
  });
2107
1946
  var getExtractionResultsById = (options) => (options.client ?? client).get({
2108
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2109
1947
  security: [{ scheme: "bearer", type: "http" }],
2110
1948
  url: "/extraction/results/{id}",
2111
1949
  ...options
2112
1950
  });
2113
1951
  var patchExtractionResultsById = (options) => (options.client ?? client).patch({
2114
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2115
1952
  security: [{ scheme: "bearer", type: "http" }],
2116
1953
  url: "/extraction/results/{id}",
2117
1954
  ...options,
@@ -2126,7 +1963,6 @@ var getWebhookDeliveriesStats = (options) => (options.client ?? client).get({
2126
1963
  ...options
2127
1964
  });
2128
1965
  var postAgentsByIdValidate = (options) => (options.client ?? client).post({
2129
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2130
1966
  security: [{ scheme: "bearer", type: "http" }],
2131
1967
  url: "/agents/{id}/validate",
2132
1968
  ...options,
@@ -2136,7 +1972,6 @@ var postAgentsByIdValidate = (options) => (options.client ?? client).post({
2136
1972
  }
2137
1973
  });
2138
1974
  var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
2139
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2140
1975
  security: [{ scheme: "bearer", type: "http" }],
2141
1976
  url: "/webhook_configs/{id}/test",
2142
1977
  ...options,
@@ -2146,13 +1981,11 @@ var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
2146
1981
  }
2147
1982
  });
2148
1983
  var getUsersMe = (options) => (options.client ?? client).get({
2149
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2150
1984
  security: [{ scheme: "bearer", type: "http" }],
2151
1985
  url: "/users/me",
2152
1986
  ...options
2153
1987
  });
2154
1988
  var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post({
2155
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2156
1989
  security: [{ scheme: "bearer", type: "http" }],
2157
1990
  url: "/users/auth/register_with_oidc",
2158
1991
  ...options,
@@ -2176,7 +2009,6 @@ var postAgentsByIdSchemaVersions = (options) => (options.client ?? client).post(
2176
2009
  }
2177
2010
  });
2178
2011
  var postTenantsByIdCredit = (options) => (options.client ?? client).post({
2179
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2180
2012
  security: [{ scheme: "bearer", type: "http" }],
2181
2013
  url: "/tenants/{id}/credit",
2182
2014
  ...options,
@@ -2186,7 +2018,6 @@ var postTenantsByIdCredit = (options) => (options.client ?? client).post({
2186
2018
  }
2187
2019
  });
2188
2020
  var getTransactionsById = (options) => (options.client ?? client).get({
2189
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2190
2021
  security: [{ scheme: "bearer", type: "http" }],
2191
2022
  url: "/transactions/{id}",
2192
2023
  ...options
@@ -2197,19 +2028,11 @@ var getUsersMeTenants = (options) => (options.client ?? client).get({
2197
2028
  ...options
2198
2029
  });
2199
2030
  var getTenantMemberships = (options) => (options.client ?? client).get({
2200
- querySerializer: {
2201
- parameters: {
2202
- filter: { object: { style: "form" } },
2203
- page: { object: { style: "form" } },
2204
- fields: { object: { style: "form" } }
2205
- }
2206
- },
2207
2031
  security: [{ scheme: "bearer", type: "http" }],
2208
2032
  url: "/tenant-memberships",
2209
2033
  ...options
2210
2034
  });
2211
2035
  var postTenantMemberships = (options) => (options.client ?? client).post({
2212
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2213
2036
  security: [{ scheme: "bearer", type: "http" }],
2214
2037
  url: "/tenant-memberships",
2215
2038
  ...options,
@@ -2228,7 +2051,6 @@ var postTrainingExamplesBulkDelete = (options) => (options.client ?? client).pos
2228
2051
  }
2229
2052
  });
2230
2053
  var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client).patch({
2231
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2232
2054
  security: [{ scheme: "bearer", type: "http" }],
2233
2055
  url: "/extraction/documents/{id}/include",
2234
2056
  ...options,
@@ -2238,7 +2060,6 @@ var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client
2238
2060
  }
2239
2061
  });
2240
2062
  var getLlmAnalyticsSummary = (options) => (options.client ?? client).get({
2241
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2242
2063
  security: [{ scheme: "bearer", type: "http" }],
2243
2064
  url: "/llm_analytics/summary",
2244
2065
  ...options
@@ -2254,7 +2075,6 @@ var getUsersMeStats = (options) => (options.client ?? client).get({
2254
2075
  ...options
2255
2076
  });
2256
2077
  var postStorageSignDownload = (options) => (options.client ?? client).post({
2257
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2258
2078
  security: [{ scheme: "bearer", type: "http" }],
2259
2079
  url: "/storage/sign_download",
2260
2080
  ...options,
@@ -2264,37 +2084,36 @@ var postStorageSignDownload = (options) => (options.client ?? client).post({
2264
2084
  }
2265
2085
  });
2266
2086
  var deleteTrainingSessionsById = (options) => (options.client ?? client).delete({
2267
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2268
2087
  security: [{ scheme: "bearer", type: "http" }],
2269
2088
  url: "/training_sessions/{id}",
2270
2089
  ...options
2271
2090
  });
2272
2091
  var getTrainingSessionsById = (options) => (options.client ?? client).get({
2273
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2274
2092
  security: [{ scheme: "bearer", type: "http" }],
2275
2093
  url: "/training_sessions/{id}",
2276
2094
  ...options
2277
2095
  });
2096
+ var getWatcherClaimsHistory = (options) => (options.client ?? client).get({
2097
+ security: [{ scheme: "bearer", type: "http" }],
2098
+ url: "/watcher/claims/history",
2099
+ ...options
2100
+ });
2278
2101
  var getUsersByEmail = (options) => (options.client ?? client).get({
2279
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2280
2102
  security: [{ scheme: "bearer", type: "http" }],
2281
2103
  url: "/users/by-email",
2282
2104
  ...options
2283
2105
  });
2284
2106
  var deleteNotificationMethodsById = (options) => (options.client ?? client).delete({
2285
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2286
2107
  security: [{ scheme: "bearer", type: "http" }],
2287
2108
  url: "/notification_methods/{id}",
2288
2109
  ...options
2289
2110
  });
2290
2111
  var getNotificationMethodsById = (options) => (options.client ?? client).get({
2291
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2292
2112
  security: [{ scheme: "bearer", type: "http" }],
2293
2113
  url: "/notification_methods/{id}",
2294
2114
  ...options
2295
2115
  });
2296
2116
  var patchNotificationMethodsById = (options) => (options.client ?? client).patch({
2297
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2298
2117
  security: [{ scheme: "bearer", type: "http" }],
2299
2118
  url: "/notification_methods/{id}",
2300
2119
  ...options,
@@ -2304,13 +2123,6 @@ var patchNotificationMethodsById = (options) => (options.client ?? client).patch
2304
2123
  }
2305
2124
  });
2306
2125
  var getWebhookDeliveries = (options) => (options.client ?? client).get({
2307
- querySerializer: {
2308
- parameters: {
2309
- filter: { object: { style: "form" } },
2310
- page: { object: { style: "form" } },
2311
- fields: { object: { style: "form" } }
2312
- }
2313
- },
2314
2126
  security: [{ scheme: "bearer", type: "http" }],
2315
2127
  url: "/webhook_deliveries",
2316
2128
  ...options
@@ -2325,29 +2137,16 @@ var postWebhookConfigsBulkDisable = (options) => (options.client ?? client).post
2325
2137
  }
2326
2138
  });
2327
2139
  var getSearch = (options) => (options.client ?? client).get({
2328
- querySerializer: {
2329
- parameters: {
2330
- filter: { object: { style: "form" } },
2331
- fields: { object: { style: "form" } }
2332
- }
2333
- },
2334
2140
  security: [{ scheme: "bearer", type: "http" }],
2335
2141
  url: "/search",
2336
2142
  ...options
2337
2143
  });
2338
2144
  var getInvitations = (options) => (options.client ?? client).get({
2339
- querySerializer: {
2340
- parameters: {
2341
- filter: { object: { style: "form" } },
2342
- fields: { object: { style: "form" } }
2343
- }
2344
- },
2345
2145
  security: [{ scheme: "bearer", type: "http" }],
2346
2146
  url: "/invitations",
2347
2147
  ...options
2348
2148
  });
2349
2149
  var postInvitations = (options) => (options.client ?? client).post({
2350
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2351
2150
  security: [{ scheme: "bearer", type: "http" }],
2352
2151
  url: "/invitations",
2353
2152
  ...options,
@@ -2357,7 +2156,6 @@ var postInvitations = (options) => (options.client ?? client).post({
2357
2156
  }
2358
2157
  });
2359
2158
  var patchThreadsByIdArchive = (options) => (options.client ?? client).patch({
2360
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2361
2159
  security: [{ scheme: "bearer", type: "http" }],
2362
2160
  url: "/threads/{id}/archive",
2363
2161
  ...options,
@@ -2367,47 +2165,26 @@ var patchThreadsByIdArchive = (options) => (options.client ?? client).patch({
2367
2165
  }
2368
2166
  });
2369
2167
  var getApiKeysStats = (options) => (options.client ?? client).get({
2370
- querySerializer: {
2371
- parameters: {
2372
- filter: { object: { style: "form" } },
2373
- fields: { object: { style: "form" } }
2374
- }
2375
- },
2376
2168
  security: [{ scheme: "bearer", type: "http" }],
2377
2169
  url: "/api_keys/stats",
2378
2170
  ...options
2379
2171
  });
2380
2172
  var getSearchSemantic = (options) => (options.client ?? client).get({
2381
- querySerializer: {
2382
- parameters: {
2383
- filter: { object: { style: "form" } },
2384
- fields: { object: { style: "form" } }
2385
- }
2386
- },
2387
2173
  security: [{ scheme: "bearer", type: "http" }],
2388
2174
  url: "/search/semantic",
2389
2175
  ...options
2390
2176
  });
2391
2177
  var getThreadsStats = (options) => (options.client ?? client).get({
2392
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2393
2178
  security: [{ scheme: "bearer", type: "http" }],
2394
2179
  url: "/threads/stats",
2395
2180
  ...options
2396
2181
  });
2397
2182
  var getMessages = (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
2183
  security: [{ scheme: "bearer", type: "http" }],
2406
2184
  url: "/messages",
2407
2185
  ...options
2408
2186
  });
2409
2187
  var postMessages = (options) => (options.client ?? client).post({
2410
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2411
2188
  security: [{ scheme: "bearer", type: "http" }],
2412
2189
  url: "/messages",
2413
2190
  ...options,
@@ -2417,19 +2194,11 @@ var postMessages = (options) => (options.client ?? client).post({
2417
2194
  }
2418
2195
  });
2419
2196
  var getNotificationPreferences = (options) => (options.client ?? client).get({
2420
- querySerializer: {
2421
- parameters: {
2422
- filter: { object: { style: "form" } },
2423
- page: { object: { style: "form" } },
2424
- fields: { object: { style: "form" } }
2425
- }
2426
- },
2427
2197
  security: [{ scheme: "bearer", type: "http" }],
2428
2198
  url: "/notification_preferences",
2429
2199
  ...options
2430
2200
  });
2431
2201
  var postNotificationPreferences = (options) => (options.client ?? client).post({
2432
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2433
2202
  security: [{ scheme: "bearer", type: "http" }],
2434
2203
  url: "/notification_preferences",
2435
2204
  ...options,
@@ -2439,19 +2208,11 @@ var postNotificationPreferences = (options) => (options.client ?? client).post({
2439
2208
  }
2440
2209
  });
2441
2210
  var getApplications = (options) => (options.client ?? client).get({
2442
- querySerializer: {
2443
- parameters: {
2444
- filter: { object: { style: "form" } },
2445
- page: { object: { style: "form" } },
2446
- fields: { object: { style: "form" } }
2447
- }
2448
- },
2449
2211
  security: [{ scheme: "bearer", type: "http" }],
2450
2212
  url: "/applications",
2451
2213
  ...options
2452
2214
  });
2453
2215
  var postApplications = (options) => (options.client ?? client).post({
2454
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2455
2216
  security: [{ scheme: "bearer", type: "http" }],
2456
2217
  url: "/applications",
2457
2218
  ...options,
@@ -2461,7 +2222,6 @@ var postApplications = (options) => (options.client ?? client).post({
2461
2222
  }
2462
2223
  });
2463
2224
  var patchWatcherClaimsByIdRetry = (options) => (options.client ?? client).patch({
2464
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2465
2225
  security: [{ scheme: "bearer", type: "http" }],
2466
2226
  url: "/watcher/claims/{id}/retry",
2467
2227
  ...options,
@@ -2480,7 +2240,6 @@ var postAgentsPredict = (options) => (options.client ?? client).post({
2480
2240
  }
2481
2241
  });
2482
2242
  var patchUserProfilesByIdDismissWelcome = (options) => (options.client ?? client).patch({
2483
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2484
2243
  security: [{ scheme: "bearer", type: "http" }],
2485
2244
  url: "/user_profiles/{id}/dismiss-welcome",
2486
2245
  ...options,
@@ -2490,7 +2249,6 @@ var patchUserProfilesByIdDismissWelcome = (options) => (options.client ?? client
2490
2249
  }
2491
2250
  });
2492
2251
  var patchExtractionDocumentsByIdReprocess = (options) => (options.client ?? client).patch({
2493
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2494
2252
  security: [{ scheme: "bearer", type: "http" }],
2495
2253
  url: "/extraction/documents/{id}/reprocess",
2496
2254
  ...options,
@@ -2500,19 +2258,16 @@ var patchExtractionDocumentsByIdReprocess = (options) => (options.client ?? clie
2500
2258
  }
2501
2259
  });
2502
2260
  var deleteThreadsById = (options) => (options.client ?? client).delete({
2503
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2504
2261
  security: [{ scheme: "bearer", type: "http" }],
2505
2262
  url: "/threads/{id}",
2506
2263
  ...options
2507
2264
  });
2508
2265
  var getThreadsById = (options) => (options.client ?? client).get({
2509
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2510
2266
  security: [{ scheme: "bearer", type: "http" }],
2511
2267
  url: "/threads/{id}",
2512
2268
  ...options
2513
2269
  });
2514
2270
  var patchThreadsById = (options) => (options.client ?? client).patch({
2515
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2516
2271
  security: [{ scheme: "bearer", type: "http" }],
2517
2272
  url: "/threads/{id}",
2518
2273
  ...options,
@@ -2522,29 +2277,16 @@ var patchThreadsById = (options) => (options.client ?? client).patch({
2522
2277
  }
2523
2278
  });
2524
2279
  var getWorkspacesByIdMembers = (options) => (options.client ?? client).get({
2525
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2526
2280
  security: [{ scheme: "bearer", type: "http" }],
2527
2281
  url: "/workspaces/{id}/members",
2528
2282
  ...options
2529
2283
  });
2530
2284
  var getBucketsAll = (options) => (options.client ?? client).get({
2531
- querySerializer: {
2532
- parameters: {
2533
- filter: { object: { style: "form" } },
2534
- fields: { object: { style: "form" } }
2535
- }
2536
- },
2537
2285
  security: [{ scheme: "bearer", type: "http" }],
2538
2286
  url: "/buckets/all",
2539
2287
  ...options
2540
2288
  });
2541
2289
  var getWatcherClaims = (options) => (options.client ?? client).get({
2542
- querySerializer: {
2543
- parameters: {
2544
- filter: { object: { style: "form" } },
2545
- fields: { object: { style: "form" } }
2546
- }
2547
- },
2548
2290
  security: [{ scheme: "bearer", type: "http" }],
2549
2291
  url: "/watcher/claims",
2550
2292
  ...options
@@ -2559,19 +2301,11 @@ var postWatcherClaims = (options) => (options.client ?? client).post({
2559
2301
  }
2560
2302
  });
2561
2303
  var getLlmAnalytics = (options) => (options.client ?? client).get({
2562
- querySerializer: {
2563
- parameters: {
2564
- filter: { object: { style: "form" } },
2565
- page: { object: { style: "form" } },
2566
- fields: { object: { style: "form" } }
2567
- }
2568
- },
2569
2304
  security: [{ scheme: "bearer", type: "http" }],
2570
2305
  url: "/llm_analytics",
2571
2306
  ...options
2572
2307
  });
2573
2308
  var postLlmAnalytics = (options) => (options.client ?? client).post({
2574
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2575
2309
  security: [{ scheme: "bearer", type: "http" }],
2576
2310
  url: "/llm_analytics",
2577
2311
  ...options,
@@ -2586,7 +2320,6 @@ var getStorageStatsTenantByTenantId = (options) => (options.client ?? client).ge
2586
2320
  ...options
2587
2321
  });
2588
2322
  var postAgentTestResults = (options) => (options.client ?? client).post({
2589
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2590
2323
  security: [{ scheme: "bearer", type: "http" }],
2591
2324
  url: "/agent_test_results",
2592
2325
  ...options,
@@ -2596,7 +2329,6 @@ var postAgentTestResults = (options) => (options.client ?? client).post({
2596
2329
  }
2597
2330
  });
2598
2331
  var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch({
2599
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2600
2332
  security: [{ scheme: "bearer", type: "http" }],
2601
2333
  url: "/users/{id}/reset-password",
2602
2334
  ...options,
@@ -2615,7 +2347,6 @@ var postThreadsByIdExport = (options) => (options.client ?? client).post({
2615
2347
  }
2616
2348
  });
2617
2349
  var postDocumentsPresignedUpload = (options) => (options.client ?? client).post({
2618
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2619
2350
  security: [{ scheme: "bearer", type: "http" }],
2620
2351
  url: "/documents/presigned_upload",
2621
2352
  ...options,
@@ -2630,13 +2361,11 @@ var getWebhookConfigsByIdEvents = (options) => (options.client ?? client).get({
2630
2361
  ...options
2631
2362
  });
2632
2363
  var getMessagesSearch = (options) => (options.client ?? client).get({
2633
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2634
2364
  security: [{ scheme: "bearer", type: "http" }],
2635
2365
  url: "/messages/search",
2636
2366
  ...options
2637
2367
  });
2638
2368
  var postAgentsByIdTeach = (options) => (options.client ?? client).post({
2639
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2640
2369
  security: [{ scheme: "bearer", type: "http" }],
2641
2370
  url: "/agents/{id}/teach",
2642
2371
  ...options,
@@ -2646,19 +2375,11 @@ var postAgentsByIdTeach = (options) => (options.client ?? client).post({
2646
2375
  }
2647
2376
  });
2648
2377
  var getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue = (options) => (options.client ?? client).get({
2649
- querySerializer: {
2650
- parameters: {
2651
- filter: { object: { style: "form" } },
2652
- page: { object: { style: "form" } },
2653
- fields: { object: { style: "form" } }
2654
- }
2655
- },
2656
2378
  security: [{ scheme: "bearer", type: "http" }],
2657
2379
  url: "/extraction/documents/workspace/{workspace_id}/review_queue",
2658
2380
  ...options
2659
2381
  });
2660
2382
  var patchInvitationsByIdDecline = (options) => (options.client ?? client).patch({
2661
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2662
2383
  security: [{ scheme: "bearer", type: "http" }],
2663
2384
  url: "/invitations/{id}/decline",
2664
2385
  ...options,
@@ -2668,7 +2389,6 @@ var patchInvitationsByIdDecline = (options) => (options.client ?? client).patch(
2668
2389
  }
2669
2390
  });
2670
2391
  var postExtractionDocumentsUpload = (options) => (options.client ?? client).post({
2671
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2672
2392
  security: [{ scheme: "bearer", type: "http" }],
2673
2393
  url: "/extraction/documents/upload",
2674
2394
  ...options,
@@ -2678,7 +2398,6 @@ var postExtractionDocumentsUpload = (options) => (options.client ?? client).post
2678
2398
  }
2679
2399
  });
2680
2400
  var patchNotificationMethodsByIdVerify = (options) => (options.client ?? client).patch({
2681
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2682
2401
  security: [{ scheme: "bearer", type: "http" }],
2683
2402
  url: "/notification_methods/{id}/verify",
2684
2403
  ...options,
@@ -2688,13 +2407,11 @@ var patchNotificationMethodsByIdVerify = (options) => (options.client ?? client)
2688
2407
  }
2689
2408
  });
2690
2409
  var getExtractionResultsDocumentByDocumentId = (options) => (options.client ?? client).get({
2691
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2692
2410
  security: [{ scheme: "bearer", type: "http" }],
2693
2411
  url: "/extraction/results/document/{document_id}",
2694
2412
  ...options
2695
2413
  });
2696
2414
  var patchUserProfilesByIdDismissAnnouncement = (options) => (options.client ?? client).patch({
2697
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2698
2415
  security: [{ scheme: "bearer", type: "http" }],
2699
2416
  url: "/user_profiles/{id}/dismiss-announcement",
2700
2417
  ...options,
@@ -2704,19 +2421,16 @@ var patchUserProfilesByIdDismissAnnouncement = (options) => (options.client ?? c
2704
2421
  }
2705
2422
  });
2706
2423
  var deleteWorkspacesById = (options) => (options.client ?? client).delete({
2707
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2708
2424
  security: [{ scheme: "bearer", type: "http" }],
2709
2425
  url: "/workspaces/{id}",
2710
2426
  ...options
2711
2427
  });
2712
2428
  var getWorkspacesById = (options) => (options.client ?? client).get({
2713
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2714
2429
  security: [{ scheme: "bearer", type: "http" }],
2715
2430
  url: "/workspaces/{id}",
2716
2431
  ...options
2717
2432
  });
2718
2433
  var patchWorkspacesById = (options) => (options.client ?? client).patch({
2719
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2720
2434
  security: [{ scheme: "bearer", type: "http" }],
2721
2435
  url: "/workspaces/{id}",
2722
2436
  ...options,
@@ -2726,19 +2440,11 @@ var patchWorkspacesById = (options) => (options.client ?? client).patch({
2726
2440
  }
2727
2441
  });
2728
2442
  var getTenants = (options) => (options.client ?? client).get({
2729
- querySerializer: {
2730
- parameters: {
2731
- filter: { object: { style: "form" } },
2732
- page: { object: { style: "form" } },
2733
- fields: { object: { style: "form" } }
2734
- }
2735
- },
2736
2443
  security: [{ scheme: "bearer", type: "http" }],
2737
2444
  url: "/tenants",
2738
2445
  ...options
2739
2446
  });
2740
2447
  var postTenants = (options) => (options.client ?? client).post({
2741
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2742
2448
  security: [{ scheme: "bearer", type: "http" }],
2743
2449
  url: "/tenants",
2744
2450
  ...options,
@@ -2748,7 +2454,6 @@ var postTenants = (options) => (options.client ?? client).post({
2748
2454
  }
2749
2455
  });
2750
2456
  var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post({
2751
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2752
2457
  security: [{ scheme: "bearer", type: "http" }],
2753
2458
  url: "/tenants/{id}/remove-storage",
2754
2459
  ...options,
@@ -2758,18 +2463,11 @@ var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post(
2758
2463
  }
2759
2464
  });
2760
2465
  var getWalletInvoices = (options) => (options.client ?? client).get({
2761
- querySerializer: {
2762
- parameters: {
2763
- filter: { object: { style: "form" } },
2764
- fields: { object: { style: "form" } }
2765
- }
2766
- },
2767
2466
  security: [{ scheme: "bearer", type: "http" }],
2768
2467
  url: "/wallet/invoices",
2769
2468
  ...options
2770
2469
  });
2771
2470
  var patchExtractionResultsByIdSaveCorrections = (options) => (options.client ?? client).patch({
2772
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2773
2471
  security: [{ scheme: "bearer", type: "http" }],
2774
2472
  url: "/extraction/results/{id}/save_corrections",
2775
2473
  ...options,
@@ -2779,7 +2477,6 @@ var patchExtractionResultsByIdSaveCorrections = (options) => (options.client ??
2779
2477
  }
2780
2478
  });
2781
2479
  var patchWorkspacesByIdStorageSettings = (options) => (options.client ?? client).patch({
2782
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2783
2480
  security: [{ scheme: "bearer", type: "http" }],
2784
2481
  url: "/workspaces/{id}/storage-settings",
2785
2482
  ...options,
@@ -2789,49 +2486,31 @@ var patchWorkspacesByIdStorageSettings = (options) => (options.client ?? client)
2789
2486
  }
2790
2487
  });
2791
2488
  var getNotificationLogsById = (options) => (options.client ?? client).get({
2792
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2793
2489
  security: [{ scheme: "bearer", type: "http" }],
2794
2490
  url: "/notification_logs/{id}",
2795
2491
  ...options
2796
2492
  });
2797
2493
  var getExtractionDocumentsByIdView = (options) => (options.client ?? client).get({
2798
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2799
2494
  security: [{ scheme: "bearer", type: "http" }],
2800
2495
  url: "/extraction/documents/{id}/view",
2801
2496
  ...options
2802
2497
  });
2803
2498
  var getWebhookDeliveriesById = (options) => (options.client ?? client).get({
2804
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2805
2499
  security: [{ scheme: "bearer", type: "http" }],
2806
2500
  url: "/webhook_deliveries/{id}",
2807
2501
  ...options
2808
2502
  });
2809
2503
  var getAuditLogs = (options) => (options.client ?? client).get({
2810
- querySerializer: {
2811
- parameters: {
2812
- filter: { object: { style: "form" } },
2813
- page: { object: { style: "form" } },
2814
- fields: { object: { style: "form" } }
2815
- }
2816
- },
2817
2504
  security: [{ scheme: "bearer", type: "http" }],
2818
2505
  url: "/audit-logs",
2819
2506
  ...options
2820
2507
  });
2821
2508
  var getAiGraphEdges = (options) => (options.client ?? client).get({
2822
- querySerializer: {
2823
- parameters: {
2824
- filter: { object: { style: "form" } },
2825
- page: { object: { style: "form" } },
2826
- fields: { object: { style: "form" } }
2827
- }
2828
- },
2829
2509
  security: [{ scheme: "bearer", type: "http" }],
2830
2510
  url: "/ai/graph/edges",
2831
2511
  ...options
2832
2512
  });
2833
2513
  var postAiGraphEdges = (options) => (options.client ?? client).post({
2834
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2835
2514
  security: [{ scheme: "bearer", type: "http" }],
2836
2515
  url: "/ai/graph/edges",
2837
2516
  ...options,
@@ -2840,20 +2519,17 @@ var postAiGraphEdges = (options) => (options.client ?? client).post({
2840
2519
  ...options.headers
2841
2520
  }
2842
2521
  });
2522
+ var getAgentVersionRevisionsById = (options) => (options.client ?? client).get({
2523
+ security: [{ scheme: "bearer", type: "http" }],
2524
+ url: "/agent_version_revisions/{id}",
2525
+ ...options
2526
+ });
2843
2527
  var getTrainingExamples = (options) => (options.client ?? client).get({
2844
- querySerializer: {
2845
- parameters: {
2846
- filter: { object: { style: "form" } },
2847
- page: { object: { style: "form" } },
2848
- fields: { object: { style: "form" } }
2849
- }
2850
- },
2851
2528
  security: [{ scheme: "bearer", type: "http" }],
2852
2529
  url: "/training_examples",
2853
2530
  ...options
2854
2531
  });
2855
2532
  var postTrainingExamples = (options) => (options.client ?? client).post({
2856
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2857
2533
  security: [{ scheme: "bearer", type: "http" }],
2858
2534
  url: "/training_examples",
2859
2535
  ...options,
@@ -2863,19 +2539,16 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
2863
2539
  }
2864
2540
  });
2865
2541
  var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
2866
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2867
2542
  security: [{ scheme: "bearer", type: "http" }],
2868
2543
  url: "/workspaces/{workspace_id}/extraction/exports/{id}",
2869
2544
  ...options
2870
2545
  });
2871
2546
  var getAgentsByIdTrainingStats = (options) => (options.client ?? client).get({
2872
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2873
2547
  security: [{ scheme: "bearer", type: "http" }],
2874
2548
  url: "/agents/{id}/training_stats",
2875
2549
  ...options
2876
2550
  });
2877
2551
  var postObjectsCopy = (options) => (options.client ?? client).post({
2878
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2879
2552
  security: [{ scheme: "bearer", type: "http" }],
2880
2553
  url: "/objects/copy",
2881
2554
  ...options,
@@ -2885,18 +2558,11 @@ var postObjectsCopy = (options) => (options.client ?? client).post({
2885
2558
  }
2886
2559
  });
2887
2560
  var getBuckets = (options) => (options.client ?? client).get({
2888
- querySerializer: {
2889
- parameters: {
2890
- filter: { object: { style: "form" } },
2891
- fields: { object: { style: "form" } }
2892
- }
2893
- },
2894
2561
  security: [{ scheme: "bearer", type: "http" }],
2895
2562
  url: "/buckets",
2896
2563
  ...options
2897
2564
  });
2898
2565
  var postBuckets = (options) => (options.client ?? client).post({
2899
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2900
2566
  security: [{ scheme: "bearer", type: "http" }],
2901
2567
  url: "/buckets",
2902
2568
  ...options,
@@ -2905,8 +2571,12 @@ var postBuckets = (options) => (options.client ?? client).post({
2905
2571
  ...options.headers
2906
2572
  }
2907
2573
  });
2574
+ var getAgentVersionRevisions = (options) => (options.client ?? client).get({
2575
+ security: [{ scheme: "bearer", type: "http" }],
2576
+ url: "/agent_version_revisions",
2577
+ ...options
2578
+ });
2908
2579
  var postPaymentMethodsTokenize = (options) => (options.client ?? client).post({
2909
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2910
2580
  security: [{ scheme: "bearer", type: "http" }],
2911
2581
  url: "/payment-methods/tokenize",
2912
2582
  ...options,
@@ -2916,13 +2586,11 @@ var postPaymentMethodsTokenize = (options) => (options.client ?? client).post({
2916
2586
  }
2917
2587
  });
2918
2588
  var getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping = (options) => (options.client ?? client).get({
2919
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2920
2589
  security: [{ scheme: "bearer", type: "http" }],
2921
2590
  url: "/workspaces/{workspace_id}/extraction/{document_id}/mapping",
2922
2591
  ...options
2923
2592
  });
2924
2593
  var postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping = (options) => (options.client ?? client).post({
2925
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2926
2594
  security: [{ scheme: "bearer", type: "http" }],
2927
2595
  url: "/workspaces/{workspace_id}/extraction/{document_id}/mapping",
2928
2596
  ...options,
@@ -2942,19 +2610,16 @@ var getNotificationLogsStats = (options) => (options.client ?? client).get({
2942
2610
  ...options
2943
2611
  });
2944
2612
  var getPlansById = (options) => (options.client ?? client).get({
2945
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2946
2613
  security: [{ scheme: "bearer", type: "http" }],
2947
2614
  url: "/plans/{id}",
2948
2615
  ...options
2949
2616
  });
2950
2617
  var getTenantsByTenantIdStats = (options) => (options.client ?? client).get({
2951
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2952
2618
  security: [{ scheme: "bearer", type: "http" }],
2953
2619
  url: "/tenants/{tenant_id}/stats",
2954
2620
  ...options
2955
2621
  });
2956
2622
  var patchWalletAddons = (options) => (options.client ?? client).patch({
2957
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2958
2623
  security: [{ scheme: "bearer", type: "http" }],
2959
2624
  url: "/wallet/addons",
2960
2625
  ...options,
@@ -2964,7 +2629,6 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
2964
2629
  }
2965
2630
  });
2966
2631
  var postTenantsByIdSchedulePurge = (options) => (options.client ?? client).post({
2967
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2968
2632
  security: [{ scheme: "bearer", type: "http" }],
2969
2633
  url: "/tenants/{id}/schedule-purge",
2970
2634
  ...options,
@@ -2974,13 +2638,11 @@ var postTenantsByIdSchedulePurge = (options) => (options.client ?? client).post(
2974
2638
  }
2975
2639
  });
2976
2640
  var getMessagesSemanticSearch = (options) => (options.client ?? client).get({
2977
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2978
2641
  security: [{ scheme: "bearer", type: "http" }],
2979
2642
  url: "/messages/semantic-search",
2980
2643
  ...options
2981
2644
  });
2982
2645
  var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
2983
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
2984
2646
  security: [{ scheme: "bearer", type: "http" }],
2985
2647
  url: "/users/auth/magic_link/login",
2986
2648
  ...options,
@@ -2990,19 +2652,11 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
2990
2652
  }
2991
2653
  });
2992
2654
  var getApiKeys = (options) => (options.client ?? client).get({
2993
- querySerializer: {
2994
- parameters: {
2995
- filter: { object: { style: "form" } },
2996
- page: { object: { style: "form" } },
2997
- fields: { object: { style: "form" } }
2998
- }
2999
- },
3000
2655
  security: [{ scheme: "bearer", type: "http" }],
3001
2656
  url: "/api_keys",
3002
2657
  ...options
3003
2658
  });
3004
2659
  var postApiKeys = (options) => (options.client ?? client).post({
3005
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3006
2660
  security: [{ scheme: "bearer", type: "http" }],
3007
2661
  url: "/api_keys",
3008
2662
  ...options,
@@ -3012,7 +2666,6 @@ var postApiKeys = (options) => (options.client ?? client).post({
3012
2666
  }
3013
2667
  });
3014
2668
  var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
3015
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3016
2669
  security: [{ scheme: "bearer", type: "http" }],
3017
2670
  url: "/users/{id}/admin",
3018
2671
  ...options,
@@ -3031,19 +2684,16 @@ var postObjectsMove = (options) => (options.client ?? client).post({
3031
2684
  }
3032
2685
  });
3033
2686
  var deleteAgentsById = (options) => (options.client ?? client).delete({
3034
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3035
2687
  security: [{ scheme: "bearer", type: "http" }],
3036
2688
  url: "/agents/{id}",
3037
2689
  ...options
3038
2690
  });
3039
2691
  var getAgentsById = (options) => (options.client ?? client).get({
3040
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3041
2692
  security: [{ scheme: "bearer", type: "http" }],
3042
2693
  url: "/agents/{id}",
3043
2694
  ...options
3044
2695
  });
3045
2696
  var patchAgentsById = (options) => (options.client ?? client).patch({
3046
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3047
2697
  security: [{ scheme: "bearer", type: "http" }],
3048
2698
  url: "/agents/{id}",
3049
2699
  ...options,
@@ -3053,7 +2703,6 @@ var patchAgentsById = (options) => (options.client ?? client).patch({
3053
2703
  }
3054
2704
  });
3055
2705
  var patchThreadsByIdUnarchive = (options) => (options.client ?? client).patch({
3056
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3057
2706
  security: [{ scheme: "bearer", type: "http" }],
3058
2707
  url: "/threads/{id}/unarchive",
3059
2708
  ...options,
@@ -3063,25 +2712,21 @@ var patchThreadsByIdUnarchive = (options) => (options.client ?? client).patch({
3063
2712
  }
3064
2713
  });
3065
2714
  var getAgentsByIdUsage = (options) => (options.client ?? client).get({
3066
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3067
2715
  security: [{ scheme: "bearer", type: "http" }],
3068
2716
  url: "/agents/{id}/usage",
3069
2717
  ...options
3070
2718
  });
3071
2719
  var deleteApiKeysById = (options) => (options.client ?? client).delete({
3072
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3073
2720
  security: [{ scheme: "bearer", type: "http" }],
3074
2721
  url: "/api_keys/{id}",
3075
2722
  ...options
3076
2723
  });
3077
2724
  var getApiKeysById = (options) => (options.client ?? client).get({
3078
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3079
2725
  security: [{ scheme: "bearer", type: "http" }],
3080
2726
  url: "/api_keys/{id}",
3081
2727
  ...options
3082
2728
  });
3083
2729
  var patchApiKeysById = (options) => (options.client ?? client).patch({
3084
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3085
2730
  security: [{ scheme: "bearer", type: "http" }],
3086
2731
  url: "/api_keys/{id}",
3087
2732
  ...options,
@@ -3100,7 +2745,6 @@ var postTrainingExamplesSearch = (options) => (options.client ?? client).post({
3100
2745
  }
3101
2746
  });
3102
2747
  var patchWatcherClaimsByIdRelease = (options) => (options.client ?? client).patch({
3103
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3104
2748
  security: [{ scheme: "bearer", type: "http" }],
3105
2749
  url: "/watcher/claims/{id}/release",
3106
2750
  ...options,
@@ -3110,19 +2754,11 @@ var patchWatcherClaimsByIdRelease = (options) => (options.client ?? client).patc
3110
2754
  }
3111
2755
  });
3112
2756
  var getAiConversations = (options) => (options.client ?? client).get({
3113
- querySerializer: {
3114
- parameters: {
3115
- filter: { object: { style: "form" } },
3116
- page: { object: { style: "form" } },
3117
- fields: { object: { style: "form" } }
3118
- }
3119
- },
3120
2757
  security: [{ scheme: "bearer", type: "http" }],
3121
2758
  url: "/ai/conversations",
3122
2759
  ...options
3123
2760
  });
3124
2761
  var postAiConversations = (options) => (options.client ?? client).post({
3125
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3126
2762
  security: [{ scheme: "bearer", type: "http" }],
3127
2763
  url: "/ai/conversations",
3128
2764
  ...options,
@@ -3132,7 +2768,6 @@ var postAiConversations = (options) => (options.client ?? client).post({
3132
2768
  }
3133
2769
  });
3134
2770
  var postAiSearch = (options) => (options.client ?? client).post({
3135
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3136
2771
  security: [{ scheme: "bearer", type: "http" }],
3137
2772
  url: "/ai/search",
3138
2773
  ...options,
@@ -3142,24 +2777,16 @@ var postAiSearch = (options) => (options.client ?? client).post({
3142
2777
  }
3143
2778
  });
3144
2779
  var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
3145
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3146
2780
  security: [{ scheme: "bearer", type: "http" }],
3147
2781
  url: "/ai/graph/nodes/{id}",
3148
2782
  ...options
3149
2783
  });
3150
2784
  var getWorkspacesShared = (options) => (options.client ?? client).get({
3151
- querySerializer: {
3152
- parameters: {
3153
- filter: { object: { style: "form" } },
3154
- fields: { object: { style: "form" } }
3155
- }
3156
- },
3157
2785
  security: [{ scheme: "bearer", type: "http" }],
3158
2786
  url: "/workspaces/shared",
3159
2787
  ...options
3160
2788
  });
3161
2789
  var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
3162
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3163
2790
  security: [{ scheme: "bearer", type: "http" }],
3164
2791
  url: "/wallet/addons/{addon_slug}/cancel",
3165
2792
  ...options,
@@ -3169,19 +2796,16 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
3169
2796
  }
3170
2797
  });
3171
2798
  var deleteApplicationsById = (options) => (options.client ?? client).delete({
3172
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3173
2799
  security: [{ scheme: "bearer", type: "http" }],
3174
2800
  url: "/applications/{id}",
3175
2801
  ...options
3176
2802
  });
3177
2803
  var getApplicationsById = (options) => (options.client ?? client).get({
3178
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3179
2804
  security: [{ scheme: "bearer", type: "http" }],
3180
2805
  url: "/applications/{id}",
3181
2806
  ...options
3182
2807
  });
3183
2808
  var patchApplicationsById = (options) => (options.client ?? client).patch({
3184
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3185
2809
  security: [{ scheme: "bearer", type: "http" }],
3186
2810
  url: "/applications/{id}",
3187
2811
  ...options,
@@ -3191,18 +2815,11 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
3191
2815
  }
3192
2816
  });
3193
2817
  var getSearchHealth = (options) => (options.client ?? client).get({
3194
- querySerializer: {
3195
- parameters: {
3196
- filter: { object: { style: "form" } },
3197
- fields: { object: { style: "form" } }
3198
- }
3199
- },
3200
2818
  security: [{ scheme: "bearer", type: "http" }],
3201
2819
  url: "/search/health",
3202
2820
  ...options
3203
2821
  });
3204
2822
  var patchExtractionDocumentsByIdVerification = (options) => (options.client ?? client).patch({
3205
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3206
2823
  security: [{ scheme: "bearer", type: "http" }],
3207
2824
  url: "/extraction/documents/{id}/verification",
3208
2825
  ...options,
@@ -3212,7 +2829,6 @@ var patchExtractionDocumentsByIdVerification = (options) => (options.client ?? c
3212
2829
  }
3213
2830
  });
3214
2831
  var postThreadsByIdFork = (options) => (options.client ?? client).post({
3215
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3216
2832
  security: [{ scheme: "bearer", type: "http" }],
3217
2833
  url: "/threads/{id}/fork",
3218
2834
  ...options,
@@ -3221,31 +2837,26 @@ var postThreadsByIdFork = (options) => (options.client ?? client).post({
3221
2837
  ...options.headers
3222
2838
  }
3223
2839
  });
2840
+ var postExtractionDocumentsFindOrBeginUpload = (options) => (options.client ?? client).post({
2841
+ security: [{ scheme: "bearer", type: "http" }],
2842
+ url: "/extraction/documents/find_or_begin_upload",
2843
+ ...options,
2844
+ headers: {
2845
+ "Content-Type": "application/vnd.api+json",
2846
+ ...options.headers
2847
+ }
2848
+ });
3224
2849
  var getTransactions = (options) => (options.client ?? client).get({
3225
- querySerializer: {
3226
- parameters: {
3227
- filter: { object: { style: "form" } },
3228
- fields: { object: { style: "form" } }
3229
- }
3230
- },
3231
2850
  security: [{ scheme: "bearer", type: "http" }],
3232
2851
  url: "/transactions",
3233
2852
  ...options
3234
2853
  });
3235
2854
  var getUserProfiles = (options) => (options.client ?? client).get({
3236
- querySerializer: {
3237
- parameters: {
3238
- filter: { object: { style: "form" } },
3239
- page: { object: { style: "form" } },
3240
- fields: { object: { style: "form" } }
3241
- }
3242
- },
3243
2855
  security: [{ scheme: "bearer", type: "http" }],
3244
2856
  url: "/user_profiles",
3245
2857
  ...options
3246
2858
  });
3247
2859
  var postUserProfiles = (options) => (options.client ?? client).post({
3248
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3249
2860
  security: [{ scheme: "bearer", type: "http" }],
3250
2861
  url: "/user_profiles",
3251
2862
  ...options,
@@ -3255,7 +2866,6 @@ var postUserProfiles = (options) => (options.client ?? client).post({
3255
2866
  }
3256
2867
  });
3257
2868
  var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
3258
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3259
2869
  security: [{ scheme: "bearer", type: "http" }],
3260
2870
  url: "/users/{id}/confirm-email",
3261
2871
  ...options,
@@ -3265,13 +2875,11 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
3265
2875
  }
3266
2876
  });
3267
2877
  var getThreadsSearch = (options) => (options.client ?? client).get({
3268
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3269
2878
  security: [{ scheme: "bearer", type: "http" }],
3270
2879
  url: "/threads/search",
3271
2880
  ...options
3272
2881
  });
3273
2882
  var postSearchSavedByIdRun = (options) => (options.client ?? client).post({
3274
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3275
2883
  security: [{ scheme: "bearer", type: "http" }],
3276
2884
  url: "/search/saved/{id}/run",
3277
2885
  ...options,
@@ -3281,7 +2889,6 @@ var postSearchSavedByIdRun = (options) => (options.client ?? client).post({
3281
2889
  }
3282
2890
  });
3283
2891
  var patchWalletPlan = (options) => (options.client ?? client).patch({
3284
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3285
2892
  security: [{ scheme: "bearer", type: "http" }],
3286
2893
  url: "/wallet/plan",
3287
2894
  ...options,
@@ -3291,13 +2898,11 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
3291
2898
  }
3292
2899
  });
3293
2900
  var getPlansSlugBySlug = (options) => (options.client ?? client).get({
3294
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3295
2901
  security: [{ scheme: "bearer", type: "http" }],
3296
2902
  url: "/plans/slug/{slug}",
3297
2903
  ...options
3298
2904
  });
3299
2905
  var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client).patch({
3300
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3301
2906
  security: [{ scheme: "bearer", type: "http" }],
3302
2907
  url: "/extraction/documents/{id}/restore",
3303
2908
  ...options,
@@ -3307,24 +2912,16 @@ var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client
3307
2912
  }
3308
2913
  });
3309
2914
  var getLlmAnalyticsById = (options) => (options.client ?? client).get({
3310
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3311
2915
  security: [{ scheme: "bearer", type: "http" }],
3312
2916
  url: "/llm_analytics/{id}",
3313
2917
  ...options
3314
2918
  });
3315
2919
  var getPermissions = (options) => (options.client ?? client).get({
3316
- querySerializer: {
3317
- parameters: {
3318
- filter: { object: { style: "form" } },
3319
- fields: { object: { style: "form" } }
3320
- }
3321
- },
3322
2920
  security: [{ scheme: "bearer", type: "http" }],
3323
2921
  url: "/permissions",
3324
2922
  ...options
3325
2923
  });
3326
2924
  var patchUserProfilesByIdAcceptTos = (options) => (options.client ?? client).patch({
3327
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3328
2925
  security: [{ scheme: "bearer", type: "http" }],
3329
2926
  url: "/user_profiles/{id}/accept-tos",
3330
2927
  ...options,
@@ -3334,7 +2931,6 @@ var patchUserProfilesByIdAcceptTos = (options) => (options.client ?? client).pat
3334
2931
  }
3335
2932
  });
3336
2933
  var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? client).patch({
3337
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3338
2934
  security: [{ scheme: "bearer", type: "http" }],
3339
2935
  url: "/extraction/documents/{id}/mark_trained",
3340
2936
  ...options,
@@ -3344,7 +2940,6 @@ var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? cl
3344
2940
  }
3345
2941
  });
3346
2942
  var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).patch({
3347
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3348
2943
  security: [{ scheme: "bearer", type: "http" }],
3349
2944
  url: "/applications/{id}/grant-credits",
3350
2945
  ...options,
@@ -3354,29 +2949,16 @@ var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).
3354
2949
  }
3355
2950
  });
3356
2951
  var getSearchStatus = (options) => (options.client ?? client).get({
3357
- querySerializer: {
3358
- parameters: {
3359
- filter: { object: { style: "form" } },
3360
- fields: { object: { style: "form" } }
3361
- }
3362
- },
3363
2952
  security: [{ scheme: "bearer", type: "http" }],
3364
2953
  url: "/search/status",
3365
2954
  ...options
3366
2955
  });
3367
2956
  var getTenantsByTenantIdWorkspaceStats = (options) => (options.client ?? client).get({
3368
- querySerializer: {
3369
- parameters: {
3370
- filter: { object: { style: "form" } },
3371
- fields: { object: { style: "form" } }
3372
- }
3373
- },
3374
2957
  security: [{ scheme: "bearer", type: "http" }],
3375
2958
  url: "/tenants/{tenant_id}/workspace_stats",
3376
2959
  ...options
3377
2960
  });
3378
2961
  var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
3379
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3380
2962
  security: [{ scheme: "bearer", type: "http" }],
3381
2963
  url: "/api_keys/{id}/allocate",
3382
2964
  ...options,
@@ -3386,13 +2968,11 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
3386
2968
  }
3387
2969
  });
3388
2970
  var getWatcherClaimsById = (options) => (options.client ?? client).get({
3389
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3390
2971
  security: [{ scheme: "bearer", type: "http" }],
3391
2972
  url: "/watcher/claims/{id}",
3392
2973
  ...options
3393
2974
  });
3394
2975
  var patchWatcherClaimsById = (options) => (options.client ?? client).patch({
3395
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3396
2976
  security: [{ scheme: "bearer", type: "http" }],
3397
2977
  url: "/watcher/claims/{id}",
3398
2978
  ...options,
@@ -3402,7 +2982,6 @@ var patchWatcherClaimsById = (options) => (options.client ?? client).patch({
3402
2982
  }
3403
2983
  });
3404
2984
  var postUsersAuthLogin = (options) => (options.client ?? client).post({
3405
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3406
2985
  security: [{ scheme: "bearer", type: "http" }],
3407
2986
  url: "/users/auth/login",
3408
2987
  ...options,
@@ -3412,19 +2991,11 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
3412
2991
  }
3413
2992
  });
3414
2993
  var getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus = (options) => (options.client ?? client).get({
3415
- querySerializer: {
3416
- parameters: {
3417
- filter: { object: { style: "form" } },
3418
- page: { object: { style: "form" } },
3419
- fields: { object: { style: "form" } }
3420
- }
3421
- },
3422
2994
  security: [{ scheme: "bearer", type: "http" }],
3423
2995
  url: "/extraction/documents/workspace/{workspace_id}/by_status/{status}",
3424
2996
  ...options
3425
2997
  });
3426
2998
  var postAiEmbed = (options) => (options.client ?? client).post({
3427
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3428
2999
  security: [{ scheme: "bearer", type: "http" }],
3429
3000
  url: "/ai/embed",
3430
3001
  ...options,
@@ -3443,18 +3014,11 @@ var postWebhookConfigsByIdReplay = (options) => (options.client ?? client).post(
3443
3014
  }
3444
3015
  });
3445
3016
  var getWorkspacesMine = (options) => (options.client ?? client).get({
3446
- querySerializer: {
3447
- parameters: {
3448
- filter: { object: { style: "form" } },
3449
- fields: { object: { style: "form" } }
3450
- }
3451
- },
3452
3017
  security: [{ scheme: "bearer", type: "http" }],
3453
3018
  url: "/workspaces/mine",
3454
3019
  ...options
3455
3020
  });
3456
3021
  var postTenantsIsv = (options) => (options.client ?? client).post({
3457
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3458
3022
  security: [{ scheme: "bearer", type: "http" }],
3459
3023
  url: "/tenants/isv",
3460
3024
  ...options,
@@ -3464,7 +3028,6 @@ var postTenantsIsv = (options) => (options.client ?? client).post({
3464
3028
  }
3465
3029
  });
3466
3030
  var postSearchReindex = (options) => (options.client ?? client).post({
3467
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3468
3031
  security: [{ scheme: "bearer", type: "http" }],
3469
3032
  url: "/search/reindex",
3470
3033
  ...options,
@@ -3474,7 +3037,6 @@ var postSearchReindex = (options) => (options.client ?? client).post({
3474
3037
  }
3475
3038
  });
3476
3039
  var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
3477
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3478
3040
  security: [{ scheme: "bearer", type: "http" }],
3479
3041
  url: "/extraction/results/{id}/regenerate",
3480
3042
  ...options,
@@ -3484,7 +3046,6 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
3484
3046
  }
3485
3047
  });
3486
3048
  var postUsersAuthConfirm = (options) => (options.client ?? client).post({
3487
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3488
3049
  security: [{ scheme: "bearer", type: "http" }],
3489
3050
  url: "/users/auth/confirm",
3490
3051
  ...options,
@@ -3494,18 +3055,11 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
3494
3055
  }
3495
3056
  });
3496
3057
  var getStorageStats = (options) => (options.client ?? client).get({
3497
- querySerializer: {
3498
- parameters: {
3499
- filter: { object: { style: "form" } },
3500
- fields: { object: { style: "form" } }
3501
- }
3502
- },
3503
3058
  security: [{ scheme: "bearer", type: "http" }],
3504
3059
  url: "/storage/stats",
3505
3060
  ...options
3506
3061
  });
3507
3062
  var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
3508
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3509
3063
  security: [{ scheme: "bearer", type: "http" }],
3510
3064
  url: "/tenants/{id}/buy-storage",
3511
3065
  ...options,
@@ -3515,19 +3069,11 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
3515
3069
  }
3516
3070
  });
3517
3071
  var getWorkspaceMemberships = (options) => (options.client ?? client).get({
3518
- querySerializer: {
3519
- parameters: {
3520
- filter: { object: { style: "form" } },
3521
- page: { object: { style: "form" } },
3522
- fields: { object: { style: "form" } }
3523
- }
3524
- },
3525
3072
  security: [{ scheme: "bearer", type: "http" }],
3526
3073
  url: "/workspace-memberships",
3527
3074
  ...options
3528
3075
  });
3529
3076
  var postWorkspaceMemberships = (options) => (options.client ?? client).post({
3530
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3531
3077
  security: [{ scheme: "bearer", type: "http" }],
3532
3078
  url: "/workspace-memberships",
3533
3079
  ...options,
@@ -3537,7 +3083,6 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
3537
3083
  }
3538
3084
  });
3539
3085
  var patchApiKeysByIdResetPeriod = (options) => (options.client ?? client).patch({
3540
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3541
3086
  security: [{ scheme: "bearer", type: "http" }],
3542
3087
  url: "/api_keys/{id}/reset-period",
3543
3088
  ...options,
@@ -3547,25 +3092,16 @@ var patchApiKeysByIdResetPeriod = (options) => (options.client ?? client).patch(
3547
3092
  }
3548
3093
  });
3549
3094
  var getTenantsByTenantIdDocumentStats = (options) => (options.client ?? client).get({
3550
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3551
3095
  security: [{ scheme: "bearer", type: "http" }],
3552
3096
  url: "/tenants/{tenant_id}/document_stats",
3553
3097
  ...options
3554
3098
  });
3555
3099
  var getSearchAnalytics = (options) => (options.client ?? client).get({
3556
- querySerializer: {
3557
- parameters: {
3558
- filter: { object: { style: "form" } },
3559
- page: { object: { style: "form" } },
3560
- fields: { object: { style: "form" } }
3561
- }
3562
- },
3563
3100
  security: [{ scheme: "bearer", type: "http" }],
3564
3101
  url: "/search/analytics",
3565
3102
  ...options
3566
3103
  });
3567
3104
  var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
3568
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3569
3105
  security: [{ scheme: "bearer", type: "http" }],
3570
3106
  url: "/users/auth/magic_link/request",
3571
3107
  ...options,
@@ -3575,18 +3111,11 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
3575
3111
  }
3576
3112
  });
3577
3113
  var getPermissionsPresetsById = (options) => (options.client ?? client).get({
3578
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3579
3114
  security: [{ scheme: "bearer", type: "http" }],
3580
3115
  url: "/permissions/presets/{id}",
3581
3116
  ...options
3582
3117
  });
3583
3118
  var getPermissionsPresets = (options) => (options.client ?? client).get({
3584
- querySerializer: {
3585
- parameters: {
3586
- filter: { object: { style: "form" } },
3587
- fields: { object: { style: "form" } }
3588
- }
3589
- },
3590
3119
  security: [{ scheme: "bearer", type: "http" }],
3591
3120
  url: "/permissions/presets",
3592
3121
  ...options
@@ -3601,7 +3130,6 @@ var postWebhookDeliveriesBulkRetry = (options) => (options.client ?? client).pos
3601
3130
  }
3602
3131
  });
3603
3132
  var postUsersAuthRegister = (options) => (options.client ?? client).post({
3604
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3605
3133
  security: [{ scheme: "bearer", type: "http" }],
3606
3134
  url: "/users/auth/register",
3607
3135
  ...options,
@@ -3625,19 +3153,16 @@ var postAgentsByIdSchemaVersionsByVersionIdActivate = (options) => (options.clie
3625
3153
  ...options
3626
3154
  });
3627
3155
  var deletePaymentMethodsById = (options) => (options.client ?? client).delete({
3628
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3629
3156
  security: [{ scheme: "bearer", type: "http" }],
3630
3157
  url: "/payment-methods/{id}",
3631
3158
  ...options
3632
3159
  });
3633
3160
  var getPaymentMethodsById = (options) => (options.client ?? client).get({
3634
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3635
3161
  security: [{ scheme: "bearer", type: "http" }],
3636
3162
  url: "/payment-methods/{id}",
3637
3163
  ...options
3638
3164
  });
3639
3165
  var patchPaymentMethodsById = (options) => (options.client ?? client).patch({
3640
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3641
3166
  security: [{ scheme: "bearer", type: "http" }],
3642
3167
  url: "/payment-methods/{id}",
3643
3168
  ...options,
@@ -3647,19 +3172,16 @@ var patchPaymentMethodsById = (options) => (options.client ?? client).patch({
3647
3172
  }
3648
3173
  });
3649
3174
  var deleteBucketsById = (options) => (options.client ?? client).delete({
3650
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3651
3175
  security: [{ scheme: "bearer", type: "http" }],
3652
3176
  url: "/buckets/{id}",
3653
3177
  ...options
3654
3178
  });
3655
3179
  var getBucketsById = (options) => (options.client ?? client).get({
3656
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3657
3180
  security: [{ scheme: "bearer", type: "http" }],
3658
3181
  url: "/buckets/{id}",
3659
3182
  ...options
3660
3183
  });
3661
3184
  var patchBucketsById = (options) => (options.client ?? client).patch({
3662
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3663
3185
  security: [{ scheme: "bearer", type: "http" }],
3664
3186
  url: "/buckets/{id}",
3665
3187
  ...options,
@@ -3669,35 +3191,21 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
3669
3191
  }
3670
3192
  });
3671
3193
  var getPermissionsById = (options) => (options.client ?? client).get({
3672
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3673
3194
  security: [{ scheme: "bearer", type: "http" }],
3674
3195
  url: "/permissions/{id}",
3675
3196
  ...options
3676
3197
  });
3677
3198
  var getAiGraphNodesBySourceNodeIdRelated = (options) => (options.client ?? client).get({
3678
- querySerializer: {
3679
- parameters: {
3680
- filter: { object: { style: "form" } },
3681
- fields: { object: { style: "form" } }
3682
- }
3683
- },
3684
3199
  security: [{ scheme: "bearer", type: "http" }],
3685
3200
  url: "/ai/graph/nodes/{source_node_id}/related",
3686
3201
  ...options
3687
3202
  });
3688
3203
  var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
3689
- querySerializer: {
3690
- parameters: {
3691
- filter: { object: { style: "form" } },
3692
- fields: { object: { style: "form" } }
3693
- }
3694
- },
3695
3204
  security: [{ scheme: "bearer", type: "http" }],
3696
3205
  url: "/extraction/documents/workspace/{workspace_id}",
3697
3206
  ...options
3698
3207
  });
3699
3208
  var patchApplicationsByIdAllocateCredits = (options) => (options.client ?? client).patch({
3700
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3701
3209
  security: [{ scheme: "bearer", type: "http" }],
3702
3210
  url: "/applications/{id}/allocate-credits",
3703
3211
  ...options,
@@ -3707,30 +3215,16 @@ var patchApplicationsByIdAllocateCredits = (options) => (options.client ?? clien
3707
3215
  }
3708
3216
  });
3709
3217
  var getExtractionResultsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
3710
- querySerializer: {
3711
- parameters: {
3712
- filter: { object: { style: "form" } },
3713
- page: { object: { style: "form" } },
3714
- fields: { object: { style: "form" } }
3715
- }
3716
- },
3717
3218
  security: [{ scheme: "bearer", type: "http" }],
3718
3219
  url: "/extraction/results/workspace/{workspace_id}",
3719
3220
  ...options
3720
3221
  });
3721
3222
  var getSearchAnalyticsSummary = (options) => (options.client ?? client).get({
3722
- querySerializer: {
3723
- parameters: {
3724
- filter: { object: { style: "form" } },
3725
- fields: { object: { style: "form" } }
3726
- }
3727
- },
3728
3223
  security: [{ scheme: "bearer", type: "http" }],
3729
3224
  url: "/search/analytics/summary",
3730
3225
  ...options
3731
3226
  });
3732
3227
  var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
3733
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3734
3228
  security: [{ scheme: "bearer", type: "http" }],
3735
3229
  url: "/extraction/documents/begin_upload",
3736
3230
  ...options,
@@ -3740,25 +3234,21 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
3740
3234
  }
3741
3235
  });
3742
3236
  var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
3743
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3744
3237
  security: [{ scheme: "bearer", type: "http" }],
3745
3238
  url: "/ai/graph/edges/{id}",
3746
3239
  ...options
3747
3240
  });
3748
3241
  var deleteTenantsById = (options) => (options.client ?? client).delete({
3749
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3750
3242
  security: [{ scheme: "bearer", type: "http" }],
3751
3243
  url: "/tenants/{id}",
3752
3244
  ...options
3753
3245
  });
3754
3246
  var getTenantsById = (options) => (options.client ?? client).get({
3755
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3756
3247
  security: [{ scheme: "bearer", type: "http" }],
3757
3248
  url: "/tenants/{id}",
3758
3249
  ...options
3759
3250
  });
3760
3251
  var patchTenantsById = (options) => (options.client ?? client).patch({
3761
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3762
3252
  security: [{ scheme: "bearer", type: "http" }],
3763
3253
  url: "/tenants/{id}",
3764
3254
  ...options,
@@ -3768,19 +3258,11 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
3768
3258
  }
3769
3259
  });
3770
3260
  var getPlans = (options) => (options.client ?? client).get({
3771
- querySerializer: {
3772
- parameters: {
3773
- filter: { object: { style: "form" } },
3774
- page: { object: { style: "form" } },
3775
- fields: { object: { style: "form" } }
3776
- }
3777
- },
3778
3261
  security: [{ scheme: "bearer", type: "http" }],
3779
3262
  url: "/plans",
3780
3263
  ...options
3781
3264
  });
3782
3265
  var postAgentsByIdTest = (options) => (options.client ?? client).post({
3783
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3784
3266
  security: [{ scheme: "bearer", type: "http" }],
3785
3267
  url: "/agents/{id}/test",
3786
3268
  ...options,
@@ -3799,24 +3281,16 @@ var postAgentVersionsByIdAddSystemField = (options) => (options.client ?? client
3799
3281
  }
3800
3282
  });
3801
3283
  var getExtractionDocuments = (options) => (options.client ?? client).get({
3802
- querySerializer: {
3803
- parameters: {
3804
- filter: { object: { style: "form" } },
3805
- fields: { object: { style: "form" } }
3806
- }
3807
- },
3808
3284
  security: [{ scheme: "bearer", type: "http" }],
3809
3285
  url: "/extraction/documents",
3810
3286
  ...options
3811
3287
  });
3812
3288
  var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
3813
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3814
3289
  security: [{ scheme: "bearer", type: "http" }],
3815
3290
  url: "/tenant-memberships/{tenant_id}/{user_id}",
3816
3291
  ...options
3817
3292
  });
3818
3293
  var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
3819
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3820
3294
  security: [{ scheme: "bearer", type: "http" }],
3821
3295
  url: "/tenant-memberships/{tenant_id}/{user_id}",
3822
3296
  ...options,
@@ -3826,7 +3300,6 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
3826
3300
  }
3827
3301
  });
3828
3302
  var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
3829
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3830
3303
  security: [{ scheme: "bearer", type: "http" }],
3831
3304
  url: "/webhook_configs/{id}/rotate_secret",
3832
3305
  ...options,
@@ -3835,19 +3308,17 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
3835
3308
  ...options.headers
3836
3309
  }
3837
3310
  });
3311
+ var getAgentVersionsByIdRevisions = (options) => (options.client ?? client).get({
3312
+ security: [{ scheme: "bearer", type: "http" }],
3313
+ url: "/agent_versions/{id}/revisions",
3314
+ ...options
3315
+ });
3838
3316
  var getAuditLogsActivity = (options) => (options.client ?? client).get({
3839
- querySerializer: {
3840
- parameters: {
3841
- filter: { object: { style: "form" } },
3842
- fields: { object: { style: "form" } }
3843
- }
3844
- },
3845
3317
  security: [{ scheme: "bearer", type: "http" }],
3846
3318
  url: "/audit-logs/activity",
3847
3319
  ...options
3848
3320
  });
3849
3321
  var postUsersAuthResendConfirmation = (options) => (options.client ?? client).post({
3850
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3851
3322
  security: [{ scheme: "bearer", type: "http" }],
3852
3323
  url: "/users/auth/resend-confirmation",
3853
3324
  ...options,
@@ -3857,29 +3328,16 @@ var postUsersAuthResendConfirmation = (options) => (options.client ?? client).po
3857
3328
  }
3858
3329
  });
3859
3330
  var getWorkspacesAnalyticsBatch = (options) => (options.client ?? client).get({
3860
- querySerializer: {
3861
- parameters: {
3862
- filter: { object: { style: "form" } },
3863
- fields: { object: { style: "form" } }
3864
- }
3865
- },
3866
3331
  security: [{ scheme: "bearer", type: "http" }],
3867
3332
  url: "/workspaces/analytics-batch",
3868
3333
  ...options
3869
3334
  });
3870
3335
  var getFieldTemplates = (options) => (options.client ?? client).get({
3871
- querySerializer: {
3872
- parameters: {
3873
- filter: { object: { style: "form" } },
3874
- fields: { object: { style: "form" } }
3875
- }
3876
- },
3877
3336
  security: [{ scheme: "bearer", type: "http" }],
3878
3337
  url: "/field_templates",
3879
3338
  ...options
3880
3339
  });
3881
3340
  var postFieldTemplates = (options) => (options.client ?? client).post({
3882
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3883
3341
  security: [{ scheme: "bearer", type: "http" }],
3884
3342
  url: "/field_templates",
3885
3343
  ...options,
@@ -3889,19 +3347,11 @@ var postFieldTemplates = (options) => (options.client ?? client).post({
3889
3347
  }
3890
3348
  });
3891
3349
  var getAiMessages = (options) => (options.client ?? client).get({
3892
- querySerializer: {
3893
- parameters: {
3894
- filter: { object: { style: "form" } },
3895
- page: { object: { style: "form" } },
3896
- fields: { object: { style: "form" } }
3897
- }
3898
- },
3899
3350
  security: [{ scheme: "bearer", type: "http" }],
3900
3351
  url: "/ai/messages",
3901
3352
  ...options
3902
3353
  });
3903
3354
  var postAiMessages = (options) => (options.client ?? client).post({
3904
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3905
3355
  security: [{ scheme: "bearer", type: "http" }],
3906
3356
  url: "/ai/messages",
3907
3357
  ...options,
@@ -3911,13 +3361,6 @@ var postAiMessages = (options) => (options.client ?? client).post({
3911
3361
  }
3912
3362
  });
3913
3363
  var getWatcherEvents = (options) => (options.client ?? client).get({
3914
- querySerializer: {
3915
- parameters: {
3916
- filter: { object: { style: "form" } },
3917
- page: { object: { style: "form" } },
3918
- fields: { object: { style: "form" } }
3919
- }
3920
- },
3921
3364
  security: [{ scheme: "bearer", type: "http" }],
3922
3365
  url: "/watcher/events",
3923
3366
  ...options
@@ -3932,7 +3375,6 @@ var postWatcherEvents = (options) => (options.client ?? client).post({
3932
3375
  }
3933
3376
  });
3934
3377
  var postStorageSignUpload = (options) => (options.client ?? client).post({
3935
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3936
3378
  security: [{ scheme: "bearer", type: "http" }],
3937
3379
  url: "/storage/sign_upload",
3938
3380
  ...options,
@@ -3942,7 +3384,6 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
3942
3384
  }
3943
3385
  });
3944
3386
  var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
3945
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3946
3387
  security: [{ scheme: "bearer", type: "http" }],
3947
3388
  url: "/webhook_deliveries/{id}/retry",
3948
3389
  ...options,
@@ -3952,19 +3393,11 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
3952
3393
  }
3953
3394
  });
3954
3395
  var getNotificationMethods = (options) => (options.client ?? client).get({
3955
- querySerializer: {
3956
- parameters: {
3957
- filter: { object: { style: "form" } },
3958
- page: { object: { style: "form" } },
3959
- fields: { object: { style: "form" } }
3960
- }
3961
- },
3962
3396
  security: [{ scheme: "bearer", type: "http" }],
3963
3397
  url: "/notification_methods",
3964
3398
  ...options
3965
3399
  });
3966
3400
  var postNotificationMethods = (options) => (options.client ?? client).post({
3967
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3968
3401
  security: [{ scheme: "bearer", type: "http" }],
3969
3402
  url: "/notification_methods",
3970
3403
  ...options,
@@ -3974,13 +3407,11 @@ var postNotificationMethods = (options) => (options.client ?? client).post({
3974
3407
  }
3975
3408
  });
3976
3409
  var getWalletPlanPreview = (options) => (options.client ?? client).get({
3977
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3978
3410
  security: [{ scheme: "bearer", type: "http" }],
3979
3411
  url: "/wallet/plan/preview",
3980
3412
  ...options
3981
3413
  });
3982
3414
  var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
3983
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3984
3415
  security: [{ scheme: "bearer", type: "http" }],
3985
3416
  url: "/threads/{id}/summarize",
3986
3417
  ...options,
@@ -3990,7 +3421,6 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
3990
3421
  }
3991
3422
  });
3992
3423
  var patchConfigsByKey = (options) => (options.client ?? client).patch({
3993
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
3994
3424
  security: [{ scheme: "bearer", type: "http" }],
3995
3425
  url: "/configs/{key}",
3996
3426
  ...options,
@@ -4000,7 +3430,6 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
4000
3430
  }
4001
3431
  });
4002
3432
  var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
4003
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4004
3433
  security: [{ scheme: "bearer", type: "http" }],
4005
3434
  url: "/api_keys/{id}/rotate",
4006
3435
  ...options,
@@ -4010,18 +3439,11 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
4010
3439
  }
4011
3440
  });
4012
3441
  var getExtractionResults = (options) => (options.client ?? client).get({
4013
- querySerializer: {
4014
- parameters: {
4015
- filter: { object: { style: "form" } },
4016
- fields: { object: { style: "form" } }
4017
- }
4018
- },
4019
3442
  security: [{ scheme: "bearer", type: "http" }],
4020
3443
  url: "/extraction/results",
4021
3444
  ...options
4022
3445
  });
4023
3446
  var postAgentsByIdClone = (options) => (options.client ?? client).post({
4024
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4025
3447
  security: [{ scheme: "bearer", type: "http" }],
4026
3448
  url: "/agents/{id}/clone",
4027
3449
  ...options,
@@ -4031,19 +3453,16 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
4031
3453
  }
4032
3454
  });
4033
3455
  var deleteAiConversationsById = (options) => (options.client ?? client).delete({
4034
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4035
3456
  security: [{ scheme: "bearer", type: "http" }],
4036
3457
  url: "/ai/conversations/{id}",
4037
3458
  ...options
4038
3459
  });
4039
3460
  var getAiConversationsById = (options) => (options.client ?? client).get({
4040
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4041
3461
  security: [{ scheme: "bearer", type: "http" }],
4042
3462
  url: "/ai/conversations/{id}",
4043
3463
  ...options
4044
3464
  });
4045
3465
  var patchAiConversationsById = (options) => (options.client ?? client).patch({
4046
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4047
3466
  security: [{ scheme: "bearer", type: "http" }],
4048
3467
  url: "/ai/conversations/{id}",
4049
3468
  ...options,
@@ -4053,19 +3472,16 @@ var patchAiConversationsById = (options) => (options.client ?? client).patch({
4053
3472
  }
4054
3473
  });
4055
3474
  var deleteUserProfilesById = (options) => (options.client ?? client).delete({
4056
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4057
3475
  security: [{ scheme: "bearer", type: "http" }],
4058
3476
  url: "/user_profiles/{id}",
4059
3477
  ...options
4060
3478
  });
4061
3479
  var getUserProfilesById = (options) => (options.client ?? client).get({
4062
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4063
3480
  security: [{ scheme: "bearer", type: "http" }],
4064
3481
  url: "/user_profiles/{id}",
4065
3482
  ...options
4066
3483
  });
4067
3484
  var patchUserProfilesById = (options) => (options.client ?? client).patch({
4068
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4069
3485
  security: [{ scheme: "bearer", type: "http" }],
4070
3486
  url: "/user_profiles/{id}",
4071
3487
  ...options,
@@ -4075,12 +3491,6 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
4075
3491
  }
4076
3492
  });
4077
3493
  var getInvitationsMe = (options) => (options.client ?? client).get({
4078
- querySerializer: {
4079
- parameters: {
4080
- filter: { object: { style: "form" } },
4081
- fields: { object: { style: "form" } }
4082
- }
4083
- },
4084
3494
  security: [{ scheme: "bearer", type: "http" }],
4085
3495
  url: "/invitations/me",
4086
3496
  ...options
@@ -4095,7 +3505,6 @@ var patchAgentsByIdSchemaVersionsByVersionId = (options) => (options.client ?? c
4095
3505
  }
4096
3506
  });
4097
3507
  var postSearchBatch = (options) => (options.client ?? client).post({
4098
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4099
3508
  security: [{ scheme: "bearer", type: "http" }],
4100
3509
  url: "/search/batch",
4101
3510
  ...options,
@@ -4105,49 +3514,31 @@ var postSearchBatch = (options) => (options.client ?? client).post({
4105
3514
  }
4106
3515
  });
4107
3516
  var getThreadsWorkspaceStats = (options) => (options.client ?? client).get({
4108
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4109
3517
  security: [{ scheme: "bearer", type: "http" }],
4110
3518
  url: "/threads/workspace-stats",
4111
3519
  ...options
4112
3520
  });
4113
3521
  var deleteObjectsById = (options) => (options.client ?? client).delete({
4114
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4115
3522
  security: [{ scheme: "bearer", type: "http" }],
4116
3523
  url: "/objects/{id}",
4117
3524
  ...options
4118
3525
  });
4119
3526
  var getObjectsById = (options) => (options.client ?? client).get({
4120
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4121
3527
  security: [{ scheme: "bearer", type: "http" }],
4122
3528
  url: "/objects/{id}",
4123
3529
  ...options
4124
3530
  });
4125
3531
  var getExtractionDocumentsWorkspaceByWorkspaceIdExcluded = (options) => (options.client ?? client).get({
4126
- querySerializer: {
4127
- parameters: {
4128
- filter: { object: { style: "form" } },
4129
- page: { object: { style: "form" } },
4130
- fields: { object: { style: "form" } }
4131
- }
4132
- },
4133
3532
  security: [{ scheme: "bearer", type: "http" }],
4134
3533
  url: "/extraction/documents/workspace/{workspace_id}/excluded",
4135
3534
  ...options
4136
3535
  });
4137
3536
  var getWebhookConfigs = (options) => (options.client ?? client).get({
4138
- querySerializer: {
4139
- parameters: {
4140
- filter: { object: { style: "form" } },
4141
- page: { object: { style: "form" } },
4142
- fields: { object: { style: "form" } }
4143
- }
4144
- },
4145
3537
  security: [{ scheme: "bearer", type: "http" }],
4146
3538
  url: "/webhook_configs",
4147
3539
  ...options
4148
3540
  });
4149
3541
  var postWebhookConfigs = (options) => (options.client ?? client).post({
4150
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4151
3542
  security: [{ scheme: "bearer", type: "http" }],
4152
3543
  url: "/webhook_configs",
4153
3544
  ...options,
@@ -4157,7 +3548,6 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
4157
3548
  }
4158
3549
  });
4159
3550
  var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post({
4160
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4161
3551
  security: [{ scheme: "bearer", type: "http" }],
4162
3552
  url: "/agents/{id}/publish_version",
4163
3553
  ...options,
@@ -4167,7 +3557,6 @@ var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post(
4167
3557
  }
4168
3558
  });
4169
3559
  var postExtractionDocumentsBulkReprocess = (options) => (options.client ?? client).post({
4170
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4171
3560
  security: [{ scheme: "bearer", type: "http" }],
4172
3561
  url: "/extraction/documents/bulk-reprocess",
4173
3562
  ...options,
@@ -4177,7 +3566,6 @@ var postExtractionDocumentsBulkReprocess = (options) => (options.client ?? clien
4177
3566
  }
4178
3567
  });
4179
3568
  var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
4180
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4181
3569
  security: [{ scheme: "bearer", type: "http" }],
4182
3570
  url: "/objects/bulk-destroy",
4183
3571
  ...options,
@@ -4187,42 +3575,31 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
4187
3575
  }
4188
3576
  });
4189
3577
  var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
4190
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4191
3578
  security: [{ scheme: "bearer", type: "http" }],
4192
3579
  url: "/applications/by-slug/{slug}",
4193
3580
  ...options
4194
3581
  });
4195
3582
  var getNotificationLogs = (options) => (options.client ?? client).get({
4196
- querySerializer: {
4197
- parameters: {
4198
- filter: { object: { style: "form" } },
4199
- fields: { object: { style: "form" } }
4200
- }
4201
- },
4202
3583
  security: [{ scheme: "bearer", type: "http" }],
4203
3584
  url: "/notification_logs",
4204
3585
  ...options
4205
3586
  });
4206
3587
  var getWallet = (options) => (options.client ?? client).get({
4207
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4208
3588
  security: [{ scheme: "bearer", type: "http" }],
4209
3589
  url: "/wallet",
4210
3590
  ...options
4211
3591
  });
4212
3592
  var deleteMessagesById = (options) => (options.client ?? client).delete({
4213
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4214
3593
  security: [{ scheme: "bearer", type: "http" }],
4215
3594
  url: "/messages/{id}",
4216
3595
  ...options
4217
3596
  });
4218
3597
  var getMessagesById = (options) => (options.client ?? client).get({
4219
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4220
3598
  security: [{ scheme: "bearer", type: "http" }],
4221
3599
  url: "/messages/{id}",
4222
3600
  ...options
4223
3601
  });
4224
3602
  var patchMessagesById = (options) => (options.client ?? client).patch({
4225
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4226
3603
  security: [{ scheme: "bearer", type: "http" }],
4227
3604
  url: "/messages/{id}",
4228
3605
  ...options,
@@ -4241,36 +3618,26 @@ var postAgentsByIdDiscoverSchema = (options) => (options.client ?? client).post(
4241
3618
  }
4242
3619
  });
4243
3620
  var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
4244
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4245
3621
  security: [{ scheme: "bearer", type: "http" }],
4246
3622
  url: "/llm_analytics/usage",
4247
3623
  ...options
4248
3624
  });
4249
3625
  var getSearchStats = (options) => (options.client ?? client).get({
4250
- querySerializer: {
4251
- parameters: {
4252
- filter: { object: { style: "form" } },
4253
- fields: { object: { style: "form" } }
4254
- }
4255
- },
4256
3626
  security: [{ scheme: "bearer", type: "http" }],
4257
3627
  url: "/search/stats",
4258
3628
  ...options
4259
3629
  });
4260
3630
  var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
4261
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4262
3631
  security: [{ scheme: "bearer", type: "http" }],
4263
3632
  url: "/notification_preferences/{id}",
4264
3633
  ...options
4265
3634
  });
4266
3635
  var getNotificationPreferencesById = (options) => (options.client ?? client).get({
4267
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4268
3636
  security: [{ scheme: "bearer", type: "http" }],
4269
3637
  url: "/notification_preferences/{id}",
4270
3638
  ...options
4271
3639
  });
4272
3640
  var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
4273
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4274
3641
  security: [{ scheme: "bearer", type: "http" }],
4275
3642
  url: "/notification_preferences/{id}",
4276
3643
  ...options,
@@ -4280,19 +3647,11 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
4280
3647
  }
4281
3648
  });
4282
3649
  var getAiGraphNodes = (options) => (options.client ?? client).get({
4283
- querySerializer: {
4284
- parameters: {
4285
- filter: { object: { style: "form" } },
4286
- page: { object: { style: "form" } },
4287
- fields: { object: { style: "form" } }
4288
- }
4289
- },
4290
3650
  security: [{ scheme: "bearer", type: "http" }],
4291
3651
  url: "/ai/graph/nodes",
4292
3652
  ...options
4293
3653
  });
4294
3654
  var postAiGraphNodes = (options) => (options.client ?? client).post({
4295
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4296
3655
  security: [{ scheme: "bearer", type: "http" }],
4297
3656
  url: "/ai/graph/nodes",
4298
3657
  ...options,
@@ -4302,19 +3661,11 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
4302
3661
  }
4303
3662
  });
4304
3663
  var getAgents = (options) => (options.client ?? client).get({
4305
- querySerializer: {
4306
- parameters: {
4307
- filter: { object: { style: "form" } },
4308
- page: { object: { style: "form" } },
4309
- fields: { object: { style: "form" } }
4310
- }
4311
- },
4312
3664
  security: [{ scheme: "bearer", type: "http" }],
4313
3665
  url: "/agents",
4314
3666
  ...options
4315
3667
  });
4316
3668
  var postAgents = (options) => (options.client ?? client).post({
4317
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4318
3669
  security: [{ scheme: "bearer", type: "http" }],
4319
3670
  url: "/agents",
4320
3671
  ...options,
@@ -4324,19 +3675,16 @@ var postAgents = (options) => (options.client ?? client).post({
4324
3675
  }
4325
3676
  });
4326
3677
  var deleteApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).delete({
4327
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4328
3678
  security: [{ scheme: "bearer", type: "http" }],
4329
3679
  url: "/applications/{application_id}/email-templates/{slug}",
4330
3680
  ...options
4331
3681
  });
4332
3682
  var getApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).get({
4333
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4334
3683
  security: [{ scheme: "bearer", type: "http" }],
4335
3684
  url: "/applications/{application_id}/email-templates/{slug}",
4336
3685
  ...options
4337
3686
  });
4338
3687
  var patchApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).patch({
4339
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4340
3688
  security: [{ scheme: "bearer", type: "http" }],
4341
3689
  url: "/applications/{application_id}/email-templates/{slug}",
4342
3690
  ...options,
@@ -4346,7 +3694,6 @@ var patchApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options
4346
3694
  }
4347
3695
  });
4348
3696
  var patchPaymentMethodsByIdDefault = (options) => (options.client ?? client).patch({
4349
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4350
3697
  security: [{ scheme: "bearer", type: "http" }],
4351
3698
  url: "/payment-methods/{id}/default",
4352
3699
  ...options,
@@ -4361,7 +3708,6 @@ var postAgentsByIdExport = (options) => (options.client ?? client).post({
4361
3708
  ...options
4362
3709
  });
4363
3710
  var postUsersRegisterIsv = (options) => (options.client ?? client).post({
4364
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4365
3711
  security: [{ scheme: "bearer", type: "http" }],
4366
3712
  url: "/users/register_isv",
4367
3713
  ...options,
@@ -4371,31 +3717,21 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
4371
3717
  }
4372
3718
  });
4373
3719
  var deleteExtractionBatchesById = (options) => (options.client ?? client).delete({
4374
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4375
3720
  security: [{ scheme: "bearer", type: "http" }],
4376
3721
  url: "/extraction/batches/{id}",
4377
3722
  ...options
4378
3723
  });
4379
3724
  var getExtractionBatchesById = (options) => (options.client ?? client).get({
4380
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4381
3725
  security: [{ scheme: "bearer", type: "http" }],
4382
3726
  url: "/extraction/batches/{id}",
4383
3727
  ...options
4384
3728
  });
4385
3729
  var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
4386
- querySerializer: {
4387
- parameters: {
4388
- filter: { object: { style: "form" } },
4389
- page: { object: { style: "form" } },
4390
- fields: { object: { style: "form" } }
4391
- }
4392
- },
4393
3730
  security: [{ scheme: "bearer", type: "http" }],
4394
3731
  url: "/workspaces/{workspace_id}/extraction/exports",
4395
3732
  ...options
4396
3733
  });
4397
3734
  var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
4398
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4399
3735
  security: [{ scheme: "bearer", type: "http" }],
4400
3736
  url: "/workspaces/{workspace_id}/extraction/exports",
4401
3737
  ...options,
@@ -4405,13 +3741,11 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
4405
3741
  }
4406
3742
  });
4407
3743
  var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
4408
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4409
3744
  security: [{ scheme: "bearer", type: "http" }],
4410
3745
  url: "/workspace-memberships/{workspace_id}/{user_id}",
4411
3746
  ...options
4412
3747
  });
4413
3748
  var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
4414
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4415
3749
  security: [{ scheme: "bearer", type: "http" }],
4416
3750
  url: "/workspace-memberships/{workspace_id}/{user_id}",
4417
3751
  ...options,
@@ -4421,18 +3755,11 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
4421
3755
  }
4422
3756
  });
4423
3757
  var getExtractionConfigEnums = (options) => (options.client ?? client).get({
4424
- querySerializer: {
4425
- parameters: {
4426
- filter: { object: { style: "form" } },
4427
- fields: { object: { style: "form" } }
4428
- }
4429
- },
4430
3758
  security: [{ scheme: "bearer", type: "http" }],
4431
3759
  url: "/extraction/config-enums",
4432
3760
  ...options
4433
3761
  });
4434
3762
  var postExtractionConfigEnums = (options) => (options.client ?? client).post({
4435
- querySerializer: { parameters: { fields: { object: { style: "form" } } } },
4436
3763
  security: [{ scheme: "bearer", type: "http" }],
4437
3764
  url: "/extraction/config-enums",
4438
3765
  ...options,
@@ -4442,49 +3769,21 @@ var postExtractionConfigEnums = (options) => (options.client ?? client).post({
4442
3769
  }
4443
3770
  });
4444
3771
  var getExtractionDocumentsWorkspaceByWorkspaceIdTrashed = (options) => (options.client ?? client).get({
4445
- querySerializer: {
4446
- parameters: {
4447
- filter: { object: { style: "form" } },
4448
- page: { object: { style: "form" } },
4449
- fields: { object: { style: "form" } }
4450
- }
4451
- },
4452
3772
  security: [{ scheme: "bearer", type: "http" }],
4453
3773
  url: "/extraction/documents/workspace/{workspace_id}/trashed",
4454
3774
  ...options
4455
3775
  });
4456
3776
  var getCreditPackages = (options) => (options.client ?? client).get({
4457
- querySerializer: {
4458
- parameters: {
4459
- filter: { object: { style: "form" } },
4460
- page: { object: { style: "form" } },
4461
- fields: { object: { style: "form" } }
4462
- }
4463
- },
4464
3777
  security: [{ scheme: "bearer", type: "http" }],
4465
3778
  url: "/credit-packages",
4466
3779
  ...options
4467
3780
  });
4468
3781
  var getUsers = (options) => (options.client ?? client).get({
4469
- querySerializer: {
4470
- parameters: {
4471
- filter: { object: { style: "form" } },
4472
- page: { object: { style: "form" } },
4473
- fields: { object: { style: "form" } }
4474
- }
4475
- },
4476
3782
  security: [{ scheme: "bearer", type: "http" }],
4477
3783
  url: "/users",
4478
3784
  ...options
4479
3785
  });
4480
3786
  var getObjects = (options) => (options.client ?? client).get({
4481
- querySerializer: {
4482
- parameters: {
4483
- filter: { object: { style: "form" } },
4484
- page: { object: { style: "form" } },
4485
- fields: { object: { style: "form" } }
4486
- }
4487
- },
4488
3787
  security: [{ scheme: "bearer", type: "http" }],
4489
3788
  url: "/objects",
4490
3789
  ...options
@@ -5114,9 +4413,12 @@ export {
5114
4413
  deleteWebhookConfigsById,
5115
4414
  deleteWorkspaceMembershipsByWorkspaceIdByUserId,
5116
4415
  deleteWorkspacesById,
4416
+ getAgentVersionRevisions,
4417
+ getAgentVersionRevisionsById,
5117
4418
  getAgentVersions,
5118
4419
  getAgentVersionsById,
5119
4420
  getAgentVersionsByIdMetrics,
4421
+ getAgentVersionsByIdRevisions,
5120
4422
  getAgents,
5121
4423
  getAgentsById,
5122
4424
  getAgentsByIdSchemaVersions,
@@ -5255,6 +4557,7 @@ export {
5255
4557
  getWalletPlanPreview,
5256
4558
  getWatcherClaims,
5257
4559
  getWatcherClaimsById,
4560
+ getWatcherClaimsHistory,
5258
4561
  getWatcherClaimsStatus,
5259
4562
  getWatcherEvents,
5260
4563
  getWatcherEventsById,
@@ -5353,6 +4656,7 @@ export {
5353
4656
  patchWorkspaceMembershipsByWorkspaceIdByUserId,
5354
4657
  patchWorkspacesById,
5355
4658
  patchWorkspacesByIdAllocate,
4659
+ patchWorkspacesByIdPopulateHashes,
5356
4660
  patchWorkspacesByIdStorageSettings,
5357
4661
  postAgentTestResults,
5358
4662
  postAgentVersionComparisons,
@@ -5394,6 +4698,7 @@ export {
5394
4698
  postExtractionConfigEnums,
5395
4699
  postExtractionDocumentsBeginUpload,
5396
4700
  postExtractionDocumentsBulkReprocess,
4701
+ postExtractionDocumentsFindOrBeginUpload,
5397
4702
  postExtractionDocumentsUpload,
5398
4703
  postExtractionSchemaDiscoveries,
5399
4704
  postFieldTemplates,