@gpt-core/client 0.7.54 → 0.7.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +934 -7171
- package/dist/index.d.ts +934 -7171
- package/dist/index.js +557 -0
- package/dist/index.mjs +556 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -201,6 +201,7 @@ __export(index_exports, {
|
|
|
201
201
|
patchApplicationsByIdGrantCredits: () => patchApplicationsByIdGrantCredits,
|
|
202
202
|
patchBucketsById: () => patchBucketsById,
|
|
203
203
|
patchConfigsByKey: () => patchConfigsByKey,
|
|
204
|
+
patchExtractionDocumentsByIdCancel: () => patchExtractionDocumentsByIdCancel,
|
|
204
205
|
patchExtractionDocumentsByIdDismiss: () => patchExtractionDocumentsByIdDismiss,
|
|
205
206
|
patchExtractionDocumentsByIdDismissTraining: () => patchExtractionDocumentsByIdDismissTraining,
|
|
206
207
|
patchExtractionDocumentsByIdExclude: () => patchExtractionDocumentsByIdExclude,
|
|
@@ -471,6 +472,7 @@ __export(sdk_gen_exports, {
|
|
|
471
472
|
patchApplicationsByIdGrantCredits: () => patchApplicationsByIdGrantCredits,
|
|
472
473
|
patchBucketsById: () => patchBucketsById,
|
|
473
474
|
patchConfigsByKey: () => patchConfigsByKey,
|
|
475
|
+
patchExtractionDocumentsByIdCancel: () => patchExtractionDocumentsByIdCancel,
|
|
474
476
|
patchExtractionDocumentsByIdDismiss: () => patchExtractionDocumentsByIdDismiss,
|
|
475
477
|
patchExtractionDocumentsByIdDismissTraining: () => patchExtractionDocumentsByIdDismissTraining,
|
|
476
478
|
patchExtractionDocumentsByIdExclude: () => patchExtractionDocumentsByIdExclude,
|
|
@@ -1409,6 +1411,7 @@ var client = createClient(
|
|
|
1409
1411
|
|
|
1410
1412
|
// src/_internal/sdk.gen.ts
|
|
1411
1413
|
var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
1414
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1412
1415
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1413
1416
|
url: "/ai/search/advanced",
|
|
1414
1417
|
...options,
|
|
@@ -1418,21 +1421,31 @@ var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
|
1418
1421
|
}
|
|
1419
1422
|
});
|
|
1420
1423
|
var deleteExtractionDocumentsById = (options) => (options.client ?? client).delete({
|
|
1424
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1421
1425
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1422
1426
|
url: "/extraction/documents/{id}",
|
|
1423
1427
|
...options
|
|
1424
1428
|
});
|
|
1425
1429
|
var getExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
1430
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1426
1431
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1427
1432
|
url: "/extraction/documents/{id}",
|
|
1428
1433
|
...options
|
|
1429
1434
|
});
|
|
1430
1435
|
var getThreads = (options) => (options.client ?? client).get({
|
|
1436
|
+
querySerializer: {
|
|
1437
|
+
parameters: {
|
|
1438
|
+
filter: { object: { style: "form" } },
|
|
1439
|
+
page: { object: { style: "form" } },
|
|
1440
|
+
fields: { object: { style: "form" } }
|
|
1441
|
+
}
|
|
1442
|
+
},
|
|
1431
1443
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1432
1444
|
url: "/threads",
|
|
1433
1445
|
...options
|
|
1434
1446
|
});
|
|
1435
1447
|
var postThreads = (options) => (options.client ?? client).post({
|
|
1448
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1436
1449
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1437
1450
|
url: "/threads",
|
|
1438
1451
|
...options,
|
|
@@ -1441,27 +1454,47 @@ var postThreads = (options) => (options.client ?? client).post({
|
|
|
1441
1454
|
...options.headers
|
|
1442
1455
|
}
|
|
1443
1456
|
});
|
|
1457
|
+
var patchExtractionDocumentsByIdCancel = (options) => (options.client ?? client).patch({
|
|
1458
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1459
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
1460
|
+
url: "/extraction/documents/{id}/cancel",
|
|
1461
|
+
...options,
|
|
1462
|
+
headers: {
|
|
1463
|
+
"Content-Type": "application/vnd.api+json",
|
|
1464
|
+
...options.headers
|
|
1465
|
+
}
|
|
1466
|
+
});
|
|
1444
1467
|
var getExtractionSchemasWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1468
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1445
1469
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1446
1470
|
url: "/extraction/schemas/workspace/{workspace_id}",
|
|
1447
1471
|
...options
|
|
1448
1472
|
});
|
|
1449
1473
|
var getLlmAnalyticsCosts = (options) => (options.client ?? client).get({
|
|
1474
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1450
1475
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1451
1476
|
url: "/llm_analytics/costs",
|
|
1452
1477
|
...options
|
|
1453
1478
|
});
|
|
1454
1479
|
var getTrainingSessionsAgentsByAgentIdSessions = (options) => (options.client ?? client).get({
|
|
1480
|
+
querySerializer: {
|
|
1481
|
+
parameters: {
|
|
1482
|
+
filter: { object: { style: "form" } },
|
|
1483
|
+
fields: { object: { style: "form" } }
|
|
1484
|
+
}
|
|
1485
|
+
},
|
|
1455
1486
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1456
1487
|
url: "/training_sessions/agents/{agent_id}/sessions",
|
|
1457
1488
|
...options
|
|
1458
1489
|
});
|
|
1459
1490
|
var getAiChunksDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
1491
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1460
1492
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1461
1493
|
url: "/ai/chunks/document/{document_id}",
|
|
1462
1494
|
...options
|
|
1463
1495
|
});
|
|
1464
1496
|
var patchWalletCredits = (options) => (options.client ?? client).patch({
|
|
1497
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1465
1498
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1466
1499
|
url: "/wallet/credits",
|
|
1467
1500
|
...options,
|
|
@@ -1471,11 +1504,18 @@ var patchWalletCredits = (options) => (options.client ?? client).patch({
|
|
|
1471
1504
|
}
|
|
1472
1505
|
});
|
|
1473
1506
|
var getWorkspaces = (options) => (options.client ?? client).get({
|
|
1507
|
+
querySerializer: {
|
|
1508
|
+
parameters: {
|
|
1509
|
+
filter: { object: { style: "form" } },
|
|
1510
|
+
fields: { object: { style: "form" } }
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1474
1513
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1475
1514
|
url: "/workspaces",
|
|
1476
1515
|
...options
|
|
1477
1516
|
});
|
|
1478
1517
|
var postWorkspaces = (options) => (options.client ?? client).post({
|
|
1518
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1479
1519
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1480
1520
|
url: "/workspaces",
|
|
1481
1521
|
...options,
|
|
@@ -1485,11 +1525,13 @@ var postWorkspaces = (options) => (options.client ?? client).post({
|
|
|
1485
1525
|
}
|
|
1486
1526
|
});
|
|
1487
1527
|
var getDocumentsStats = (options) => (options.client ?? client).get({
|
|
1528
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1488
1529
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1489
1530
|
url: "/documents/stats",
|
|
1490
1531
|
...options
|
|
1491
1532
|
});
|
|
1492
1533
|
var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client).patch({
|
|
1534
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1493
1535
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1494
1536
|
url: "/extraction/documents/{id}/dismiss",
|
|
1495
1537
|
...options,
|
|
@@ -1499,6 +1541,7 @@ var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client
|
|
|
1499
1541
|
}
|
|
1500
1542
|
});
|
|
1501
1543
|
var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
1544
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1502
1545
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1503
1546
|
url: "/objects/register",
|
|
1504
1547
|
...options,
|
|
@@ -1508,11 +1551,13 @@ var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
|
1508
1551
|
}
|
|
1509
1552
|
});
|
|
1510
1553
|
var getLlmAnalyticsWorkspace = (options) => (options.client ?? client).get({
|
|
1554
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1511
1555
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1512
1556
|
url: "/llm_analytics/workspace",
|
|
1513
1557
|
...options
|
|
1514
1558
|
});
|
|
1515
1559
|
var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?? client).patch({
|
|
1560
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1516
1561
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1517
1562
|
url: "/extraction/documents/{id}/dismiss-training",
|
|
1518
1563
|
...options,
|
|
@@ -1522,16 +1567,24 @@ var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?
|
|
|
1522
1567
|
}
|
|
1523
1568
|
});
|
|
1524
1569
|
var getSearchIndexes = (options) => (options.client ?? client).get({
|
|
1570
|
+
querySerializer: {
|
|
1571
|
+
parameters: {
|
|
1572
|
+
filter: { object: { style: "form" } },
|
|
1573
|
+
fields: { object: { style: "form" } }
|
|
1574
|
+
}
|
|
1575
|
+
},
|
|
1525
1576
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1526
1577
|
url: "/search/indexes",
|
|
1527
1578
|
...options
|
|
1528
1579
|
});
|
|
1529
1580
|
var getCreditPackagesSlugBySlug = (options) => (options.client ?? client).get({
|
|
1581
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1530
1582
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1531
1583
|
url: "/credit-packages/slug/{slug}",
|
|
1532
1584
|
...options
|
|
1533
1585
|
});
|
|
1534
1586
|
var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
1587
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1535
1588
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1536
1589
|
url: "/extraction/batches",
|
|
1537
1590
|
...options,
|
|
@@ -1541,11 +1594,13 @@ var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
|
1541
1594
|
}
|
|
1542
1595
|
});
|
|
1543
1596
|
var getLlmAnalyticsPlatform = (options) => (options.client ?? client).get({
|
|
1597
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1544
1598
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1545
1599
|
url: "/llm_analytics/platform",
|
|
1546
1600
|
...options
|
|
1547
1601
|
});
|
|
1548
1602
|
var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client).patch({
|
|
1603
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1549
1604
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1550
1605
|
url: "/extraction/documents/{id}/exclude",
|
|
1551
1606
|
...options,
|
|
@@ -1555,6 +1610,7 @@ var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client
|
|
|
1555
1610
|
}
|
|
1556
1611
|
});
|
|
1557
1612
|
var postPayments = (options) => (options.client ?? client).post({
|
|
1613
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1558
1614
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1559
1615
|
url: "/payments",
|
|
1560
1616
|
...options,
|
|
@@ -1564,11 +1620,18 @@ var postPayments = (options) => (options.client ?? client).post({
|
|
|
1564
1620
|
}
|
|
1565
1621
|
});
|
|
1566
1622
|
var getExtractionBatchesWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1623
|
+
querySerializer: {
|
|
1624
|
+
parameters: {
|
|
1625
|
+
filter: { object: { style: "form" } },
|
|
1626
|
+
fields: { object: { style: "form" } }
|
|
1627
|
+
}
|
|
1628
|
+
},
|
|
1567
1629
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1568
1630
|
url: "/extraction/batches/workspace/{workspace_id}",
|
|
1569
1631
|
...options
|
|
1570
1632
|
});
|
|
1571
1633
|
var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1634
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1572
1635
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1573
1636
|
url: "/api_keys/{id}/revoke",
|
|
1574
1637
|
...options,
|
|
@@ -1578,16 +1641,19 @@ var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1578
1641
|
}
|
|
1579
1642
|
});
|
|
1580
1643
|
var getInvitationsConsumeByToken = (options) => (options.client ?? client).get({
|
|
1644
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1581
1645
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1582
1646
|
url: "/invitations/consume/{token}",
|
|
1583
1647
|
...options
|
|
1584
1648
|
});
|
|
1585
1649
|
var getExtractionDocumentsByIdStatus = (options) => (options.client ?? client).get({
|
|
1650
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1586
1651
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1587
1652
|
url: "/extraction/documents/{id}/status",
|
|
1588
1653
|
...options
|
|
1589
1654
|
});
|
|
1590
1655
|
var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client).patch({
|
|
1656
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1591
1657
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1592
1658
|
url: "/extraction/documents/{id}/status",
|
|
1593
1659
|
...options,
|
|
@@ -1597,6 +1663,7 @@ var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client)
|
|
|
1597
1663
|
}
|
|
1598
1664
|
});
|
|
1599
1665
|
var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? client).patch({
|
|
1666
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1600
1667
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1601
1668
|
url: "/extraction/documents/{id}/finish_upload",
|
|
1602
1669
|
...options,
|
|
@@ -1606,6 +1673,7 @@ var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? c
|
|
|
1606
1673
|
}
|
|
1607
1674
|
});
|
|
1608
1675
|
var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1676
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1609
1677
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1610
1678
|
url: "/workspaces/{id}/allocate",
|
|
1611
1679
|
...options,
|
|
@@ -1615,6 +1683,7 @@ var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch(
|
|
|
1615
1683
|
}
|
|
1616
1684
|
});
|
|
1617
1685
|
var postThreadsActive = (options) => (options.client ?? client).post({
|
|
1686
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1618
1687
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1619
1688
|
url: "/threads/active",
|
|
1620
1689
|
...options,
|
|
@@ -1624,6 +1693,7 @@ var postThreadsActive = (options) => (options.client ?? client).post({
|
|
|
1624
1693
|
}
|
|
1625
1694
|
});
|
|
1626
1695
|
var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1696
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1627
1697
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1628
1698
|
url: "/invitations/{id}/revoke",
|
|
1629
1699
|
...options,
|
|
@@ -1633,6 +1703,7 @@ var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1633
1703
|
}
|
|
1634
1704
|
});
|
|
1635
1705
|
var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options) => (options.client ?? client).post({
|
|
1706
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1636
1707
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1637
1708
|
url: "/workspaces/{workspace_id}/extraction/documents/dismiss-all-trained",
|
|
1638
1709
|
...options,
|
|
@@ -1642,11 +1713,19 @@ var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options)
|
|
|
1642
1713
|
}
|
|
1643
1714
|
});
|
|
1644
1715
|
var getConfigs = (options) => (options.client ?? client).get({
|
|
1716
|
+
querySerializer: {
|
|
1717
|
+
parameters: {
|
|
1718
|
+
filter: { object: { style: "form" } },
|
|
1719
|
+
page: { object: { style: "form" } },
|
|
1720
|
+
fields: { object: { style: "form" } }
|
|
1721
|
+
}
|
|
1722
|
+
},
|
|
1645
1723
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1646
1724
|
url: "/configs",
|
|
1647
1725
|
...options
|
|
1648
1726
|
});
|
|
1649
1727
|
var postConfigs = (options) => (options.client ?? client).post({
|
|
1728
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1650
1729
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1651
1730
|
url: "/configs",
|
|
1652
1731
|
...options,
|
|
@@ -1656,6 +1735,7 @@ var postConfigs = (options) => (options.client ?? client).post({
|
|
|
1656
1735
|
}
|
|
1657
1736
|
});
|
|
1658
1737
|
var postTokens = (options) => (options.client ?? client).post({
|
|
1738
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1659
1739
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1660
1740
|
url: "/tokens",
|
|
1661
1741
|
...options,
|
|
@@ -1665,6 +1745,7 @@ var postTokens = (options) => (options.client ?? client).post({
|
|
|
1665
1745
|
}
|
|
1666
1746
|
});
|
|
1667
1747
|
var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
|
|
1748
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1668
1749
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1669
1750
|
url: "/api_keys/{id}/set_budget",
|
|
1670
1751
|
...options,
|
|
@@ -1674,16 +1755,19 @@ var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
|
|
|
1674
1755
|
}
|
|
1675
1756
|
});
|
|
1676
1757
|
var deleteTrainingExamplesById = (options) => (options.client ?? client).delete({
|
|
1758
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1677
1759
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1678
1760
|
url: "/training_examples/{id}",
|
|
1679
1761
|
...options
|
|
1680
1762
|
});
|
|
1681
1763
|
var getTrainingExamplesById = (options) => (options.client ?? client).get({
|
|
1764
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1682
1765
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1683
1766
|
url: "/training_examples/{id}",
|
|
1684
1767
|
...options
|
|
1685
1768
|
});
|
|
1686
1769
|
var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
1770
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1687
1771
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1688
1772
|
url: "/training_examples/{id}",
|
|
1689
1773
|
...options,
|
|
@@ -1693,11 +1777,13 @@ var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
|
1693
1777
|
}
|
|
1694
1778
|
});
|
|
1695
1779
|
var deleteSearchSavedById = (options) => (options.client ?? client).delete({
|
|
1780
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1696
1781
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1697
1782
|
url: "/search/saved/{id}",
|
|
1698
1783
|
...options
|
|
1699
1784
|
});
|
|
1700
1785
|
var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
1786
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1701
1787
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1702
1788
|
url: "/users/{id}/admin/email",
|
|
1703
1789
|
...options,
|
|
@@ -1707,11 +1793,19 @@ var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
|
1707
1793
|
}
|
|
1708
1794
|
});
|
|
1709
1795
|
var getExtractionDocumentsWorkspaceByWorkspaceIdTrained = (options) => (options.client ?? client).get({
|
|
1796
|
+
querySerializer: {
|
|
1797
|
+
parameters: {
|
|
1798
|
+
filter: { object: { style: "form" } },
|
|
1799
|
+
page: { object: { style: "form" } },
|
|
1800
|
+
fields: { object: { style: "form" } }
|
|
1801
|
+
}
|
|
1802
|
+
},
|
|
1710
1803
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1711
1804
|
url: "/extraction/documents/workspace/{workspace_id}/trained",
|
|
1712
1805
|
...options
|
|
1713
1806
|
});
|
|
1714
1807
|
var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch({
|
|
1808
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1715
1809
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1716
1810
|
url: "/users/auth/reset-password",
|
|
1717
1811
|
...options,
|
|
@@ -1721,11 +1815,13 @@ var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1721
1815
|
}
|
|
1722
1816
|
});
|
|
1723
1817
|
var getBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
1818
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1724
1819
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1725
1820
|
url: "/buckets/{id}/stats",
|
|
1726
1821
|
...options
|
|
1727
1822
|
});
|
|
1728
1823
|
var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? client).patch({
|
|
1824
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1729
1825
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1730
1826
|
url: "/notification_methods/{id}/set_primary",
|
|
1731
1827
|
...options,
|
|
@@ -1735,11 +1831,13 @@ var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? cli
|
|
|
1735
1831
|
}
|
|
1736
1832
|
});
|
|
1737
1833
|
var getBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
1834
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1738
1835
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1739
1836
|
url: "/buckets/{id}/objects",
|
|
1740
1837
|
...options
|
|
1741
1838
|
});
|
|
1742
1839
|
var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
1840
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1743
1841
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1744
1842
|
url: "/invitations/{id}/resend",
|
|
1745
1843
|
...options,
|
|
@@ -1749,11 +1847,18 @@ var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
|
1749
1847
|
}
|
|
1750
1848
|
});
|
|
1751
1849
|
var getSearchSaved = (options) => (options.client ?? client).get({
|
|
1850
|
+
querySerializer: {
|
|
1851
|
+
parameters: {
|
|
1852
|
+
filter: { object: { style: "form" } },
|
|
1853
|
+
fields: { object: { style: "form" } }
|
|
1854
|
+
}
|
|
1855
|
+
},
|
|
1752
1856
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1753
1857
|
url: "/search/saved",
|
|
1754
1858
|
...options
|
|
1755
1859
|
});
|
|
1756
1860
|
var postSearchSaved = (options) => (options.client ?? client).post({
|
|
1861
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1757
1862
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1758
1863
|
url: "/search/saved",
|
|
1759
1864
|
...options,
|
|
@@ -1763,26 +1868,31 @@ var postSearchSaved = (options) => (options.client ?? client).post({
|
|
|
1763
1868
|
}
|
|
1764
1869
|
});
|
|
1765
1870
|
var deleteFieldTemplatesById = (options) => (options.client ?? client).delete({
|
|
1871
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1766
1872
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1767
1873
|
url: "/field_templates/{id}",
|
|
1768
1874
|
...options
|
|
1769
1875
|
});
|
|
1770
1876
|
var getFieldTemplatesById = (options) => (options.client ?? client).get({
|
|
1877
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1771
1878
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1772
1879
|
url: "/field_templates/{id}",
|
|
1773
1880
|
...options
|
|
1774
1881
|
});
|
|
1775
1882
|
var getWorkspacesByWorkspaceIdTrainingAnalytics = (options) => (options.client ?? client).get({
|
|
1883
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1776
1884
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1777
1885
|
url: "/workspaces/{workspace_id}/training/analytics",
|
|
1778
1886
|
...options
|
|
1779
1887
|
});
|
|
1780
1888
|
var getUserProfilesMe = (options) => (options.client ?? client).get({
|
|
1889
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1781
1890
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1782
1891
|
url: "/user_profiles/me",
|
|
1783
1892
|
...options
|
|
1784
1893
|
});
|
|
1785
1894
|
var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
1895
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1786
1896
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1787
1897
|
url: "/invitations/invite",
|
|
1788
1898
|
...options,
|
|
@@ -1792,11 +1902,18 @@ var postInvitationsInvite = (options) => (options.client ?? client).post({
|
|
|
1792
1902
|
}
|
|
1793
1903
|
});
|
|
1794
1904
|
var getAgentVersions = (options) => (options.client ?? client).get({
|
|
1905
|
+
querySerializer: {
|
|
1906
|
+
parameters: {
|
|
1907
|
+
filter: { object: { style: "form" } },
|
|
1908
|
+
fields: { object: { style: "form" } }
|
|
1909
|
+
}
|
|
1910
|
+
},
|
|
1795
1911
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1796
1912
|
url: "/agent_versions",
|
|
1797
1913
|
...options
|
|
1798
1914
|
});
|
|
1799
1915
|
var postAgentVersions = (options) => (options.client ?? client).post({
|
|
1916
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1800
1917
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1801
1918
|
url: "/agent_versions",
|
|
1802
1919
|
...options,
|
|
@@ -1806,16 +1923,19 @@ var postAgentVersions = (options) => (options.client ?? client).post({
|
|
|
1806
1923
|
}
|
|
1807
1924
|
});
|
|
1808
1925
|
var deleteWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
1926
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1809
1927
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1810
1928
|
url: "/webhook_configs/{id}",
|
|
1811
1929
|
...options
|
|
1812
1930
|
});
|
|
1813
1931
|
var getWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
1932
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1814
1933
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1815
1934
|
url: "/webhook_configs/{id}",
|
|
1816
1935
|
...options
|
|
1817
1936
|
});
|
|
1818
1937
|
var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
1938
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1819
1939
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1820
1940
|
url: "/webhook_configs/{id}",
|
|
1821
1941
|
...options,
|
|
@@ -1825,6 +1945,7 @@ var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
|
1825
1945
|
}
|
|
1826
1946
|
});
|
|
1827
1947
|
var postInvitationsAcceptByToken = (options) => (options.client ?? client).post({
|
|
1948
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1828
1949
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1829
1950
|
url: "/invitations/accept_by_token",
|
|
1830
1951
|
...options,
|
|
@@ -1834,11 +1955,13 @@ var postInvitationsAcceptByToken = (options) => (options.client ?? client).post(
|
|
|
1834
1955
|
}
|
|
1835
1956
|
});
|
|
1836
1957
|
var getExtractionBatchesByIdUploadUrls = (options) => (options.client ?? client).get({
|
|
1958
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1837
1959
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1838
1960
|
url: "/extraction/batches/{id}/upload-urls",
|
|
1839
1961
|
...options
|
|
1840
1962
|
});
|
|
1841
1963
|
var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
1964
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1842
1965
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1843
1966
|
url: "/documents/bulk_delete",
|
|
1844
1967
|
...options,
|
|
@@ -1848,11 +1971,13 @@ var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
|
1848
1971
|
}
|
|
1849
1972
|
});
|
|
1850
1973
|
var getAgentVersionsById = (options) => (options.client ?? client).get({
|
|
1974
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1851
1975
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1852
1976
|
url: "/agent_versions/{id}",
|
|
1853
1977
|
...options
|
|
1854
1978
|
});
|
|
1855
1979
|
var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
1980
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1856
1981
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1857
1982
|
url: "/ai/chunks/search",
|
|
1858
1983
|
...options,
|
|
@@ -1862,6 +1987,7 @@ var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
|
1862
1987
|
}
|
|
1863
1988
|
});
|
|
1864
1989
|
var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
1990
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1865
1991
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1866
1992
|
url: "/threads/{id}/messages",
|
|
1867
1993
|
...options,
|
|
@@ -1871,6 +1997,7 @@ var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
|
1871
1997
|
}
|
|
1872
1998
|
});
|
|
1873
1999
|
var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
2000
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1874
2001
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1875
2002
|
url: "/agents/clone_for_workspace",
|
|
1876
2003
|
...options,
|
|
@@ -1880,6 +2007,7 @@ var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
|
1880
2007
|
}
|
|
1881
2008
|
});
|
|
1882
2009
|
var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
2010
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1883
2011
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1884
2012
|
url: "/invitations/{id}/accept",
|
|
1885
2013
|
...options,
|
|
@@ -1889,21 +2017,25 @@ var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
|
1889
2017
|
}
|
|
1890
2018
|
});
|
|
1891
2019
|
var getCreditPackagesById = (options) => (options.client ?? client).get({
|
|
2020
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1892
2021
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1893
2022
|
url: "/credit-packages/{id}",
|
|
1894
2023
|
...options
|
|
1895
2024
|
});
|
|
1896
2025
|
var getUsersById = (options) => (options.client ?? client).get({
|
|
2026
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1897
2027
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1898
2028
|
url: "/users/{id}",
|
|
1899
2029
|
...options
|
|
1900
2030
|
});
|
|
1901
2031
|
var getExtractionResultsById = (options) => (options.client ?? client).get({
|
|
2032
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1902
2033
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1903
2034
|
url: "/extraction/results/{id}",
|
|
1904
2035
|
...options
|
|
1905
2036
|
});
|
|
1906
2037
|
var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
2038
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1907
2039
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1908
2040
|
url: "/agents/{id}/validate",
|
|
1909
2041
|
...options,
|
|
@@ -1913,6 +2045,7 @@ var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
|
1913
2045
|
}
|
|
1914
2046
|
});
|
|
1915
2047
|
var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
2048
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1916
2049
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1917
2050
|
url: "/webhook_configs/{id}/test",
|
|
1918
2051
|
...options,
|
|
@@ -1922,11 +2055,13 @@ var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
|
1922
2055
|
}
|
|
1923
2056
|
});
|
|
1924
2057
|
var getUsersMe = (options) => (options.client ?? client).get({
|
|
2058
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1925
2059
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1926
2060
|
url: "/users/me",
|
|
1927
2061
|
...options
|
|
1928
2062
|
});
|
|
1929
2063
|
var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post({
|
|
2064
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1930
2065
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1931
2066
|
url: "/users/auth/register_with_oidc",
|
|
1932
2067
|
...options,
|
|
@@ -1936,6 +2071,7 @@ var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post
|
|
|
1936
2071
|
}
|
|
1937
2072
|
});
|
|
1938
2073
|
var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
2074
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1939
2075
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1940
2076
|
url: "/tenants/{id}/credit",
|
|
1941
2077
|
...options,
|
|
@@ -1945,16 +2081,25 @@ var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
|
1945
2081
|
}
|
|
1946
2082
|
});
|
|
1947
2083
|
var getTransactionsById = (options) => (options.client ?? client).get({
|
|
2084
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1948
2085
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1949
2086
|
url: "/transactions/{id}",
|
|
1950
2087
|
...options
|
|
1951
2088
|
});
|
|
1952
2089
|
var getTenantMemberships = (options) => (options.client ?? client).get({
|
|
2090
|
+
querySerializer: {
|
|
2091
|
+
parameters: {
|
|
2092
|
+
filter: { object: { style: "form" } },
|
|
2093
|
+
page: { object: { style: "form" } },
|
|
2094
|
+
fields: { object: { style: "form" } }
|
|
2095
|
+
}
|
|
2096
|
+
},
|
|
1953
2097
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1954
2098
|
url: "/tenant-memberships",
|
|
1955
2099
|
...options
|
|
1956
2100
|
});
|
|
1957
2101
|
var postTenantMemberships = (options) => (options.client ?? client).post({
|
|
2102
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1958
2103
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1959
2104
|
url: "/tenant-memberships",
|
|
1960
2105
|
...options,
|
|
@@ -1973,6 +2118,7 @@ var postTrainingExamplesBulkDelete = (options) => (options.client ?? client).pos
|
|
|
1973
2118
|
}
|
|
1974
2119
|
});
|
|
1975
2120
|
var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client).patch({
|
|
2121
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1976
2122
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1977
2123
|
url: "/extraction/documents/{id}/include",
|
|
1978
2124
|
...options,
|
|
@@ -1982,21 +2128,25 @@ var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client
|
|
|
1982
2128
|
}
|
|
1983
2129
|
});
|
|
1984
2130
|
var getLlmAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
2131
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1985
2132
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1986
2133
|
url: "/llm_analytics/summary",
|
|
1987
2134
|
...options
|
|
1988
2135
|
});
|
|
1989
2136
|
var deleteExtractionSchemaFieldsById = (options) => (options.client ?? client).delete({
|
|
2137
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1990
2138
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1991
2139
|
url: "/extraction/schema-fields/{id}",
|
|
1992
2140
|
...options
|
|
1993
2141
|
});
|
|
1994
2142
|
var getExtractionSchemaFieldsById = (options) => (options.client ?? client).get({
|
|
2143
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1995
2144
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1996
2145
|
url: "/extraction/schema-fields/{id}",
|
|
1997
2146
|
...options
|
|
1998
2147
|
});
|
|
1999
2148
|
var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).patch({
|
|
2149
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2000
2150
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2001
2151
|
url: "/extraction/schema-fields/{id}",
|
|
2002
2152
|
...options,
|
|
@@ -2006,6 +2156,7 @@ var patchExtractionSchemaFieldsById = (options) => (options.client ?? client).pa
|
|
|
2006
2156
|
}
|
|
2007
2157
|
});
|
|
2008
2158
|
var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
2159
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2009
2160
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2010
2161
|
url: "/storage/sign_download",
|
|
2011
2162
|
...options,
|
|
@@ -2015,26 +2166,31 @@ var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
|
2015
2166
|
}
|
|
2016
2167
|
});
|
|
2017
2168
|
var deleteTrainingSessionsById = (options) => (options.client ?? client).delete({
|
|
2169
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2018
2170
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2019
2171
|
url: "/training_sessions/{id}",
|
|
2020
2172
|
...options
|
|
2021
2173
|
});
|
|
2022
2174
|
var getTrainingSessionsById = (options) => (options.client ?? client).get({
|
|
2175
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2023
2176
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2024
2177
|
url: "/training_sessions/{id}",
|
|
2025
2178
|
...options
|
|
2026
2179
|
});
|
|
2027
2180
|
var deleteNotificationMethodsById = (options) => (options.client ?? client).delete({
|
|
2181
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2028
2182
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2029
2183
|
url: "/notification_methods/{id}",
|
|
2030
2184
|
...options
|
|
2031
2185
|
});
|
|
2032
2186
|
var getNotificationMethodsById = (options) => (options.client ?? client).get({
|
|
2187
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2033
2188
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2034
2189
|
url: "/notification_methods/{id}",
|
|
2035
2190
|
...options
|
|
2036
2191
|
});
|
|
2037
2192
|
var patchNotificationMethodsById = (options) => (options.client ?? client).patch({
|
|
2193
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2038
2194
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2039
2195
|
url: "/notification_methods/{id}",
|
|
2040
2196
|
...options,
|
|
@@ -2044,31 +2200,64 @@ var patchNotificationMethodsById = (options) => (options.client ?? client).patch
|
|
|
2044
2200
|
}
|
|
2045
2201
|
});
|
|
2046
2202
|
var getWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
2203
|
+
querySerializer: {
|
|
2204
|
+
parameters: {
|
|
2205
|
+
filter: { object: { style: "form" } },
|
|
2206
|
+
page: { object: { style: "form" } },
|
|
2207
|
+
fields: { object: { style: "form" } }
|
|
2208
|
+
}
|
|
2209
|
+
},
|
|
2047
2210
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2048
2211
|
url: "/webhook_deliveries",
|
|
2049
2212
|
...options
|
|
2050
2213
|
});
|
|
2051
2214
|
var getSearch = (options) => (options.client ?? client).get({
|
|
2215
|
+
querySerializer: {
|
|
2216
|
+
parameters: {
|
|
2217
|
+
filter: { object: { style: "form" } },
|
|
2218
|
+
fields: { object: { style: "form" } }
|
|
2219
|
+
}
|
|
2220
|
+
},
|
|
2052
2221
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2053
2222
|
url: "/search",
|
|
2054
2223
|
...options
|
|
2055
2224
|
});
|
|
2056
2225
|
var getInvitations = (options) => (options.client ?? client).get({
|
|
2226
|
+
querySerializer: {
|
|
2227
|
+
parameters: {
|
|
2228
|
+
filter: { object: { style: "form" } },
|
|
2229
|
+
fields: { object: { style: "form" } }
|
|
2230
|
+
}
|
|
2231
|
+
},
|
|
2057
2232
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2058
2233
|
url: "/invitations",
|
|
2059
2234
|
...options
|
|
2060
2235
|
});
|
|
2061
2236
|
var getSearchSemantic = (options) => (options.client ?? client).get({
|
|
2237
|
+
querySerializer: {
|
|
2238
|
+
parameters: {
|
|
2239
|
+
filter: { object: { style: "form" } },
|
|
2240
|
+
fields: { object: { style: "form" } }
|
|
2241
|
+
}
|
|
2242
|
+
},
|
|
2062
2243
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2063
2244
|
url: "/search/semantic",
|
|
2064
2245
|
...options
|
|
2065
2246
|
});
|
|
2066
2247
|
var getMessages = (options) => (options.client ?? client).get({
|
|
2248
|
+
querySerializer: {
|
|
2249
|
+
parameters: {
|
|
2250
|
+
filter: { object: { style: "form" } },
|
|
2251
|
+
page: { object: { style: "form" } },
|
|
2252
|
+
fields: { object: { style: "form" } }
|
|
2253
|
+
}
|
|
2254
|
+
},
|
|
2067
2255
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2068
2256
|
url: "/messages",
|
|
2069
2257
|
...options
|
|
2070
2258
|
});
|
|
2071
2259
|
var postMessages = (options) => (options.client ?? client).post({
|
|
2260
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2072
2261
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2073
2262
|
url: "/messages",
|
|
2074
2263
|
...options,
|
|
@@ -2078,11 +2267,19 @@ var postMessages = (options) => (options.client ?? client).post({
|
|
|
2078
2267
|
}
|
|
2079
2268
|
});
|
|
2080
2269
|
var getNotificationPreferences = (options) => (options.client ?? client).get({
|
|
2270
|
+
querySerializer: {
|
|
2271
|
+
parameters: {
|
|
2272
|
+
filter: { object: { style: "form" } },
|
|
2273
|
+
page: { object: { style: "form" } },
|
|
2274
|
+
fields: { object: { style: "form" } }
|
|
2275
|
+
}
|
|
2276
|
+
},
|
|
2081
2277
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2082
2278
|
url: "/notification_preferences",
|
|
2083
2279
|
...options
|
|
2084
2280
|
});
|
|
2085
2281
|
var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
2282
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2086
2283
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2087
2284
|
url: "/notification_preferences",
|
|
2088
2285
|
...options,
|
|
@@ -2092,11 +2289,19 @@ var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
|
2092
2289
|
}
|
|
2093
2290
|
});
|
|
2094
2291
|
var getApplications = (options) => (options.client ?? client).get({
|
|
2292
|
+
querySerializer: {
|
|
2293
|
+
parameters: {
|
|
2294
|
+
filter: { object: { style: "form" } },
|
|
2295
|
+
page: { object: { style: "form" } },
|
|
2296
|
+
fields: { object: { style: "form" } }
|
|
2297
|
+
}
|
|
2298
|
+
},
|
|
2095
2299
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2096
2300
|
url: "/applications",
|
|
2097
2301
|
...options
|
|
2098
2302
|
});
|
|
2099
2303
|
var postApplications = (options) => (options.client ?? client).post({
|
|
2304
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2100
2305
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2101
2306
|
url: "/applications",
|
|
2102
2307
|
...options,
|
|
@@ -2115,16 +2320,19 @@ var postAgentsPredict = (options) => (options.client ?? client).post({
|
|
|
2115
2320
|
}
|
|
2116
2321
|
});
|
|
2117
2322
|
var deleteThreadsById = (options) => (options.client ?? client).delete({
|
|
2323
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2118
2324
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2119
2325
|
url: "/threads/{id}",
|
|
2120
2326
|
...options
|
|
2121
2327
|
});
|
|
2122
2328
|
var getThreadsById = (options) => (options.client ?? client).get({
|
|
2329
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2123
2330
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2124
2331
|
url: "/threads/{id}",
|
|
2125
2332
|
...options
|
|
2126
2333
|
});
|
|
2127
2334
|
var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
2335
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2128
2336
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2129
2337
|
url: "/threads/{id}",
|
|
2130
2338
|
...options,
|
|
@@ -2134,11 +2342,19 @@ var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
|
2134
2342
|
}
|
|
2135
2343
|
});
|
|
2136
2344
|
var getLlmAnalytics = (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
|
+
},
|
|
2137
2352
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2138
2353
|
url: "/llm_analytics",
|
|
2139
2354
|
...options
|
|
2140
2355
|
});
|
|
2141
2356
|
var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
2357
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2142
2358
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2143
2359
|
url: "/llm_analytics",
|
|
2144
2360
|
...options,
|
|
@@ -2148,6 +2364,7 @@ var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
|
2148
2364
|
}
|
|
2149
2365
|
});
|
|
2150
2366
|
var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch({
|
|
2367
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2151
2368
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2152
2369
|
url: "/users/{id}/reset-password",
|
|
2153
2370
|
...options,
|
|
@@ -2157,6 +2374,7 @@ var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch(
|
|
|
2157
2374
|
}
|
|
2158
2375
|
});
|
|
2159
2376
|
var postDocumentsPresignedUpload = (options) => (options.client ?? client).post({
|
|
2377
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2160
2378
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2161
2379
|
url: "/documents/presigned_upload",
|
|
2162
2380
|
...options,
|
|
@@ -2166,11 +2384,13 @@ var postDocumentsPresignedUpload = (options) => (options.client ?? client).post(
|
|
|
2166
2384
|
}
|
|
2167
2385
|
});
|
|
2168
2386
|
var getMessagesSearch = (options) => (options.client ?? client).get({
|
|
2387
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2169
2388
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2170
2389
|
url: "/messages/search",
|
|
2171
2390
|
...options
|
|
2172
2391
|
});
|
|
2173
2392
|
var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
2393
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2174
2394
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2175
2395
|
url: "/agents/{id}/teach",
|
|
2176
2396
|
...options,
|
|
@@ -2180,11 +2400,19 @@ var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
|
2180
2400
|
}
|
|
2181
2401
|
});
|
|
2182
2402
|
var getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue = (options) => (options.client ?? client).get({
|
|
2403
|
+
querySerializer: {
|
|
2404
|
+
parameters: {
|
|
2405
|
+
filter: { object: { style: "form" } },
|
|
2406
|
+
page: { object: { style: "form" } },
|
|
2407
|
+
fields: { object: { style: "form" } }
|
|
2408
|
+
}
|
|
2409
|
+
},
|
|
2183
2410
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2184
2411
|
url: "/extraction/documents/workspace/{workspace_id}/review_queue",
|
|
2185
2412
|
...options
|
|
2186
2413
|
});
|
|
2187
2414
|
var postExtractionDocumentsUpload = (options) => (options.client ?? client).post({
|
|
2415
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2188
2416
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2189
2417
|
url: "/extraction/documents/upload",
|
|
2190
2418
|
...options,
|
|
@@ -2194,6 +2422,7 @@ var postExtractionDocumentsUpload = (options) => (options.client ?? client).post
|
|
|
2194
2422
|
}
|
|
2195
2423
|
});
|
|
2196
2424
|
var patchExtractionResultsByIdCorrections = (options) => (options.client ?? client).patch({
|
|
2425
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2197
2426
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2198
2427
|
url: "/extraction/results/{id}/corrections",
|
|
2199
2428
|
...options,
|
|
@@ -2203,21 +2432,25 @@ var patchExtractionResultsByIdCorrections = (options) => (options.client ?? clie
|
|
|
2203
2432
|
}
|
|
2204
2433
|
});
|
|
2205
2434
|
var getExtractionResultsDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
2435
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2206
2436
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2207
2437
|
url: "/extraction/results/document/{document_id}",
|
|
2208
2438
|
...options
|
|
2209
2439
|
});
|
|
2210
2440
|
var deleteWorkspacesById = (options) => (options.client ?? client).delete({
|
|
2441
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2211
2442
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2212
2443
|
url: "/workspaces/{id}",
|
|
2213
2444
|
...options
|
|
2214
2445
|
});
|
|
2215
2446
|
var getWorkspacesById = (options) => (options.client ?? client).get({
|
|
2447
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2216
2448
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2217
2449
|
url: "/workspaces/{id}",
|
|
2218
2450
|
...options
|
|
2219
2451
|
});
|
|
2220
2452
|
var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
2453
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2221
2454
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2222
2455
|
url: "/workspaces/{id}",
|
|
2223
2456
|
...options,
|
|
@@ -2227,11 +2460,19 @@ var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
|
2227
2460
|
}
|
|
2228
2461
|
});
|
|
2229
2462
|
var getTenants = (options) => (options.client ?? client).get({
|
|
2463
|
+
querySerializer: {
|
|
2464
|
+
parameters: {
|
|
2465
|
+
filter: { object: { style: "form" } },
|
|
2466
|
+
page: { object: { style: "form" } },
|
|
2467
|
+
fields: { object: { style: "form" } }
|
|
2468
|
+
}
|
|
2469
|
+
},
|
|
2230
2470
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2231
2471
|
url: "/tenants",
|
|
2232
2472
|
...options
|
|
2233
2473
|
});
|
|
2234
2474
|
var postTenants = (options) => (options.client ?? client).post({
|
|
2475
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2235
2476
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2236
2477
|
url: "/tenants",
|
|
2237
2478
|
...options,
|
|
@@ -2241,6 +2482,7 @@ var postTenants = (options) => (options.client ?? client).post({
|
|
|
2241
2482
|
}
|
|
2242
2483
|
});
|
|
2243
2484
|
var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post({
|
|
2485
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2244
2486
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2245
2487
|
url: "/tenants/{id}/remove-storage",
|
|
2246
2488
|
...options,
|
|
@@ -2250,31 +2492,49 @@ var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post(
|
|
|
2250
2492
|
}
|
|
2251
2493
|
});
|
|
2252
2494
|
var getNotificationLogsById = (options) => (options.client ?? client).get({
|
|
2495
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2253
2496
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2254
2497
|
url: "/notification_logs/{id}",
|
|
2255
2498
|
...options
|
|
2256
2499
|
});
|
|
2257
2500
|
var getExtractionDocumentsByIdView = (options) => (options.client ?? client).get({
|
|
2501
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2258
2502
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2259
2503
|
url: "/extraction/documents/{id}/view",
|
|
2260
2504
|
...options
|
|
2261
2505
|
});
|
|
2262
2506
|
var getWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
2507
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2263
2508
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2264
2509
|
url: "/webhook_deliveries/{id}",
|
|
2265
2510
|
...options
|
|
2266
2511
|
});
|
|
2267
2512
|
var getAuditLogs = (options) => (options.client ?? client).get({
|
|
2513
|
+
querySerializer: {
|
|
2514
|
+
parameters: {
|
|
2515
|
+
filter: { object: { style: "form" } },
|
|
2516
|
+
page: { object: { style: "form" } },
|
|
2517
|
+
fields: { object: { style: "form" } }
|
|
2518
|
+
}
|
|
2519
|
+
},
|
|
2268
2520
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2269
2521
|
url: "/audit-logs",
|
|
2270
2522
|
...options
|
|
2271
2523
|
});
|
|
2272
2524
|
var getAiGraphEdges = (options) => (options.client ?? client).get({
|
|
2525
|
+
querySerializer: {
|
|
2526
|
+
parameters: {
|
|
2527
|
+
filter: { object: { style: "form" } },
|
|
2528
|
+
page: { object: { style: "form" } },
|
|
2529
|
+
fields: { object: { style: "form" } }
|
|
2530
|
+
}
|
|
2531
|
+
},
|
|
2273
2532
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2274
2533
|
url: "/ai/graph/edges",
|
|
2275
2534
|
...options
|
|
2276
2535
|
});
|
|
2277
2536
|
var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
2537
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2278
2538
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2279
2539
|
url: "/ai/graph/edges",
|
|
2280
2540
|
...options,
|
|
@@ -2284,11 +2544,19 @@ var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
|
2284
2544
|
}
|
|
2285
2545
|
});
|
|
2286
2546
|
var getTrainingExamples = (options) => (options.client ?? client).get({
|
|
2547
|
+
querySerializer: {
|
|
2548
|
+
parameters: {
|
|
2549
|
+
filter: { object: { style: "form" } },
|
|
2550
|
+
page: { object: { style: "form" } },
|
|
2551
|
+
fields: { object: { style: "form" } }
|
|
2552
|
+
}
|
|
2553
|
+
},
|
|
2287
2554
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2288
2555
|
url: "/training_examples",
|
|
2289
2556
|
...options
|
|
2290
2557
|
});
|
|
2291
2558
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
2559
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2292
2560
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2293
2561
|
url: "/training_examples",
|
|
2294
2562
|
...options,
|
|
@@ -2298,6 +2566,7 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
2298
2566
|
}
|
|
2299
2567
|
});
|
|
2300
2568
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
2569
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2301
2570
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2302
2571
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
2303
2572
|
...options
|
|
@@ -2308,11 +2577,18 @@ var getAgentsByIdTrainingStats = (options) => (options.client ?? client).get({
|
|
|
2308
2577
|
...options
|
|
2309
2578
|
});
|
|
2310
2579
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
2580
|
+
querySerializer: {
|
|
2581
|
+
parameters: {
|
|
2582
|
+
filter: { object: { style: "form" } },
|
|
2583
|
+
fields: { object: { style: "form" } }
|
|
2584
|
+
}
|
|
2585
|
+
},
|
|
2311
2586
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2312
2587
|
url: "/buckets",
|
|
2313
2588
|
...options
|
|
2314
2589
|
});
|
|
2315
2590
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
2591
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2316
2592
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2317
2593
|
url: "/buckets",
|
|
2318
2594
|
...options,
|
|
@@ -2322,16 +2598,19 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
2322
2598
|
}
|
|
2323
2599
|
});
|
|
2324
2600
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
2601
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2325
2602
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2326
2603
|
url: "/plans/{id}",
|
|
2327
2604
|
...options
|
|
2328
2605
|
});
|
|
2329
2606
|
var getTenantsByTenantIdStats = (options) => (options.client ?? client).get({
|
|
2607
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2330
2608
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2331
2609
|
url: "/tenants/{tenant_id}/stats",
|
|
2332
2610
|
...options
|
|
2333
2611
|
});
|
|
2334
2612
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
2613
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2335
2614
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2336
2615
|
url: "/wallet/addons",
|
|
2337
2616
|
...options,
|
|
@@ -2341,6 +2620,7 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
2341
2620
|
}
|
|
2342
2621
|
});
|
|
2343
2622
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
2623
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2344
2624
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2345
2625
|
url: "/users/auth/magic_link/login",
|
|
2346
2626
|
...options,
|
|
@@ -2350,11 +2630,19 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
2350
2630
|
}
|
|
2351
2631
|
});
|
|
2352
2632
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
2633
|
+
querySerializer: {
|
|
2634
|
+
parameters: {
|
|
2635
|
+
filter: { object: { style: "form" } },
|
|
2636
|
+
page: { object: { style: "form" } },
|
|
2637
|
+
fields: { object: { style: "form" } }
|
|
2638
|
+
}
|
|
2639
|
+
},
|
|
2353
2640
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2354
2641
|
url: "/api_keys",
|
|
2355
2642
|
...options
|
|
2356
2643
|
});
|
|
2357
2644
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
2645
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2358
2646
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2359
2647
|
url: "/api_keys",
|
|
2360
2648
|
...options,
|
|
@@ -2364,6 +2652,7 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
2364
2652
|
}
|
|
2365
2653
|
});
|
|
2366
2654
|
var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
2655
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2367
2656
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2368
2657
|
url: "/users/{id}/admin",
|
|
2369
2658
|
...options,
|
|
@@ -2373,16 +2662,19 @@ var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
|
2373
2662
|
}
|
|
2374
2663
|
});
|
|
2375
2664
|
var deleteAgentsById = (options) => (options.client ?? client).delete({
|
|
2665
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2376
2666
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2377
2667
|
url: "/agents/{id}",
|
|
2378
2668
|
...options
|
|
2379
2669
|
});
|
|
2380
2670
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
2671
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2381
2672
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2382
2673
|
url: "/agents/{id}",
|
|
2383
2674
|
...options
|
|
2384
2675
|
});
|
|
2385
2676
|
var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
2677
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2386
2678
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2387
2679
|
url: "/agents/{id}",
|
|
2388
2680
|
...options,
|
|
@@ -2392,16 +2684,19 @@ var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
|
2392
2684
|
}
|
|
2393
2685
|
});
|
|
2394
2686
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
2687
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2395
2688
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2396
2689
|
url: "/api_keys/{id}",
|
|
2397
2690
|
...options
|
|
2398
2691
|
});
|
|
2399
2692
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
2693
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2400
2694
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2401
2695
|
url: "/api_keys/{id}",
|
|
2402
2696
|
...options
|
|
2403
2697
|
});
|
|
2404
2698
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
2699
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2405
2700
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2406
2701
|
url: "/api_keys/{id}",
|
|
2407
2702
|
...options,
|
|
@@ -2420,11 +2715,19 @@ var postTrainingExamplesSearch = (options) => (options.client ?? client).post({
|
|
|
2420
2715
|
}
|
|
2421
2716
|
});
|
|
2422
2717
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
2718
|
+
querySerializer: {
|
|
2719
|
+
parameters: {
|
|
2720
|
+
filter: { object: { style: "form" } },
|
|
2721
|
+
page: { object: { style: "form" } },
|
|
2722
|
+
fields: { object: { style: "form" } }
|
|
2723
|
+
}
|
|
2724
|
+
},
|
|
2423
2725
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2424
2726
|
url: "/ai/conversations",
|
|
2425
2727
|
...options
|
|
2426
2728
|
});
|
|
2427
2729
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
2730
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2428
2731
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2429
2732
|
url: "/ai/conversations",
|
|
2430
2733
|
...options,
|
|
@@ -2434,6 +2737,7 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
2434
2737
|
}
|
|
2435
2738
|
});
|
|
2436
2739
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
2740
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2437
2741
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2438
2742
|
url: "/ai/search",
|
|
2439
2743
|
...options,
|
|
@@ -2443,11 +2747,13 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
2443
2747
|
}
|
|
2444
2748
|
});
|
|
2445
2749
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
2750
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2446
2751
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2447
2752
|
url: "/ai/graph/nodes/{id}",
|
|
2448
2753
|
...options
|
|
2449
2754
|
});
|
|
2450
2755
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
2756
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2451
2757
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2452
2758
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
2453
2759
|
...options,
|
|
@@ -2457,16 +2763,19 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
2457
2763
|
}
|
|
2458
2764
|
});
|
|
2459
2765
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
2766
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2460
2767
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2461
2768
|
url: "/applications/{id}",
|
|
2462
2769
|
...options
|
|
2463
2770
|
});
|
|
2464
2771
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
2772
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2465
2773
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2466
2774
|
url: "/applications/{id}",
|
|
2467
2775
|
...options
|
|
2468
2776
|
});
|
|
2469
2777
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
2778
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2470
2779
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2471
2780
|
url: "/applications/{id}",
|
|
2472
2781
|
...options,
|
|
@@ -2476,21 +2785,41 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
2476
2785
|
}
|
|
2477
2786
|
});
|
|
2478
2787
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
2788
|
+
querySerializer: {
|
|
2789
|
+
parameters: {
|
|
2790
|
+
filter: { object: { style: "form" } },
|
|
2791
|
+
fields: { object: { style: "form" } }
|
|
2792
|
+
}
|
|
2793
|
+
},
|
|
2479
2794
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2480
2795
|
url: "/search/health",
|
|
2481
2796
|
...options
|
|
2482
2797
|
});
|
|
2483
2798
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
2799
|
+
querySerializer: {
|
|
2800
|
+
parameters: {
|
|
2801
|
+
filter: { object: { style: "form" } },
|
|
2802
|
+
fields: { object: { style: "form" } }
|
|
2803
|
+
}
|
|
2804
|
+
},
|
|
2484
2805
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2485
2806
|
url: "/transactions",
|
|
2486
2807
|
...options
|
|
2487
2808
|
});
|
|
2488
2809
|
var getUserProfiles = (options) => (options.client ?? client).get({
|
|
2810
|
+
querySerializer: {
|
|
2811
|
+
parameters: {
|
|
2812
|
+
filter: { object: { style: "form" } },
|
|
2813
|
+
page: { object: { style: "form" } },
|
|
2814
|
+
fields: { object: { style: "form" } }
|
|
2815
|
+
}
|
|
2816
|
+
},
|
|
2489
2817
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2490
2818
|
url: "/user_profiles",
|
|
2491
2819
|
...options
|
|
2492
2820
|
});
|
|
2493
2821
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
2822
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2494
2823
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2495
2824
|
url: "/user_profiles",
|
|
2496
2825
|
...options,
|
|
@@ -2500,6 +2829,7 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
2500
2829
|
}
|
|
2501
2830
|
});
|
|
2502
2831
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
2832
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2503
2833
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2504
2834
|
url: "/users/{id}/confirm-email",
|
|
2505
2835
|
...options,
|
|
@@ -2509,11 +2839,13 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
2509
2839
|
}
|
|
2510
2840
|
});
|
|
2511
2841
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
2842
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2512
2843
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2513
2844
|
url: "/threads/search",
|
|
2514
2845
|
...options
|
|
2515
2846
|
});
|
|
2516
2847
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
2848
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2517
2849
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2518
2850
|
url: "/wallet/plan",
|
|
2519
2851
|
...options,
|
|
@@ -2523,11 +2855,13 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
2523
2855
|
}
|
|
2524
2856
|
});
|
|
2525
2857
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
2858
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2526
2859
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2527
2860
|
url: "/plans/slug/{slug}",
|
|
2528
2861
|
...options
|
|
2529
2862
|
});
|
|
2530
2863
|
var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client).patch({
|
|
2864
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2531
2865
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2532
2866
|
url: "/extraction/documents/{id}/restore",
|
|
2533
2867
|
...options,
|
|
@@ -2537,16 +2871,25 @@ var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client
|
|
|
2537
2871
|
}
|
|
2538
2872
|
});
|
|
2539
2873
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
2874
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2540
2875
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2541
2876
|
url: "/llm_analytics/{id}",
|
|
2542
2877
|
...options
|
|
2543
2878
|
});
|
|
2544
2879
|
var getExtractionSchemaFields = (options) => (options.client ?? client).get({
|
|
2880
|
+
querySerializer: {
|
|
2881
|
+
parameters: {
|
|
2882
|
+
filter: { object: { style: "form" } },
|
|
2883
|
+
page: { object: { style: "form" } },
|
|
2884
|
+
fields: { object: { style: "form" } }
|
|
2885
|
+
}
|
|
2886
|
+
},
|
|
2545
2887
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2546
2888
|
url: "/extraction/schema-fields",
|
|
2547
2889
|
...options
|
|
2548
2890
|
});
|
|
2549
2891
|
var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
2892
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2550
2893
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2551
2894
|
url: "/extraction/schema-fields",
|
|
2552
2895
|
...options,
|
|
@@ -2556,6 +2899,7 @@ var postExtractionSchemaFields = (options) => (options.client ?? client).post({
|
|
|
2556
2899
|
}
|
|
2557
2900
|
});
|
|
2558
2901
|
var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? client).patch({
|
|
2902
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2559
2903
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2560
2904
|
url: "/extraction/documents/{id}/mark_trained",
|
|
2561
2905
|
...options,
|
|
@@ -2565,6 +2909,7 @@ var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? cl
|
|
|
2565
2909
|
}
|
|
2566
2910
|
});
|
|
2567
2911
|
var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).patch({
|
|
2912
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2568
2913
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2569
2914
|
url: "/applications/{id}/grant-credits",
|
|
2570
2915
|
...options,
|
|
@@ -2574,16 +2919,29 @@ var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).
|
|
|
2574
2919
|
}
|
|
2575
2920
|
});
|
|
2576
2921
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
2922
|
+
querySerializer: {
|
|
2923
|
+
parameters: {
|
|
2924
|
+
filter: { object: { style: "form" } },
|
|
2925
|
+
fields: { object: { style: "form" } }
|
|
2926
|
+
}
|
|
2927
|
+
},
|
|
2577
2928
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2578
2929
|
url: "/search/status",
|
|
2579
2930
|
...options
|
|
2580
2931
|
});
|
|
2581
2932
|
var getTenantsByTenantIdWorkspaceStats = (options) => (options.client ?? client).get({
|
|
2933
|
+
querySerializer: {
|
|
2934
|
+
parameters: {
|
|
2935
|
+
filter: { object: { style: "form" } },
|
|
2936
|
+
fields: { object: { style: "form" } }
|
|
2937
|
+
}
|
|
2938
|
+
},
|
|
2582
2939
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2583
2940
|
url: "/tenants/{tenant_id}/workspace_stats",
|
|
2584
2941
|
...options
|
|
2585
2942
|
});
|
|
2586
2943
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
2944
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2587
2945
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2588
2946
|
url: "/api_keys/{id}/allocate",
|
|
2589
2947
|
...options,
|
|
@@ -2593,6 +2951,7 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
2593
2951
|
}
|
|
2594
2952
|
});
|
|
2595
2953
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
2954
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2596
2955
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2597
2956
|
url: "/users/auth/login",
|
|
2598
2957
|
...options,
|
|
@@ -2602,6 +2961,7 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
2602
2961
|
}
|
|
2603
2962
|
});
|
|
2604
2963
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
2964
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2605
2965
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2606
2966
|
url: "/ai/embed",
|
|
2607
2967
|
...options,
|
|
@@ -2611,11 +2971,18 @@ var postAiEmbed = (options) => (options.client ?? client).post({
|
|
|
2611
2971
|
}
|
|
2612
2972
|
});
|
|
2613
2973
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
2974
|
+
querySerializer: {
|
|
2975
|
+
parameters: {
|
|
2976
|
+
filter: { object: { style: "form" } },
|
|
2977
|
+
fields: { object: { style: "form" } }
|
|
2978
|
+
}
|
|
2979
|
+
},
|
|
2614
2980
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2615
2981
|
url: "/workspaces/mine",
|
|
2616
2982
|
...options
|
|
2617
2983
|
});
|
|
2618
2984
|
var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
2985
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2619
2986
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2620
2987
|
url: "/tenants/isv",
|
|
2621
2988
|
...options,
|
|
@@ -2625,6 +2992,7 @@ var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
|
2625
2992
|
}
|
|
2626
2993
|
});
|
|
2627
2994
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
2995
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2628
2996
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2629
2997
|
url: "/search/reindex",
|
|
2630
2998
|
...options,
|
|
@@ -2634,6 +3002,7 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
2634
3002
|
}
|
|
2635
3003
|
});
|
|
2636
3004
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
3005
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2637
3006
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2638
3007
|
url: "/extraction/results/{id}/regenerate",
|
|
2639
3008
|
...options,
|
|
@@ -2643,6 +3012,7 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
2643
3012
|
}
|
|
2644
3013
|
});
|
|
2645
3014
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
3015
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2646
3016
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2647
3017
|
url: "/users/auth/confirm",
|
|
2648
3018
|
...options,
|
|
@@ -2652,11 +3022,19 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
2652
3022
|
}
|
|
2653
3023
|
});
|
|
2654
3024
|
var getExtractionSchemas = (options) => (options.client ?? client).get({
|
|
3025
|
+
querySerializer: {
|
|
3026
|
+
parameters: {
|
|
3027
|
+
filter: { object: { style: "form" } },
|
|
3028
|
+
page: { object: { style: "form" } },
|
|
3029
|
+
fields: { object: { style: "form" } }
|
|
3030
|
+
}
|
|
3031
|
+
},
|
|
2655
3032
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2656
3033
|
url: "/extraction/schemas",
|
|
2657
3034
|
...options
|
|
2658
3035
|
});
|
|
2659
3036
|
var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
3037
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2660
3038
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2661
3039
|
url: "/extraction/schemas",
|
|
2662
3040
|
...options,
|
|
@@ -2666,11 +3044,18 @@ var postExtractionSchemas = (options) => (options.client ?? client).post({
|
|
|
2666
3044
|
}
|
|
2667
3045
|
});
|
|
2668
3046
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
3047
|
+
querySerializer: {
|
|
3048
|
+
parameters: {
|
|
3049
|
+
filter: { object: { style: "form" } },
|
|
3050
|
+
fields: { object: { style: "form" } }
|
|
3051
|
+
}
|
|
3052
|
+
},
|
|
2669
3053
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2670
3054
|
url: "/storage/stats",
|
|
2671
3055
|
...options
|
|
2672
3056
|
});
|
|
2673
3057
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
3058
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2674
3059
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2675
3060
|
url: "/tenants/{id}/buy-storage",
|
|
2676
3061
|
...options,
|
|
@@ -2680,11 +3065,19 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
2680
3065
|
}
|
|
2681
3066
|
});
|
|
2682
3067
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
3068
|
+
querySerializer: {
|
|
3069
|
+
parameters: {
|
|
3070
|
+
filter: { object: { style: "form" } },
|
|
3071
|
+
page: { object: { style: "form" } },
|
|
3072
|
+
fields: { object: { style: "form" } }
|
|
3073
|
+
}
|
|
3074
|
+
},
|
|
2683
3075
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2684
3076
|
url: "/workspace-memberships",
|
|
2685
3077
|
...options
|
|
2686
3078
|
});
|
|
2687
3079
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
3080
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2688
3081
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2689
3082
|
url: "/workspace-memberships",
|
|
2690
3083
|
...options,
|
|
@@ -2694,11 +3087,13 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
2694
3087
|
}
|
|
2695
3088
|
});
|
|
2696
3089
|
var getTenantsByTenantIdDocumentStats = (options) => (options.client ?? client).get({
|
|
3090
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2697
3091
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2698
3092
|
url: "/tenants/{tenant_id}/document_stats",
|
|
2699
3093
|
...options
|
|
2700
3094
|
});
|
|
2701
3095
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
3096
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2702
3097
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2703
3098
|
url: "/users/auth/magic_link/request",
|
|
2704
3099
|
...options,
|
|
@@ -2708,6 +3103,7 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
2708
3103
|
}
|
|
2709
3104
|
});
|
|
2710
3105
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
3106
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2711
3107
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2712
3108
|
url: "/users/auth/register",
|
|
2713
3109
|
...options,
|
|
@@ -2726,16 +3122,19 @@ var postTrainingExamplesBulk = (options) => (options.client ?? client).post({
|
|
|
2726
3122
|
}
|
|
2727
3123
|
});
|
|
2728
3124
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
3125
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2729
3126
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2730
3127
|
url: "/buckets/{id}",
|
|
2731
3128
|
...options
|
|
2732
3129
|
});
|
|
2733
3130
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
3131
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2734
3132
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2735
3133
|
url: "/buckets/{id}",
|
|
2736
3134
|
...options
|
|
2737
3135
|
});
|
|
2738
3136
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
3137
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2739
3138
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2740
3139
|
url: "/buckets/{id}",
|
|
2741
3140
|
...options,
|
|
@@ -2745,11 +3144,18 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
2745
3144
|
}
|
|
2746
3145
|
});
|
|
2747
3146
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
3147
|
+
querySerializer: {
|
|
3148
|
+
parameters: {
|
|
3149
|
+
filter: { object: { style: "form" } },
|
|
3150
|
+
fields: { object: { style: "form" } }
|
|
3151
|
+
}
|
|
3152
|
+
},
|
|
2748
3153
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2749
3154
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
2750
3155
|
...options
|
|
2751
3156
|
});
|
|
2752
3157
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
3158
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2753
3159
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2754
3160
|
url: "/extraction/documents/begin_upload",
|
|
2755
3161
|
...options,
|
|
@@ -2759,21 +3165,25 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
2759
3165
|
}
|
|
2760
3166
|
});
|
|
2761
3167
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
3168
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2762
3169
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2763
3170
|
url: "/ai/graph/edges/{id}",
|
|
2764
3171
|
...options
|
|
2765
3172
|
});
|
|
2766
3173
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
3174
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2767
3175
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2768
3176
|
url: "/tenants/{id}",
|
|
2769
3177
|
...options
|
|
2770
3178
|
});
|
|
2771
3179
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
3180
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2772
3181
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2773
3182
|
url: "/tenants/{id}",
|
|
2774
3183
|
...options
|
|
2775
3184
|
});
|
|
2776
3185
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
3186
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2777
3187
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2778
3188
|
url: "/tenants/{id}",
|
|
2779
3189
|
...options,
|
|
@@ -2783,11 +3193,19 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
2783
3193
|
}
|
|
2784
3194
|
});
|
|
2785
3195
|
var getPlans = (options) => (options.client ?? client).get({
|
|
3196
|
+
querySerializer: {
|
|
3197
|
+
parameters: {
|
|
3198
|
+
filter: { object: { style: "form" } },
|
|
3199
|
+
page: { object: { style: "form" } },
|
|
3200
|
+
fields: { object: { style: "form" } }
|
|
3201
|
+
}
|
|
3202
|
+
},
|
|
2786
3203
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2787
3204
|
url: "/plans",
|
|
2788
3205
|
...options
|
|
2789
3206
|
});
|
|
2790
3207
|
var patchExtractionSchemasByIdFields = (options) => (options.client ?? client).patch({
|
|
3208
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2791
3209
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2792
3210
|
url: "/extraction/schemas/{id}/fields",
|
|
2793
3211
|
...options,
|
|
@@ -2797,11 +3215,13 @@ var patchExtractionSchemasByIdFields = (options) => (options.client ?? client).p
|
|
|
2797
3215
|
}
|
|
2798
3216
|
});
|
|
2799
3217
|
var getExtractionSchemasById = (options) => (options.client ?? client).get({
|
|
3218
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2800
3219
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2801
3220
|
url: "/extraction/schemas/{id}",
|
|
2802
3221
|
...options
|
|
2803
3222
|
});
|
|
2804
3223
|
var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
3224
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2805
3225
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2806
3226
|
url: "/extraction/schemas/{id}",
|
|
2807
3227
|
...options,
|
|
@@ -2811,6 +3231,7 @@ var patchExtractionSchemasById = (options) => (options.client ?? client).patch({
|
|
|
2811
3231
|
}
|
|
2812
3232
|
});
|
|
2813
3233
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
3234
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2814
3235
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2815
3236
|
url: "/agents/{id}/test",
|
|
2816
3237
|
...options,
|
|
@@ -2820,16 +3241,24 @@ var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
|
2820
3241
|
}
|
|
2821
3242
|
});
|
|
2822
3243
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
3244
|
+
querySerializer: {
|
|
3245
|
+
parameters: {
|
|
3246
|
+
filter: { object: { style: "form" } },
|
|
3247
|
+
fields: { object: { style: "form" } }
|
|
3248
|
+
}
|
|
3249
|
+
},
|
|
2823
3250
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2824
3251
|
url: "/extraction/documents",
|
|
2825
3252
|
...options
|
|
2826
3253
|
});
|
|
2827
3254
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
3255
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2828
3256
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2829
3257
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2830
3258
|
...options
|
|
2831
3259
|
});
|
|
2832
3260
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
3261
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2833
3262
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2834
3263
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
2835
3264
|
...options,
|
|
@@ -2839,6 +3268,7 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
2839
3268
|
}
|
|
2840
3269
|
});
|
|
2841
3270
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
3271
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2842
3272
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2843
3273
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
2844
3274
|
...options,
|
|
@@ -2848,11 +3278,18 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
2848
3278
|
}
|
|
2849
3279
|
});
|
|
2850
3280
|
var getFieldTemplates = (options) => (options.client ?? client).get({
|
|
3281
|
+
querySerializer: {
|
|
3282
|
+
parameters: {
|
|
3283
|
+
filter: { object: { style: "form" } },
|
|
3284
|
+
fields: { object: { style: "form" } }
|
|
3285
|
+
}
|
|
3286
|
+
},
|
|
2851
3287
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2852
3288
|
url: "/field_templates",
|
|
2853
3289
|
...options
|
|
2854
3290
|
});
|
|
2855
3291
|
var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
3292
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2856
3293
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2857
3294
|
url: "/field_templates",
|
|
2858
3295
|
...options,
|
|
@@ -2862,11 +3299,19 @@ var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
|
2862
3299
|
}
|
|
2863
3300
|
});
|
|
2864
3301
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
3302
|
+
querySerializer: {
|
|
3303
|
+
parameters: {
|
|
3304
|
+
filter: { object: { style: "form" } },
|
|
3305
|
+
page: { object: { style: "form" } },
|
|
3306
|
+
fields: { object: { style: "form" } }
|
|
3307
|
+
}
|
|
3308
|
+
},
|
|
2865
3309
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2866
3310
|
url: "/ai/messages",
|
|
2867
3311
|
...options
|
|
2868
3312
|
});
|
|
2869
3313
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
3314
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2870
3315
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2871
3316
|
url: "/ai/messages",
|
|
2872
3317
|
...options,
|
|
@@ -2876,6 +3321,7 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
2876
3321
|
}
|
|
2877
3322
|
});
|
|
2878
3323
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
3324
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2879
3325
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2880
3326
|
url: "/storage/sign_upload",
|
|
2881
3327
|
...options,
|
|
@@ -2885,6 +3331,7 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
2885
3331
|
}
|
|
2886
3332
|
});
|
|
2887
3333
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
3334
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2888
3335
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2889
3336
|
url: "/webhook_deliveries/{id}/retry",
|
|
2890
3337
|
...options,
|
|
@@ -2894,11 +3341,19 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
2894
3341
|
}
|
|
2895
3342
|
});
|
|
2896
3343
|
var getNotificationMethods = (options) => (options.client ?? client).get({
|
|
3344
|
+
querySerializer: {
|
|
3345
|
+
parameters: {
|
|
3346
|
+
filter: { object: { style: "form" } },
|
|
3347
|
+
page: { object: { style: "form" } },
|
|
3348
|
+
fields: { object: { style: "form" } }
|
|
3349
|
+
}
|
|
3350
|
+
},
|
|
2897
3351
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2898
3352
|
url: "/notification_methods",
|
|
2899
3353
|
...options
|
|
2900
3354
|
});
|
|
2901
3355
|
var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
3356
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2902
3357
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2903
3358
|
url: "/notification_methods",
|
|
2904
3359
|
...options,
|
|
@@ -2908,6 +3363,7 @@ var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
|
2908
3363
|
}
|
|
2909
3364
|
});
|
|
2910
3365
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
3366
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2911
3367
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2912
3368
|
url: "/threads/{id}/summarize",
|
|
2913
3369
|
...options,
|
|
@@ -2917,6 +3373,7 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
2917
3373
|
}
|
|
2918
3374
|
});
|
|
2919
3375
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
3376
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2920
3377
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2921
3378
|
url: "/configs/{key}",
|
|
2922
3379
|
...options,
|
|
@@ -2926,6 +3383,7 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
2926
3383
|
}
|
|
2927
3384
|
});
|
|
2928
3385
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
3386
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2929
3387
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2930
3388
|
url: "/api_keys/{id}/rotate",
|
|
2931
3389
|
...options,
|
|
@@ -2935,6 +3393,7 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
2935
3393
|
}
|
|
2936
3394
|
});
|
|
2937
3395
|
var postExtractionResults = (options) => (options.client ?? client).post({
|
|
3396
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2938
3397
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2939
3398
|
url: "/extraction/results",
|
|
2940
3399
|
...options,
|
|
@@ -2944,6 +3403,7 @@ var postExtractionResults = (options) => (options.client ?? client).post({
|
|
|
2944
3403
|
}
|
|
2945
3404
|
});
|
|
2946
3405
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
3406
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2947
3407
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2948
3408
|
url: "/agents/{id}/clone",
|
|
2949
3409
|
...options,
|
|
@@ -2953,16 +3413,19 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
2953
3413
|
}
|
|
2954
3414
|
});
|
|
2955
3415
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
3416
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2956
3417
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2957
3418
|
url: "/ai/conversations/{id}",
|
|
2958
3419
|
...options
|
|
2959
3420
|
});
|
|
2960
3421
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
3422
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2961
3423
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2962
3424
|
url: "/ai/conversations/{id}",
|
|
2963
3425
|
...options
|
|
2964
3426
|
});
|
|
2965
3427
|
var postExtractionSchemasBulkCreate = (options) => (options.client ?? client).post({
|
|
3428
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2966
3429
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2967
3430
|
url: "/extraction/schemas/bulk_create",
|
|
2968
3431
|
...options,
|
|
@@ -2972,16 +3435,19 @@ var postExtractionSchemasBulkCreate = (options) => (options.client ?? client).po
|
|
|
2972
3435
|
}
|
|
2973
3436
|
});
|
|
2974
3437
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
3438
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2975
3439
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2976
3440
|
url: "/user_profiles/{id}",
|
|
2977
3441
|
...options
|
|
2978
3442
|
});
|
|
2979
3443
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
3444
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2980
3445
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2981
3446
|
url: "/user_profiles/{id}",
|
|
2982
3447
|
...options
|
|
2983
3448
|
});
|
|
2984
3449
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
3450
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2985
3451
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2986
3452
|
url: "/user_profiles/{id}",
|
|
2987
3453
|
...options,
|
|
@@ -2991,26 +3457,43 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
2991
3457
|
}
|
|
2992
3458
|
});
|
|
2993
3459
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
3460
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2994
3461
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2995
3462
|
url: "/objects/{id}",
|
|
2996
3463
|
...options
|
|
2997
3464
|
});
|
|
2998
3465
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
3466
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2999
3467
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3000
3468
|
url: "/objects/{id}",
|
|
3001
3469
|
...options
|
|
3002
3470
|
});
|
|
3003
3471
|
var getExtractionDocumentsWorkspaceByWorkspaceIdExcluded = (options) => (options.client ?? client).get({
|
|
3472
|
+
querySerializer: {
|
|
3473
|
+
parameters: {
|
|
3474
|
+
filter: { object: { style: "form" } },
|
|
3475
|
+
page: { object: { style: "form" } },
|
|
3476
|
+
fields: { object: { style: "form" } }
|
|
3477
|
+
}
|
|
3478
|
+
},
|
|
3004
3479
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3005
3480
|
url: "/extraction/documents/workspace/{workspace_id}/excluded",
|
|
3006
3481
|
...options
|
|
3007
3482
|
});
|
|
3008
3483
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
3484
|
+
querySerializer: {
|
|
3485
|
+
parameters: {
|
|
3486
|
+
filter: { object: { style: "form" } },
|
|
3487
|
+
page: { object: { style: "form" } },
|
|
3488
|
+
fields: { object: { style: "form" } }
|
|
3489
|
+
}
|
|
3490
|
+
},
|
|
3009
3491
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3010
3492
|
url: "/webhook_configs",
|
|
3011
3493
|
...options
|
|
3012
3494
|
});
|
|
3013
3495
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
3496
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3014
3497
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3015
3498
|
url: "/webhook_configs",
|
|
3016
3499
|
...options,
|
|
@@ -3020,6 +3503,7 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
3020
3503
|
}
|
|
3021
3504
|
});
|
|
3022
3505
|
var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post({
|
|
3506
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3023
3507
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3024
3508
|
url: "/agents/{id}/publish_version",
|
|
3025
3509
|
...options,
|
|
@@ -3029,6 +3513,7 @@ var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post(
|
|
|
3029
3513
|
}
|
|
3030
3514
|
});
|
|
3031
3515
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
3516
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3032
3517
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3033
3518
|
url: "/objects/bulk-destroy",
|
|
3034
3519
|
...options,
|
|
@@ -3038,21 +3523,30 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
3038
3523
|
}
|
|
3039
3524
|
});
|
|
3040
3525
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
3526
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3041
3527
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3042
3528
|
url: "/applications/by-slug/{slug}",
|
|
3043
3529
|
...options
|
|
3044
3530
|
});
|
|
3045
3531
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
3532
|
+
querySerializer: {
|
|
3533
|
+
parameters: {
|
|
3534
|
+
filter: { object: { style: "form" } },
|
|
3535
|
+
fields: { object: { style: "form" } }
|
|
3536
|
+
}
|
|
3537
|
+
},
|
|
3046
3538
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3047
3539
|
url: "/notification_logs",
|
|
3048
3540
|
...options
|
|
3049
3541
|
});
|
|
3050
3542
|
var getWallet = (options) => (options.client ?? client).get({
|
|
3543
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3051
3544
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3052
3545
|
url: "/wallet",
|
|
3053
3546
|
...options
|
|
3054
3547
|
});
|
|
3055
3548
|
var patchExtractionSchemasByIdActivate = (options) => (options.client ?? client).patch({
|
|
3549
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3056
3550
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3057
3551
|
url: "/extraction/schemas/{id}/activate",
|
|
3058
3552
|
...options,
|
|
@@ -3062,16 +3556,19 @@ var patchExtractionSchemasByIdActivate = (options) => (options.client ?? client)
|
|
|
3062
3556
|
}
|
|
3063
3557
|
});
|
|
3064
3558
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
3559
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3065
3560
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3066
3561
|
url: "/messages/{id}",
|
|
3067
3562
|
...options
|
|
3068
3563
|
});
|
|
3069
3564
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
3565
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3070
3566
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3071
3567
|
url: "/messages/{id}",
|
|
3072
3568
|
...options
|
|
3073
3569
|
});
|
|
3074
3570
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
3571
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3075
3572
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3076
3573
|
url: "/messages/{id}",
|
|
3077
3574
|
...options,
|
|
@@ -3081,26 +3578,36 @@ var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
|
3081
3578
|
}
|
|
3082
3579
|
});
|
|
3083
3580
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
3581
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3084
3582
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3085
3583
|
url: "/llm_analytics/usage",
|
|
3086
3584
|
...options
|
|
3087
3585
|
});
|
|
3088
3586
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
3587
|
+
querySerializer: {
|
|
3588
|
+
parameters: {
|
|
3589
|
+
filter: { object: { style: "form" } },
|
|
3590
|
+
fields: { object: { style: "form" } }
|
|
3591
|
+
}
|
|
3592
|
+
},
|
|
3089
3593
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3090
3594
|
url: "/search/stats",
|
|
3091
3595
|
...options
|
|
3092
3596
|
});
|
|
3093
3597
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
3598
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3094
3599
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3095
3600
|
url: "/notification_preferences/{id}",
|
|
3096
3601
|
...options
|
|
3097
3602
|
});
|
|
3098
3603
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
3604
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3099
3605
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3100
3606
|
url: "/notification_preferences/{id}",
|
|
3101
3607
|
...options
|
|
3102
3608
|
});
|
|
3103
3609
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
3610
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3104
3611
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3105
3612
|
url: "/notification_preferences/{id}",
|
|
3106
3613
|
...options,
|
|
@@ -3110,11 +3617,19 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
3110
3617
|
}
|
|
3111
3618
|
});
|
|
3112
3619
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
3620
|
+
querySerializer: {
|
|
3621
|
+
parameters: {
|
|
3622
|
+
filter: { object: { style: "form" } },
|
|
3623
|
+
page: { object: { style: "form" } },
|
|
3624
|
+
fields: { object: { style: "form" } }
|
|
3625
|
+
}
|
|
3626
|
+
},
|
|
3113
3627
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3114
3628
|
url: "/ai/graph/nodes",
|
|
3115
3629
|
...options
|
|
3116
3630
|
});
|
|
3117
3631
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
3632
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3118
3633
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3119
3634
|
url: "/ai/graph/nodes",
|
|
3120
3635
|
...options,
|
|
@@ -3124,11 +3639,19 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
3124
3639
|
}
|
|
3125
3640
|
});
|
|
3126
3641
|
var getAgents = (options) => (options.client ?? client).get({
|
|
3642
|
+
querySerializer: {
|
|
3643
|
+
parameters: {
|
|
3644
|
+
filter: { object: { style: "form" } },
|
|
3645
|
+
page: { object: { style: "form" } },
|
|
3646
|
+
fields: { object: { style: "form" } }
|
|
3647
|
+
}
|
|
3648
|
+
},
|
|
3127
3649
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3128
3650
|
url: "/agents",
|
|
3129
3651
|
...options
|
|
3130
3652
|
});
|
|
3131
3653
|
var postAgents = (options) => (options.client ?? client).post({
|
|
3654
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3132
3655
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3133
3656
|
url: "/agents",
|
|
3134
3657
|
...options,
|
|
@@ -3138,6 +3661,7 @@ var postAgents = (options) => (options.client ?? client).post({
|
|
|
3138
3661
|
}
|
|
3139
3662
|
});
|
|
3140
3663
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
3664
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3141
3665
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3142
3666
|
url: "/users/register_isv",
|
|
3143
3667
|
...options,
|
|
@@ -3147,16 +3671,25 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
3147
3671
|
}
|
|
3148
3672
|
});
|
|
3149
3673
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
3674
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3150
3675
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3151
3676
|
url: "/extraction/batches/{id}",
|
|
3152
3677
|
...options
|
|
3153
3678
|
});
|
|
3154
3679
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
3680
|
+
querySerializer: {
|
|
3681
|
+
parameters: {
|
|
3682
|
+
filter: { object: { style: "form" } },
|
|
3683
|
+
page: { object: { style: "form" } },
|
|
3684
|
+
fields: { object: { style: "form" } }
|
|
3685
|
+
}
|
|
3686
|
+
},
|
|
3155
3687
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3156
3688
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
3157
3689
|
...options
|
|
3158
3690
|
});
|
|
3159
3691
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
3692
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3160
3693
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3161
3694
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
3162
3695
|
...options,
|
|
@@ -3166,11 +3699,13 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
3166
3699
|
}
|
|
3167
3700
|
});
|
|
3168
3701
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
3702
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3169
3703
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3170
3704
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
3171
3705
|
...options
|
|
3172
3706
|
});
|
|
3173
3707
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
3708
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3174
3709
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3175
3710
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
3176
3711
|
...options,
|
|
@@ -3180,16 +3715,37 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
3180
3715
|
}
|
|
3181
3716
|
});
|
|
3182
3717
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
3718
|
+
querySerializer: {
|
|
3719
|
+
parameters: {
|
|
3720
|
+
filter: { object: { style: "form" } },
|
|
3721
|
+
page: { object: { style: "form" } },
|
|
3722
|
+
fields: { object: { style: "form" } }
|
|
3723
|
+
}
|
|
3724
|
+
},
|
|
3183
3725
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3184
3726
|
url: "/credit-packages",
|
|
3185
3727
|
...options
|
|
3186
3728
|
});
|
|
3187
3729
|
var getUsers = (options) => (options.client ?? client).get({
|
|
3730
|
+
querySerializer: {
|
|
3731
|
+
parameters: {
|
|
3732
|
+
filter: { object: { style: "form" } },
|
|
3733
|
+
page: { object: { style: "form" } },
|
|
3734
|
+
fields: { object: { style: "form" } }
|
|
3735
|
+
}
|
|
3736
|
+
},
|
|
3188
3737
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3189
3738
|
url: "/users",
|
|
3190
3739
|
...options
|
|
3191
3740
|
});
|
|
3192
3741
|
var getObjects = (options) => (options.client ?? client).get({
|
|
3742
|
+
querySerializer: {
|
|
3743
|
+
parameters: {
|
|
3744
|
+
filter: { object: { style: "form" } },
|
|
3745
|
+
page: { object: { style: "form" } },
|
|
3746
|
+
fields: { object: { style: "form" } }
|
|
3747
|
+
}
|
|
3748
|
+
},
|
|
3193
3749
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3194
3750
|
url: "/objects",
|
|
3195
3751
|
...options
|
|
@@ -3938,6 +4494,7 @@ var index_default = gptCore;
|
|
|
3938
4494
|
patchApplicationsByIdGrantCredits,
|
|
3939
4495
|
patchBucketsById,
|
|
3940
4496
|
patchConfigsByKey,
|
|
4497
|
+
patchExtractionDocumentsByIdCancel,
|
|
3941
4498
|
patchExtractionDocumentsByIdDismiss,
|
|
3942
4499
|
patchExtractionDocumentsByIdDismissTraining,
|
|
3943
4500
|
patchExtractionDocumentsByIdExclude,
|