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