@gpt-core/client 0.8.23 → 0.8.25

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