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