@gpt-core/client 0.8.20 → 0.8.22
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 +1275 -9172
- package/dist/index.d.ts +1275 -9172
- package/dist/index.js +710 -0
- package/dist/index.mjs +708 -0
- package/llms.txt +8 -0
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -228,6 +228,7 @@ __export(index_exports, {
|
|
|
228
228
|
getWorkspaces: () => getWorkspaces,
|
|
229
229
|
getWorkspacesById: () => getWorkspacesById,
|
|
230
230
|
getWorkspacesByIdMembers: () => getWorkspacesByIdMembers,
|
|
231
|
+
getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping: () => getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping,
|
|
231
232
|
getWorkspacesByWorkspaceIdExtractionExports: () => getWorkspacesByWorkspaceIdExtractionExports,
|
|
232
233
|
getWorkspacesByWorkspaceIdExtractionExportsById: () => getWorkspacesByWorkspaceIdExtractionExportsById,
|
|
233
234
|
getWorkspacesByWorkspaceIdTrainingAnalytics: () => getWorkspacesByWorkspaceIdTrainingAnalytics,
|
|
@@ -399,6 +400,7 @@ __export(index_exports, {
|
|
|
399
400
|
postWebhookDeliveriesByIdRetry: () => postWebhookDeliveriesByIdRetry,
|
|
400
401
|
postWorkspaceMemberships: () => postWorkspaceMemberships,
|
|
401
402
|
postWorkspaces: () => postWorkspaces,
|
|
403
|
+
postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping: () => postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping,
|
|
402
404
|
postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained: () => postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained,
|
|
403
405
|
postWorkspacesByWorkspaceIdExtractionExports: () => postWorkspacesByWorkspaceIdExtractionExports,
|
|
404
406
|
retryWithBackoff: () => retryWithBackoff,
|
|
@@ -588,6 +590,7 @@ __export(sdk_gen_exports, {
|
|
|
588
590
|
getWorkspaces: () => getWorkspaces,
|
|
589
591
|
getWorkspacesById: () => getWorkspacesById,
|
|
590
592
|
getWorkspacesByIdMembers: () => getWorkspacesByIdMembers,
|
|
593
|
+
getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping: () => getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping,
|
|
591
594
|
getWorkspacesByWorkspaceIdExtractionExports: () => getWorkspacesByWorkspaceIdExtractionExports,
|
|
592
595
|
getWorkspacesByWorkspaceIdExtractionExportsById: () => getWorkspacesByWorkspaceIdExtractionExportsById,
|
|
593
596
|
getWorkspacesByWorkspaceIdTrainingAnalytics: () => getWorkspacesByWorkspaceIdTrainingAnalytics,
|
|
@@ -755,6 +758,7 @@ __export(sdk_gen_exports, {
|
|
|
755
758
|
postWebhookDeliveriesByIdRetry: () => postWebhookDeliveriesByIdRetry,
|
|
756
759
|
postWorkspaceMemberships: () => postWorkspaceMemberships,
|
|
757
760
|
postWorkspaces: () => postWorkspaces,
|
|
761
|
+
postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping: () => postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping,
|
|
758
762
|
postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained: () => postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained,
|
|
759
763
|
postWorkspacesByWorkspaceIdExtractionExports: () => postWorkspacesByWorkspaceIdExtractionExports
|
|
760
764
|
});
|
|
@@ -1581,6 +1585,7 @@ var client = createClient(
|
|
|
1581
1585
|
|
|
1582
1586
|
// src/_internal/sdk.gen.ts
|
|
1583
1587
|
var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
1588
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1584
1589
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1585
1590
|
url: "/ai/search/advanced",
|
|
1586
1591
|
...options,
|
|
@@ -1590,21 +1595,31 @@ var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
|
1590
1595
|
}
|
|
1591
1596
|
});
|
|
1592
1597
|
var deleteExtractionDocumentsById = (options) => (options.client ?? client).delete({
|
|
1598
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1593
1599
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1594
1600
|
url: "/extraction/documents/{id}",
|
|
1595
1601
|
...options
|
|
1596
1602
|
});
|
|
1597
1603
|
var getExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
1604
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1598
1605
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1599
1606
|
url: "/extraction/documents/{id}",
|
|
1600
1607
|
...options
|
|
1601
1608
|
});
|
|
1602
1609
|
var getThreads = (options) => (options.client ?? client).get({
|
|
1610
|
+
querySerializer: {
|
|
1611
|
+
parameters: {
|
|
1612
|
+
filter: { object: { style: "form" } },
|
|
1613
|
+
page: { object: { style: "form" } },
|
|
1614
|
+
fields: { object: { style: "form" } }
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1603
1617
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1604
1618
|
url: "/threads",
|
|
1605
1619
|
...options
|
|
1606
1620
|
});
|
|
1607
1621
|
var postThreads = (options) => (options.client ?? client).post({
|
|
1622
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1608
1623
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1609
1624
|
url: "/threads",
|
|
1610
1625
|
...options,
|
|
@@ -1614,6 +1629,7 @@ var postThreads = (options) => (options.client ?? client).post({
|
|
|
1614
1629
|
}
|
|
1615
1630
|
});
|
|
1616
1631
|
var patchExtractionDocumentsByIdCancel = (options) => (options.client ?? client).patch({
|
|
1632
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1617
1633
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1618
1634
|
url: "/extraction/documents/{id}/cancel",
|
|
1619
1635
|
...options,
|
|
@@ -1623,26 +1639,36 @@ var patchExtractionDocumentsByIdCancel = (options) => (options.client ?? client)
|
|
|
1623
1639
|
}
|
|
1624
1640
|
});
|
|
1625
1641
|
var getLlmAnalyticsCosts = (options) => (options.client ?? client).get({
|
|
1642
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1626
1643
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1627
1644
|
url: "/llm_analytics/costs",
|
|
1628
1645
|
...options
|
|
1629
1646
|
});
|
|
1630
1647
|
var getTrainingSessionsAgentsByAgentIdSessions = (options) => (options.client ?? client).get({
|
|
1648
|
+
querySerializer: {
|
|
1649
|
+
parameters: {
|
|
1650
|
+
filter: { object: { style: "form" } },
|
|
1651
|
+
fields: { object: { style: "form" } }
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1631
1654
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1632
1655
|
url: "/training_sessions/agents/{agent_id}/sessions",
|
|
1633
1656
|
...options
|
|
1634
1657
|
});
|
|
1635
1658
|
var getWatcherEventsById = (options) => (options.client ?? client).get({
|
|
1659
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1636
1660
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1637
1661
|
url: "/watcher/events/{id}",
|
|
1638
1662
|
...options
|
|
1639
1663
|
});
|
|
1640
1664
|
var getAiChunksDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
1665
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1641
1666
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1642
1667
|
url: "/ai/chunks/document/{document_id}",
|
|
1643
1668
|
...options
|
|
1644
1669
|
});
|
|
1645
1670
|
var patchWalletCredits = (options) => (options.client ?? client).patch({
|
|
1671
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1646
1672
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1647
1673
|
url: "/wallet/credits",
|
|
1648
1674
|
...options,
|
|
@@ -1662,11 +1688,18 @@ var getApplicationsCurrent = (options) => (options.client ?? client).get({
|
|
|
1662
1688
|
...options
|
|
1663
1689
|
});
|
|
1664
1690
|
var getWorkspaces = (options) => (options.client ?? client).get({
|
|
1691
|
+
querySerializer: {
|
|
1692
|
+
parameters: {
|
|
1693
|
+
filter: { object: { style: "form" } },
|
|
1694
|
+
fields: { object: { style: "form" } }
|
|
1695
|
+
}
|
|
1696
|
+
},
|
|
1665
1697
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1666
1698
|
url: "/workspaces",
|
|
1667
1699
|
...options
|
|
1668
1700
|
});
|
|
1669
1701
|
var postWorkspaces = (options) => (options.client ?? client).post({
|
|
1702
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1670
1703
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1671
1704
|
url: "/workspaces",
|
|
1672
1705
|
...options,
|
|
@@ -1681,11 +1714,13 @@ var getAgentsByIdStats = (options) => (options.client ?? client).get({
|
|
|
1681
1714
|
...options
|
|
1682
1715
|
});
|
|
1683
1716
|
var getDocumentsStats = (options) => (options.client ?? client).get({
|
|
1717
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1684
1718
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1685
1719
|
url: "/documents/stats",
|
|
1686
1720
|
...options
|
|
1687
1721
|
});
|
|
1688
1722
|
var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client).patch({
|
|
1723
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1689
1724
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1690
1725
|
url: "/extraction/documents/{id}/dismiss",
|
|
1691
1726
|
...options,
|
|
@@ -1695,6 +1730,7 @@ var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client
|
|
|
1695
1730
|
}
|
|
1696
1731
|
});
|
|
1697
1732
|
var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
1733
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1698
1734
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1699
1735
|
url: "/objects/register",
|
|
1700
1736
|
...options,
|
|
@@ -1704,11 +1740,13 @@ var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
|
1704
1740
|
}
|
|
1705
1741
|
});
|
|
1706
1742
|
var getLlmAnalyticsWorkspace = (options) => (options.client ?? client).get({
|
|
1743
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1707
1744
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1708
1745
|
url: "/llm_analytics/workspace",
|
|
1709
1746
|
...options
|
|
1710
1747
|
});
|
|
1711
1748
|
var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?? client).patch({
|
|
1749
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1712
1750
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1713
1751
|
url: "/extraction/documents/{id}/dismiss-training",
|
|
1714
1752
|
...options,
|
|
@@ -1718,6 +1756,7 @@ var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?
|
|
|
1718
1756
|
}
|
|
1719
1757
|
});
|
|
1720
1758
|
var postAgentVersionComparisons = (options) => (options.client ?? client).post({
|
|
1759
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1721
1760
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1722
1761
|
url: "/agent_version_comparisons",
|
|
1723
1762
|
...options,
|
|
@@ -1727,6 +1766,12 @@ var postAgentVersionComparisons = (options) => (options.client ?? client).post({
|
|
|
1727
1766
|
}
|
|
1728
1767
|
});
|
|
1729
1768
|
var getSearchIndexes = (options) => (options.client ?? client).get({
|
|
1769
|
+
querySerializer: {
|
|
1770
|
+
parameters: {
|
|
1771
|
+
filter: { object: { style: "form" } },
|
|
1772
|
+
fields: { object: { style: "form" } }
|
|
1773
|
+
}
|
|
1774
|
+
},
|
|
1730
1775
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1731
1776
|
url: "/search/indexes",
|
|
1732
1777
|
...options
|
|
@@ -1741,11 +1786,13 @@ var postApplicationsByApplicationIdEmailTemplatesBySlugPreview = (options) => (o
|
|
|
1741
1786
|
}
|
|
1742
1787
|
});
|
|
1743
1788
|
var getCreditPackagesSlugBySlug = (options) => (options.client ?? client).get({
|
|
1789
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1744
1790
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1745
1791
|
url: "/credit-packages/slug/{slug}",
|
|
1746
1792
|
...options
|
|
1747
1793
|
});
|
|
1748
1794
|
var patchUsersAuthPasswordChange = (options) => (options.client ?? client).patch({
|
|
1795
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1749
1796
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1750
1797
|
url: "/users/auth/password/change",
|
|
1751
1798
|
...options,
|
|
@@ -1755,6 +1802,7 @@ var patchUsersAuthPasswordChange = (options) => (options.client ?? client).patch
|
|
|
1755
1802
|
}
|
|
1756
1803
|
});
|
|
1757
1804
|
var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
1805
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1758
1806
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1759
1807
|
url: "/extraction/batches",
|
|
1760
1808
|
...options,
|
|
@@ -1764,11 +1812,13 @@ var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
|
1764
1812
|
}
|
|
1765
1813
|
});
|
|
1766
1814
|
var getLlmAnalyticsPlatform = (options) => (options.client ?? client).get({
|
|
1815
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1767
1816
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1768
1817
|
url: "/llm_analytics/platform",
|
|
1769
1818
|
...options
|
|
1770
1819
|
});
|
|
1771
1820
|
var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client).patch({
|
|
1821
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1772
1822
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1773
1823
|
url: "/extraction/documents/{id}/exclude",
|
|
1774
1824
|
...options,
|
|
@@ -1778,6 +1828,7 @@ var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client
|
|
|
1778
1828
|
}
|
|
1779
1829
|
});
|
|
1780
1830
|
var postPayments = (options) => (options.client ?? client).post({
|
|
1831
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1781
1832
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1782
1833
|
url: "/payments",
|
|
1783
1834
|
...options,
|
|
@@ -1787,6 +1838,7 @@ var postPayments = (options) => (options.client ?? client).post({
|
|
|
1787
1838
|
}
|
|
1788
1839
|
});
|
|
1789
1840
|
var postAgentsImport = (options) => (options.client ?? client).post({
|
|
1841
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1790
1842
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1791
1843
|
url: "/agents/import",
|
|
1792
1844
|
...options,
|
|
@@ -1796,11 +1848,18 @@ var postAgentsImport = (options) => (options.client ?? client).post({
|
|
|
1796
1848
|
}
|
|
1797
1849
|
});
|
|
1798
1850
|
var getExtractionBatchesWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1851
|
+
querySerializer: {
|
|
1852
|
+
parameters: {
|
|
1853
|
+
filter: { object: { style: "form" } },
|
|
1854
|
+
fields: { object: { style: "form" } }
|
|
1855
|
+
}
|
|
1856
|
+
},
|
|
1799
1857
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1800
1858
|
url: "/extraction/batches/workspace/{workspace_id}",
|
|
1801
1859
|
...options
|
|
1802
1860
|
});
|
|
1803
1861
|
var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1862
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1804
1863
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1805
1864
|
url: "/api_keys/{id}/revoke",
|
|
1806
1865
|
...options,
|
|
@@ -1810,16 +1869,19 @@ var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1810
1869
|
}
|
|
1811
1870
|
});
|
|
1812
1871
|
var getInvitationsConsumeByToken = (options) => (options.client ?? client).get({
|
|
1872
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1813
1873
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1814
1874
|
url: "/invitations/consume/{token}",
|
|
1815
1875
|
...options
|
|
1816
1876
|
});
|
|
1817
1877
|
var getExtractionDocumentsByIdStatus = (options) => (options.client ?? client).get({
|
|
1878
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1818
1879
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1819
1880
|
url: "/extraction/documents/{id}/status",
|
|
1820
1881
|
...options
|
|
1821
1882
|
});
|
|
1822
1883
|
var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client).patch({
|
|
1884
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1823
1885
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1824
1886
|
url: "/extraction/documents/{id}/status",
|
|
1825
1887
|
...options,
|
|
@@ -1829,6 +1891,7 @@ var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client)
|
|
|
1829
1891
|
}
|
|
1830
1892
|
});
|
|
1831
1893
|
var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? client).patch({
|
|
1894
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1832
1895
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1833
1896
|
url: "/extraction/documents/{id}/finish_upload",
|
|
1834
1897
|
...options,
|
|
@@ -1843,6 +1906,7 @@ var getUsersMeDashboard = (options) => (options.client ?? client).get({
|
|
|
1843
1906
|
...options
|
|
1844
1907
|
});
|
|
1845
1908
|
var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1909
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1846
1910
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1847
1911
|
url: "/workspaces/{id}/allocate",
|
|
1848
1912
|
...options,
|
|
@@ -1852,6 +1916,7 @@ var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch(
|
|
|
1852
1916
|
}
|
|
1853
1917
|
});
|
|
1854
1918
|
var postThreadsActive = (options) => (options.client ?? client).post({
|
|
1919
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1855
1920
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1856
1921
|
url: "/threads/active",
|
|
1857
1922
|
...options,
|
|
@@ -1861,6 +1926,7 @@ var postThreadsActive = (options) => (options.client ?? client).post({
|
|
|
1861
1926
|
}
|
|
1862
1927
|
});
|
|
1863
1928
|
var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1929
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1864
1930
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1865
1931
|
url: "/invitations/{id}/revoke",
|
|
1866
1932
|
...options,
|
|
@@ -1870,11 +1936,18 @@ var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1870
1936
|
}
|
|
1871
1937
|
});
|
|
1872
1938
|
var getAiGraphNodesLabelByLabel = (options) => (options.client ?? client).get({
|
|
1939
|
+
querySerializer: {
|
|
1940
|
+
parameters: {
|
|
1941
|
+
filter: { object: { style: "form" } },
|
|
1942
|
+
fields: { object: { style: "form" } }
|
|
1943
|
+
}
|
|
1944
|
+
},
|
|
1873
1945
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1874
1946
|
url: "/ai/graph/nodes/label/{label}",
|
|
1875
1947
|
...options
|
|
1876
1948
|
});
|
|
1877
1949
|
var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options) => (options.client ?? client).post({
|
|
1950
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1878
1951
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1879
1952
|
url: "/workspaces/{workspace_id}/extraction/documents/dismiss-all-trained",
|
|
1880
1953
|
...options,
|
|
@@ -1884,11 +1957,19 @@ var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options)
|
|
|
1884
1957
|
}
|
|
1885
1958
|
});
|
|
1886
1959
|
var getConfigs = (options) => (options.client ?? client).get({
|
|
1960
|
+
querySerializer: {
|
|
1961
|
+
parameters: {
|
|
1962
|
+
filter: { object: { style: "form" } },
|
|
1963
|
+
page: { object: { style: "form" } },
|
|
1964
|
+
fields: { object: { style: "form" } }
|
|
1965
|
+
}
|
|
1966
|
+
},
|
|
1887
1967
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1888
1968
|
url: "/configs",
|
|
1889
1969
|
...options
|
|
1890
1970
|
});
|
|
1891
1971
|
var postConfigs = (options) => (options.client ?? client).post({
|
|
1972
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1892
1973
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1893
1974
|
url: "/configs",
|
|
1894
1975
|
...options,
|
|
@@ -1898,6 +1979,7 @@ var postConfigs = (options) => (options.client ?? client).post({
|
|
|
1898
1979
|
}
|
|
1899
1980
|
});
|
|
1900
1981
|
var patchWalletAutoTopUp = (options) => (options.client ?? client).patch({
|
|
1982
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1901
1983
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1902
1984
|
url: "/wallet/auto-top-up",
|
|
1903
1985
|
...options,
|
|
@@ -1907,6 +1989,7 @@ var patchWalletAutoTopUp = (options) => (options.client ?? client).patch({
|
|
|
1907
1989
|
}
|
|
1908
1990
|
});
|
|
1909
1991
|
var postTokens = (options) => (options.client ?? client).post({
|
|
1992
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1910
1993
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1911
1994
|
url: "/tokens",
|
|
1912
1995
|
...options,
|
|
@@ -1916,6 +1999,7 @@ var postTokens = (options) => (options.client ?? client).post({
|
|
|
1916
1999
|
}
|
|
1917
2000
|
});
|
|
1918
2001
|
var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
|
|
2002
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1919
2003
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1920
2004
|
url: "/api_keys/{id}/set_budget",
|
|
1921
2005
|
...options,
|
|
@@ -1925,16 +2009,19 @@ var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
|
|
|
1925
2009
|
}
|
|
1926
2010
|
});
|
|
1927
2011
|
var deleteTrainingExamplesById = (options) => (options.client ?? client).delete({
|
|
2012
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1928
2013
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1929
2014
|
url: "/training_examples/{id}",
|
|
1930
2015
|
...options
|
|
1931
2016
|
});
|
|
1932
2017
|
var getTrainingExamplesById = (options) => (options.client ?? client).get({
|
|
2018
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1933
2019
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1934
2020
|
url: "/training_examples/{id}",
|
|
1935
2021
|
...options
|
|
1936
2022
|
});
|
|
1937
2023
|
var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
2024
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1938
2025
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1939
2026
|
url: "/training_examples/{id}",
|
|
1940
2027
|
...options,
|
|
@@ -1944,11 +2031,13 @@ var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
|
1944
2031
|
}
|
|
1945
2032
|
});
|
|
1946
2033
|
var deleteSearchSavedById = (options) => (options.client ?? client).delete({
|
|
2034
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1947
2035
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1948
2036
|
url: "/search/saved/{id}",
|
|
1949
2037
|
...options
|
|
1950
2038
|
});
|
|
1951
2039
|
var patchSearchSavedById = (options) => (options.client ?? client).patch({
|
|
2040
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1952
2041
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1953
2042
|
url: "/search/saved/{id}",
|
|
1954
2043
|
...options,
|
|
@@ -1958,6 +2047,7 @@ var patchSearchSavedById = (options) => (options.client ?? client).patch({
|
|
|
1958
2047
|
}
|
|
1959
2048
|
});
|
|
1960
2049
|
var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
2050
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1961
2051
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1962
2052
|
url: "/users/{id}/admin/email",
|
|
1963
2053
|
...options,
|
|
@@ -1967,6 +2057,13 @@ var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
|
1967
2057
|
}
|
|
1968
2058
|
});
|
|
1969
2059
|
var getExtractionDocumentsWorkspaceByWorkspaceIdTrained = (options) => (options.client ?? client).get({
|
|
2060
|
+
querySerializer: {
|
|
2061
|
+
parameters: {
|
|
2062
|
+
filter: { object: { style: "form" } },
|
|
2063
|
+
page: { object: { style: "form" } },
|
|
2064
|
+
fields: { object: { style: "form" } }
|
|
2065
|
+
}
|
|
2066
|
+
},
|
|
1970
2067
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1971
2068
|
url: "/extraction/documents/workspace/{workspace_id}/trained",
|
|
1972
2069
|
...options
|
|
@@ -1977,6 +2074,7 @@ var getWatcherClaimsStatus = (options) => (options.client ?? client).get({
|
|
|
1977
2074
|
...options
|
|
1978
2075
|
});
|
|
1979
2076
|
var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch({
|
|
2077
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1980
2078
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1981
2079
|
url: "/users/auth/reset-password",
|
|
1982
2080
|
...options,
|
|
@@ -1986,16 +2084,25 @@ var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch(
|
|
|
1986
2084
|
}
|
|
1987
2085
|
});
|
|
1988
2086
|
var getBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
2087
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1989
2088
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1990
2089
|
url: "/buckets/{id}/stats",
|
|
1991
2090
|
...options
|
|
1992
2091
|
});
|
|
1993
2092
|
var getApplicationsByApplicationIdEmailTemplates = (options) => (options.client ?? client).get({
|
|
2093
|
+
querySerializer: {
|
|
2094
|
+
parameters: {
|
|
2095
|
+
filter: { object: { style: "form" } },
|
|
2096
|
+
page: { object: { style: "form" } },
|
|
2097
|
+
fields: { object: { style: "form" } }
|
|
2098
|
+
}
|
|
2099
|
+
},
|
|
1994
2100
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1995
2101
|
url: "/applications/{application_id}/email-templates",
|
|
1996
2102
|
...options
|
|
1997
2103
|
});
|
|
1998
2104
|
var postApplicationsByApplicationIdEmailTemplates = (options) => (options.client ?? client).post({
|
|
2105
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1999
2106
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2000
2107
|
url: "/applications/{application_id}/email-templates",
|
|
2001
2108
|
...options,
|
|
@@ -2005,6 +2112,7 @@ var postApplicationsByApplicationIdEmailTemplates = (options) => (options.client
|
|
|
2005
2112
|
}
|
|
2006
2113
|
});
|
|
2007
2114
|
var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? client).patch({
|
|
2115
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2008
2116
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2009
2117
|
url: "/notification_methods/{id}/set_primary",
|
|
2010
2118
|
...options,
|
|
@@ -2014,11 +2122,13 @@ var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? cli
|
|
|
2014
2122
|
}
|
|
2015
2123
|
});
|
|
2016
2124
|
var getBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
2125
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2017
2126
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2018
2127
|
url: "/buckets/{id}/objects",
|
|
2019
2128
|
...options
|
|
2020
2129
|
});
|
|
2021
2130
|
var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
2131
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2022
2132
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2023
2133
|
url: "/invitations/{id}/resend",
|
|
2024
2134
|
...options,
|
|
@@ -2028,6 +2138,7 @@ var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
|
2028
2138
|
}
|
|
2029
2139
|
});
|
|
2030
2140
|
var postExtractionSchemaDiscoveries = (options) => (options.client ?? client).post({
|
|
2141
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2031
2142
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2032
2143
|
url: "/extraction/schema_discoveries",
|
|
2033
2144
|
...options,
|
|
@@ -2037,11 +2148,18 @@ var postExtractionSchemaDiscoveries = (options) => (options.client ?? client).po
|
|
|
2037
2148
|
}
|
|
2038
2149
|
});
|
|
2039
2150
|
var getSearchSaved = (options) => (options.client ?? client).get({
|
|
2151
|
+
querySerializer: {
|
|
2152
|
+
parameters: {
|
|
2153
|
+
filter: { object: { style: "form" } },
|
|
2154
|
+
fields: { object: { style: "form" } }
|
|
2155
|
+
}
|
|
2156
|
+
},
|
|
2040
2157
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2041
2158
|
url: "/search/saved",
|
|
2042
2159
|
...options
|
|
2043
2160
|
});
|
|
2044
2161
|
var postSearchSaved = (options) => (options.client ?? client).post({
|
|
2162
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2045
2163
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2046
2164
|
url: "/search/saved",
|
|
2047
2165
|
...options,
|
|
@@ -2051,6 +2169,7 @@ var postSearchSaved = (options) => (options.client ?? client).post({
|
|
|
2051
2169
|
}
|
|
2052
2170
|
});
|
|
2053
2171
|
var patchNotificationMethodsByIdSendVerification = (options) => (options.client ?? client).patch({
|
|
2172
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2054
2173
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2055
2174
|
url: "/notification_methods/{id}/send_verification",
|
|
2056
2175
|
...options,
|
|
@@ -2060,41 +2179,59 @@ var patchNotificationMethodsByIdSendVerification = (options) => (options.client
|
|
|
2060
2179
|
}
|
|
2061
2180
|
});
|
|
2062
2181
|
var deleteFieldTemplatesById = (options) => (options.client ?? client).delete({
|
|
2182
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2063
2183
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2064
2184
|
url: "/field_templates/{id}",
|
|
2065
2185
|
...options
|
|
2066
2186
|
});
|
|
2067
2187
|
var getFieldTemplatesById = (options) => (options.client ?? client).get({
|
|
2188
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2068
2189
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2069
2190
|
url: "/field_templates/{id}",
|
|
2070
2191
|
...options
|
|
2071
2192
|
});
|
|
2072
2193
|
var getWorkspacesByWorkspaceIdTrainingAnalytics = (options) => (options.client ?? client).get({
|
|
2194
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2073
2195
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2074
2196
|
url: "/workspaces/{workspace_id}/training/analytics",
|
|
2075
2197
|
...options
|
|
2076
2198
|
});
|
|
2077
2199
|
var getUserProfilesMe = (options) => (options.client ?? client).get({
|
|
2200
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2078
2201
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2079
2202
|
url: "/user_profiles/me",
|
|
2080
2203
|
...options
|
|
2081
2204
|
});
|
|
2082
2205
|
var getExtractionSchemaDiscoveriesById = (options) => (options.client ?? client).get({
|
|
2206
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2083
2207
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2084
2208
|
url: "/extraction/schema_discoveries/{id}",
|
|
2085
2209
|
...options
|
|
2086
2210
|
});
|
|
2087
2211
|
var getApiKeysActive = (options) => (options.client ?? client).get({
|
|
2212
|
+
querySerializer: {
|
|
2213
|
+
parameters: {
|
|
2214
|
+
filter: { object: { style: "form" } },
|
|
2215
|
+
fields: { object: { style: "form" } }
|
|
2216
|
+
}
|
|
2217
|
+
},
|
|
2088
2218
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2089
2219
|
url: "/api_keys/active",
|
|
2090
2220
|
...options
|
|
2091
2221
|
});
|
|
2092
2222
|
var getAgentVersions = (options) => (options.client ?? client).get({
|
|
2223
|
+
querySerializer: {
|
|
2224
|
+
parameters: {
|
|
2225
|
+
filter: { object: { style: "form" } },
|
|
2226
|
+
fields: { object: { style: "form" } }
|
|
2227
|
+
}
|
|
2228
|
+
},
|
|
2093
2229
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2094
2230
|
url: "/agent_versions",
|
|
2095
2231
|
...options
|
|
2096
2232
|
});
|
|
2097
2233
|
var postAgentVersions = (options) => (options.client ?? client).post({
|
|
2234
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2098
2235
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2099
2236
|
url: "/agent_versions",
|
|
2100
2237
|
...options,
|
|
@@ -2104,6 +2241,7 @@ var postAgentVersions = (options) => (options.client ?? client).post({
|
|
|
2104
2241
|
}
|
|
2105
2242
|
});
|
|
2106
2243
|
var patchInvitationsByIdAcceptByUser = (options) => (options.client ?? client).patch({
|
|
2244
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2107
2245
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2108
2246
|
url: "/invitations/{id}/accept-by-user",
|
|
2109
2247
|
...options,
|
|
@@ -2113,6 +2251,7 @@ var patchInvitationsByIdAcceptByUser = (options) => (options.client ?? client).p
|
|
|
2113
2251
|
}
|
|
2114
2252
|
});
|
|
2115
2253
|
var getPermissionsMeta = (options) => (options.client ?? client).get({
|
|
2254
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2116
2255
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2117
2256
|
url: "/permissions/meta",
|
|
2118
2257
|
...options
|
|
@@ -2127,21 +2266,30 @@ var postApplicationsByApplicationIdEmailTemplatesBySlugTest = (options) => (opti
|
|
|
2127
2266
|
}
|
|
2128
2267
|
});
|
|
2129
2268
|
var getSearchSuggest = (options) => (options.client ?? client).get({
|
|
2269
|
+
querySerializer: {
|
|
2270
|
+
parameters: {
|
|
2271
|
+
filter: { object: { style: "form" } },
|
|
2272
|
+
fields: { object: { style: "form" } }
|
|
2273
|
+
}
|
|
2274
|
+
},
|
|
2130
2275
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2131
2276
|
url: "/search/suggest",
|
|
2132
2277
|
...options
|
|
2133
2278
|
});
|
|
2134
2279
|
var deleteWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
2280
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2135
2281
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2136
2282
|
url: "/webhook_configs/{id}",
|
|
2137
2283
|
...options
|
|
2138
2284
|
});
|
|
2139
2285
|
var getWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
2286
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2140
2287
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2141
2288
|
url: "/webhook_configs/{id}",
|
|
2142
2289
|
...options
|
|
2143
2290
|
});
|
|
2144
2291
|
var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
2292
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2145
2293
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2146
2294
|
url: "/webhook_configs/{id}",
|
|
2147
2295
|
...options,
|
|
@@ -2160,6 +2308,7 @@ var postWebhookConfigsBulkEnable = (options) => (options.client ?? client).post(
|
|
|
2160
2308
|
}
|
|
2161
2309
|
});
|
|
2162
2310
|
var postInvitationsAcceptByToken = (options) => (options.client ?? client).post({
|
|
2311
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2163
2312
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2164
2313
|
url: "/invitations/accept_by_token",
|
|
2165
2314
|
...options,
|
|
@@ -2169,16 +2318,19 @@ var postInvitationsAcceptByToken = (options) => (options.client ?? client).post(
|
|
|
2169
2318
|
}
|
|
2170
2319
|
});
|
|
2171
2320
|
var deleteAiMessagesById = (options) => (options.client ?? client).delete({
|
|
2321
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2172
2322
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2173
2323
|
url: "/ai/messages/{id}",
|
|
2174
2324
|
...options
|
|
2175
2325
|
});
|
|
2176
2326
|
var getExtractionBatchesByIdUploadUrls = (options) => (options.client ?? client).get({
|
|
2327
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2177
2328
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2178
2329
|
url: "/extraction/batches/{id}/upload-urls",
|
|
2179
2330
|
...options
|
|
2180
2331
|
});
|
|
2181
2332
|
var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
2333
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2182
2334
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2183
2335
|
url: "/documents/bulk_delete",
|
|
2184
2336
|
...options,
|
|
@@ -2188,16 +2340,19 @@ var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
|
2188
2340
|
}
|
|
2189
2341
|
});
|
|
2190
2342
|
var deleteAgentVersionsById = (options) => (options.client ?? client).delete({
|
|
2343
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2191
2344
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2192
2345
|
url: "/agent_versions/{id}",
|
|
2193
2346
|
...options
|
|
2194
2347
|
});
|
|
2195
2348
|
var getAgentVersionsById = (options) => (options.client ?? client).get({
|
|
2349
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2196
2350
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2197
2351
|
url: "/agent_versions/{id}",
|
|
2198
2352
|
...options
|
|
2199
2353
|
});
|
|
2200
2354
|
var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
2355
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2201
2356
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2202
2357
|
url: "/ai/chunks/search",
|
|
2203
2358
|
...options,
|
|
@@ -2207,11 +2362,13 @@ var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
|
2207
2362
|
}
|
|
2208
2363
|
});
|
|
2209
2364
|
var getThreadsByIdMessages = (options) => (options.client ?? client).get({
|
|
2365
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2210
2366
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2211
2367
|
url: "/threads/{id}/messages",
|
|
2212
2368
|
...options
|
|
2213
2369
|
});
|
|
2214
2370
|
var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
2371
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2215
2372
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2216
2373
|
url: "/threads/{id}/messages",
|
|
2217
2374
|
...options,
|
|
@@ -2221,6 +2378,7 @@ var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
|
2221
2378
|
}
|
|
2222
2379
|
});
|
|
2223
2380
|
var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
2381
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2224
2382
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2225
2383
|
url: "/agents/clone_for_workspace",
|
|
2226
2384
|
...options,
|
|
@@ -2230,6 +2388,7 @@ var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
|
2230
2388
|
}
|
|
2231
2389
|
});
|
|
2232
2390
|
var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
2391
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2233
2392
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2234
2393
|
url: "/invitations/{id}/accept",
|
|
2235
2394
|
...options,
|
|
@@ -2239,21 +2398,25 @@ var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
|
2239
2398
|
}
|
|
2240
2399
|
});
|
|
2241
2400
|
var getCreditPackagesById = (options) => (options.client ?? client).get({
|
|
2401
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2242
2402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2243
2403
|
url: "/credit-packages/{id}",
|
|
2244
2404
|
...options
|
|
2245
2405
|
});
|
|
2246
2406
|
var deleteUsersById = (options) => (options.client ?? client).delete({
|
|
2407
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2247
2408
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2248
2409
|
url: "/users/{id}",
|
|
2249
2410
|
...options
|
|
2250
2411
|
});
|
|
2251
2412
|
var getUsersById = (options) => (options.client ?? client).get({
|
|
2413
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2252
2414
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2253
2415
|
url: "/users/{id}",
|
|
2254
2416
|
...options
|
|
2255
2417
|
});
|
|
2256
2418
|
var getExtractionResultsById = (options) => (options.client ?? client).get({
|
|
2419
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2257
2420
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2258
2421
|
url: "/extraction/results/{id}",
|
|
2259
2422
|
...options
|
|
@@ -2264,6 +2427,7 @@ var getWebhookDeliveriesStats = (options) => (options.client ?? client).get({
|
|
|
2264
2427
|
...options
|
|
2265
2428
|
});
|
|
2266
2429
|
var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
2430
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2267
2431
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2268
2432
|
url: "/agents/{id}/validate",
|
|
2269
2433
|
...options,
|
|
@@ -2273,6 +2437,7 @@ var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
|
2273
2437
|
}
|
|
2274
2438
|
});
|
|
2275
2439
|
var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
2440
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2276
2441
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2277
2442
|
url: "/webhook_configs/{id}/test",
|
|
2278
2443
|
...options,
|
|
@@ -2282,11 +2447,13 @@ var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
|
2282
2447
|
}
|
|
2283
2448
|
});
|
|
2284
2449
|
var getUsersMe = (options) => (options.client ?? client).get({
|
|
2450
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2285
2451
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2286
2452
|
url: "/users/me",
|
|
2287
2453
|
...options
|
|
2288
2454
|
});
|
|
2289
2455
|
var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post({
|
|
2456
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2290
2457
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2291
2458
|
url: "/users/auth/register_with_oidc",
|
|
2292
2459
|
...options,
|
|
@@ -2310,6 +2477,7 @@ var postAgentsByIdSchemaVersions = (options) => (options.client ?? client).post(
|
|
|
2310
2477
|
}
|
|
2311
2478
|
});
|
|
2312
2479
|
var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
2480
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2313
2481
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2314
2482
|
url: "/tenants/{id}/credit",
|
|
2315
2483
|
...options,
|
|
@@ -2319,6 +2487,7 @@ var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
|
2319
2487
|
}
|
|
2320
2488
|
});
|
|
2321
2489
|
var getTransactionsById = (options) => (options.client ?? client).get({
|
|
2490
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2322
2491
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2323
2492
|
url: "/transactions/{id}",
|
|
2324
2493
|
...options
|
|
@@ -2329,11 +2498,19 @@ var getUsersMeTenants = (options) => (options.client ?? client).get({
|
|
|
2329
2498
|
...options
|
|
2330
2499
|
});
|
|
2331
2500
|
var getTenantMemberships = (options) => (options.client ?? client).get({
|
|
2501
|
+
querySerializer: {
|
|
2502
|
+
parameters: {
|
|
2503
|
+
filter: { object: { style: "form" } },
|
|
2504
|
+
page: { object: { style: "form" } },
|
|
2505
|
+
fields: { object: { style: "form" } }
|
|
2506
|
+
}
|
|
2507
|
+
},
|
|
2332
2508
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2333
2509
|
url: "/tenant-memberships",
|
|
2334
2510
|
...options
|
|
2335
2511
|
});
|
|
2336
2512
|
var postTenantMemberships = (options) => (options.client ?? client).post({
|
|
2513
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2337
2514
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2338
2515
|
url: "/tenant-memberships",
|
|
2339
2516
|
...options,
|
|
@@ -2352,6 +2529,7 @@ var postTrainingExamplesBulkDelete = (options) => (options.client ?? client).pos
|
|
|
2352
2529
|
}
|
|
2353
2530
|
});
|
|
2354
2531
|
var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client).patch({
|
|
2532
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2355
2533
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2356
2534
|
url: "/extraction/documents/{id}/include",
|
|
2357
2535
|
...options,
|
|
@@ -2361,6 +2539,7 @@ var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client
|
|
|
2361
2539
|
}
|
|
2362
2540
|
});
|
|
2363
2541
|
var getLlmAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
2542
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2364
2543
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2365
2544
|
url: "/llm_analytics/summary",
|
|
2366
2545
|
...options
|
|
@@ -2376,6 +2555,7 @@ var getUsersMeStats = (options) => (options.client ?? client).get({
|
|
|
2376
2555
|
...options
|
|
2377
2556
|
});
|
|
2378
2557
|
var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
2558
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2379
2559
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2380
2560
|
url: "/storage/sign_download",
|
|
2381
2561
|
...options,
|
|
@@ -2385,31 +2565,37 @@ var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
|
2385
2565
|
}
|
|
2386
2566
|
});
|
|
2387
2567
|
var deleteTrainingSessionsById = (options) => (options.client ?? client).delete({
|
|
2568
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2388
2569
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2389
2570
|
url: "/training_sessions/{id}",
|
|
2390
2571
|
...options
|
|
2391
2572
|
});
|
|
2392
2573
|
var getTrainingSessionsById = (options) => (options.client ?? client).get({
|
|
2574
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2393
2575
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2394
2576
|
url: "/training_sessions/{id}",
|
|
2395
2577
|
...options
|
|
2396
2578
|
});
|
|
2397
2579
|
var getUsersByEmail = (options) => (options.client ?? client).get({
|
|
2580
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2398
2581
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2399
2582
|
url: "/users/by-email",
|
|
2400
2583
|
...options
|
|
2401
2584
|
});
|
|
2402
2585
|
var deleteNotificationMethodsById = (options) => (options.client ?? client).delete({
|
|
2586
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2403
2587
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2404
2588
|
url: "/notification_methods/{id}",
|
|
2405
2589
|
...options
|
|
2406
2590
|
});
|
|
2407
2591
|
var getNotificationMethodsById = (options) => (options.client ?? client).get({
|
|
2592
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2408
2593
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2409
2594
|
url: "/notification_methods/{id}",
|
|
2410
2595
|
...options
|
|
2411
2596
|
});
|
|
2412
2597
|
var patchNotificationMethodsById = (options) => (options.client ?? client).patch({
|
|
2598
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2413
2599
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2414
2600
|
url: "/notification_methods/{id}",
|
|
2415
2601
|
...options,
|
|
@@ -2419,6 +2605,13 @@ var patchNotificationMethodsById = (options) => (options.client ?? client).patch
|
|
|
2419
2605
|
}
|
|
2420
2606
|
});
|
|
2421
2607
|
var getWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
2608
|
+
querySerializer: {
|
|
2609
|
+
parameters: {
|
|
2610
|
+
filter: { object: { style: "form" } },
|
|
2611
|
+
page: { object: { style: "form" } },
|
|
2612
|
+
fields: { object: { style: "form" } }
|
|
2613
|
+
}
|
|
2614
|
+
},
|
|
2422
2615
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2423
2616
|
url: "/webhook_deliveries",
|
|
2424
2617
|
...options
|
|
@@ -2433,16 +2626,29 @@ var postWebhookConfigsBulkDisable = (options) => (options.client ?? client).post
|
|
|
2433
2626
|
}
|
|
2434
2627
|
});
|
|
2435
2628
|
var getSearch = (options) => (options.client ?? client).get({
|
|
2629
|
+
querySerializer: {
|
|
2630
|
+
parameters: {
|
|
2631
|
+
filter: { object: { style: "form" } },
|
|
2632
|
+
fields: { object: { style: "form" } }
|
|
2633
|
+
}
|
|
2634
|
+
},
|
|
2436
2635
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2437
2636
|
url: "/search",
|
|
2438
2637
|
...options
|
|
2439
2638
|
});
|
|
2440
2639
|
var getInvitations = (options) => (options.client ?? client).get({
|
|
2640
|
+
querySerializer: {
|
|
2641
|
+
parameters: {
|
|
2642
|
+
filter: { object: { style: "form" } },
|
|
2643
|
+
fields: { object: { style: "form" } }
|
|
2644
|
+
}
|
|
2645
|
+
},
|
|
2441
2646
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2442
2647
|
url: "/invitations",
|
|
2443
2648
|
...options
|
|
2444
2649
|
});
|
|
2445
2650
|
var postInvitations = (options) => (options.client ?? client).post({
|
|
2651
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2446
2652
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2447
2653
|
url: "/invitations",
|
|
2448
2654
|
...options,
|
|
@@ -2452,6 +2658,7 @@ var postInvitations = (options) => (options.client ?? client).post({
|
|
|
2452
2658
|
}
|
|
2453
2659
|
});
|
|
2454
2660
|
var patchThreadsByIdArchive = (options) => (options.client ?? client).patch({
|
|
2661
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2455
2662
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2456
2663
|
url: "/threads/{id}/archive",
|
|
2457
2664
|
...options,
|
|
@@ -2461,11 +2668,23 @@ var patchThreadsByIdArchive = (options) => (options.client ?? client).patch({
|
|
|
2461
2668
|
}
|
|
2462
2669
|
});
|
|
2463
2670
|
var getApiKeysStats = (options) => (options.client ?? client).get({
|
|
2671
|
+
querySerializer: {
|
|
2672
|
+
parameters: {
|
|
2673
|
+
filter: { object: { style: "form" } },
|
|
2674
|
+
fields: { object: { style: "form" } }
|
|
2675
|
+
}
|
|
2676
|
+
},
|
|
2464
2677
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2465
2678
|
url: "/api_keys/stats",
|
|
2466
2679
|
...options
|
|
2467
2680
|
});
|
|
2468
2681
|
var getSearchSemantic = (options) => (options.client ?? client).get({
|
|
2682
|
+
querySerializer: {
|
|
2683
|
+
parameters: {
|
|
2684
|
+
filter: { object: { style: "form" } },
|
|
2685
|
+
fields: { object: { style: "form" } }
|
|
2686
|
+
}
|
|
2687
|
+
},
|
|
2469
2688
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2470
2689
|
url: "/search/semantic",
|
|
2471
2690
|
...options
|
|
@@ -2476,11 +2695,19 @@ var getThreadsStats = (options) => (options.client ?? client).get({
|
|
|
2476
2695
|
...options
|
|
2477
2696
|
});
|
|
2478
2697
|
var getMessages = (options) => (options.client ?? client).get({
|
|
2698
|
+
querySerializer: {
|
|
2699
|
+
parameters: {
|
|
2700
|
+
filter: { object: { style: "form" } },
|
|
2701
|
+
page: { object: { style: "form" } },
|
|
2702
|
+
fields: { object: { style: "form" } }
|
|
2703
|
+
}
|
|
2704
|
+
},
|
|
2479
2705
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2480
2706
|
url: "/messages",
|
|
2481
2707
|
...options
|
|
2482
2708
|
});
|
|
2483
2709
|
var postMessages = (options) => (options.client ?? client).post({
|
|
2710
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2484
2711
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2485
2712
|
url: "/messages",
|
|
2486
2713
|
...options,
|
|
@@ -2490,11 +2717,19 @@ var postMessages = (options) => (options.client ?? client).post({
|
|
|
2490
2717
|
}
|
|
2491
2718
|
});
|
|
2492
2719
|
var getNotificationPreferences = (options) => (options.client ?? client).get({
|
|
2720
|
+
querySerializer: {
|
|
2721
|
+
parameters: {
|
|
2722
|
+
filter: { object: { style: "form" } },
|
|
2723
|
+
page: { object: { style: "form" } },
|
|
2724
|
+
fields: { object: { style: "form" } }
|
|
2725
|
+
}
|
|
2726
|
+
},
|
|
2493
2727
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2494
2728
|
url: "/notification_preferences",
|
|
2495
2729
|
...options
|
|
2496
2730
|
});
|
|
2497
2731
|
var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
2732
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2498
2733
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2499
2734
|
url: "/notification_preferences",
|
|
2500
2735
|
...options,
|
|
@@ -2504,11 +2739,19 @@ var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
|
2504
2739
|
}
|
|
2505
2740
|
});
|
|
2506
2741
|
var getApplications = (options) => (options.client ?? client).get({
|
|
2742
|
+
querySerializer: {
|
|
2743
|
+
parameters: {
|
|
2744
|
+
filter: { object: { style: "form" } },
|
|
2745
|
+
page: { object: { style: "form" } },
|
|
2746
|
+
fields: { object: { style: "form" } }
|
|
2747
|
+
}
|
|
2748
|
+
},
|
|
2507
2749
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2508
2750
|
url: "/applications",
|
|
2509
2751
|
...options
|
|
2510
2752
|
});
|
|
2511
2753
|
var postApplications = (options) => (options.client ?? client).post({
|
|
2754
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2512
2755
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2513
2756
|
url: "/applications",
|
|
2514
2757
|
...options,
|
|
@@ -2518,6 +2761,7 @@ var postApplications = (options) => (options.client ?? client).post({
|
|
|
2518
2761
|
}
|
|
2519
2762
|
});
|
|
2520
2763
|
var patchWatcherClaimsByIdRetry = (options) => (options.client ?? client).patch({
|
|
2764
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2521
2765
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2522
2766
|
url: "/watcher/claims/{id}/retry",
|
|
2523
2767
|
...options,
|
|
@@ -2536,6 +2780,7 @@ var postAgentsPredict = (options) => (options.client ?? client).post({
|
|
|
2536
2780
|
}
|
|
2537
2781
|
});
|
|
2538
2782
|
var patchExtractionDocumentsByIdReprocess = (options) => (options.client ?? client).patch({
|
|
2783
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2539
2784
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2540
2785
|
url: "/extraction/documents/{id}/reprocess",
|
|
2541
2786
|
...options,
|
|
@@ -2545,16 +2790,19 @@ var patchExtractionDocumentsByIdReprocess = (options) => (options.client ?? clie
|
|
|
2545
2790
|
}
|
|
2546
2791
|
});
|
|
2547
2792
|
var deleteThreadsById = (options) => (options.client ?? client).delete({
|
|
2793
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2548
2794
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2549
2795
|
url: "/threads/{id}",
|
|
2550
2796
|
...options
|
|
2551
2797
|
});
|
|
2552
2798
|
var getThreadsById = (options) => (options.client ?? client).get({
|
|
2799
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2553
2800
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2554
2801
|
url: "/threads/{id}",
|
|
2555
2802
|
...options
|
|
2556
2803
|
});
|
|
2557
2804
|
var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
2805
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2558
2806
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2559
2807
|
url: "/threads/{id}",
|
|
2560
2808
|
...options,
|
|
@@ -2564,16 +2812,29 @@ var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
|
2564
2812
|
}
|
|
2565
2813
|
});
|
|
2566
2814
|
var getWorkspacesByIdMembers = (options) => (options.client ?? client).get({
|
|
2815
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2567
2816
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2568
2817
|
url: "/workspaces/{id}/members",
|
|
2569
2818
|
...options
|
|
2570
2819
|
});
|
|
2571
2820
|
var getBucketsAll = (options) => (options.client ?? client).get({
|
|
2821
|
+
querySerializer: {
|
|
2822
|
+
parameters: {
|
|
2823
|
+
filter: { object: { style: "form" } },
|
|
2824
|
+
fields: { object: { style: "form" } }
|
|
2825
|
+
}
|
|
2826
|
+
},
|
|
2572
2827
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2573
2828
|
url: "/buckets/all",
|
|
2574
2829
|
...options
|
|
2575
2830
|
});
|
|
2576
2831
|
var getWatcherClaims = (options) => (options.client ?? client).get({
|
|
2832
|
+
querySerializer: {
|
|
2833
|
+
parameters: {
|
|
2834
|
+
filter: { object: { style: "form" } },
|
|
2835
|
+
fields: { object: { style: "form" } }
|
|
2836
|
+
}
|
|
2837
|
+
},
|
|
2577
2838
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2578
2839
|
url: "/watcher/claims",
|
|
2579
2840
|
...options
|
|
@@ -2588,11 +2849,19 @@ var postWatcherClaims = (options) => (options.client ?? client).post({
|
|
|
2588
2849
|
}
|
|
2589
2850
|
});
|
|
2590
2851
|
var getLlmAnalytics = (options) => (options.client ?? client).get({
|
|
2852
|
+
querySerializer: {
|
|
2853
|
+
parameters: {
|
|
2854
|
+
filter: { object: { style: "form" } },
|
|
2855
|
+
page: { object: { style: "form" } },
|
|
2856
|
+
fields: { object: { style: "form" } }
|
|
2857
|
+
}
|
|
2858
|
+
},
|
|
2591
2859
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2592
2860
|
url: "/llm_analytics",
|
|
2593
2861
|
...options
|
|
2594
2862
|
});
|
|
2595
2863
|
var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
2864
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2596
2865
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2597
2866
|
url: "/llm_analytics",
|
|
2598
2867
|
...options,
|
|
@@ -2607,6 +2876,7 @@ var getStorageStatsTenantByTenantId = (options) => (options.client ?? client).ge
|
|
|
2607
2876
|
...options
|
|
2608
2877
|
});
|
|
2609
2878
|
var postAgentTestResults = (options) => (options.client ?? client).post({
|
|
2879
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2610
2880
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2611
2881
|
url: "/agent_test_results",
|
|
2612
2882
|
...options,
|
|
@@ -2616,6 +2886,7 @@ var postAgentTestResults = (options) => (options.client ?? client).post({
|
|
|
2616
2886
|
}
|
|
2617
2887
|
});
|
|
2618
2888
|
var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch({
|
|
2889
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2619
2890
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2620
2891
|
url: "/users/{id}/reset-password",
|
|
2621
2892
|
...options,
|
|
@@ -2634,6 +2905,7 @@ var postThreadsByIdExport = (options) => (options.client ?? client).post({
|
|
|
2634
2905
|
}
|
|
2635
2906
|
});
|
|
2636
2907
|
var postDocumentsPresignedUpload = (options) => (options.client ?? client).post({
|
|
2908
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2637
2909
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2638
2910
|
url: "/documents/presigned_upload",
|
|
2639
2911
|
...options,
|
|
@@ -2648,11 +2920,13 @@ var getWebhookConfigsByIdEvents = (options) => (options.client ?? client).get({
|
|
|
2648
2920
|
...options
|
|
2649
2921
|
});
|
|
2650
2922
|
var getMessagesSearch = (options) => (options.client ?? client).get({
|
|
2923
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2651
2924
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2652
2925
|
url: "/messages/search",
|
|
2653
2926
|
...options
|
|
2654
2927
|
});
|
|
2655
2928
|
var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
2929
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2656
2930
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2657
2931
|
url: "/agents/{id}/teach",
|
|
2658
2932
|
...options,
|
|
@@ -2662,11 +2936,19 @@ var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
|
2662
2936
|
}
|
|
2663
2937
|
});
|
|
2664
2938
|
var getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue = (options) => (options.client ?? client).get({
|
|
2939
|
+
querySerializer: {
|
|
2940
|
+
parameters: {
|
|
2941
|
+
filter: { object: { style: "form" } },
|
|
2942
|
+
page: { object: { style: "form" } },
|
|
2943
|
+
fields: { object: { style: "form" } }
|
|
2944
|
+
}
|
|
2945
|
+
},
|
|
2665
2946
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2666
2947
|
url: "/extraction/documents/workspace/{workspace_id}/review_queue",
|
|
2667
2948
|
...options
|
|
2668
2949
|
});
|
|
2669
2950
|
var patchInvitationsByIdDecline = (options) => (options.client ?? client).patch({
|
|
2951
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2670
2952
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2671
2953
|
url: "/invitations/{id}/decline",
|
|
2672
2954
|
...options,
|
|
@@ -2676,6 +2958,7 @@ var patchInvitationsByIdDecline = (options) => (options.client ?? client).patch(
|
|
|
2676
2958
|
}
|
|
2677
2959
|
});
|
|
2678
2960
|
var postExtractionDocumentsUpload = (options) => (options.client ?? client).post({
|
|
2961
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2679
2962
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2680
2963
|
url: "/extraction/documents/upload",
|
|
2681
2964
|
...options,
|
|
@@ -2685,6 +2968,7 @@ var postExtractionDocumentsUpload = (options) => (options.client ?? client).post
|
|
|
2685
2968
|
}
|
|
2686
2969
|
});
|
|
2687
2970
|
var patchExtractionResultsByIdCorrections = (options) => (options.client ?? client).patch({
|
|
2971
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2688
2972
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2689
2973
|
url: "/extraction/results/{id}/corrections",
|
|
2690
2974
|
...options,
|
|
@@ -2694,6 +2978,7 @@ var patchExtractionResultsByIdCorrections = (options) => (options.client ?? clie
|
|
|
2694
2978
|
}
|
|
2695
2979
|
});
|
|
2696
2980
|
var patchNotificationMethodsByIdVerify = (options) => (options.client ?? client).patch({
|
|
2981
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2697
2982
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2698
2983
|
url: "/notification_methods/{id}/verify",
|
|
2699
2984
|
...options,
|
|
@@ -2703,21 +2988,25 @@ var patchNotificationMethodsByIdVerify = (options) => (options.client ?? client)
|
|
|
2703
2988
|
}
|
|
2704
2989
|
});
|
|
2705
2990
|
var getExtractionResultsDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
2991
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2706
2992
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2707
2993
|
url: "/extraction/results/document/{document_id}",
|
|
2708
2994
|
...options
|
|
2709
2995
|
});
|
|
2710
2996
|
var deleteWorkspacesById = (options) => (options.client ?? client).delete({
|
|
2997
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2711
2998
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2712
2999
|
url: "/workspaces/{id}",
|
|
2713
3000
|
...options
|
|
2714
3001
|
});
|
|
2715
3002
|
var getWorkspacesById = (options) => (options.client ?? client).get({
|
|
3003
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2716
3004
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2717
3005
|
url: "/workspaces/{id}",
|
|
2718
3006
|
...options
|
|
2719
3007
|
});
|
|
2720
3008
|
var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
3009
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2721
3010
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2722
3011
|
url: "/workspaces/{id}",
|
|
2723
3012
|
...options,
|
|
@@ -2727,11 +3016,19 @@ var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
|
2727
3016
|
}
|
|
2728
3017
|
});
|
|
2729
3018
|
var getTenants = (options) => (options.client ?? client).get({
|
|
3019
|
+
querySerializer: {
|
|
3020
|
+
parameters: {
|
|
3021
|
+
filter: { object: { style: "form" } },
|
|
3022
|
+
page: { object: { style: "form" } },
|
|
3023
|
+
fields: { object: { style: "form" } }
|
|
3024
|
+
}
|
|
3025
|
+
},
|
|
2730
3026
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2731
3027
|
url: "/tenants",
|
|
2732
3028
|
...options
|
|
2733
3029
|
});
|
|
2734
3030
|
var postTenants = (options) => (options.client ?? client).post({
|
|
3031
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2735
3032
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2736
3033
|
url: "/tenants",
|
|
2737
3034
|
...options,
|
|
@@ -2741,6 +3038,7 @@ var postTenants = (options) => (options.client ?? client).post({
|
|
|
2741
3038
|
}
|
|
2742
3039
|
});
|
|
2743
3040
|
var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post({
|
|
3041
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2744
3042
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2745
3043
|
url: "/tenants/{id}/remove-storage",
|
|
2746
3044
|
...options,
|
|
@@ -2750,11 +3048,13 @@ var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post(
|
|
|
2750
3048
|
}
|
|
2751
3049
|
});
|
|
2752
3050
|
var getWalletInvoices = (options) => (options.client ?? client).get({
|
|
3051
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2753
3052
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2754
3053
|
url: "/wallet/invoices",
|
|
2755
3054
|
...options
|
|
2756
3055
|
});
|
|
2757
3056
|
var patchWorkspacesByIdStorageSettings = (options) => (options.client ?? client).patch({
|
|
3057
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2758
3058
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2759
3059
|
url: "/workspaces/{id}/storage-settings",
|
|
2760
3060
|
...options,
|
|
@@ -2764,31 +3064,49 @@ var patchWorkspacesByIdStorageSettings = (options) => (options.client ?? client)
|
|
|
2764
3064
|
}
|
|
2765
3065
|
});
|
|
2766
3066
|
var getNotificationLogsById = (options) => (options.client ?? client).get({
|
|
3067
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2767
3068
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2768
3069
|
url: "/notification_logs/{id}",
|
|
2769
3070
|
...options
|
|
2770
3071
|
});
|
|
2771
3072
|
var getExtractionDocumentsByIdView = (options) => (options.client ?? client).get({
|
|
3073
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2772
3074
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2773
3075
|
url: "/extraction/documents/{id}/view",
|
|
2774
3076
|
...options
|
|
2775
3077
|
});
|
|
2776
3078
|
var getWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
3079
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2777
3080
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2778
3081
|
url: "/webhook_deliveries/{id}",
|
|
2779
3082
|
...options
|
|
2780
3083
|
});
|
|
2781
3084
|
var getAuditLogs = (options) => (options.client ?? client).get({
|
|
3085
|
+
querySerializer: {
|
|
3086
|
+
parameters: {
|
|
3087
|
+
filter: { object: { style: "form" } },
|
|
3088
|
+
page: { object: { style: "form" } },
|
|
3089
|
+
fields: { object: { style: "form" } }
|
|
3090
|
+
}
|
|
3091
|
+
},
|
|
2782
3092
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2783
3093
|
url: "/audit-logs",
|
|
2784
3094
|
...options
|
|
2785
3095
|
});
|
|
2786
3096
|
var getAiGraphEdges = (options) => (options.client ?? client).get({
|
|
3097
|
+
querySerializer: {
|
|
3098
|
+
parameters: {
|
|
3099
|
+
filter: { object: { style: "form" } },
|
|
3100
|
+
page: { object: { style: "form" } },
|
|
3101
|
+
fields: { object: { style: "form" } }
|
|
3102
|
+
}
|
|
3103
|
+
},
|
|
2787
3104
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2788
3105
|
url: "/ai/graph/edges",
|
|
2789
3106
|
...options
|
|
2790
3107
|
});
|
|
2791
3108
|
var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
3109
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2792
3110
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2793
3111
|
url: "/ai/graph/edges",
|
|
2794
3112
|
...options,
|
|
@@ -2798,11 +3116,19 @@ var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
|
2798
3116
|
}
|
|
2799
3117
|
});
|
|
2800
3118
|
var getTrainingExamples = (options) => (options.client ?? client).get({
|
|
3119
|
+
querySerializer: {
|
|
3120
|
+
parameters: {
|
|
3121
|
+
filter: { object: { style: "form" } },
|
|
3122
|
+
page: { object: { style: "form" } },
|
|
3123
|
+
fields: { object: { style: "form" } }
|
|
3124
|
+
}
|
|
3125
|
+
},
|
|
2801
3126
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2802
3127
|
url: "/training_examples",
|
|
2803
3128
|
...options
|
|
2804
3129
|
});
|
|
2805
3130
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
3131
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2806
3132
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2807
3133
|
url: "/training_examples",
|
|
2808
3134
|
...options,
|
|
@@ -2812,6 +3138,7 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
2812
3138
|
}
|
|
2813
3139
|
});
|
|
2814
3140
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
3141
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2815
3142
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2816
3143
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
2817
3144
|
...options
|
|
@@ -2822,6 +3149,7 @@ var getAgentsByIdTrainingStats = (options) => (options.client ?? client).get({
|
|
|
2822
3149
|
...options
|
|
2823
3150
|
});
|
|
2824
3151
|
var postObjectsCopy = (options) => (options.client ?? client).post({
|
|
3152
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2825
3153
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2826
3154
|
url: "/objects/copy",
|
|
2827
3155
|
...options,
|
|
@@ -2831,11 +3159,18 @@ var postObjectsCopy = (options) => (options.client ?? client).post({
|
|
|
2831
3159
|
}
|
|
2832
3160
|
});
|
|
2833
3161
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
3162
|
+
querySerializer: {
|
|
3163
|
+
parameters: {
|
|
3164
|
+
filter: { object: { style: "form" } },
|
|
3165
|
+
fields: { object: { style: "form" } }
|
|
3166
|
+
}
|
|
3167
|
+
},
|
|
2834
3168
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2835
3169
|
url: "/buckets",
|
|
2836
3170
|
...options
|
|
2837
3171
|
});
|
|
2838
3172
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
3173
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2839
3174
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2840
3175
|
url: "/buckets",
|
|
2841
3176
|
...options,
|
|
@@ -2844,6 +3179,22 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
2844
3179
|
...options.headers
|
|
2845
3180
|
}
|
|
2846
3181
|
});
|
|
3182
|
+
var getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping = (options) => (options.client ?? client).get({
|
|
3183
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3184
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
3185
|
+
url: "/workspaces/{workspace_id}/extraction/{document_id}/mapping",
|
|
3186
|
+
...options
|
|
3187
|
+
});
|
|
3188
|
+
var postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping = (options) => (options.client ?? client).post({
|
|
3189
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3190
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
3191
|
+
url: "/workspaces/{workspace_id}/extraction/{document_id}/mapping",
|
|
3192
|
+
...options,
|
|
3193
|
+
headers: {
|
|
3194
|
+
"Content-Type": "application/vnd.api+json",
|
|
3195
|
+
...options.headers
|
|
3196
|
+
}
|
|
3197
|
+
});
|
|
2847
3198
|
var getUsersMeActivity = (options) => (options.client ?? client).get({
|
|
2848
3199
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2849
3200
|
url: "/users/me/activity",
|
|
@@ -2855,16 +3206,19 @@ var getNotificationLogsStats = (options) => (options.client ?? client).get({
|
|
|
2855
3206
|
...options
|
|
2856
3207
|
});
|
|
2857
3208
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
3209
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2858
3210
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2859
3211
|
url: "/plans/{id}",
|
|
2860
3212
|
...options
|
|
2861
3213
|
});
|
|
2862
3214
|
var getTenantsByTenantIdStats = (options) => (options.client ?? client).get({
|
|
3215
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2863
3216
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2864
3217
|
url: "/tenants/{tenant_id}/stats",
|
|
2865
3218
|
...options
|
|
2866
3219
|
});
|
|
2867
3220
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
3221
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2868
3222
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2869
3223
|
url: "/wallet/addons",
|
|
2870
3224
|
...options,
|
|
@@ -2874,6 +3228,7 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
2874
3228
|
}
|
|
2875
3229
|
});
|
|
2876
3230
|
var postTenantsByIdSchedulePurge = (options) => (options.client ?? client).post({
|
|
3231
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2877
3232
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2878
3233
|
url: "/tenants/{id}/schedule-purge",
|
|
2879
3234
|
...options,
|
|
@@ -2883,11 +3238,13 @@ var postTenantsByIdSchedulePurge = (options) => (options.client ?? client).post(
|
|
|
2883
3238
|
}
|
|
2884
3239
|
});
|
|
2885
3240
|
var getMessagesSemanticSearch = (options) => (options.client ?? client).get({
|
|
3241
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2886
3242
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2887
3243
|
url: "/messages/semantic-search",
|
|
2888
3244
|
...options
|
|
2889
3245
|
});
|
|
2890
3246
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
3247
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2891
3248
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2892
3249
|
url: "/users/auth/magic_link/login",
|
|
2893
3250
|
...options,
|
|
@@ -2897,11 +3254,19 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
2897
3254
|
}
|
|
2898
3255
|
});
|
|
2899
3256
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
3257
|
+
querySerializer: {
|
|
3258
|
+
parameters: {
|
|
3259
|
+
filter: { object: { style: "form" } },
|
|
3260
|
+
page: { object: { style: "form" } },
|
|
3261
|
+
fields: { object: { style: "form" } }
|
|
3262
|
+
}
|
|
3263
|
+
},
|
|
2900
3264
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2901
3265
|
url: "/api_keys",
|
|
2902
3266
|
...options
|
|
2903
3267
|
});
|
|
2904
3268
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
3269
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2905
3270
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2906
3271
|
url: "/api_keys",
|
|
2907
3272
|
...options,
|
|
@@ -2911,6 +3276,7 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
2911
3276
|
}
|
|
2912
3277
|
});
|
|
2913
3278
|
var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
3279
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2914
3280
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2915
3281
|
url: "/users/{id}/admin",
|
|
2916
3282
|
...options,
|
|
@@ -2929,16 +3295,19 @@ var postObjectsMove = (options) => (options.client ?? client).post({
|
|
|
2929
3295
|
}
|
|
2930
3296
|
});
|
|
2931
3297
|
var deleteAgentsById = (options) => (options.client ?? client).delete({
|
|
3298
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2932
3299
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2933
3300
|
url: "/agents/{id}",
|
|
2934
3301
|
...options
|
|
2935
3302
|
});
|
|
2936
3303
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
3304
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2937
3305
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2938
3306
|
url: "/agents/{id}",
|
|
2939
3307
|
...options
|
|
2940
3308
|
});
|
|
2941
3309
|
var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
3310
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2942
3311
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2943
3312
|
url: "/agents/{id}",
|
|
2944
3313
|
...options,
|
|
@@ -2948,6 +3317,7 @@ var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
|
2948
3317
|
}
|
|
2949
3318
|
});
|
|
2950
3319
|
var patchThreadsByIdUnarchive = (options) => (options.client ?? client).patch({
|
|
3320
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2951
3321
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2952
3322
|
url: "/threads/{id}/unarchive",
|
|
2953
3323
|
...options,
|
|
@@ -2957,16 +3327,19 @@ var patchThreadsByIdUnarchive = (options) => (options.client ?? client).patch({
|
|
|
2957
3327
|
}
|
|
2958
3328
|
});
|
|
2959
3329
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
3330
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2960
3331
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2961
3332
|
url: "/api_keys/{id}",
|
|
2962
3333
|
...options
|
|
2963
3334
|
});
|
|
2964
3335
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
3336
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2965
3337
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2966
3338
|
url: "/api_keys/{id}",
|
|
2967
3339
|
...options
|
|
2968
3340
|
});
|
|
2969
3341
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
3342
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2970
3343
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2971
3344
|
url: "/api_keys/{id}",
|
|
2972
3345
|
...options,
|
|
@@ -2985,6 +3358,7 @@ var postTrainingExamplesSearch = (options) => (options.client ?? client).post({
|
|
|
2985
3358
|
}
|
|
2986
3359
|
});
|
|
2987
3360
|
var patchWatcherClaimsByIdRelease = (options) => (options.client ?? client).patch({
|
|
3361
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2988
3362
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2989
3363
|
url: "/watcher/claims/{id}/release",
|
|
2990
3364
|
...options,
|
|
@@ -2994,11 +3368,19 @@ var patchWatcherClaimsByIdRelease = (options) => (options.client ?? client).patc
|
|
|
2994
3368
|
}
|
|
2995
3369
|
});
|
|
2996
3370
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
3371
|
+
querySerializer: {
|
|
3372
|
+
parameters: {
|
|
3373
|
+
filter: { object: { style: "form" } },
|
|
3374
|
+
page: { object: { style: "form" } },
|
|
3375
|
+
fields: { object: { style: "form" } }
|
|
3376
|
+
}
|
|
3377
|
+
},
|
|
2997
3378
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2998
3379
|
url: "/ai/conversations",
|
|
2999
3380
|
...options
|
|
3000
3381
|
});
|
|
3001
3382
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
3383
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3002
3384
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3003
3385
|
url: "/ai/conversations",
|
|
3004
3386
|
...options,
|
|
@@ -3008,6 +3390,7 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
3008
3390
|
}
|
|
3009
3391
|
});
|
|
3010
3392
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
3393
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3011
3394
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3012
3395
|
url: "/ai/search",
|
|
3013
3396
|
...options,
|
|
@@ -3017,16 +3400,24 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
3017
3400
|
}
|
|
3018
3401
|
});
|
|
3019
3402
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
3403
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3020
3404
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3021
3405
|
url: "/ai/graph/nodes/{id}",
|
|
3022
3406
|
...options
|
|
3023
3407
|
});
|
|
3024
3408
|
var getWorkspacesShared = (options) => (options.client ?? client).get({
|
|
3409
|
+
querySerializer: {
|
|
3410
|
+
parameters: {
|
|
3411
|
+
filter: { object: { style: "form" } },
|
|
3412
|
+
fields: { object: { style: "form" } }
|
|
3413
|
+
}
|
|
3414
|
+
},
|
|
3025
3415
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3026
3416
|
url: "/workspaces/shared",
|
|
3027
3417
|
...options
|
|
3028
3418
|
});
|
|
3029
3419
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
3420
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3030
3421
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3031
3422
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
3032
3423
|
...options,
|
|
@@ -3036,16 +3427,19 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
3036
3427
|
}
|
|
3037
3428
|
});
|
|
3038
3429
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
3430
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3039
3431
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3040
3432
|
url: "/applications/{id}",
|
|
3041
3433
|
...options
|
|
3042
3434
|
});
|
|
3043
3435
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
3436
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3044
3437
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3045
3438
|
url: "/applications/{id}",
|
|
3046
3439
|
...options
|
|
3047
3440
|
});
|
|
3048
3441
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
3442
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3049
3443
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3050
3444
|
url: "/applications/{id}",
|
|
3051
3445
|
...options,
|
|
@@ -3055,11 +3449,18 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
3055
3449
|
}
|
|
3056
3450
|
});
|
|
3057
3451
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
3452
|
+
querySerializer: {
|
|
3453
|
+
parameters: {
|
|
3454
|
+
filter: { object: { style: "form" } },
|
|
3455
|
+
fields: { object: { style: "form" } }
|
|
3456
|
+
}
|
|
3457
|
+
},
|
|
3058
3458
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3059
3459
|
url: "/search/health",
|
|
3060
3460
|
...options
|
|
3061
3461
|
});
|
|
3062
3462
|
var patchExtractionDocumentsByIdVerification = (options) => (options.client ?? client).patch({
|
|
3463
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3063
3464
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3064
3465
|
url: "/extraction/documents/{id}/verification",
|
|
3065
3466
|
...options,
|
|
@@ -3069,6 +3470,7 @@ var patchExtractionDocumentsByIdVerification = (options) => (options.client ?? c
|
|
|
3069
3470
|
}
|
|
3070
3471
|
});
|
|
3071
3472
|
var postThreadsByIdFork = (options) => (options.client ?? client).post({
|
|
3473
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3072
3474
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3073
3475
|
url: "/threads/{id}/fork",
|
|
3074
3476
|
...options,
|
|
@@ -3078,16 +3480,30 @@ var postThreadsByIdFork = (options) => (options.client ?? client).post({
|
|
|
3078
3480
|
}
|
|
3079
3481
|
});
|
|
3080
3482
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
3483
|
+
querySerializer: {
|
|
3484
|
+
parameters: {
|
|
3485
|
+
filter: { object: { style: "form" } },
|
|
3486
|
+
fields: { object: { style: "form" } }
|
|
3487
|
+
}
|
|
3488
|
+
},
|
|
3081
3489
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3082
3490
|
url: "/transactions",
|
|
3083
3491
|
...options
|
|
3084
3492
|
});
|
|
3085
3493
|
var getUserProfiles = (options) => (options.client ?? client).get({
|
|
3494
|
+
querySerializer: {
|
|
3495
|
+
parameters: {
|
|
3496
|
+
filter: { object: { style: "form" } },
|
|
3497
|
+
page: { object: { style: "form" } },
|
|
3498
|
+
fields: { object: { style: "form" } }
|
|
3499
|
+
}
|
|
3500
|
+
},
|
|
3086
3501
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3087
3502
|
url: "/user_profiles",
|
|
3088
3503
|
...options
|
|
3089
3504
|
});
|
|
3090
3505
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
3506
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3091
3507
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3092
3508
|
url: "/user_profiles",
|
|
3093
3509
|
...options,
|
|
@@ -3097,6 +3513,7 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
3097
3513
|
}
|
|
3098
3514
|
});
|
|
3099
3515
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
3516
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3100
3517
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3101
3518
|
url: "/users/{id}/confirm-email",
|
|
3102
3519
|
...options,
|
|
@@ -3106,11 +3523,13 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
3106
3523
|
}
|
|
3107
3524
|
});
|
|
3108
3525
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
3526
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3109
3527
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3110
3528
|
url: "/threads/search",
|
|
3111
3529
|
...options
|
|
3112
3530
|
});
|
|
3113
3531
|
var postSearchSavedByIdRun = (options) => (options.client ?? client).post({
|
|
3532
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3114
3533
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3115
3534
|
url: "/search/saved/{id}/run",
|
|
3116
3535
|
...options,
|
|
@@ -3120,6 +3539,7 @@ var postSearchSavedByIdRun = (options) => (options.client ?? client).post({
|
|
|
3120
3539
|
}
|
|
3121
3540
|
});
|
|
3122
3541
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
3542
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3123
3543
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3124
3544
|
url: "/wallet/plan",
|
|
3125
3545
|
...options,
|
|
@@ -3129,11 +3549,13 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
3129
3549
|
}
|
|
3130
3550
|
});
|
|
3131
3551
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
3552
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3132
3553
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3133
3554
|
url: "/plans/slug/{slug}",
|
|
3134
3555
|
...options
|
|
3135
3556
|
});
|
|
3136
3557
|
var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client).patch({
|
|
3558
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3137
3559
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3138
3560
|
url: "/extraction/documents/{id}/restore",
|
|
3139
3561
|
...options,
|
|
@@ -3143,16 +3565,24 @@ var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client
|
|
|
3143
3565
|
}
|
|
3144
3566
|
});
|
|
3145
3567
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
3568
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3146
3569
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3147
3570
|
url: "/llm_analytics/{id}",
|
|
3148
3571
|
...options
|
|
3149
3572
|
});
|
|
3150
3573
|
var getPermissions = (options) => (options.client ?? client).get({
|
|
3574
|
+
querySerializer: {
|
|
3575
|
+
parameters: {
|
|
3576
|
+
filter: { object: { style: "form" } },
|
|
3577
|
+
fields: { object: { style: "form" } }
|
|
3578
|
+
}
|
|
3579
|
+
},
|
|
3151
3580
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3152
3581
|
url: "/permissions",
|
|
3153
3582
|
...options
|
|
3154
3583
|
});
|
|
3155
3584
|
var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? client).patch({
|
|
3585
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3156
3586
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3157
3587
|
url: "/extraction/documents/{id}/mark_trained",
|
|
3158
3588
|
...options,
|
|
@@ -3162,6 +3592,7 @@ var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? cl
|
|
|
3162
3592
|
}
|
|
3163
3593
|
});
|
|
3164
3594
|
var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).patch({
|
|
3595
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3165
3596
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3166
3597
|
url: "/applications/{id}/grant-credits",
|
|
3167
3598
|
...options,
|
|
@@ -3171,16 +3602,29 @@ var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).
|
|
|
3171
3602
|
}
|
|
3172
3603
|
});
|
|
3173
3604
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
3605
|
+
querySerializer: {
|
|
3606
|
+
parameters: {
|
|
3607
|
+
filter: { object: { style: "form" } },
|
|
3608
|
+
fields: { object: { style: "form" } }
|
|
3609
|
+
}
|
|
3610
|
+
},
|
|
3174
3611
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3175
3612
|
url: "/search/status",
|
|
3176
3613
|
...options
|
|
3177
3614
|
});
|
|
3178
3615
|
var getTenantsByTenantIdWorkspaceStats = (options) => (options.client ?? client).get({
|
|
3616
|
+
querySerializer: {
|
|
3617
|
+
parameters: {
|
|
3618
|
+
filter: { object: { style: "form" } },
|
|
3619
|
+
fields: { object: { style: "form" } }
|
|
3620
|
+
}
|
|
3621
|
+
},
|
|
3179
3622
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3180
3623
|
url: "/tenants/{tenant_id}/workspace_stats",
|
|
3181
3624
|
...options
|
|
3182
3625
|
});
|
|
3183
3626
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
3627
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3184
3628
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3185
3629
|
url: "/api_keys/{id}/allocate",
|
|
3186
3630
|
...options,
|
|
@@ -3190,11 +3634,13 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
3190
3634
|
}
|
|
3191
3635
|
});
|
|
3192
3636
|
var getWatcherClaimsById = (options) => (options.client ?? client).get({
|
|
3637
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3193
3638
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3194
3639
|
url: "/watcher/claims/{id}",
|
|
3195
3640
|
...options
|
|
3196
3641
|
});
|
|
3197
3642
|
var patchWatcherClaimsById = (options) => (options.client ?? client).patch({
|
|
3643
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3198
3644
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3199
3645
|
url: "/watcher/claims/{id}",
|
|
3200
3646
|
...options,
|
|
@@ -3204,6 +3650,7 @@ var patchWatcherClaimsById = (options) => (options.client ?? client).patch({
|
|
|
3204
3650
|
}
|
|
3205
3651
|
});
|
|
3206
3652
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
3653
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3207
3654
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3208
3655
|
url: "/users/auth/login",
|
|
3209
3656
|
...options,
|
|
@@ -3213,11 +3660,19 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
3213
3660
|
}
|
|
3214
3661
|
});
|
|
3215
3662
|
var getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus = (options) => (options.client ?? client).get({
|
|
3663
|
+
querySerializer: {
|
|
3664
|
+
parameters: {
|
|
3665
|
+
filter: { object: { style: "form" } },
|
|
3666
|
+
page: { object: { style: "form" } },
|
|
3667
|
+
fields: { object: { style: "form" } }
|
|
3668
|
+
}
|
|
3669
|
+
},
|
|
3216
3670
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3217
3671
|
url: "/extraction/documents/workspace/{workspace_id}/by_status/{status}",
|
|
3218
3672
|
...options
|
|
3219
3673
|
});
|
|
3220
3674
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
3675
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3221
3676
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3222
3677
|
url: "/ai/embed",
|
|
3223
3678
|
...options,
|
|
@@ -3236,11 +3691,18 @@ var postWebhookConfigsByIdReplay = (options) => (options.client ?? client).post(
|
|
|
3236
3691
|
}
|
|
3237
3692
|
});
|
|
3238
3693
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
3694
|
+
querySerializer: {
|
|
3695
|
+
parameters: {
|
|
3696
|
+
filter: { object: { style: "form" } },
|
|
3697
|
+
fields: { object: { style: "form" } }
|
|
3698
|
+
}
|
|
3699
|
+
},
|
|
3239
3700
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3240
3701
|
url: "/workspaces/mine",
|
|
3241
3702
|
...options
|
|
3242
3703
|
});
|
|
3243
3704
|
var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
3705
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3244
3706
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3245
3707
|
url: "/tenants/isv",
|
|
3246
3708
|
...options,
|
|
@@ -3250,6 +3712,7 @@ var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
|
3250
3712
|
}
|
|
3251
3713
|
});
|
|
3252
3714
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
3715
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3253
3716
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3254
3717
|
url: "/search/reindex",
|
|
3255
3718
|
...options,
|
|
@@ -3259,6 +3722,7 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
3259
3722
|
}
|
|
3260
3723
|
});
|
|
3261
3724
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
3725
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3262
3726
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3263
3727
|
url: "/extraction/results/{id}/regenerate",
|
|
3264
3728
|
...options,
|
|
@@ -3268,6 +3732,7 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
3268
3732
|
}
|
|
3269
3733
|
});
|
|
3270
3734
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
3735
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3271
3736
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3272
3737
|
url: "/users/auth/confirm",
|
|
3273
3738
|
...options,
|
|
@@ -3277,11 +3742,18 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
3277
3742
|
}
|
|
3278
3743
|
});
|
|
3279
3744
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
3745
|
+
querySerializer: {
|
|
3746
|
+
parameters: {
|
|
3747
|
+
filter: { object: { style: "form" } },
|
|
3748
|
+
fields: { object: { style: "form" } }
|
|
3749
|
+
}
|
|
3750
|
+
},
|
|
3280
3751
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3281
3752
|
url: "/storage/stats",
|
|
3282
3753
|
...options
|
|
3283
3754
|
});
|
|
3284
3755
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
3756
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3285
3757
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3286
3758
|
url: "/tenants/{id}/buy-storage",
|
|
3287
3759
|
...options,
|
|
@@ -3291,11 +3763,19 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
3291
3763
|
}
|
|
3292
3764
|
});
|
|
3293
3765
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
3766
|
+
querySerializer: {
|
|
3767
|
+
parameters: {
|
|
3768
|
+
filter: { object: { style: "form" } },
|
|
3769
|
+
page: { object: { style: "form" } },
|
|
3770
|
+
fields: { object: { style: "form" } }
|
|
3771
|
+
}
|
|
3772
|
+
},
|
|
3294
3773
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3295
3774
|
url: "/workspace-memberships",
|
|
3296
3775
|
...options
|
|
3297
3776
|
});
|
|
3298
3777
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
3778
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3299
3779
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3300
3780
|
url: "/workspace-memberships",
|
|
3301
3781
|
...options,
|
|
@@ -3305,6 +3785,7 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
3305
3785
|
}
|
|
3306
3786
|
});
|
|
3307
3787
|
var patchApiKeysByIdResetPeriod = (options) => (options.client ?? client).patch({
|
|
3788
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3308
3789
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3309
3790
|
url: "/api_keys/{id}/reset-period",
|
|
3310
3791
|
...options,
|
|
@@ -3314,16 +3795,25 @@ var patchApiKeysByIdResetPeriod = (options) => (options.client ?? client).patch(
|
|
|
3314
3795
|
}
|
|
3315
3796
|
});
|
|
3316
3797
|
var getTenantsByTenantIdDocumentStats = (options) => (options.client ?? client).get({
|
|
3798
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3317
3799
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3318
3800
|
url: "/tenants/{tenant_id}/document_stats",
|
|
3319
3801
|
...options
|
|
3320
3802
|
});
|
|
3321
3803
|
var getSearchAnalytics = (options) => (options.client ?? client).get({
|
|
3804
|
+
querySerializer: {
|
|
3805
|
+
parameters: {
|
|
3806
|
+
filter: { object: { style: "form" } },
|
|
3807
|
+
page: { object: { style: "form" } },
|
|
3808
|
+
fields: { object: { style: "form" } }
|
|
3809
|
+
}
|
|
3810
|
+
},
|
|
3322
3811
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3323
3812
|
url: "/search/analytics",
|
|
3324
3813
|
...options
|
|
3325
3814
|
});
|
|
3326
3815
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
3816
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3327
3817
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3328
3818
|
url: "/users/auth/magic_link/request",
|
|
3329
3819
|
...options,
|
|
@@ -3333,11 +3823,18 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
3333
3823
|
}
|
|
3334
3824
|
});
|
|
3335
3825
|
var getPermissionsPresetsById = (options) => (options.client ?? client).get({
|
|
3826
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3336
3827
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3337
3828
|
url: "/permissions/presets/{id}",
|
|
3338
3829
|
...options
|
|
3339
3830
|
});
|
|
3340
3831
|
var getPermissionsPresets = (options) => (options.client ?? client).get({
|
|
3832
|
+
querySerializer: {
|
|
3833
|
+
parameters: {
|
|
3834
|
+
filter: { object: { style: "form" } },
|
|
3835
|
+
fields: { object: { style: "form" } }
|
|
3836
|
+
}
|
|
3837
|
+
},
|
|
3341
3838
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3342
3839
|
url: "/permissions/presets",
|
|
3343
3840
|
...options
|
|
@@ -3352,6 +3849,7 @@ var postWebhookDeliveriesBulkRetry = (options) => (options.client ?? client).pos
|
|
|
3352
3849
|
}
|
|
3353
3850
|
});
|
|
3354
3851
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
3852
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3355
3853
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3356
3854
|
url: "/users/auth/register",
|
|
3357
3855
|
...options,
|
|
@@ -3375,16 +3873,19 @@ var postAgentsByIdSchemaVersionsByVersionIdActivate = (options) => (options.clie
|
|
|
3375
3873
|
...options
|
|
3376
3874
|
});
|
|
3377
3875
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
3876
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3378
3877
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3379
3878
|
url: "/buckets/{id}",
|
|
3380
3879
|
...options
|
|
3381
3880
|
});
|
|
3382
3881
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
3882
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3383
3883
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3384
3884
|
url: "/buckets/{id}",
|
|
3385
3885
|
...options
|
|
3386
3886
|
});
|
|
3387
3887
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
3888
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3388
3889
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3389
3890
|
url: "/buckets/{id}",
|
|
3390
3891
|
...options,
|
|
@@ -3394,21 +3895,35 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
3394
3895
|
}
|
|
3395
3896
|
});
|
|
3396
3897
|
var getPermissionsById = (options) => (options.client ?? client).get({
|
|
3898
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3397
3899
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3398
3900
|
url: "/permissions/{id}",
|
|
3399
3901
|
...options
|
|
3400
3902
|
});
|
|
3401
3903
|
var getAiGraphNodesBySourceNodeIdRelated = (options) => (options.client ?? client).get({
|
|
3904
|
+
querySerializer: {
|
|
3905
|
+
parameters: {
|
|
3906
|
+
filter: { object: { style: "form" } },
|
|
3907
|
+
fields: { object: { style: "form" } }
|
|
3908
|
+
}
|
|
3909
|
+
},
|
|
3402
3910
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3403
3911
|
url: "/ai/graph/nodes/{source_node_id}/related",
|
|
3404
3912
|
...options
|
|
3405
3913
|
});
|
|
3406
3914
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
3915
|
+
querySerializer: {
|
|
3916
|
+
parameters: {
|
|
3917
|
+
filter: { object: { style: "form" } },
|
|
3918
|
+
fields: { object: { style: "form" } }
|
|
3919
|
+
}
|
|
3920
|
+
},
|
|
3407
3921
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3408
3922
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
3409
3923
|
...options
|
|
3410
3924
|
});
|
|
3411
3925
|
var patchApplicationsByIdAllocateCredits = (options) => (options.client ?? client).patch({
|
|
3926
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3412
3927
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3413
3928
|
url: "/applications/{id}/allocate-credits",
|
|
3414
3929
|
...options,
|
|
@@ -3418,16 +3933,30 @@ var patchApplicationsByIdAllocateCredits = (options) => (options.client ?? clien
|
|
|
3418
3933
|
}
|
|
3419
3934
|
});
|
|
3420
3935
|
var getExtractionResultsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
3936
|
+
querySerializer: {
|
|
3937
|
+
parameters: {
|
|
3938
|
+
filter: { object: { style: "form" } },
|
|
3939
|
+
page: { object: { style: "form" } },
|
|
3940
|
+
fields: { object: { style: "form" } }
|
|
3941
|
+
}
|
|
3942
|
+
},
|
|
3421
3943
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3422
3944
|
url: "/extraction/results/workspace/{workspace_id}",
|
|
3423
3945
|
...options
|
|
3424
3946
|
});
|
|
3425
3947
|
var getSearchAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
3948
|
+
querySerializer: {
|
|
3949
|
+
parameters: {
|
|
3950
|
+
filter: { object: { style: "form" } },
|
|
3951
|
+
fields: { object: { style: "form" } }
|
|
3952
|
+
}
|
|
3953
|
+
},
|
|
3426
3954
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3427
3955
|
url: "/search/analytics/summary",
|
|
3428
3956
|
...options
|
|
3429
3957
|
});
|
|
3430
3958
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
3959
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3431
3960
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3432
3961
|
url: "/extraction/documents/begin_upload",
|
|
3433
3962
|
...options,
|
|
@@ -3437,21 +3966,25 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
3437
3966
|
}
|
|
3438
3967
|
});
|
|
3439
3968
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
3969
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3440
3970
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3441
3971
|
url: "/ai/graph/edges/{id}",
|
|
3442
3972
|
...options
|
|
3443
3973
|
});
|
|
3444
3974
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
3975
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3445
3976
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3446
3977
|
url: "/tenants/{id}",
|
|
3447
3978
|
...options
|
|
3448
3979
|
});
|
|
3449
3980
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
3981
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3450
3982
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3451
3983
|
url: "/tenants/{id}",
|
|
3452
3984
|
...options
|
|
3453
3985
|
});
|
|
3454
3986
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
3987
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3455
3988
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3456
3989
|
url: "/tenants/{id}",
|
|
3457
3990
|
...options,
|
|
@@ -3461,11 +3994,19 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
3461
3994
|
}
|
|
3462
3995
|
});
|
|
3463
3996
|
var getPlans = (options) => (options.client ?? client).get({
|
|
3997
|
+
querySerializer: {
|
|
3998
|
+
parameters: {
|
|
3999
|
+
filter: { object: { style: "form" } },
|
|
4000
|
+
page: { object: { style: "form" } },
|
|
4001
|
+
fields: { object: { style: "form" } }
|
|
4002
|
+
}
|
|
4003
|
+
},
|
|
3464
4004
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3465
4005
|
url: "/plans",
|
|
3466
4006
|
...options
|
|
3467
4007
|
});
|
|
3468
4008
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
4009
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3469
4010
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3470
4011
|
url: "/agents/{id}/test",
|
|
3471
4012
|
...options,
|
|
@@ -3475,16 +4016,24 @@ var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
|
3475
4016
|
}
|
|
3476
4017
|
});
|
|
3477
4018
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
4019
|
+
querySerializer: {
|
|
4020
|
+
parameters: {
|
|
4021
|
+
filter: { object: { style: "form" } },
|
|
4022
|
+
fields: { object: { style: "form" } }
|
|
4023
|
+
}
|
|
4024
|
+
},
|
|
3478
4025
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3479
4026
|
url: "/extraction/documents",
|
|
3480
4027
|
...options
|
|
3481
4028
|
});
|
|
3482
4029
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
4030
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3483
4031
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3484
4032
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
3485
4033
|
...options
|
|
3486
4034
|
});
|
|
3487
4035
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
4036
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3488
4037
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3489
4038
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
3490
4039
|
...options,
|
|
@@ -3494,6 +4043,7 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
3494
4043
|
}
|
|
3495
4044
|
});
|
|
3496
4045
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
4046
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3497
4047
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3498
4048
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
3499
4049
|
...options,
|
|
@@ -3503,11 +4053,18 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
3503
4053
|
}
|
|
3504
4054
|
});
|
|
3505
4055
|
var getAuditLogsActivity = (options) => (options.client ?? client).get({
|
|
4056
|
+
querySerializer: {
|
|
4057
|
+
parameters: {
|
|
4058
|
+
filter: { object: { style: "form" } },
|
|
4059
|
+
fields: { object: { style: "form" } }
|
|
4060
|
+
}
|
|
4061
|
+
},
|
|
3506
4062
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3507
4063
|
url: "/audit-logs/activity",
|
|
3508
4064
|
...options
|
|
3509
4065
|
});
|
|
3510
4066
|
var postUsersAuthResendConfirmation = (options) => (options.client ?? client).post({
|
|
4067
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3511
4068
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3512
4069
|
url: "/users/auth/resend-confirmation",
|
|
3513
4070
|
...options,
|
|
@@ -3517,11 +4074,18 @@ var postUsersAuthResendConfirmation = (options) => (options.client ?? client).po
|
|
|
3517
4074
|
}
|
|
3518
4075
|
});
|
|
3519
4076
|
var getFieldTemplates = (options) => (options.client ?? client).get({
|
|
4077
|
+
querySerializer: {
|
|
4078
|
+
parameters: {
|
|
4079
|
+
filter: { object: { style: "form" } },
|
|
4080
|
+
fields: { object: { style: "form" } }
|
|
4081
|
+
}
|
|
4082
|
+
},
|
|
3520
4083
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3521
4084
|
url: "/field_templates",
|
|
3522
4085
|
...options
|
|
3523
4086
|
});
|
|
3524
4087
|
var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
4088
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3525
4089
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3526
4090
|
url: "/field_templates",
|
|
3527
4091
|
...options,
|
|
@@ -3531,11 +4095,19 @@ var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
|
3531
4095
|
}
|
|
3532
4096
|
});
|
|
3533
4097
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
4098
|
+
querySerializer: {
|
|
4099
|
+
parameters: {
|
|
4100
|
+
filter: { object: { style: "form" } },
|
|
4101
|
+
page: { object: { style: "form" } },
|
|
4102
|
+
fields: { object: { style: "form" } }
|
|
4103
|
+
}
|
|
4104
|
+
},
|
|
3534
4105
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3535
4106
|
url: "/ai/messages",
|
|
3536
4107
|
...options
|
|
3537
4108
|
});
|
|
3538
4109
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
4110
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3539
4111
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3540
4112
|
url: "/ai/messages",
|
|
3541
4113
|
...options,
|
|
@@ -3545,6 +4117,13 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
3545
4117
|
}
|
|
3546
4118
|
});
|
|
3547
4119
|
var getWatcherEvents = (options) => (options.client ?? client).get({
|
|
4120
|
+
querySerializer: {
|
|
4121
|
+
parameters: {
|
|
4122
|
+
filter: { object: { style: "form" } },
|
|
4123
|
+
page: { object: { style: "form" } },
|
|
4124
|
+
fields: { object: { style: "form" } }
|
|
4125
|
+
}
|
|
4126
|
+
},
|
|
3548
4127
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3549
4128
|
url: "/watcher/events",
|
|
3550
4129
|
...options
|
|
@@ -3559,6 +4138,7 @@ var postWatcherEvents = (options) => (options.client ?? client).post({
|
|
|
3559
4138
|
}
|
|
3560
4139
|
});
|
|
3561
4140
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
4141
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3562
4142
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3563
4143
|
url: "/storage/sign_upload",
|
|
3564
4144
|
...options,
|
|
@@ -3568,6 +4148,7 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
3568
4148
|
}
|
|
3569
4149
|
});
|
|
3570
4150
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
4151
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3571
4152
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3572
4153
|
url: "/webhook_deliveries/{id}/retry",
|
|
3573
4154
|
...options,
|
|
@@ -3577,11 +4158,19 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
3577
4158
|
}
|
|
3578
4159
|
});
|
|
3579
4160
|
var getNotificationMethods = (options) => (options.client ?? client).get({
|
|
4161
|
+
querySerializer: {
|
|
4162
|
+
parameters: {
|
|
4163
|
+
filter: { object: { style: "form" } },
|
|
4164
|
+
page: { object: { style: "form" } },
|
|
4165
|
+
fields: { object: { style: "form" } }
|
|
4166
|
+
}
|
|
4167
|
+
},
|
|
3580
4168
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3581
4169
|
url: "/notification_methods",
|
|
3582
4170
|
...options
|
|
3583
4171
|
});
|
|
3584
4172
|
var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
4173
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3585
4174
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3586
4175
|
url: "/notification_methods",
|
|
3587
4176
|
...options,
|
|
@@ -3591,6 +4180,7 @@ var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
|
3591
4180
|
}
|
|
3592
4181
|
});
|
|
3593
4182
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
4183
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3594
4184
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3595
4185
|
url: "/threads/{id}/summarize",
|
|
3596
4186
|
...options,
|
|
@@ -3600,6 +4190,7 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
3600
4190
|
}
|
|
3601
4191
|
});
|
|
3602
4192
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
4193
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3603
4194
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3604
4195
|
url: "/configs/{key}",
|
|
3605
4196
|
...options,
|
|
@@ -3609,6 +4200,7 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
3609
4200
|
}
|
|
3610
4201
|
});
|
|
3611
4202
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
4203
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3612
4204
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3613
4205
|
url: "/api_keys/{id}/rotate",
|
|
3614
4206
|
...options,
|
|
@@ -3618,6 +4210,7 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
3618
4210
|
}
|
|
3619
4211
|
});
|
|
3620
4212
|
var postExtractionResults = (options) => (options.client ?? client).post({
|
|
4213
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3621
4214
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3622
4215
|
url: "/extraction/results",
|
|
3623
4216
|
...options,
|
|
@@ -3627,6 +4220,7 @@ var postExtractionResults = (options) => (options.client ?? client).post({
|
|
|
3627
4220
|
}
|
|
3628
4221
|
});
|
|
3629
4222
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
4223
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3630
4224
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3631
4225
|
url: "/agents/{id}/clone",
|
|
3632
4226
|
...options,
|
|
@@ -3636,16 +4230,19 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
3636
4230
|
}
|
|
3637
4231
|
});
|
|
3638
4232
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
4233
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3639
4234
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3640
4235
|
url: "/ai/conversations/{id}",
|
|
3641
4236
|
...options
|
|
3642
4237
|
});
|
|
3643
4238
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
4239
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3644
4240
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3645
4241
|
url: "/ai/conversations/{id}",
|
|
3646
4242
|
...options
|
|
3647
4243
|
});
|
|
3648
4244
|
var patchAiConversationsById = (options) => (options.client ?? client).patch({
|
|
4245
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3649
4246
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3650
4247
|
url: "/ai/conversations/{id}",
|
|
3651
4248
|
...options,
|
|
@@ -3655,16 +4252,19 @@ var patchAiConversationsById = (options) => (options.client ?? client).patch({
|
|
|
3655
4252
|
}
|
|
3656
4253
|
});
|
|
3657
4254
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
4255
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3658
4256
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3659
4257
|
url: "/user_profiles/{id}",
|
|
3660
4258
|
...options
|
|
3661
4259
|
});
|
|
3662
4260
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
4261
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3663
4262
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3664
4263
|
url: "/user_profiles/{id}",
|
|
3665
4264
|
...options
|
|
3666
4265
|
});
|
|
3667
4266
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
4267
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3668
4268
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3669
4269
|
url: "/user_profiles/{id}",
|
|
3670
4270
|
...options,
|
|
@@ -3674,6 +4274,12 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
3674
4274
|
}
|
|
3675
4275
|
});
|
|
3676
4276
|
var getInvitationsMe = (options) => (options.client ?? client).get({
|
|
4277
|
+
querySerializer: {
|
|
4278
|
+
parameters: {
|
|
4279
|
+
filter: { object: { style: "form" } },
|
|
4280
|
+
fields: { object: { style: "form" } }
|
|
4281
|
+
}
|
|
4282
|
+
},
|
|
3677
4283
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3678
4284
|
url: "/invitations/me",
|
|
3679
4285
|
...options
|
|
@@ -3688,6 +4294,7 @@ var patchAgentsByIdSchemaVersionsByVersionId = (options) => (options.client ?? c
|
|
|
3688
4294
|
}
|
|
3689
4295
|
});
|
|
3690
4296
|
var postSearchBatch = (options) => (options.client ?? client).post({
|
|
4297
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3691
4298
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3692
4299
|
url: "/search/batch",
|
|
3693
4300
|
...options,
|
|
@@ -3702,26 +4309,43 @@ var getThreadsWorkspaceStats = (options) => (options.client ?? client).get({
|
|
|
3702
4309
|
...options
|
|
3703
4310
|
});
|
|
3704
4311
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
4312
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3705
4313
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3706
4314
|
url: "/objects/{id}",
|
|
3707
4315
|
...options
|
|
3708
4316
|
});
|
|
3709
4317
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
4318
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3710
4319
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3711
4320
|
url: "/objects/{id}",
|
|
3712
4321
|
...options
|
|
3713
4322
|
});
|
|
3714
4323
|
var getExtractionDocumentsWorkspaceByWorkspaceIdExcluded = (options) => (options.client ?? client).get({
|
|
4324
|
+
querySerializer: {
|
|
4325
|
+
parameters: {
|
|
4326
|
+
filter: { object: { style: "form" } },
|
|
4327
|
+
page: { object: { style: "form" } },
|
|
4328
|
+
fields: { object: { style: "form" } }
|
|
4329
|
+
}
|
|
4330
|
+
},
|
|
3715
4331
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3716
4332
|
url: "/extraction/documents/workspace/{workspace_id}/excluded",
|
|
3717
4333
|
...options
|
|
3718
4334
|
});
|
|
3719
4335
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
4336
|
+
querySerializer: {
|
|
4337
|
+
parameters: {
|
|
4338
|
+
filter: { object: { style: "form" } },
|
|
4339
|
+
page: { object: { style: "form" } },
|
|
4340
|
+
fields: { object: { style: "form" } }
|
|
4341
|
+
}
|
|
4342
|
+
},
|
|
3720
4343
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3721
4344
|
url: "/webhook_configs",
|
|
3722
4345
|
...options
|
|
3723
4346
|
});
|
|
3724
4347
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
4348
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3725
4349
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3726
4350
|
url: "/webhook_configs",
|
|
3727
4351
|
...options,
|
|
@@ -3731,6 +4355,7 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
3731
4355
|
}
|
|
3732
4356
|
});
|
|
3733
4357
|
var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post({
|
|
4358
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3734
4359
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3735
4360
|
url: "/agents/{id}/publish_version",
|
|
3736
4361
|
...options,
|
|
@@ -3740,6 +4365,7 @@ var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post(
|
|
|
3740
4365
|
}
|
|
3741
4366
|
});
|
|
3742
4367
|
var postExtractionDocumentsBulkReprocess = (options) => (options.client ?? client).post({
|
|
4368
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3743
4369
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3744
4370
|
url: "/extraction/documents/bulk-reprocess",
|
|
3745
4371
|
...options,
|
|
@@ -3749,6 +4375,7 @@ var postExtractionDocumentsBulkReprocess = (options) => (options.client ?? clien
|
|
|
3749
4375
|
}
|
|
3750
4376
|
});
|
|
3751
4377
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
4378
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3752
4379
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3753
4380
|
url: "/objects/bulk-destroy",
|
|
3754
4381
|
...options,
|
|
@@ -3758,31 +4385,42 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
3758
4385
|
}
|
|
3759
4386
|
});
|
|
3760
4387
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
4388
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3761
4389
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3762
4390
|
url: "/applications/by-slug/{slug}",
|
|
3763
4391
|
...options
|
|
3764
4392
|
});
|
|
3765
4393
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
4394
|
+
querySerializer: {
|
|
4395
|
+
parameters: {
|
|
4396
|
+
filter: { object: { style: "form" } },
|
|
4397
|
+
fields: { object: { style: "form" } }
|
|
4398
|
+
}
|
|
4399
|
+
},
|
|
3766
4400
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3767
4401
|
url: "/notification_logs",
|
|
3768
4402
|
...options
|
|
3769
4403
|
});
|
|
3770
4404
|
var getWallet = (options) => (options.client ?? client).get({
|
|
4405
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3771
4406
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3772
4407
|
url: "/wallet",
|
|
3773
4408
|
...options
|
|
3774
4409
|
});
|
|
3775
4410
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
4411
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3776
4412
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3777
4413
|
url: "/messages/{id}",
|
|
3778
4414
|
...options
|
|
3779
4415
|
});
|
|
3780
4416
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
4417
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3781
4418
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3782
4419
|
url: "/messages/{id}",
|
|
3783
4420
|
...options
|
|
3784
4421
|
});
|
|
3785
4422
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
4423
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3786
4424
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3787
4425
|
url: "/messages/{id}",
|
|
3788
4426
|
...options,
|
|
@@ -3801,26 +4439,36 @@ var postAgentsByIdDiscoverSchema = (options) => (options.client ?? client).post(
|
|
|
3801
4439
|
}
|
|
3802
4440
|
});
|
|
3803
4441
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
4442
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3804
4443
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3805
4444
|
url: "/llm_analytics/usage",
|
|
3806
4445
|
...options
|
|
3807
4446
|
});
|
|
3808
4447
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
4448
|
+
querySerializer: {
|
|
4449
|
+
parameters: {
|
|
4450
|
+
filter: { object: { style: "form" } },
|
|
4451
|
+
fields: { object: { style: "form" } }
|
|
4452
|
+
}
|
|
4453
|
+
},
|
|
3809
4454
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3810
4455
|
url: "/search/stats",
|
|
3811
4456
|
...options
|
|
3812
4457
|
});
|
|
3813
4458
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
4459
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3814
4460
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3815
4461
|
url: "/notification_preferences/{id}",
|
|
3816
4462
|
...options
|
|
3817
4463
|
});
|
|
3818
4464
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
4465
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3819
4466
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3820
4467
|
url: "/notification_preferences/{id}",
|
|
3821
4468
|
...options
|
|
3822
4469
|
});
|
|
3823
4470
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
4471
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3824
4472
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3825
4473
|
url: "/notification_preferences/{id}",
|
|
3826
4474
|
...options,
|
|
@@ -3830,11 +4478,19 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
3830
4478
|
}
|
|
3831
4479
|
});
|
|
3832
4480
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
4481
|
+
querySerializer: {
|
|
4482
|
+
parameters: {
|
|
4483
|
+
filter: { object: { style: "form" } },
|
|
4484
|
+
page: { object: { style: "form" } },
|
|
4485
|
+
fields: { object: { style: "form" } }
|
|
4486
|
+
}
|
|
4487
|
+
},
|
|
3833
4488
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3834
4489
|
url: "/ai/graph/nodes",
|
|
3835
4490
|
...options
|
|
3836
4491
|
});
|
|
3837
4492
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
4493
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3838
4494
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3839
4495
|
url: "/ai/graph/nodes",
|
|
3840
4496
|
...options,
|
|
@@ -3844,11 +4500,19 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
3844
4500
|
}
|
|
3845
4501
|
});
|
|
3846
4502
|
var getAgents = (options) => (options.client ?? client).get({
|
|
4503
|
+
querySerializer: {
|
|
4504
|
+
parameters: {
|
|
4505
|
+
filter: { object: { style: "form" } },
|
|
4506
|
+
page: { object: { style: "form" } },
|
|
4507
|
+
fields: { object: { style: "form" } }
|
|
4508
|
+
}
|
|
4509
|
+
},
|
|
3847
4510
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3848
4511
|
url: "/agents",
|
|
3849
4512
|
...options
|
|
3850
4513
|
});
|
|
3851
4514
|
var postAgents = (options) => (options.client ?? client).post({
|
|
4515
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3852
4516
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3853
4517
|
url: "/agents",
|
|
3854
4518
|
...options,
|
|
@@ -3858,16 +4522,19 @@ var postAgents = (options) => (options.client ?? client).post({
|
|
|
3858
4522
|
}
|
|
3859
4523
|
});
|
|
3860
4524
|
var deleteApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).delete({
|
|
4525
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3861
4526
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3862
4527
|
url: "/applications/{application_id}/email-templates/{slug}",
|
|
3863
4528
|
...options
|
|
3864
4529
|
});
|
|
3865
4530
|
var getApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).get({
|
|
4531
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3866
4532
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3867
4533
|
url: "/applications/{application_id}/email-templates/{slug}",
|
|
3868
4534
|
...options
|
|
3869
4535
|
});
|
|
3870
4536
|
var patchApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).patch({
|
|
4537
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3871
4538
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3872
4539
|
url: "/applications/{application_id}/email-templates/{slug}",
|
|
3873
4540
|
...options,
|
|
@@ -3882,6 +4549,7 @@ var postAgentsByIdExport = (options) => (options.client ?? client).post({
|
|
|
3882
4549
|
...options
|
|
3883
4550
|
});
|
|
3884
4551
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
4552
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3885
4553
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3886
4554
|
url: "/users/register_isv",
|
|
3887
4555
|
...options,
|
|
@@ -3891,21 +4559,31 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
3891
4559
|
}
|
|
3892
4560
|
});
|
|
3893
4561
|
var deleteExtractionBatchesById = (options) => (options.client ?? client).delete({
|
|
4562
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3894
4563
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3895
4564
|
url: "/extraction/batches/{id}",
|
|
3896
4565
|
...options
|
|
3897
4566
|
});
|
|
3898
4567
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
4568
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3899
4569
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3900
4570
|
url: "/extraction/batches/{id}",
|
|
3901
4571
|
...options
|
|
3902
4572
|
});
|
|
3903
4573
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
4574
|
+
querySerializer: {
|
|
4575
|
+
parameters: {
|
|
4576
|
+
filter: { object: { style: "form" } },
|
|
4577
|
+
page: { object: { style: "form" } },
|
|
4578
|
+
fields: { object: { style: "form" } }
|
|
4579
|
+
}
|
|
4580
|
+
},
|
|
3904
4581
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3905
4582
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
3906
4583
|
...options
|
|
3907
4584
|
});
|
|
3908
4585
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
4586
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3909
4587
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3910
4588
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
3911
4589
|
...options,
|
|
@@ -3915,11 +4593,13 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
3915
4593
|
}
|
|
3916
4594
|
});
|
|
3917
4595
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
4596
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3918
4597
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3919
4598
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
3920
4599
|
...options
|
|
3921
4600
|
});
|
|
3922
4601
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
4602
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3923
4603
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3924
4604
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
3925
4605
|
...options,
|
|
@@ -3929,21 +4609,49 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
3929
4609
|
}
|
|
3930
4610
|
});
|
|
3931
4611
|
var getExtractionDocumentsWorkspaceByWorkspaceIdTrashed = (options) => (options.client ?? client).get({
|
|
4612
|
+
querySerializer: {
|
|
4613
|
+
parameters: {
|
|
4614
|
+
filter: { object: { style: "form" } },
|
|
4615
|
+
page: { object: { style: "form" } },
|
|
4616
|
+
fields: { object: { style: "form" } }
|
|
4617
|
+
}
|
|
4618
|
+
},
|
|
3932
4619
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3933
4620
|
url: "/extraction/documents/workspace/{workspace_id}/trashed",
|
|
3934
4621
|
...options
|
|
3935
4622
|
});
|
|
3936
4623
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
4624
|
+
querySerializer: {
|
|
4625
|
+
parameters: {
|
|
4626
|
+
filter: { object: { style: "form" } },
|
|
4627
|
+
page: { object: { style: "form" } },
|
|
4628
|
+
fields: { object: { style: "form" } }
|
|
4629
|
+
}
|
|
4630
|
+
},
|
|
3937
4631
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3938
4632
|
url: "/credit-packages",
|
|
3939
4633
|
...options
|
|
3940
4634
|
});
|
|
3941
4635
|
var getUsers = (options) => (options.client ?? client).get({
|
|
4636
|
+
querySerializer: {
|
|
4637
|
+
parameters: {
|
|
4638
|
+
filter: { object: { style: "form" } },
|
|
4639
|
+
page: { object: { style: "form" } },
|
|
4640
|
+
fields: { object: { style: "form" } }
|
|
4641
|
+
}
|
|
4642
|
+
},
|
|
3942
4643
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3943
4644
|
url: "/users",
|
|
3944
4645
|
...options
|
|
3945
4646
|
});
|
|
3946
4647
|
var getObjects = (options) => (options.client ?? client).get({
|
|
4648
|
+
querySerializer: {
|
|
4649
|
+
parameters: {
|
|
4650
|
+
filter: { object: { style: "form" } },
|
|
4651
|
+
page: { object: { style: "form" } },
|
|
4652
|
+
fields: { object: { style: "form" } }
|
|
4653
|
+
}
|
|
4654
|
+
},
|
|
3947
4655
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3948
4656
|
url: "/objects",
|
|
3949
4657
|
...options
|
|
@@ -4718,6 +5426,7 @@ var index_default = gptCore;
|
|
|
4718
5426
|
getWorkspaces,
|
|
4719
5427
|
getWorkspacesById,
|
|
4720
5428
|
getWorkspacesByIdMembers,
|
|
5429
|
+
getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping,
|
|
4721
5430
|
getWorkspacesByWorkspaceIdExtractionExports,
|
|
4722
5431
|
getWorkspacesByWorkspaceIdExtractionExportsById,
|
|
4723
5432
|
getWorkspacesByWorkspaceIdTrainingAnalytics,
|
|
@@ -4889,6 +5598,7 @@ var index_default = gptCore;
|
|
|
4889
5598
|
postWebhookDeliveriesByIdRetry,
|
|
4890
5599
|
postWorkspaceMemberships,
|
|
4891
5600
|
postWorkspaces,
|
|
5601
|
+
postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping,
|
|
4892
5602
|
postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained,
|
|
4893
5603
|
postWorkspacesByWorkspaceIdExtractionExports,
|
|
4894
5604
|
retryWithBackoff,
|