@gpt-core/client 0.9.12 → 0.9.14
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 +1514 -11406
- package/dist/index.d.ts +1514 -11406
- package/dist/index.js +737 -0
- package/dist/index.mjs +737 -0
- package/llms.txt +21 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1623,6 +1623,7 @@ var client = createClient(
|
|
|
1623
1623
|
|
|
1624
1624
|
// src/_internal/sdk.gen.ts
|
|
1625
1625
|
var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
1626
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1626
1627
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1627
1628
|
url: "/ai/search/advanced",
|
|
1628
1629
|
...options,
|
|
@@ -1632,21 +1633,31 @@ var postAiSearchAdvanced = (options) => (options.client ?? client).post({
|
|
|
1632
1633
|
}
|
|
1633
1634
|
});
|
|
1634
1635
|
var deleteExtractionDocumentsById = (options) => (options.client ?? client).delete({
|
|
1636
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1635
1637
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1636
1638
|
url: "/extraction/documents/{id}",
|
|
1637
1639
|
...options
|
|
1638
1640
|
});
|
|
1639
1641
|
var getExtractionDocumentsById = (options) => (options.client ?? client).get({
|
|
1642
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1640
1643
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1641
1644
|
url: "/extraction/documents/{id}",
|
|
1642
1645
|
...options
|
|
1643
1646
|
});
|
|
1644
1647
|
var getThreads = (options) => (options.client ?? client).get({
|
|
1648
|
+
querySerializer: {
|
|
1649
|
+
parameters: {
|
|
1650
|
+
filter: { object: { style: "form" } },
|
|
1651
|
+
page: { object: { style: "form" } },
|
|
1652
|
+
fields: { object: { style: "form" } }
|
|
1653
|
+
}
|
|
1654
|
+
},
|
|
1645
1655
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1646
1656
|
url: "/threads",
|
|
1647
1657
|
...options
|
|
1648
1658
|
});
|
|
1649
1659
|
var postThreads = (options) => (options.client ?? client).post({
|
|
1660
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1650
1661
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1651
1662
|
url: "/threads",
|
|
1652
1663
|
...options,
|
|
@@ -1656,6 +1667,7 @@ var postThreads = (options) => (options.client ?? client).post({
|
|
|
1656
1667
|
}
|
|
1657
1668
|
});
|
|
1658
1669
|
var patchExtractionDocumentsByIdCancel = (options) => (options.client ?? client).patch({
|
|
1670
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1659
1671
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1660
1672
|
url: "/extraction/documents/{id}/cancel",
|
|
1661
1673
|
...options,
|
|
@@ -1665,26 +1677,36 @@ var patchExtractionDocumentsByIdCancel = (options) => (options.client ?? client)
|
|
|
1665
1677
|
}
|
|
1666
1678
|
});
|
|
1667
1679
|
var getLlmAnalyticsCosts = (options) => (options.client ?? client).get({
|
|
1680
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1668
1681
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1669
1682
|
url: "/llm_analytics/costs",
|
|
1670
1683
|
...options
|
|
1671
1684
|
});
|
|
1672
1685
|
var getTrainingSessionsAgentsByAgentIdSessions = (options) => (options.client ?? client).get({
|
|
1686
|
+
querySerializer: {
|
|
1687
|
+
parameters: {
|
|
1688
|
+
filter: { object: { style: "form" } },
|
|
1689
|
+
fields: { object: { style: "form" } }
|
|
1690
|
+
}
|
|
1691
|
+
},
|
|
1673
1692
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1674
1693
|
url: "/training_sessions/agents/{agent_id}/sessions",
|
|
1675
1694
|
...options
|
|
1676
1695
|
});
|
|
1677
1696
|
var getWatcherEventsById = (options) => (options.client ?? client).get({
|
|
1697
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1678
1698
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1679
1699
|
url: "/watcher/events/{id}",
|
|
1680
1700
|
...options
|
|
1681
1701
|
});
|
|
1682
1702
|
var getAiChunksDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
1703
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1683
1704
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1684
1705
|
url: "/ai/chunks/document/{document_id}",
|
|
1685
1706
|
...options
|
|
1686
1707
|
});
|
|
1687
1708
|
var patchWalletCredits = (options) => (options.client ?? client).patch({
|
|
1709
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1688
1710
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1689
1711
|
url: "/wallet/credits",
|
|
1690
1712
|
...options,
|
|
@@ -1704,11 +1726,18 @@ var getApplicationsCurrent = (options) => (options.client ?? client).get({
|
|
|
1704
1726
|
...options
|
|
1705
1727
|
});
|
|
1706
1728
|
var getWorkspaces = (options) => (options.client ?? client).get({
|
|
1729
|
+
querySerializer: {
|
|
1730
|
+
parameters: {
|
|
1731
|
+
filter: { object: { style: "form" } },
|
|
1732
|
+
fields: { object: { style: "form" } }
|
|
1733
|
+
}
|
|
1734
|
+
},
|
|
1707
1735
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1708
1736
|
url: "/workspaces",
|
|
1709
1737
|
...options
|
|
1710
1738
|
});
|
|
1711
1739
|
var postWorkspaces = (options) => (options.client ?? client).post({
|
|
1740
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1712
1741
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1713
1742
|
url: "/workspaces",
|
|
1714
1743
|
...options,
|
|
@@ -1718,11 +1747,19 @@ var postWorkspaces = (options) => (options.client ?? client).post({
|
|
|
1718
1747
|
}
|
|
1719
1748
|
});
|
|
1720
1749
|
var getPaymentMethods = (options) => (options.client ?? client).get({
|
|
1750
|
+
querySerializer: {
|
|
1751
|
+
parameters: {
|
|
1752
|
+
filter: { object: { style: "form" } },
|
|
1753
|
+
page: { object: { style: "form" } },
|
|
1754
|
+
fields: { object: { style: "form" } }
|
|
1755
|
+
}
|
|
1756
|
+
},
|
|
1721
1757
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1722
1758
|
url: "/payment-methods",
|
|
1723
1759
|
...options
|
|
1724
1760
|
});
|
|
1725
1761
|
var postPaymentMethods = (options) => (options.client ?? client).post({
|
|
1762
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1726
1763
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1727
1764
|
url: "/payment-methods",
|
|
1728
1765
|
...options,
|
|
@@ -1732,16 +1769,19 @@ var postPaymentMethods = (options) => (options.client ?? client).post({
|
|
|
1732
1769
|
}
|
|
1733
1770
|
});
|
|
1734
1771
|
var getAgentsByIdStats = (options) => (options.client ?? client).get({
|
|
1772
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1735
1773
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1736
1774
|
url: "/agents/{id}/stats",
|
|
1737
1775
|
...options
|
|
1738
1776
|
});
|
|
1739
1777
|
var getDocumentsStats = (options) => (options.client ?? client).get({
|
|
1778
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1740
1779
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1741
1780
|
url: "/documents/stats",
|
|
1742
1781
|
...options
|
|
1743
1782
|
});
|
|
1744
1783
|
var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client).patch({
|
|
1784
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1745
1785
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1746
1786
|
url: "/extraction/documents/{id}/dismiss",
|
|
1747
1787
|
...options,
|
|
@@ -1751,6 +1791,7 @@ var patchExtractionDocumentsByIdDismiss = (options) => (options.client ?? client
|
|
|
1751
1791
|
}
|
|
1752
1792
|
});
|
|
1753
1793
|
var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
1794
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1754
1795
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1755
1796
|
url: "/objects/register",
|
|
1756
1797
|
...options,
|
|
@@ -1760,11 +1801,13 @@ var postObjectsRegister = (options) => (options.client ?? client).post({
|
|
|
1760
1801
|
}
|
|
1761
1802
|
});
|
|
1762
1803
|
var getLlmAnalyticsWorkspace = (options) => (options.client ?? client).get({
|
|
1804
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1763
1805
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1764
1806
|
url: "/llm_analytics/workspace",
|
|
1765
1807
|
...options
|
|
1766
1808
|
});
|
|
1767
1809
|
var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?? client).patch({
|
|
1810
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1768
1811
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1769
1812
|
url: "/extraction/documents/{id}/dismiss-training",
|
|
1770
1813
|
...options,
|
|
@@ -1774,6 +1817,7 @@ var patchExtractionDocumentsByIdDismissTraining = (options) => (options.client ?
|
|
|
1774
1817
|
}
|
|
1775
1818
|
});
|
|
1776
1819
|
var postAgentVersionComparisons = (options) => (options.client ?? client).post({
|
|
1820
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1777
1821
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1778
1822
|
url: "/agent_version_comparisons",
|
|
1779
1823
|
...options,
|
|
@@ -1783,6 +1827,12 @@ var postAgentVersionComparisons = (options) => (options.client ?? client).post({
|
|
|
1783
1827
|
}
|
|
1784
1828
|
});
|
|
1785
1829
|
var getSearchIndexes = (options) => (options.client ?? client).get({
|
|
1830
|
+
querySerializer: {
|
|
1831
|
+
parameters: {
|
|
1832
|
+
filter: { object: { style: "form" } },
|
|
1833
|
+
fields: { object: { style: "form" } }
|
|
1834
|
+
}
|
|
1835
|
+
},
|
|
1786
1836
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1787
1837
|
url: "/search/indexes",
|
|
1788
1838
|
...options
|
|
@@ -1797,11 +1847,13 @@ var postApplicationsByApplicationIdEmailTemplatesBySlugPreview = (options) => (o
|
|
|
1797
1847
|
}
|
|
1798
1848
|
});
|
|
1799
1849
|
var getCreditPackagesSlugBySlug = (options) => (options.client ?? client).get({
|
|
1850
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1800
1851
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1801
1852
|
url: "/credit-packages/slug/{slug}",
|
|
1802
1853
|
...options
|
|
1803
1854
|
});
|
|
1804
1855
|
var patchUsersAuthPasswordChange = (options) => (options.client ?? client).patch({
|
|
1856
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1805
1857
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1806
1858
|
url: "/users/auth/password/change",
|
|
1807
1859
|
...options,
|
|
@@ -1811,6 +1863,7 @@ var patchUsersAuthPasswordChange = (options) => (options.client ?? client).patch
|
|
|
1811
1863
|
}
|
|
1812
1864
|
});
|
|
1813
1865
|
var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
1866
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1814
1867
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1815
1868
|
url: "/extraction/batches",
|
|
1816
1869
|
...options,
|
|
@@ -1820,11 +1873,13 @@ var postExtractionBatches = (options) => (options.client ?? client).post({
|
|
|
1820
1873
|
}
|
|
1821
1874
|
});
|
|
1822
1875
|
var getLlmAnalyticsPlatform = (options) => (options.client ?? client).get({
|
|
1876
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1823
1877
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1824
1878
|
url: "/llm_analytics/platform",
|
|
1825
1879
|
...options
|
|
1826
1880
|
});
|
|
1827
1881
|
var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client).patch({
|
|
1882
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1828
1883
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1829
1884
|
url: "/extraction/documents/{id}/exclude",
|
|
1830
1885
|
...options,
|
|
@@ -1834,6 +1889,7 @@ var patchExtractionDocumentsByIdExclude = (options) => (options.client ?? client
|
|
|
1834
1889
|
}
|
|
1835
1890
|
});
|
|
1836
1891
|
var postPayments = (options) => (options.client ?? client).post({
|
|
1892
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1837
1893
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1838
1894
|
url: "/payments",
|
|
1839
1895
|
...options,
|
|
@@ -1843,6 +1899,7 @@ var postPayments = (options) => (options.client ?? client).post({
|
|
|
1843
1899
|
}
|
|
1844
1900
|
});
|
|
1845
1901
|
var postAgentsImport = (options) => (options.client ?? client).post({
|
|
1902
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1846
1903
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1847
1904
|
url: "/agents/import",
|
|
1848
1905
|
...options,
|
|
@@ -1852,6 +1909,12 @@ var postAgentsImport = (options) => (options.client ?? client).post({
|
|
|
1852
1909
|
}
|
|
1853
1910
|
});
|
|
1854
1911
|
var getExtractionBatchesWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
1912
|
+
querySerializer: {
|
|
1913
|
+
parameters: {
|
|
1914
|
+
filter: { object: { style: "form" } },
|
|
1915
|
+
fields: { object: { style: "form" } }
|
|
1916
|
+
}
|
|
1917
|
+
},
|
|
1855
1918
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1856
1919
|
url: "/extraction/batches/workspace/{workspace_id}",
|
|
1857
1920
|
...options
|
|
@@ -1866,6 +1929,7 @@ var postAgentVersionsByIdRemoveSystemField = (options) => (options.client ?? cli
|
|
|
1866
1929
|
}
|
|
1867
1930
|
});
|
|
1868
1931
|
var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1932
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1869
1933
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1870
1934
|
url: "/api_keys/{id}/revoke",
|
|
1871
1935
|
...options,
|
|
@@ -1875,16 +1939,19 @@ var patchApiKeysByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1875
1939
|
}
|
|
1876
1940
|
});
|
|
1877
1941
|
var getInvitationsConsumeByToken = (options) => (options.client ?? client).get({
|
|
1942
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1878
1943
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1879
1944
|
url: "/invitations/consume/{token}",
|
|
1880
1945
|
...options
|
|
1881
1946
|
});
|
|
1882
1947
|
var getExtractionDocumentsByIdStatus = (options) => (options.client ?? client).get({
|
|
1948
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1883
1949
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1884
1950
|
url: "/extraction/documents/{id}/status",
|
|
1885
1951
|
...options
|
|
1886
1952
|
});
|
|
1887
1953
|
var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client).patch({
|
|
1954
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1888
1955
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1889
1956
|
url: "/extraction/documents/{id}/status",
|
|
1890
1957
|
...options,
|
|
@@ -1894,6 +1961,7 @@ var patchExtractionDocumentsByIdStatus = (options) => (options.client ?? client)
|
|
|
1894
1961
|
}
|
|
1895
1962
|
});
|
|
1896
1963
|
var patchExtractionDocumentsByIdFinishUpload = (options) => (options.client ?? client).patch({
|
|
1964
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1897
1965
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1898
1966
|
url: "/extraction/documents/{id}/finish_upload",
|
|
1899
1967
|
...options,
|
|
@@ -1908,6 +1976,7 @@ var getUsersMeDashboard = (options) => (options.client ?? client).get({
|
|
|
1908
1976
|
...options
|
|
1909
1977
|
});
|
|
1910
1978
|
var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch({
|
|
1979
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1911
1980
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1912
1981
|
url: "/workspaces/{id}/allocate",
|
|
1913
1982
|
...options,
|
|
@@ -1917,6 +1986,7 @@ var patchWorkspacesByIdAllocate = (options) => (options.client ?? client).patch(
|
|
|
1917
1986
|
}
|
|
1918
1987
|
});
|
|
1919
1988
|
var postThreadsActive = (options) => (options.client ?? client).post({
|
|
1989
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1920
1990
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1921
1991
|
url: "/threads/active",
|
|
1922
1992
|
...options,
|
|
@@ -1926,6 +1996,7 @@ var postThreadsActive = (options) => (options.client ?? client).post({
|
|
|
1926
1996
|
}
|
|
1927
1997
|
});
|
|
1928
1998
|
var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
1999
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1929
2000
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1930
2001
|
url: "/invitations/{id}/revoke",
|
|
1931
2002
|
...options,
|
|
@@ -1935,11 +2006,18 @@ var patchInvitationsByIdRevoke = (options) => (options.client ?? client).patch({
|
|
|
1935
2006
|
}
|
|
1936
2007
|
});
|
|
1937
2008
|
var getAiGraphNodesLabelByLabel = (options) => (options.client ?? client).get({
|
|
2009
|
+
querySerializer: {
|
|
2010
|
+
parameters: {
|
|
2011
|
+
filter: { object: { style: "form" } },
|
|
2012
|
+
fields: { object: { style: "form" } }
|
|
2013
|
+
}
|
|
2014
|
+
},
|
|
1938
2015
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1939
2016
|
url: "/ai/graph/nodes/label/{label}",
|
|
1940
2017
|
...options
|
|
1941
2018
|
});
|
|
1942
2019
|
var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options) => (options.client ?? client).post({
|
|
2020
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1943
2021
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1944
2022
|
url: "/workspaces/{workspace_id}/extraction/documents/dismiss-all-trained",
|
|
1945
2023
|
...options,
|
|
@@ -1949,11 +2027,19 @@ var postWorkspacesByWorkspaceIdExtractionDocumentsDismissAllTrained = (options)
|
|
|
1949
2027
|
}
|
|
1950
2028
|
});
|
|
1951
2029
|
var getConfigs = (options) => (options.client ?? client).get({
|
|
2030
|
+
querySerializer: {
|
|
2031
|
+
parameters: {
|
|
2032
|
+
filter: { object: { style: "form" } },
|
|
2033
|
+
page: { object: { style: "form" } },
|
|
2034
|
+
fields: { object: { style: "form" } }
|
|
2035
|
+
}
|
|
2036
|
+
},
|
|
1952
2037
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1953
2038
|
url: "/configs",
|
|
1954
2039
|
...options
|
|
1955
2040
|
});
|
|
1956
2041
|
var postConfigs = (options) => (options.client ?? client).post({
|
|
2042
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1957
2043
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1958
2044
|
url: "/configs",
|
|
1959
2045
|
...options,
|
|
@@ -1963,6 +2049,7 @@ var postConfigs = (options) => (options.client ?? client).post({
|
|
|
1963
2049
|
}
|
|
1964
2050
|
});
|
|
1965
2051
|
var patchWalletAutoTopUp = (options) => (options.client ?? client).patch({
|
|
2052
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1966
2053
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1967
2054
|
url: "/wallet/auto-top-up",
|
|
1968
2055
|
...options,
|
|
@@ -1972,6 +2059,7 @@ var patchWalletAutoTopUp = (options) => (options.client ?? client).patch({
|
|
|
1972
2059
|
}
|
|
1973
2060
|
});
|
|
1974
2061
|
var postTokens = (options) => (options.client ?? client).post({
|
|
2062
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1975
2063
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1976
2064
|
url: "/tokens",
|
|
1977
2065
|
...options,
|
|
@@ -1981,6 +2069,7 @@ var postTokens = (options) => (options.client ?? client).post({
|
|
|
1981
2069
|
}
|
|
1982
2070
|
});
|
|
1983
2071
|
var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
|
|
2072
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1984
2073
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1985
2074
|
url: "/api_keys/{id}/set_budget",
|
|
1986
2075
|
...options,
|
|
@@ -1990,16 +2079,19 @@ var patchApiKeysByIdSetBudget = (options) => (options.client ?? client).patch({
|
|
|
1990
2079
|
}
|
|
1991
2080
|
});
|
|
1992
2081
|
var deleteTrainingExamplesById = (options) => (options.client ?? client).delete({
|
|
2082
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1993
2083
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1994
2084
|
url: "/training_examples/{id}",
|
|
1995
2085
|
...options
|
|
1996
2086
|
});
|
|
1997
2087
|
var getTrainingExamplesById = (options) => (options.client ?? client).get({
|
|
2088
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
1998
2089
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1999
2090
|
url: "/training_examples/{id}",
|
|
2000
2091
|
...options
|
|
2001
2092
|
});
|
|
2002
2093
|
var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
2094
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2003
2095
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2004
2096
|
url: "/training_examples/{id}",
|
|
2005
2097
|
...options,
|
|
@@ -2009,11 +2101,13 @@ var patchTrainingExamplesById = (options) => (options.client ?? client).patch({
|
|
|
2009
2101
|
}
|
|
2010
2102
|
});
|
|
2011
2103
|
var deleteSearchSavedById = (options) => (options.client ?? client).delete({
|
|
2104
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2012
2105
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2013
2106
|
url: "/search/saved/{id}",
|
|
2014
2107
|
...options
|
|
2015
2108
|
});
|
|
2016
2109
|
var patchSearchSavedById = (options) => (options.client ?? client).patch({
|
|
2110
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2017
2111
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2018
2112
|
url: "/search/saved/{id}",
|
|
2019
2113
|
...options,
|
|
@@ -2023,6 +2117,7 @@ var patchSearchSavedById = (options) => (options.client ?? client).patch({
|
|
|
2023
2117
|
}
|
|
2024
2118
|
});
|
|
2025
2119
|
var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
2120
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2026
2121
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2027
2122
|
url: "/users/{id}/admin/email",
|
|
2028
2123
|
...options,
|
|
@@ -2032,6 +2127,13 @@ var patchUsersByIdAdminEmail = (options) => (options.client ?? client).patch({
|
|
|
2032
2127
|
}
|
|
2033
2128
|
});
|
|
2034
2129
|
var getExtractionDocumentsWorkspaceByWorkspaceIdTrained = (options) => (options.client ?? client).get({
|
|
2130
|
+
querySerializer: {
|
|
2131
|
+
parameters: {
|
|
2132
|
+
filter: { object: { style: "form" } },
|
|
2133
|
+
page: { object: { style: "form" } },
|
|
2134
|
+
fields: { object: { style: "form" } }
|
|
2135
|
+
}
|
|
2136
|
+
},
|
|
2035
2137
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2036
2138
|
url: "/extraction/documents/workspace/{workspace_id}/trained",
|
|
2037
2139
|
...options
|
|
@@ -2051,6 +2153,7 @@ var getWatcherClaimsStatus = (options) => (options.client ?? client).get({
|
|
|
2051
2153
|
...options
|
|
2052
2154
|
});
|
|
2053
2155
|
var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch({
|
|
2156
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2054
2157
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2055
2158
|
url: "/users/auth/reset-password",
|
|
2056
2159
|
...options,
|
|
@@ -2060,16 +2163,25 @@ var patchUsersAuthResetPassword = (options) => (options.client ?? client).patch(
|
|
|
2060
2163
|
}
|
|
2061
2164
|
});
|
|
2062
2165
|
var getBucketsByIdStats = (options) => (options.client ?? client).get({
|
|
2166
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2063
2167
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2064
2168
|
url: "/buckets/{id}/stats",
|
|
2065
2169
|
...options
|
|
2066
2170
|
});
|
|
2067
2171
|
var getApplicationsByApplicationIdEmailTemplates = (options) => (options.client ?? client).get({
|
|
2172
|
+
querySerializer: {
|
|
2173
|
+
parameters: {
|
|
2174
|
+
filter: { object: { style: "form" } },
|
|
2175
|
+
page: { object: { style: "form" } },
|
|
2176
|
+
fields: { object: { style: "form" } }
|
|
2177
|
+
}
|
|
2178
|
+
},
|
|
2068
2179
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2069
2180
|
url: "/applications/{application_id}/email-templates",
|
|
2070
2181
|
...options
|
|
2071
2182
|
});
|
|
2072
2183
|
var postApplicationsByApplicationIdEmailTemplates = (options) => (options.client ?? client).post({
|
|
2184
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2073
2185
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2074
2186
|
url: "/applications/{application_id}/email-templates",
|
|
2075
2187
|
...options,
|
|
@@ -2079,11 +2191,18 @@ var postApplicationsByApplicationIdEmailTemplates = (options) => (options.client
|
|
|
2079
2191
|
}
|
|
2080
2192
|
});
|
|
2081
2193
|
var getAgentsUsage = (options) => (options.client ?? client).get({
|
|
2194
|
+
querySerializer: {
|
|
2195
|
+
parameters: {
|
|
2196
|
+
filter: { object: { style: "form" } },
|
|
2197
|
+
fields: { object: { style: "form" } }
|
|
2198
|
+
}
|
|
2199
|
+
},
|
|
2082
2200
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2083
2201
|
url: "/agents/usage",
|
|
2084
2202
|
...options
|
|
2085
2203
|
});
|
|
2086
2204
|
var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? client).patch({
|
|
2205
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2087
2206
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2088
2207
|
url: "/notification_methods/{id}/set_primary",
|
|
2089
2208
|
...options,
|
|
@@ -2093,11 +2212,13 @@ var patchNotificationMethodsByIdSetPrimary = (options) => (options.client ?? cli
|
|
|
2093
2212
|
}
|
|
2094
2213
|
});
|
|
2095
2214
|
var getBucketsByIdObjects = (options) => (options.client ?? client).get({
|
|
2215
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2096
2216
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2097
2217
|
url: "/buckets/{id}/objects",
|
|
2098
2218
|
...options
|
|
2099
2219
|
});
|
|
2100
2220
|
var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
2221
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2101
2222
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2102
2223
|
url: "/invitations/{id}/resend",
|
|
2103
2224
|
...options,
|
|
@@ -2107,6 +2228,7 @@ var patchInvitationsByIdResend = (options) => (options.client ?? client).patch({
|
|
|
2107
2228
|
}
|
|
2108
2229
|
});
|
|
2109
2230
|
var postExtractionSchemaDiscoveries = (options) => (options.client ?? client).post({
|
|
2231
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2110
2232
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2111
2233
|
url: "/extraction/schema_discoveries",
|
|
2112
2234
|
...options,
|
|
@@ -2116,11 +2238,18 @@ var postExtractionSchemaDiscoveries = (options) => (options.client ?? client).po
|
|
|
2116
2238
|
}
|
|
2117
2239
|
});
|
|
2118
2240
|
var getSearchSaved = (options) => (options.client ?? client).get({
|
|
2241
|
+
querySerializer: {
|
|
2242
|
+
parameters: {
|
|
2243
|
+
filter: { object: { style: "form" } },
|
|
2244
|
+
fields: { object: { style: "form" } }
|
|
2245
|
+
}
|
|
2246
|
+
},
|
|
2119
2247
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2120
2248
|
url: "/search/saved",
|
|
2121
2249
|
...options
|
|
2122
2250
|
});
|
|
2123
2251
|
var postSearchSaved = (options) => (options.client ?? client).post({
|
|
2252
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2124
2253
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2125
2254
|
url: "/search/saved",
|
|
2126
2255
|
...options,
|
|
@@ -2130,6 +2259,7 @@ var postSearchSaved = (options) => (options.client ?? client).post({
|
|
|
2130
2259
|
}
|
|
2131
2260
|
});
|
|
2132
2261
|
var patchNotificationMethodsByIdSendVerification = (options) => (options.client ?? client).patch({
|
|
2262
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2133
2263
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2134
2264
|
url: "/notification_methods/{id}/send_verification",
|
|
2135
2265
|
...options,
|
|
@@ -2139,41 +2269,59 @@ var patchNotificationMethodsByIdSendVerification = (options) => (options.client
|
|
|
2139
2269
|
}
|
|
2140
2270
|
});
|
|
2141
2271
|
var deleteFieldTemplatesById = (options) => (options.client ?? client).delete({
|
|
2272
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2142
2273
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2143
2274
|
url: "/field_templates/{id}",
|
|
2144
2275
|
...options
|
|
2145
2276
|
});
|
|
2146
2277
|
var getFieldTemplatesById = (options) => (options.client ?? client).get({
|
|
2278
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2147
2279
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2148
2280
|
url: "/field_templates/{id}",
|
|
2149
2281
|
...options
|
|
2150
2282
|
});
|
|
2151
2283
|
var getWorkspacesByWorkspaceIdTrainingAnalytics = (options) => (options.client ?? client).get({
|
|
2284
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2152
2285
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2153
2286
|
url: "/workspaces/{workspace_id}/training/analytics",
|
|
2154
2287
|
...options
|
|
2155
2288
|
});
|
|
2156
2289
|
var getUserProfilesMe = (options) => (options.client ?? client).get({
|
|
2290
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2157
2291
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2158
2292
|
url: "/user_profiles/me",
|
|
2159
2293
|
...options
|
|
2160
2294
|
});
|
|
2161
2295
|
var getExtractionSchemaDiscoveriesById = (options) => (options.client ?? client).get({
|
|
2296
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2162
2297
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2163
2298
|
url: "/extraction/schema_discoveries/{id}",
|
|
2164
2299
|
...options
|
|
2165
2300
|
});
|
|
2166
2301
|
var getApiKeysActive = (options) => (options.client ?? client).get({
|
|
2302
|
+
querySerializer: {
|
|
2303
|
+
parameters: {
|
|
2304
|
+
filter: { object: { style: "form" } },
|
|
2305
|
+
fields: { object: { style: "form" } }
|
|
2306
|
+
}
|
|
2307
|
+
},
|
|
2167
2308
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2168
2309
|
url: "/api_keys/active",
|
|
2169
2310
|
...options
|
|
2170
2311
|
});
|
|
2171
2312
|
var getAgentVersions = (options) => (options.client ?? client).get({
|
|
2313
|
+
querySerializer: {
|
|
2314
|
+
parameters: {
|
|
2315
|
+
filter: { object: { style: "form" } },
|
|
2316
|
+
fields: { object: { style: "form" } }
|
|
2317
|
+
}
|
|
2318
|
+
},
|
|
2172
2319
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2173
2320
|
url: "/agent_versions",
|
|
2174
2321
|
...options
|
|
2175
2322
|
});
|
|
2176
2323
|
var postAgentVersions = (options) => (options.client ?? client).post({
|
|
2324
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2177
2325
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2178
2326
|
url: "/agent_versions",
|
|
2179
2327
|
...options,
|
|
@@ -2183,6 +2331,7 @@ var postAgentVersions = (options) => (options.client ?? client).post({
|
|
|
2183
2331
|
}
|
|
2184
2332
|
});
|
|
2185
2333
|
var patchInvitationsByIdAcceptByUser = (options) => (options.client ?? client).patch({
|
|
2334
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2186
2335
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2187
2336
|
url: "/invitations/{id}/accept-by-user",
|
|
2188
2337
|
...options,
|
|
@@ -2192,6 +2341,7 @@ var patchInvitationsByIdAcceptByUser = (options) => (options.client ?? client).p
|
|
|
2192
2341
|
}
|
|
2193
2342
|
});
|
|
2194
2343
|
var getPermissionsMeta = (options) => (options.client ?? client).get({
|
|
2344
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2195
2345
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2196
2346
|
url: "/permissions/meta",
|
|
2197
2347
|
...options
|
|
@@ -2206,21 +2356,30 @@ var postApplicationsByApplicationIdEmailTemplatesBySlugTest = (options) => (opti
|
|
|
2206
2356
|
}
|
|
2207
2357
|
});
|
|
2208
2358
|
var getSearchSuggest = (options) => (options.client ?? client).get({
|
|
2359
|
+
querySerializer: {
|
|
2360
|
+
parameters: {
|
|
2361
|
+
filter: { object: { style: "form" } },
|
|
2362
|
+
fields: { object: { style: "form" } }
|
|
2363
|
+
}
|
|
2364
|
+
},
|
|
2209
2365
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2210
2366
|
url: "/search/suggest",
|
|
2211
2367
|
...options
|
|
2212
2368
|
});
|
|
2213
2369
|
var deleteWebhookConfigsById = (options) => (options.client ?? client).delete({
|
|
2370
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2214
2371
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2215
2372
|
url: "/webhook_configs/{id}",
|
|
2216
2373
|
...options
|
|
2217
2374
|
});
|
|
2218
2375
|
var getWebhookConfigsById = (options) => (options.client ?? client).get({
|
|
2376
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2219
2377
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2220
2378
|
url: "/webhook_configs/{id}",
|
|
2221
2379
|
...options
|
|
2222
2380
|
});
|
|
2223
2381
|
var patchWebhookConfigsById = (options) => (options.client ?? client).patch({
|
|
2382
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2224
2383
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2225
2384
|
url: "/webhook_configs/{id}",
|
|
2226
2385
|
...options,
|
|
@@ -2239,6 +2398,7 @@ var postWebhookConfigsBulkEnable = (options) => (options.client ?? client).post(
|
|
|
2239
2398
|
}
|
|
2240
2399
|
});
|
|
2241
2400
|
var postInvitationsAcceptByToken = (options) => (options.client ?? client).post({
|
|
2401
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2242
2402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2243
2403
|
url: "/invitations/accept_by_token",
|
|
2244
2404
|
...options,
|
|
@@ -2248,16 +2408,19 @@ var postInvitationsAcceptByToken = (options) => (options.client ?? client).post(
|
|
|
2248
2408
|
}
|
|
2249
2409
|
});
|
|
2250
2410
|
var deleteAiMessagesById = (options) => (options.client ?? client).delete({
|
|
2411
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2251
2412
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2252
2413
|
url: "/ai/messages/{id}",
|
|
2253
2414
|
...options
|
|
2254
2415
|
});
|
|
2255
2416
|
var getExtractionBatchesByIdUploadUrls = (options) => (options.client ?? client).get({
|
|
2417
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2256
2418
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2257
2419
|
url: "/extraction/batches/{id}/upload-urls",
|
|
2258
2420
|
...options
|
|
2259
2421
|
});
|
|
2260
2422
|
var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
2423
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2261
2424
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2262
2425
|
url: "/documents/bulk_delete",
|
|
2263
2426
|
...options,
|
|
@@ -2267,16 +2430,19 @@ var postDocumentsBulkDelete = (options) => (options.client ?? client).post({
|
|
|
2267
2430
|
}
|
|
2268
2431
|
});
|
|
2269
2432
|
var deleteAgentVersionsById = (options) => (options.client ?? client).delete({
|
|
2433
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2270
2434
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2271
2435
|
url: "/agent_versions/{id}",
|
|
2272
2436
|
...options
|
|
2273
2437
|
});
|
|
2274
2438
|
var getAgentVersionsById = (options) => (options.client ?? client).get({
|
|
2439
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2275
2440
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2276
2441
|
url: "/agent_versions/{id}",
|
|
2277
2442
|
...options
|
|
2278
2443
|
});
|
|
2279
2444
|
var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
2445
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2280
2446
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2281
2447
|
url: "/ai/chunks/search",
|
|
2282
2448
|
...options,
|
|
@@ -2286,11 +2452,13 @@ var postAiChunksSearch = (options) => (options.client ?? client).post({
|
|
|
2286
2452
|
}
|
|
2287
2453
|
});
|
|
2288
2454
|
var getThreadsByIdMessages = (options) => (options.client ?? client).get({
|
|
2455
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2289
2456
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2290
2457
|
url: "/threads/{id}/messages",
|
|
2291
2458
|
...options
|
|
2292
2459
|
});
|
|
2293
2460
|
var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
2461
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2294
2462
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2295
2463
|
url: "/threads/{id}/messages",
|
|
2296
2464
|
...options,
|
|
@@ -2300,6 +2468,7 @@ var postThreadsByIdMessages = (options) => (options.client ?? client).post({
|
|
|
2300
2468
|
}
|
|
2301
2469
|
});
|
|
2302
2470
|
var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
2471
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2303
2472
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2304
2473
|
url: "/agents/clone_for_workspace",
|
|
2305
2474
|
...options,
|
|
@@ -2309,6 +2478,7 @@ var postAgentsCloneForWorkspace = (options) => (options.client ?? client).post({
|
|
|
2309
2478
|
}
|
|
2310
2479
|
});
|
|
2311
2480
|
var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
2481
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2312
2482
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2313
2483
|
url: "/invitations/{id}/accept",
|
|
2314
2484
|
...options,
|
|
@@ -2318,31 +2488,37 @@ var patchInvitationsByIdAccept = (options) => (options.client ?? client).patch({
|
|
|
2318
2488
|
}
|
|
2319
2489
|
});
|
|
2320
2490
|
var getCreditPackagesById = (options) => (options.client ?? client).get({
|
|
2491
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2321
2492
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2322
2493
|
url: "/credit-packages/{id}",
|
|
2323
2494
|
...options
|
|
2324
2495
|
});
|
|
2325
2496
|
var deleteUsersById = (options) => (options.client ?? client).delete({
|
|
2497
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2326
2498
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2327
2499
|
url: "/users/{id}",
|
|
2328
2500
|
...options
|
|
2329
2501
|
});
|
|
2330
2502
|
var getUsersById = (options) => (options.client ?? client).get({
|
|
2503
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2331
2504
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2332
2505
|
url: "/users/{id}",
|
|
2333
2506
|
...options
|
|
2334
2507
|
});
|
|
2335
2508
|
var deleteExtractionResultsById = (options) => (options.client ?? client).delete({
|
|
2509
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2336
2510
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2337
2511
|
url: "/extraction/results/{id}",
|
|
2338
2512
|
...options
|
|
2339
2513
|
});
|
|
2340
2514
|
var getExtractionResultsById = (options) => (options.client ?? client).get({
|
|
2515
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2341
2516
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2342
2517
|
url: "/extraction/results/{id}",
|
|
2343
2518
|
...options
|
|
2344
2519
|
});
|
|
2345
2520
|
var patchExtractionResultsById = (options) => (options.client ?? client).patch({
|
|
2521
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2346
2522
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2347
2523
|
url: "/extraction/results/{id}",
|
|
2348
2524
|
...options,
|
|
@@ -2357,6 +2533,7 @@ var getWebhookDeliveriesStats = (options) => (options.client ?? client).get({
|
|
|
2357
2533
|
...options
|
|
2358
2534
|
});
|
|
2359
2535
|
var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
2536
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2360
2537
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2361
2538
|
url: "/agents/{id}/validate",
|
|
2362
2539
|
...options,
|
|
@@ -2366,6 +2543,7 @@ var postAgentsByIdValidate = (options) => (options.client ?? client).post({
|
|
|
2366
2543
|
}
|
|
2367
2544
|
});
|
|
2368
2545
|
var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
2546
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2369
2547
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2370
2548
|
url: "/webhook_configs/{id}/test",
|
|
2371
2549
|
...options,
|
|
@@ -2375,11 +2553,13 @@ var postWebhookConfigsByIdTest = (options) => (options.client ?? client).post({
|
|
|
2375
2553
|
}
|
|
2376
2554
|
});
|
|
2377
2555
|
var getUsersMe = (options) => (options.client ?? client).get({
|
|
2556
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2378
2557
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2379
2558
|
url: "/users/me",
|
|
2380
2559
|
...options
|
|
2381
2560
|
});
|
|
2382
2561
|
var postUsersAuthRegisterWithOidc = (options) => (options.client ?? client).post({
|
|
2562
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2383
2563
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2384
2564
|
url: "/users/auth/register_with_oidc",
|
|
2385
2565
|
...options,
|
|
@@ -2403,6 +2583,7 @@ var postAgentsByIdSchemaVersions = (options) => (options.client ?? client).post(
|
|
|
2403
2583
|
}
|
|
2404
2584
|
});
|
|
2405
2585
|
var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
2586
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2406
2587
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2407
2588
|
url: "/tenants/{id}/credit",
|
|
2408
2589
|
...options,
|
|
@@ -2412,6 +2593,7 @@ var postTenantsByIdCredit = (options) => (options.client ?? client).post({
|
|
|
2412
2593
|
}
|
|
2413
2594
|
});
|
|
2414
2595
|
var getTransactionsById = (options) => (options.client ?? client).get({
|
|
2596
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2415
2597
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2416
2598
|
url: "/transactions/{id}",
|
|
2417
2599
|
...options
|
|
@@ -2422,11 +2604,19 @@ var getUsersMeTenants = (options) => (options.client ?? client).get({
|
|
|
2422
2604
|
...options
|
|
2423
2605
|
});
|
|
2424
2606
|
var getTenantMemberships = (options) => (options.client ?? client).get({
|
|
2607
|
+
querySerializer: {
|
|
2608
|
+
parameters: {
|
|
2609
|
+
filter: { object: { style: "form" } },
|
|
2610
|
+
page: { object: { style: "form" } },
|
|
2611
|
+
fields: { object: { style: "form" } }
|
|
2612
|
+
}
|
|
2613
|
+
},
|
|
2425
2614
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2426
2615
|
url: "/tenant-memberships",
|
|
2427
2616
|
...options
|
|
2428
2617
|
});
|
|
2429
2618
|
var postTenantMemberships = (options) => (options.client ?? client).post({
|
|
2619
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2430
2620
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2431
2621
|
url: "/tenant-memberships",
|
|
2432
2622
|
...options,
|
|
@@ -2445,6 +2635,7 @@ var postTrainingExamplesBulkDelete = (options) => (options.client ?? client).pos
|
|
|
2445
2635
|
}
|
|
2446
2636
|
});
|
|
2447
2637
|
var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client).patch({
|
|
2638
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2448
2639
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2449
2640
|
url: "/extraction/documents/{id}/include",
|
|
2450
2641
|
...options,
|
|
@@ -2454,6 +2645,7 @@ var patchExtractionDocumentsByIdInclude = (options) => (options.client ?? client
|
|
|
2454
2645
|
}
|
|
2455
2646
|
});
|
|
2456
2647
|
var getLlmAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
2648
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2457
2649
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2458
2650
|
url: "/llm_analytics/summary",
|
|
2459
2651
|
...options
|
|
@@ -2469,6 +2661,7 @@ var getUsersMeStats = (options) => (options.client ?? client).get({
|
|
|
2469
2661
|
...options
|
|
2470
2662
|
});
|
|
2471
2663
|
var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
2664
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2472
2665
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2473
2666
|
url: "/storage/sign_download",
|
|
2474
2667
|
...options,
|
|
@@ -2478,31 +2671,37 @@ var postStorageSignDownload = (options) => (options.client ?? client).post({
|
|
|
2478
2671
|
}
|
|
2479
2672
|
});
|
|
2480
2673
|
var deleteTrainingSessionsById = (options) => (options.client ?? client).delete({
|
|
2674
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2481
2675
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2482
2676
|
url: "/training_sessions/{id}",
|
|
2483
2677
|
...options
|
|
2484
2678
|
});
|
|
2485
2679
|
var getTrainingSessionsById = (options) => (options.client ?? client).get({
|
|
2680
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2486
2681
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2487
2682
|
url: "/training_sessions/{id}",
|
|
2488
2683
|
...options
|
|
2489
2684
|
});
|
|
2490
2685
|
var getUsersByEmail = (options) => (options.client ?? client).get({
|
|
2686
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2491
2687
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2492
2688
|
url: "/users/by-email",
|
|
2493
2689
|
...options
|
|
2494
2690
|
});
|
|
2495
2691
|
var deleteNotificationMethodsById = (options) => (options.client ?? client).delete({
|
|
2692
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2496
2693
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2497
2694
|
url: "/notification_methods/{id}",
|
|
2498
2695
|
...options
|
|
2499
2696
|
});
|
|
2500
2697
|
var getNotificationMethodsById = (options) => (options.client ?? client).get({
|
|
2698
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2501
2699
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2502
2700
|
url: "/notification_methods/{id}",
|
|
2503
2701
|
...options
|
|
2504
2702
|
});
|
|
2505
2703
|
var patchNotificationMethodsById = (options) => (options.client ?? client).patch({
|
|
2704
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2506
2705
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2507
2706
|
url: "/notification_methods/{id}",
|
|
2508
2707
|
...options,
|
|
@@ -2512,6 +2711,13 @@ var patchNotificationMethodsById = (options) => (options.client ?? client).patch
|
|
|
2512
2711
|
}
|
|
2513
2712
|
});
|
|
2514
2713
|
var getWebhookDeliveries = (options) => (options.client ?? client).get({
|
|
2714
|
+
querySerializer: {
|
|
2715
|
+
parameters: {
|
|
2716
|
+
filter: { object: { style: "form" } },
|
|
2717
|
+
page: { object: { style: "form" } },
|
|
2718
|
+
fields: { object: { style: "form" } }
|
|
2719
|
+
}
|
|
2720
|
+
},
|
|
2515
2721
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2516
2722
|
url: "/webhook_deliveries",
|
|
2517
2723
|
...options
|
|
@@ -2526,16 +2732,29 @@ var postWebhookConfigsBulkDisable = (options) => (options.client ?? client).post
|
|
|
2526
2732
|
}
|
|
2527
2733
|
});
|
|
2528
2734
|
var getSearch = (options) => (options.client ?? client).get({
|
|
2735
|
+
querySerializer: {
|
|
2736
|
+
parameters: {
|
|
2737
|
+
filter: { object: { style: "form" } },
|
|
2738
|
+
fields: { object: { style: "form" } }
|
|
2739
|
+
}
|
|
2740
|
+
},
|
|
2529
2741
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2530
2742
|
url: "/search",
|
|
2531
2743
|
...options
|
|
2532
2744
|
});
|
|
2533
2745
|
var getInvitations = (options) => (options.client ?? client).get({
|
|
2746
|
+
querySerializer: {
|
|
2747
|
+
parameters: {
|
|
2748
|
+
filter: { object: { style: "form" } },
|
|
2749
|
+
fields: { object: { style: "form" } }
|
|
2750
|
+
}
|
|
2751
|
+
},
|
|
2534
2752
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2535
2753
|
url: "/invitations",
|
|
2536
2754
|
...options
|
|
2537
2755
|
});
|
|
2538
2756
|
var postInvitations = (options) => (options.client ?? client).post({
|
|
2757
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2539
2758
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2540
2759
|
url: "/invitations",
|
|
2541
2760
|
...options,
|
|
@@ -2545,6 +2764,7 @@ var postInvitations = (options) => (options.client ?? client).post({
|
|
|
2545
2764
|
}
|
|
2546
2765
|
});
|
|
2547
2766
|
var patchThreadsByIdArchive = (options) => (options.client ?? client).patch({
|
|
2767
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2548
2768
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2549
2769
|
url: "/threads/{id}/archive",
|
|
2550
2770
|
...options,
|
|
@@ -2554,26 +2774,47 @@ var patchThreadsByIdArchive = (options) => (options.client ?? client).patch({
|
|
|
2554
2774
|
}
|
|
2555
2775
|
});
|
|
2556
2776
|
var getApiKeysStats = (options) => (options.client ?? client).get({
|
|
2777
|
+
querySerializer: {
|
|
2778
|
+
parameters: {
|
|
2779
|
+
filter: { object: { style: "form" } },
|
|
2780
|
+
fields: { object: { style: "form" } }
|
|
2781
|
+
}
|
|
2782
|
+
},
|
|
2557
2783
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2558
2784
|
url: "/api_keys/stats",
|
|
2559
2785
|
...options
|
|
2560
2786
|
});
|
|
2561
2787
|
var getSearchSemantic = (options) => (options.client ?? client).get({
|
|
2788
|
+
querySerializer: {
|
|
2789
|
+
parameters: {
|
|
2790
|
+
filter: { object: { style: "form" } },
|
|
2791
|
+
fields: { object: { style: "form" } }
|
|
2792
|
+
}
|
|
2793
|
+
},
|
|
2562
2794
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2563
2795
|
url: "/search/semantic",
|
|
2564
2796
|
...options
|
|
2565
2797
|
});
|
|
2566
2798
|
var getThreadsStats = (options) => (options.client ?? client).get({
|
|
2799
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2567
2800
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2568
2801
|
url: "/threads/stats",
|
|
2569
2802
|
...options
|
|
2570
2803
|
});
|
|
2571
2804
|
var getMessages = (options) => (options.client ?? client).get({
|
|
2805
|
+
querySerializer: {
|
|
2806
|
+
parameters: {
|
|
2807
|
+
filter: { object: { style: "form" } },
|
|
2808
|
+
page: { object: { style: "form" } },
|
|
2809
|
+
fields: { object: { style: "form" } }
|
|
2810
|
+
}
|
|
2811
|
+
},
|
|
2572
2812
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2573
2813
|
url: "/messages",
|
|
2574
2814
|
...options
|
|
2575
2815
|
});
|
|
2576
2816
|
var postMessages = (options) => (options.client ?? client).post({
|
|
2817
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2577
2818
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2578
2819
|
url: "/messages",
|
|
2579
2820
|
...options,
|
|
@@ -2583,11 +2824,19 @@ var postMessages = (options) => (options.client ?? client).post({
|
|
|
2583
2824
|
}
|
|
2584
2825
|
});
|
|
2585
2826
|
var getNotificationPreferences = (options) => (options.client ?? client).get({
|
|
2827
|
+
querySerializer: {
|
|
2828
|
+
parameters: {
|
|
2829
|
+
filter: { object: { style: "form" } },
|
|
2830
|
+
page: { object: { style: "form" } },
|
|
2831
|
+
fields: { object: { style: "form" } }
|
|
2832
|
+
}
|
|
2833
|
+
},
|
|
2586
2834
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2587
2835
|
url: "/notification_preferences",
|
|
2588
2836
|
...options
|
|
2589
2837
|
});
|
|
2590
2838
|
var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
2839
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2591
2840
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2592
2841
|
url: "/notification_preferences",
|
|
2593
2842
|
...options,
|
|
@@ -2597,11 +2846,19 @@ var postNotificationPreferences = (options) => (options.client ?? client).post({
|
|
|
2597
2846
|
}
|
|
2598
2847
|
});
|
|
2599
2848
|
var getApplications = (options) => (options.client ?? client).get({
|
|
2849
|
+
querySerializer: {
|
|
2850
|
+
parameters: {
|
|
2851
|
+
filter: { object: { style: "form" } },
|
|
2852
|
+
page: { object: { style: "form" } },
|
|
2853
|
+
fields: { object: { style: "form" } }
|
|
2854
|
+
}
|
|
2855
|
+
},
|
|
2600
2856
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2601
2857
|
url: "/applications",
|
|
2602
2858
|
...options
|
|
2603
2859
|
});
|
|
2604
2860
|
var postApplications = (options) => (options.client ?? client).post({
|
|
2861
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2605
2862
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2606
2863
|
url: "/applications",
|
|
2607
2864
|
...options,
|
|
@@ -2611,6 +2868,7 @@ var postApplications = (options) => (options.client ?? client).post({
|
|
|
2611
2868
|
}
|
|
2612
2869
|
});
|
|
2613
2870
|
var patchWatcherClaimsByIdRetry = (options) => (options.client ?? client).patch({
|
|
2871
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2614
2872
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2615
2873
|
url: "/watcher/claims/{id}/retry",
|
|
2616
2874
|
...options,
|
|
@@ -2629,6 +2887,7 @@ var postAgentsPredict = (options) => (options.client ?? client).post({
|
|
|
2629
2887
|
}
|
|
2630
2888
|
});
|
|
2631
2889
|
var patchUserProfilesByIdDismissWelcome = (options) => (options.client ?? client).patch({
|
|
2890
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2632
2891
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2633
2892
|
url: "/user_profiles/{id}/dismiss-welcome",
|
|
2634
2893
|
...options,
|
|
@@ -2638,6 +2897,7 @@ var patchUserProfilesByIdDismissWelcome = (options) => (options.client ?? client
|
|
|
2638
2897
|
}
|
|
2639
2898
|
});
|
|
2640
2899
|
var patchExtractionDocumentsByIdReprocess = (options) => (options.client ?? client).patch({
|
|
2900
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2641
2901
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2642
2902
|
url: "/extraction/documents/{id}/reprocess",
|
|
2643
2903
|
...options,
|
|
@@ -2647,16 +2907,19 @@ var patchExtractionDocumentsByIdReprocess = (options) => (options.client ?? clie
|
|
|
2647
2907
|
}
|
|
2648
2908
|
});
|
|
2649
2909
|
var deleteThreadsById = (options) => (options.client ?? client).delete({
|
|
2910
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2650
2911
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2651
2912
|
url: "/threads/{id}",
|
|
2652
2913
|
...options
|
|
2653
2914
|
});
|
|
2654
2915
|
var getThreadsById = (options) => (options.client ?? client).get({
|
|
2916
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2655
2917
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2656
2918
|
url: "/threads/{id}",
|
|
2657
2919
|
...options
|
|
2658
2920
|
});
|
|
2659
2921
|
var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
2922
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2660
2923
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2661
2924
|
url: "/threads/{id}",
|
|
2662
2925
|
...options,
|
|
@@ -2666,16 +2929,29 @@ var patchThreadsById = (options) => (options.client ?? client).patch({
|
|
|
2666
2929
|
}
|
|
2667
2930
|
});
|
|
2668
2931
|
var getWorkspacesByIdMembers = (options) => (options.client ?? client).get({
|
|
2932
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2669
2933
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2670
2934
|
url: "/workspaces/{id}/members",
|
|
2671
2935
|
...options
|
|
2672
2936
|
});
|
|
2673
2937
|
var getBucketsAll = (options) => (options.client ?? client).get({
|
|
2938
|
+
querySerializer: {
|
|
2939
|
+
parameters: {
|
|
2940
|
+
filter: { object: { style: "form" } },
|
|
2941
|
+
fields: { object: { style: "form" } }
|
|
2942
|
+
}
|
|
2943
|
+
},
|
|
2674
2944
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2675
2945
|
url: "/buckets/all",
|
|
2676
2946
|
...options
|
|
2677
2947
|
});
|
|
2678
2948
|
var getWatcherClaims = (options) => (options.client ?? client).get({
|
|
2949
|
+
querySerializer: {
|
|
2950
|
+
parameters: {
|
|
2951
|
+
filter: { object: { style: "form" } },
|
|
2952
|
+
fields: { object: { style: "form" } }
|
|
2953
|
+
}
|
|
2954
|
+
},
|
|
2679
2955
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2680
2956
|
url: "/watcher/claims",
|
|
2681
2957
|
...options
|
|
@@ -2690,11 +2966,19 @@ var postWatcherClaims = (options) => (options.client ?? client).post({
|
|
|
2690
2966
|
}
|
|
2691
2967
|
});
|
|
2692
2968
|
var getLlmAnalytics = (options) => (options.client ?? client).get({
|
|
2969
|
+
querySerializer: {
|
|
2970
|
+
parameters: {
|
|
2971
|
+
filter: { object: { style: "form" } },
|
|
2972
|
+
page: { object: { style: "form" } },
|
|
2973
|
+
fields: { object: { style: "form" } }
|
|
2974
|
+
}
|
|
2975
|
+
},
|
|
2693
2976
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2694
2977
|
url: "/llm_analytics",
|
|
2695
2978
|
...options
|
|
2696
2979
|
});
|
|
2697
2980
|
var postLlmAnalytics = (options) => (options.client ?? client).post({
|
|
2981
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2698
2982
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2699
2983
|
url: "/llm_analytics",
|
|
2700
2984
|
...options,
|
|
@@ -2709,6 +2993,7 @@ var getStorageStatsTenantByTenantId = (options) => (options.client ?? client).ge
|
|
|
2709
2993
|
...options
|
|
2710
2994
|
});
|
|
2711
2995
|
var postAgentTestResults = (options) => (options.client ?? client).post({
|
|
2996
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2712
2997
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2713
2998
|
url: "/agent_test_results",
|
|
2714
2999
|
...options,
|
|
@@ -2718,6 +3003,7 @@ var postAgentTestResults = (options) => (options.client ?? client).post({
|
|
|
2718
3003
|
}
|
|
2719
3004
|
});
|
|
2720
3005
|
var patchUsersByIdResetPassword = (options) => (options.client ?? client).patch({
|
|
3006
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2721
3007
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2722
3008
|
url: "/users/{id}/reset-password",
|
|
2723
3009
|
...options,
|
|
@@ -2736,6 +3022,7 @@ var postThreadsByIdExport = (options) => (options.client ?? client).post({
|
|
|
2736
3022
|
}
|
|
2737
3023
|
});
|
|
2738
3024
|
var postDocumentsPresignedUpload = (options) => (options.client ?? client).post({
|
|
3025
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2739
3026
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2740
3027
|
url: "/documents/presigned_upload",
|
|
2741
3028
|
...options,
|
|
@@ -2750,11 +3037,13 @@ var getWebhookConfigsByIdEvents = (options) => (options.client ?? client).get({
|
|
|
2750
3037
|
...options
|
|
2751
3038
|
});
|
|
2752
3039
|
var getMessagesSearch = (options) => (options.client ?? client).get({
|
|
3040
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2753
3041
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2754
3042
|
url: "/messages/search",
|
|
2755
3043
|
...options
|
|
2756
3044
|
});
|
|
2757
3045
|
var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
3046
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2758
3047
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2759
3048
|
url: "/agents/{id}/teach",
|
|
2760
3049
|
...options,
|
|
@@ -2764,11 +3053,19 @@ var postAgentsByIdTeach = (options) => (options.client ?? client).post({
|
|
|
2764
3053
|
}
|
|
2765
3054
|
});
|
|
2766
3055
|
var getExtractionDocumentsWorkspaceByWorkspaceIdReviewQueue = (options) => (options.client ?? client).get({
|
|
3056
|
+
querySerializer: {
|
|
3057
|
+
parameters: {
|
|
3058
|
+
filter: { object: { style: "form" } },
|
|
3059
|
+
page: { object: { style: "form" } },
|
|
3060
|
+
fields: { object: { style: "form" } }
|
|
3061
|
+
}
|
|
3062
|
+
},
|
|
2767
3063
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2768
3064
|
url: "/extraction/documents/workspace/{workspace_id}/review_queue",
|
|
2769
3065
|
...options
|
|
2770
3066
|
});
|
|
2771
3067
|
var patchInvitationsByIdDecline = (options) => (options.client ?? client).patch({
|
|
3068
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2772
3069
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2773
3070
|
url: "/invitations/{id}/decline",
|
|
2774
3071
|
...options,
|
|
@@ -2778,6 +3075,7 @@ var patchInvitationsByIdDecline = (options) => (options.client ?? client).patch(
|
|
|
2778
3075
|
}
|
|
2779
3076
|
});
|
|
2780
3077
|
var postExtractionDocumentsUpload = (options) => (options.client ?? client).post({
|
|
3078
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2781
3079
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2782
3080
|
url: "/extraction/documents/upload",
|
|
2783
3081
|
...options,
|
|
@@ -2787,6 +3085,7 @@ var postExtractionDocumentsUpload = (options) => (options.client ?? client).post
|
|
|
2787
3085
|
}
|
|
2788
3086
|
});
|
|
2789
3087
|
var patchNotificationMethodsByIdVerify = (options) => (options.client ?? client).patch({
|
|
3088
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2790
3089
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2791
3090
|
url: "/notification_methods/{id}/verify",
|
|
2792
3091
|
...options,
|
|
@@ -2796,11 +3095,13 @@ var patchNotificationMethodsByIdVerify = (options) => (options.client ?? client)
|
|
|
2796
3095
|
}
|
|
2797
3096
|
});
|
|
2798
3097
|
var getExtractionResultsDocumentByDocumentId = (options) => (options.client ?? client).get({
|
|
3098
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2799
3099
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2800
3100
|
url: "/extraction/results/document/{document_id}",
|
|
2801
3101
|
...options
|
|
2802
3102
|
});
|
|
2803
3103
|
var patchUserProfilesByIdDismissAnnouncement = (options) => (options.client ?? client).patch({
|
|
3104
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2804
3105
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2805
3106
|
url: "/user_profiles/{id}/dismiss-announcement",
|
|
2806
3107
|
...options,
|
|
@@ -2810,16 +3111,19 @@ var patchUserProfilesByIdDismissAnnouncement = (options) => (options.client ?? c
|
|
|
2810
3111
|
}
|
|
2811
3112
|
});
|
|
2812
3113
|
var deleteWorkspacesById = (options) => (options.client ?? client).delete({
|
|
3114
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2813
3115
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2814
3116
|
url: "/workspaces/{id}",
|
|
2815
3117
|
...options
|
|
2816
3118
|
});
|
|
2817
3119
|
var getWorkspacesById = (options) => (options.client ?? client).get({
|
|
3120
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2818
3121
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2819
3122
|
url: "/workspaces/{id}",
|
|
2820
3123
|
...options
|
|
2821
3124
|
});
|
|
2822
3125
|
var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
3126
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2823
3127
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2824
3128
|
url: "/workspaces/{id}",
|
|
2825
3129
|
...options,
|
|
@@ -2829,11 +3133,19 @@ var patchWorkspacesById = (options) => (options.client ?? client).patch({
|
|
|
2829
3133
|
}
|
|
2830
3134
|
});
|
|
2831
3135
|
var getTenants = (options) => (options.client ?? client).get({
|
|
3136
|
+
querySerializer: {
|
|
3137
|
+
parameters: {
|
|
3138
|
+
filter: { object: { style: "form" } },
|
|
3139
|
+
page: { object: { style: "form" } },
|
|
3140
|
+
fields: { object: { style: "form" } }
|
|
3141
|
+
}
|
|
3142
|
+
},
|
|
2832
3143
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2833
3144
|
url: "/tenants",
|
|
2834
3145
|
...options
|
|
2835
3146
|
});
|
|
2836
3147
|
var postTenants = (options) => (options.client ?? client).post({
|
|
3148
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2837
3149
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2838
3150
|
url: "/tenants",
|
|
2839
3151
|
...options,
|
|
@@ -2843,6 +3155,7 @@ var postTenants = (options) => (options.client ?? client).post({
|
|
|
2843
3155
|
}
|
|
2844
3156
|
});
|
|
2845
3157
|
var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post({
|
|
3158
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2846
3159
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2847
3160
|
url: "/tenants/{id}/remove-storage",
|
|
2848
3161
|
...options,
|
|
@@ -2852,11 +3165,19 @@ var postTenantsByIdRemoveStorage = (options) => (options.client ?? client).post(
|
|
|
2852
3165
|
}
|
|
2853
3166
|
});
|
|
2854
3167
|
var getWalletInvoices = (options) => (options.client ?? client).get({
|
|
3168
|
+
querySerializer: {
|
|
3169
|
+
parameters: {
|
|
3170
|
+
filter: { object: { style: "form" } },
|
|
3171
|
+
page: { object: { style: "form" } },
|
|
3172
|
+
fields: { object: { style: "form" } }
|
|
3173
|
+
}
|
|
3174
|
+
},
|
|
2855
3175
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2856
3176
|
url: "/wallet/invoices",
|
|
2857
3177
|
...options
|
|
2858
3178
|
});
|
|
2859
3179
|
var patchExtractionResultsByIdSaveCorrections = (options) => (options.client ?? client).patch({
|
|
3180
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2860
3181
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2861
3182
|
url: "/extraction/results/{id}/save_corrections",
|
|
2862
3183
|
...options,
|
|
@@ -2866,6 +3187,7 @@ var patchExtractionResultsByIdSaveCorrections = (options) => (options.client ??
|
|
|
2866
3187
|
}
|
|
2867
3188
|
});
|
|
2868
3189
|
var patchWorkspacesByIdStorageSettings = (options) => (options.client ?? client).patch({
|
|
3190
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2869
3191
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2870
3192
|
url: "/workspaces/{id}/storage-settings",
|
|
2871
3193
|
...options,
|
|
@@ -2875,31 +3197,49 @@ var patchWorkspacesByIdStorageSettings = (options) => (options.client ?? client)
|
|
|
2875
3197
|
}
|
|
2876
3198
|
});
|
|
2877
3199
|
var getNotificationLogsById = (options) => (options.client ?? client).get({
|
|
3200
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2878
3201
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2879
3202
|
url: "/notification_logs/{id}",
|
|
2880
3203
|
...options
|
|
2881
3204
|
});
|
|
2882
3205
|
var getExtractionDocumentsByIdView = (options) => (options.client ?? client).get({
|
|
3206
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2883
3207
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2884
3208
|
url: "/extraction/documents/{id}/view",
|
|
2885
3209
|
...options
|
|
2886
3210
|
});
|
|
2887
3211
|
var getWebhookDeliveriesById = (options) => (options.client ?? client).get({
|
|
3212
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2888
3213
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2889
3214
|
url: "/webhook_deliveries/{id}",
|
|
2890
3215
|
...options
|
|
2891
3216
|
});
|
|
2892
3217
|
var getAuditLogs = (options) => (options.client ?? client).get({
|
|
3218
|
+
querySerializer: {
|
|
3219
|
+
parameters: {
|
|
3220
|
+
filter: { object: { style: "form" } },
|
|
3221
|
+
page: { object: { style: "form" } },
|
|
3222
|
+
fields: { object: { style: "form" } }
|
|
3223
|
+
}
|
|
3224
|
+
},
|
|
2893
3225
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2894
3226
|
url: "/audit-logs",
|
|
2895
3227
|
...options
|
|
2896
3228
|
});
|
|
2897
3229
|
var getAiGraphEdges = (options) => (options.client ?? client).get({
|
|
3230
|
+
querySerializer: {
|
|
3231
|
+
parameters: {
|
|
3232
|
+
filter: { object: { style: "form" } },
|
|
3233
|
+
page: { object: { style: "form" } },
|
|
3234
|
+
fields: { object: { style: "form" } }
|
|
3235
|
+
}
|
|
3236
|
+
},
|
|
2898
3237
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2899
3238
|
url: "/ai/graph/edges",
|
|
2900
3239
|
...options
|
|
2901
3240
|
});
|
|
2902
3241
|
var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
3242
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2903
3243
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2904
3244
|
url: "/ai/graph/edges",
|
|
2905
3245
|
...options,
|
|
@@ -2909,11 +3249,19 @@ var postAiGraphEdges = (options) => (options.client ?? client).post({
|
|
|
2909
3249
|
}
|
|
2910
3250
|
});
|
|
2911
3251
|
var getTrainingExamples = (options) => (options.client ?? client).get({
|
|
3252
|
+
querySerializer: {
|
|
3253
|
+
parameters: {
|
|
3254
|
+
filter: { object: { style: "form" } },
|
|
3255
|
+
page: { object: { style: "form" } },
|
|
3256
|
+
fields: { object: { style: "form" } }
|
|
3257
|
+
}
|
|
3258
|
+
},
|
|
2912
3259
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2913
3260
|
url: "/training_examples",
|
|
2914
3261
|
...options
|
|
2915
3262
|
});
|
|
2916
3263
|
var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
3264
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2917
3265
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2918
3266
|
url: "/training_examples",
|
|
2919
3267
|
...options,
|
|
@@ -2923,16 +3271,19 @@ var postTrainingExamples = (options) => (options.client ?? client).post({
|
|
|
2923
3271
|
}
|
|
2924
3272
|
});
|
|
2925
3273
|
var getWorkspacesByWorkspaceIdExtractionExportsById = (options) => (options.client ?? client).get({
|
|
3274
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2926
3275
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2927
3276
|
url: "/workspaces/{workspace_id}/extraction/exports/{id}",
|
|
2928
3277
|
...options
|
|
2929
3278
|
});
|
|
2930
3279
|
var getAgentsByIdTrainingStats = (options) => (options.client ?? client).get({
|
|
3280
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2931
3281
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2932
3282
|
url: "/agents/{id}/training_stats",
|
|
2933
3283
|
...options
|
|
2934
3284
|
});
|
|
2935
3285
|
var postObjectsCopy = (options) => (options.client ?? client).post({
|
|
3286
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2936
3287
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2937
3288
|
url: "/objects/copy",
|
|
2938
3289
|
...options,
|
|
@@ -2942,11 +3293,18 @@ var postObjectsCopy = (options) => (options.client ?? client).post({
|
|
|
2942
3293
|
}
|
|
2943
3294
|
});
|
|
2944
3295
|
var getBuckets = (options) => (options.client ?? client).get({
|
|
3296
|
+
querySerializer: {
|
|
3297
|
+
parameters: {
|
|
3298
|
+
filter: { object: { style: "form" } },
|
|
3299
|
+
fields: { object: { style: "form" } }
|
|
3300
|
+
}
|
|
3301
|
+
},
|
|
2945
3302
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2946
3303
|
url: "/buckets",
|
|
2947
3304
|
...options
|
|
2948
3305
|
});
|
|
2949
3306
|
var postBuckets = (options) => (options.client ?? client).post({
|
|
3307
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2950
3308
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2951
3309
|
url: "/buckets",
|
|
2952
3310
|
...options,
|
|
@@ -2956,6 +3314,7 @@ var postBuckets = (options) => (options.client ?? client).post({
|
|
|
2956
3314
|
}
|
|
2957
3315
|
});
|
|
2958
3316
|
var postPaymentMethodsTokenize = (options) => (options.client ?? client).post({
|
|
3317
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2959
3318
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2960
3319
|
url: "/payment-methods/tokenize",
|
|
2961
3320
|
...options,
|
|
@@ -2965,11 +3324,13 @@ var postPaymentMethodsTokenize = (options) => (options.client ?? client).post({
|
|
|
2965
3324
|
}
|
|
2966
3325
|
});
|
|
2967
3326
|
var getWorkspacesByWorkspaceIdExtractionByDocumentIdMapping = (options) => (options.client ?? client).get({
|
|
3327
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2968
3328
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2969
3329
|
url: "/workspaces/{workspace_id}/extraction/{document_id}/mapping",
|
|
2970
3330
|
...options
|
|
2971
3331
|
});
|
|
2972
3332
|
var postWorkspacesByWorkspaceIdExtractionByDocumentIdMapping = (options) => (options.client ?? client).post({
|
|
3333
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2973
3334
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2974
3335
|
url: "/workspaces/{workspace_id}/extraction/{document_id}/mapping",
|
|
2975
3336
|
...options,
|
|
@@ -2989,16 +3350,19 @@ var getNotificationLogsStats = (options) => (options.client ?? client).get({
|
|
|
2989
3350
|
...options
|
|
2990
3351
|
});
|
|
2991
3352
|
var getPlansById = (options) => (options.client ?? client).get({
|
|
3353
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2992
3354
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2993
3355
|
url: "/plans/{id}",
|
|
2994
3356
|
...options
|
|
2995
3357
|
});
|
|
2996
3358
|
var getTenantsByTenantIdStats = (options) => (options.client ?? client).get({
|
|
3359
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
2997
3360
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2998
3361
|
url: "/tenants/{tenant_id}/stats",
|
|
2999
3362
|
...options
|
|
3000
3363
|
});
|
|
3001
3364
|
var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
3365
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3002
3366
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3003
3367
|
url: "/wallet/addons",
|
|
3004
3368
|
...options,
|
|
@@ -3008,6 +3372,7 @@ var patchWalletAddons = (options) => (options.client ?? client).patch({
|
|
|
3008
3372
|
}
|
|
3009
3373
|
});
|
|
3010
3374
|
var postTenantsByIdSchedulePurge = (options) => (options.client ?? client).post({
|
|
3375
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3011
3376
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3012
3377
|
url: "/tenants/{id}/schedule-purge",
|
|
3013
3378
|
...options,
|
|
@@ -3017,11 +3382,13 @@ var postTenantsByIdSchedulePurge = (options) => (options.client ?? client).post(
|
|
|
3017
3382
|
}
|
|
3018
3383
|
});
|
|
3019
3384
|
var getMessagesSemanticSearch = (options) => (options.client ?? client).get({
|
|
3385
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3020
3386
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3021
3387
|
url: "/messages/semantic-search",
|
|
3022
3388
|
...options
|
|
3023
3389
|
});
|
|
3024
3390
|
var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
3391
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3025
3392
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3026
3393
|
url: "/users/auth/magic_link/login",
|
|
3027
3394
|
...options,
|
|
@@ -3031,11 +3398,19 @@ var postUsersAuthMagicLinkLogin = (options) => (options.client ?? client).post({
|
|
|
3031
3398
|
}
|
|
3032
3399
|
});
|
|
3033
3400
|
var getApiKeys = (options) => (options.client ?? client).get({
|
|
3401
|
+
querySerializer: {
|
|
3402
|
+
parameters: {
|
|
3403
|
+
filter: { object: { style: "form" } },
|
|
3404
|
+
page: { object: { style: "form" } },
|
|
3405
|
+
fields: { object: { style: "form" } }
|
|
3406
|
+
}
|
|
3407
|
+
},
|
|
3034
3408
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3035
3409
|
url: "/api_keys",
|
|
3036
3410
|
...options
|
|
3037
3411
|
});
|
|
3038
3412
|
var postApiKeys = (options) => (options.client ?? client).post({
|
|
3413
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3039
3414
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3040
3415
|
url: "/api_keys",
|
|
3041
3416
|
...options,
|
|
@@ -3045,6 +3420,7 @@ var postApiKeys = (options) => (options.client ?? client).post({
|
|
|
3045
3420
|
}
|
|
3046
3421
|
});
|
|
3047
3422
|
var patchUsersByIdAdmin = (options) => (options.client ?? client).patch({
|
|
3423
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3048
3424
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3049
3425
|
url: "/users/{id}/admin",
|
|
3050
3426
|
...options,
|
|
@@ -3063,16 +3439,19 @@ var postObjectsMove = (options) => (options.client ?? client).post({
|
|
|
3063
3439
|
}
|
|
3064
3440
|
});
|
|
3065
3441
|
var deleteAgentsById = (options) => (options.client ?? client).delete({
|
|
3442
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3066
3443
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3067
3444
|
url: "/agents/{id}",
|
|
3068
3445
|
...options
|
|
3069
3446
|
});
|
|
3070
3447
|
var getAgentsById = (options) => (options.client ?? client).get({
|
|
3448
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3071
3449
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3072
3450
|
url: "/agents/{id}",
|
|
3073
3451
|
...options
|
|
3074
3452
|
});
|
|
3075
3453
|
var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
3454
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3076
3455
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3077
3456
|
url: "/agents/{id}",
|
|
3078
3457
|
...options,
|
|
@@ -3082,6 +3461,7 @@ var patchAgentsById = (options) => (options.client ?? client).patch({
|
|
|
3082
3461
|
}
|
|
3083
3462
|
});
|
|
3084
3463
|
var patchThreadsByIdUnarchive = (options) => (options.client ?? client).patch({
|
|
3464
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3085
3465
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3086
3466
|
url: "/threads/{id}/unarchive",
|
|
3087
3467
|
...options,
|
|
@@ -3091,21 +3471,25 @@ var patchThreadsByIdUnarchive = (options) => (options.client ?? client).patch({
|
|
|
3091
3471
|
}
|
|
3092
3472
|
});
|
|
3093
3473
|
var getAgentsByIdUsage = (options) => (options.client ?? client).get({
|
|
3474
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3094
3475
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3095
3476
|
url: "/agents/{id}/usage",
|
|
3096
3477
|
...options
|
|
3097
3478
|
});
|
|
3098
3479
|
var deleteApiKeysById = (options) => (options.client ?? client).delete({
|
|
3480
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3099
3481
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3100
3482
|
url: "/api_keys/{id}",
|
|
3101
3483
|
...options
|
|
3102
3484
|
});
|
|
3103
3485
|
var getApiKeysById = (options) => (options.client ?? client).get({
|
|
3486
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3104
3487
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3105
3488
|
url: "/api_keys/{id}",
|
|
3106
3489
|
...options
|
|
3107
3490
|
});
|
|
3108
3491
|
var patchApiKeysById = (options) => (options.client ?? client).patch({
|
|
3492
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3109
3493
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3110
3494
|
url: "/api_keys/{id}",
|
|
3111
3495
|
...options,
|
|
@@ -3124,6 +3508,7 @@ var postTrainingExamplesSearch = (options) => (options.client ?? client).post({
|
|
|
3124
3508
|
}
|
|
3125
3509
|
});
|
|
3126
3510
|
var patchWatcherClaimsByIdRelease = (options) => (options.client ?? client).patch({
|
|
3511
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3127
3512
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3128
3513
|
url: "/watcher/claims/{id}/release",
|
|
3129
3514
|
...options,
|
|
@@ -3133,11 +3518,19 @@ var patchWatcherClaimsByIdRelease = (options) => (options.client ?? client).patc
|
|
|
3133
3518
|
}
|
|
3134
3519
|
});
|
|
3135
3520
|
var getAiConversations = (options) => (options.client ?? client).get({
|
|
3521
|
+
querySerializer: {
|
|
3522
|
+
parameters: {
|
|
3523
|
+
filter: { object: { style: "form" } },
|
|
3524
|
+
page: { object: { style: "form" } },
|
|
3525
|
+
fields: { object: { style: "form" } }
|
|
3526
|
+
}
|
|
3527
|
+
},
|
|
3136
3528
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3137
3529
|
url: "/ai/conversations",
|
|
3138
3530
|
...options
|
|
3139
3531
|
});
|
|
3140
3532
|
var postAiConversations = (options) => (options.client ?? client).post({
|
|
3533
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3141
3534
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3142
3535
|
url: "/ai/conversations",
|
|
3143
3536
|
...options,
|
|
@@ -3147,6 +3540,7 @@ var postAiConversations = (options) => (options.client ?? client).post({
|
|
|
3147
3540
|
}
|
|
3148
3541
|
});
|
|
3149
3542
|
var postAiSearch = (options) => (options.client ?? client).post({
|
|
3543
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3150
3544
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3151
3545
|
url: "/ai/search",
|
|
3152
3546
|
...options,
|
|
@@ -3156,16 +3550,24 @@ var postAiSearch = (options) => (options.client ?? client).post({
|
|
|
3156
3550
|
}
|
|
3157
3551
|
});
|
|
3158
3552
|
var deleteAiGraphNodesById = (options) => (options.client ?? client).delete({
|
|
3553
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3159
3554
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3160
3555
|
url: "/ai/graph/nodes/{id}",
|
|
3161
3556
|
...options
|
|
3162
3557
|
});
|
|
3163
3558
|
var getWorkspacesShared = (options) => (options.client ?? client).get({
|
|
3559
|
+
querySerializer: {
|
|
3560
|
+
parameters: {
|
|
3561
|
+
filter: { object: { style: "form" } },
|
|
3562
|
+
fields: { object: { style: "form" } }
|
|
3563
|
+
}
|
|
3564
|
+
},
|
|
3164
3565
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3165
3566
|
url: "/workspaces/shared",
|
|
3166
3567
|
...options
|
|
3167
3568
|
});
|
|
3168
3569
|
var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client).patch({
|
|
3570
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3169
3571
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3170
3572
|
url: "/wallet/addons/{addon_slug}/cancel",
|
|
3171
3573
|
...options,
|
|
@@ -3175,16 +3577,19 @@ var patchWalletAddonsByAddonSlugCancel = (options) => (options.client ?? client)
|
|
|
3175
3577
|
}
|
|
3176
3578
|
});
|
|
3177
3579
|
var deleteApplicationsById = (options) => (options.client ?? client).delete({
|
|
3580
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3178
3581
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3179
3582
|
url: "/applications/{id}",
|
|
3180
3583
|
...options
|
|
3181
3584
|
});
|
|
3182
3585
|
var getApplicationsById = (options) => (options.client ?? client).get({
|
|
3586
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3183
3587
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3184
3588
|
url: "/applications/{id}",
|
|
3185
3589
|
...options
|
|
3186
3590
|
});
|
|
3187
3591
|
var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
3592
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3188
3593
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3189
3594
|
url: "/applications/{id}",
|
|
3190
3595
|
...options,
|
|
@@ -3194,11 +3599,18 @@ var patchApplicationsById = (options) => (options.client ?? client).patch({
|
|
|
3194
3599
|
}
|
|
3195
3600
|
});
|
|
3196
3601
|
var getSearchHealth = (options) => (options.client ?? client).get({
|
|
3602
|
+
querySerializer: {
|
|
3603
|
+
parameters: {
|
|
3604
|
+
filter: { object: { style: "form" } },
|
|
3605
|
+
fields: { object: { style: "form" } }
|
|
3606
|
+
}
|
|
3607
|
+
},
|
|
3197
3608
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3198
3609
|
url: "/search/health",
|
|
3199
3610
|
...options
|
|
3200
3611
|
});
|
|
3201
3612
|
var patchExtractionDocumentsByIdVerification = (options) => (options.client ?? client).patch({
|
|
3613
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3202
3614
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3203
3615
|
url: "/extraction/documents/{id}/verification",
|
|
3204
3616
|
...options,
|
|
@@ -3208,6 +3620,7 @@ var patchExtractionDocumentsByIdVerification = (options) => (options.client ?? c
|
|
|
3208
3620
|
}
|
|
3209
3621
|
});
|
|
3210
3622
|
var postThreadsByIdFork = (options) => (options.client ?? client).post({
|
|
3623
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3211
3624
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3212
3625
|
url: "/threads/{id}/fork",
|
|
3213
3626
|
...options,
|
|
@@ -3217,16 +3630,30 @@ var postThreadsByIdFork = (options) => (options.client ?? client).post({
|
|
|
3217
3630
|
}
|
|
3218
3631
|
});
|
|
3219
3632
|
var getTransactions = (options) => (options.client ?? client).get({
|
|
3633
|
+
querySerializer: {
|
|
3634
|
+
parameters: {
|
|
3635
|
+
filter: { object: { style: "form" } },
|
|
3636
|
+
fields: { object: { style: "form" } }
|
|
3637
|
+
}
|
|
3638
|
+
},
|
|
3220
3639
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3221
3640
|
url: "/transactions",
|
|
3222
3641
|
...options
|
|
3223
3642
|
});
|
|
3224
3643
|
var getUserProfiles = (options) => (options.client ?? client).get({
|
|
3644
|
+
querySerializer: {
|
|
3645
|
+
parameters: {
|
|
3646
|
+
filter: { object: { style: "form" } },
|
|
3647
|
+
page: { object: { style: "form" } },
|
|
3648
|
+
fields: { object: { style: "form" } }
|
|
3649
|
+
}
|
|
3650
|
+
},
|
|
3225
3651
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3226
3652
|
url: "/user_profiles",
|
|
3227
3653
|
...options
|
|
3228
3654
|
});
|
|
3229
3655
|
var postUserProfiles = (options) => (options.client ?? client).post({
|
|
3656
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3230
3657
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3231
3658
|
url: "/user_profiles",
|
|
3232
3659
|
...options,
|
|
@@ -3236,6 +3663,7 @@ var postUserProfiles = (options) => (options.client ?? client).post({
|
|
|
3236
3663
|
}
|
|
3237
3664
|
});
|
|
3238
3665
|
var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
3666
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3239
3667
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3240
3668
|
url: "/users/{id}/confirm-email",
|
|
3241
3669
|
...options,
|
|
@@ -3245,11 +3673,13 @@ var patchUsersByIdConfirmEmail = (options) => (options.client ?? client).patch({
|
|
|
3245
3673
|
}
|
|
3246
3674
|
});
|
|
3247
3675
|
var getThreadsSearch = (options) => (options.client ?? client).get({
|
|
3676
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3248
3677
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3249
3678
|
url: "/threads/search",
|
|
3250
3679
|
...options
|
|
3251
3680
|
});
|
|
3252
3681
|
var postSearchSavedByIdRun = (options) => (options.client ?? client).post({
|
|
3682
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3253
3683
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3254
3684
|
url: "/search/saved/{id}/run",
|
|
3255
3685
|
...options,
|
|
@@ -3259,6 +3689,7 @@ var postSearchSavedByIdRun = (options) => (options.client ?? client).post({
|
|
|
3259
3689
|
}
|
|
3260
3690
|
});
|
|
3261
3691
|
var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
3692
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3262
3693
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3263
3694
|
url: "/wallet/plan",
|
|
3264
3695
|
...options,
|
|
@@ -3268,11 +3699,13 @@ var patchWalletPlan = (options) => (options.client ?? client).patch({
|
|
|
3268
3699
|
}
|
|
3269
3700
|
});
|
|
3270
3701
|
var getPlansSlugBySlug = (options) => (options.client ?? client).get({
|
|
3702
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3271
3703
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3272
3704
|
url: "/plans/slug/{slug}",
|
|
3273
3705
|
...options
|
|
3274
3706
|
});
|
|
3275
3707
|
var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client).patch({
|
|
3708
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3276
3709
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3277
3710
|
url: "/extraction/documents/{id}/restore",
|
|
3278
3711
|
...options,
|
|
@@ -3282,16 +3715,24 @@ var patchExtractionDocumentsByIdRestore = (options) => (options.client ?? client
|
|
|
3282
3715
|
}
|
|
3283
3716
|
});
|
|
3284
3717
|
var getLlmAnalyticsById = (options) => (options.client ?? client).get({
|
|
3718
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3285
3719
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3286
3720
|
url: "/llm_analytics/{id}",
|
|
3287
3721
|
...options
|
|
3288
3722
|
});
|
|
3289
3723
|
var getPermissions = (options) => (options.client ?? client).get({
|
|
3724
|
+
querySerializer: {
|
|
3725
|
+
parameters: {
|
|
3726
|
+
filter: { object: { style: "form" } },
|
|
3727
|
+
fields: { object: { style: "form" } }
|
|
3728
|
+
}
|
|
3729
|
+
},
|
|
3290
3730
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3291
3731
|
url: "/permissions",
|
|
3292
3732
|
...options
|
|
3293
3733
|
});
|
|
3294
3734
|
var patchUserProfilesByIdAcceptTos = (options) => (options.client ?? client).patch({
|
|
3735
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3295
3736
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3296
3737
|
url: "/user_profiles/{id}/accept-tos",
|
|
3297
3738
|
...options,
|
|
@@ -3301,6 +3742,7 @@ var patchUserProfilesByIdAcceptTos = (options) => (options.client ?? client).pat
|
|
|
3301
3742
|
}
|
|
3302
3743
|
});
|
|
3303
3744
|
var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? client).patch({
|
|
3745
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3304
3746
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3305
3747
|
url: "/extraction/documents/{id}/mark_trained",
|
|
3306
3748
|
...options,
|
|
@@ -3310,6 +3752,7 @@ var patchExtractionDocumentsByIdMarkTrained = (options) => (options.client ?? cl
|
|
|
3310
3752
|
}
|
|
3311
3753
|
});
|
|
3312
3754
|
var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).patch({
|
|
3755
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3313
3756
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3314
3757
|
url: "/applications/{id}/grant-credits",
|
|
3315
3758
|
...options,
|
|
@@ -3319,16 +3762,29 @@ var patchApplicationsByIdGrantCredits = (options) => (options.client ?? client).
|
|
|
3319
3762
|
}
|
|
3320
3763
|
});
|
|
3321
3764
|
var getSearchStatus = (options) => (options.client ?? client).get({
|
|
3765
|
+
querySerializer: {
|
|
3766
|
+
parameters: {
|
|
3767
|
+
filter: { object: { style: "form" } },
|
|
3768
|
+
fields: { object: { style: "form" } }
|
|
3769
|
+
}
|
|
3770
|
+
},
|
|
3322
3771
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3323
3772
|
url: "/search/status",
|
|
3324
3773
|
...options
|
|
3325
3774
|
});
|
|
3326
3775
|
var getTenantsByTenantIdWorkspaceStats = (options) => (options.client ?? client).get({
|
|
3776
|
+
querySerializer: {
|
|
3777
|
+
parameters: {
|
|
3778
|
+
filter: { object: { style: "form" } },
|
|
3779
|
+
fields: { object: { style: "form" } }
|
|
3780
|
+
}
|
|
3781
|
+
},
|
|
3327
3782
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3328
3783
|
url: "/tenants/{tenant_id}/workspace_stats",
|
|
3329
3784
|
...options
|
|
3330
3785
|
});
|
|
3331
3786
|
var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
3787
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3332
3788
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3333
3789
|
url: "/api_keys/{id}/allocate",
|
|
3334
3790
|
...options,
|
|
@@ -3338,11 +3794,13 @@ var patchApiKeysByIdAllocate = (options) => (options.client ?? client).patch({
|
|
|
3338
3794
|
}
|
|
3339
3795
|
});
|
|
3340
3796
|
var getWatcherClaimsById = (options) => (options.client ?? client).get({
|
|
3797
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3341
3798
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3342
3799
|
url: "/watcher/claims/{id}",
|
|
3343
3800
|
...options
|
|
3344
3801
|
});
|
|
3345
3802
|
var patchWatcherClaimsById = (options) => (options.client ?? client).patch({
|
|
3803
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3346
3804
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3347
3805
|
url: "/watcher/claims/{id}",
|
|
3348
3806
|
...options,
|
|
@@ -3352,6 +3810,7 @@ var patchWatcherClaimsById = (options) => (options.client ?? client).patch({
|
|
|
3352
3810
|
}
|
|
3353
3811
|
});
|
|
3354
3812
|
var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
3813
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3355
3814
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3356
3815
|
url: "/users/auth/login",
|
|
3357
3816
|
...options,
|
|
@@ -3361,11 +3820,19 @@ var postUsersAuthLogin = (options) => (options.client ?? client).post({
|
|
|
3361
3820
|
}
|
|
3362
3821
|
});
|
|
3363
3822
|
var getExtractionDocumentsWorkspaceByWorkspaceIdByStatusByStatus = (options) => (options.client ?? client).get({
|
|
3823
|
+
querySerializer: {
|
|
3824
|
+
parameters: {
|
|
3825
|
+
filter: { object: { style: "form" } },
|
|
3826
|
+
page: { object: { style: "form" } },
|
|
3827
|
+
fields: { object: { style: "form" } }
|
|
3828
|
+
}
|
|
3829
|
+
},
|
|
3364
3830
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3365
3831
|
url: "/extraction/documents/workspace/{workspace_id}/by_status/{status}",
|
|
3366
3832
|
...options
|
|
3367
3833
|
});
|
|
3368
3834
|
var postAiEmbed = (options) => (options.client ?? client).post({
|
|
3835
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3369
3836
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3370
3837
|
url: "/ai/embed",
|
|
3371
3838
|
...options,
|
|
@@ -3384,11 +3851,18 @@ var postWebhookConfigsByIdReplay = (options) => (options.client ?? client).post(
|
|
|
3384
3851
|
}
|
|
3385
3852
|
});
|
|
3386
3853
|
var getWorkspacesMine = (options) => (options.client ?? client).get({
|
|
3854
|
+
querySerializer: {
|
|
3855
|
+
parameters: {
|
|
3856
|
+
filter: { object: { style: "form" } },
|
|
3857
|
+
fields: { object: { style: "form" } }
|
|
3858
|
+
}
|
|
3859
|
+
},
|
|
3387
3860
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3388
3861
|
url: "/workspaces/mine",
|
|
3389
3862
|
...options
|
|
3390
3863
|
});
|
|
3391
3864
|
var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
3865
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3392
3866
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3393
3867
|
url: "/tenants/isv",
|
|
3394
3868
|
...options,
|
|
@@ -3398,6 +3872,7 @@ var postTenantsIsv = (options) => (options.client ?? client).post({
|
|
|
3398
3872
|
}
|
|
3399
3873
|
});
|
|
3400
3874
|
var postSearchReindex = (options) => (options.client ?? client).post({
|
|
3875
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3401
3876
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3402
3877
|
url: "/search/reindex",
|
|
3403
3878
|
...options,
|
|
@@ -3407,6 +3882,7 @@ var postSearchReindex = (options) => (options.client ?? client).post({
|
|
|
3407
3882
|
}
|
|
3408
3883
|
});
|
|
3409
3884
|
var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? client).patch({
|
|
3885
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3410
3886
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3411
3887
|
url: "/extraction/results/{id}/regenerate",
|
|
3412
3888
|
...options,
|
|
@@ -3416,6 +3892,7 @@ var patchExtractionResultsByIdRegenerate = (options) => (options.client ?? clien
|
|
|
3416
3892
|
}
|
|
3417
3893
|
});
|
|
3418
3894
|
var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
3895
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3419
3896
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3420
3897
|
url: "/users/auth/confirm",
|
|
3421
3898
|
...options,
|
|
@@ -3425,11 +3902,18 @@ var postUsersAuthConfirm = (options) => (options.client ?? client).post({
|
|
|
3425
3902
|
}
|
|
3426
3903
|
});
|
|
3427
3904
|
var getStorageStats = (options) => (options.client ?? client).get({
|
|
3905
|
+
querySerializer: {
|
|
3906
|
+
parameters: {
|
|
3907
|
+
filter: { object: { style: "form" } },
|
|
3908
|
+
fields: { object: { style: "form" } }
|
|
3909
|
+
}
|
|
3910
|
+
},
|
|
3428
3911
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3429
3912
|
url: "/storage/stats",
|
|
3430
3913
|
...options
|
|
3431
3914
|
});
|
|
3432
3915
|
var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
3916
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3433
3917
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3434
3918
|
url: "/tenants/{id}/buy-storage",
|
|
3435
3919
|
...options,
|
|
@@ -3439,11 +3923,19 @@ var postTenantsByIdBuyStorage = (options) => (options.client ?? client).post({
|
|
|
3439
3923
|
}
|
|
3440
3924
|
});
|
|
3441
3925
|
var getWorkspaceMemberships = (options) => (options.client ?? client).get({
|
|
3926
|
+
querySerializer: {
|
|
3927
|
+
parameters: {
|
|
3928
|
+
filter: { object: { style: "form" } },
|
|
3929
|
+
page: { object: { style: "form" } },
|
|
3930
|
+
fields: { object: { style: "form" } }
|
|
3931
|
+
}
|
|
3932
|
+
},
|
|
3442
3933
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3443
3934
|
url: "/workspace-memberships",
|
|
3444
3935
|
...options
|
|
3445
3936
|
});
|
|
3446
3937
|
var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
3938
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3447
3939
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3448
3940
|
url: "/workspace-memberships",
|
|
3449
3941
|
...options,
|
|
@@ -3453,6 +3945,7 @@ var postWorkspaceMemberships = (options) => (options.client ?? client).post({
|
|
|
3453
3945
|
}
|
|
3454
3946
|
});
|
|
3455
3947
|
var patchApiKeysByIdResetPeriod = (options) => (options.client ?? client).patch({
|
|
3948
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3456
3949
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3457
3950
|
url: "/api_keys/{id}/reset-period",
|
|
3458
3951
|
...options,
|
|
@@ -3462,16 +3955,25 @@ var patchApiKeysByIdResetPeriod = (options) => (options.client ?? client).patch(
|
|
|
3462
3955
|
}
|
|
3463
3956
|
});
|
|
3464
3957
|
var getTenantsByTenantIdDocumentStats = (options) => (options.client ?? client).get({
|
|
3958
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3465
3959
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3466
3960
|
url: "/tenants/{tenant_id}/document_stats",
|
|
3467
3961
|
...options
|
|
3468
3962
|
});
|
|
3469
3963
|
var getSearchAnalytics = (options) => (options.client ?? client).get({
|
|
3964
|
+
querySerializer: {
|
|
3965
|
+
parameters: {
|
|
3966
|
+
filter: { object: { style: "form" } },
|
|
3967
|
+
page: { object: { style: "form" } },
|
|
3968
|
+
fields: { object: { style: "form" } }
|
|
3969
|
+
}
|
|
3970
|
+
},
|
|
3470
3971
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3471
3972
|
url: "/search/analytics",
|
|
3472
3973
|
...options
|
|
3473
3974
|
});
|
|
3474
3975
|
var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post({
|
|
3976
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3475
3977
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3476
3978
|
url: "/users/auth/magic_link/request",
|
|
3477
3979
|
...options,
|
|
@@ -3481,11 +3983,18 @@ var postUsersAuthMagicLinkRequest = (options) => (options.client ?? client).post
|
|
|
3481
3983
|
}
|
|
3482
3984
|
});
|
|
3483
3985
|
var getPermissionsPresetsById = (options) => (options.client ?? client).get({
|
|
3986
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3484
3987
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3485
3988
|
url: "/permissions/presets/{id}",
|
|
3486
3989
|
...options
|
|
3487
3990
|
});
|
|
3488
3991
|
var getPermissionsPresets = (options) => (options.client ?? client).get({
|
|
3992
|
+
querySerializer: {
|
|
3993
|
+
parameters: {
|
|
3994
|
+
filter: { object: { style: "form" } },
|
|
3995
|
+
fields: { object: { style: "form" } }
|
|
3996
|
+
}
|
|
3997
|
+
},
|
|
3489
3998
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3490
3999
|
url: "/permissions/presets",
|
|
3491
4000
|
...options
|
|
@@ -3500,6 +4009,7 @@ var postWebhookDeliveriesBulkRetry = (options) => (options.client ?? client).pos
|
|
|
3500
4009
|
}
|
|
3501
4010
|
});
|
|
3502
4011
|
var postUsersAuthRegister = (options) => (options.client ?? client).post({
|
|
4012
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3503
4013
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3504
4014
|
url: "/users/auth/register",
|
|
3505
4015
|
...options,
|
|
@@ -3523,16 +4033,19 @@ var postAgentsByIdSchemaVersionsByVersionIdActivate = (options) => (options.clie
|
|
|
3523
4033
|
...options
|
|
3524
4034
|
});
|
|
3525
4035
|
var deletePaymentMethodsById = (options) => (options.client ?? client).delete({
|
|
4036
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3526
4037
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3527
4038
|
url: "/payment-methods/{id}",
|
|
3528
4039
|
...options
|
|
3529
4040
|
});
|
|
3530
4041
|
var getPaymentMethodsById = (options) => (options.client ?? client).get({
|
|
4042
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3531
4043
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3532
4044
|
url: "/payment-methods/{id}",
|
|
3533
4045
|
...options
|
|
3534
4046
|
});
|
|
3535
4047
|
var patchPaymentMethodsById = (options) => (options.client ?? client).patch({
|
|
4048
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3536
4049
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3537
4050
|
url: "/payment-methods/{id}",
|
|
3538
4051
|
...options,
|
|
@@ -3542,16 +4055,19 @@ var patchPaymentMethodsById = (options) => (options.client ?? client).patch({
|
|
|
3542
4055
|
}
|
|
3543
4056
|
});
|
|
3544
4057
|
var deleteBucketsById = (options) => (options.client ?? client).delete({
|
|
4058
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3545
4059
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3546
4060
|
url: "/buckets/{id}",
|
|
3547
4061
|
...options
|
|
3548
4062
|
});
|
|
3549
4063
|
var getBucketsById = (options) => (options.client ?? client).get({
|
|
4064
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3550
4065
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3551
4066
|
url: "/buckets/{id}",
|
|
3552
4067
|
...options
|
|
3553
4068
|
});
|
|
3554
4069
|
var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
4070
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3555
4071
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3556
4072
|
url: "/buckets/{id}",
|
|
3557
4073
|
...options,
|
|
@@ -3561,21 +4077,35 @@ var patchBucketsById = (options) => (options.client ?? client).patch({
|
|
|
3561
4077
|
}
|
|
3562
4078
|
});
|
|
3563
4079
|
var getPermissionsById = (options) => (options.client ?? client).get({
|
|
4080
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3564
4081
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3565
4082
|
url: "/permissions/{id}",
|
|
3566
4083
|
...options
|
|
3567
4084
|
});
|
|
3568
4085
|
var getAiGraphNodesBySourceNodeIdRelated = (options) => (options.client ?? client).get({
|
|
4086
|
+
querySerializer: {
|
|
4087
|
+
parameters: {
|
|
4088
|
+
filter: { object: { style: "form" } },
|
|
4089
|
+
fields: { object: { style: "form" } }
|
|
4090
|
+
}
|
|
4091
|
+
},
|
|
3569
4092
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3570
4093
|
url: "/ai/graph/nodes/{source_node_id}/related",
|
|
3571
4094
|
...options
|
|
3572
4095
|
});
|
|
3573
4096
|
var getExtractionDocumentsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
4097
|
+
querySerializer: {
|
|
4098
|
+
parameters: {
|
|
4099
|
+
filter: { object: { style: "form" } },
|
|
4100
|
+
fields: { object: { style: "form" } }
|
|
4101
|
+
}
|
|
4102
|
+
},
|
|
3574
4103
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3575
4104
|
url: "/extraction/documents/workspace/{workspace_id}",
|
|
3576
4105
|
...options
|
|
3577
4106
|
});
|
|
3578
4107
|
var patchApplicationsByIdAllocateCredits = (options) => (options.client ?? client).patch({
|
|
4108
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3579
4109
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3580
4110
|
url: "/applications/{id}/allocate-credits",
|
|
3581
4111
|
...options,
|
|
@@ -3585,16 +4115,30 @@ var patchApplicationsByIdAllocateCredits = (options) => (options.client ?? clien
|
|
|
3585
4115
|
}
|
|
3586
4116
|
});
|
|
3587
4117
|
var getExtractionResultsWorkspaceByWorkspaceId = (options) => (options.client ?? client).get({
|
|
4118
|
+
querySerializer: {
|
|
4119
|
+
parameters: {
|
|
4120
|
+
filter: { object: { style: "form" } },
|
|
4121
|
+
page: { object: { style: "form" } },
|
|
4122
|
+
fields: { object: { style: "form" } }
|
|
4123
|
+
}
|
|
4124
|
+
},
|
|
3588
4125
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3589
4126
|
url: "/extraction/results/workspace/{workspace_id}",
|
|
3590
4127
|
...options
|
|
3591
4128
|
});
|
|
3592
4129
|
var getSearchAnalyticsSummary = (options) => (options.client ?? client).get({
|
|
4130
|
+
querySerializer: {
|
|
4131
|
+
parameters: {
|
|
4132
|
+
filter: { object: { style: "form" } },
|
|
4133
|
+
fields: { object: { style: "form" } }
|
|
4134
|
+
}
|
|
4135
|
+
},
|
|
3593
4136
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3594
4137
|
url: "/search/analytics/summary",
|
|
3595
4138
|
...options
|
|
3596
4139
|
});
|
|
3597
4140
|
var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client).post({
|
|
4141
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3598
4142
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3599
4143
|
url: "/extraction/documents/begin_upload",
|
|
3600
4144
|
...options,
|
|
@@ -3604,21 +4148,25 @@ var postExtractionDocumentsBeginUpload = (options) => (options.client ?? client)
|
|
|
3604
4148
|
}
|
|
3605
4149
|
});
|
|
3606
4150
|
var deleteAiGraphEdgesById = (options) => (options.client ?? client).delete({
|
|
4151
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3607
4152
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3608
4153
|
url: "/ai/graph/edges/{id}",
|
|
3609
4154
|
...options
|
|
3610
4155
|
});
|
|
3611
4156
|
var deleteTenantsById = (options) => (options.client ?? client).delete({
|
|
4157
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3612
4158
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3613
4159
|
url: "/tenants/{id}",
|
|
3614
4160
|
...options
|
|
3615
4161
|
});
|
|
3616
4162
|
var getTenantsById = (options) => (options.client ?? client).get({
|
|
4163
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3617
4164
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3618
4165
|
url: "/tenants/{id}",
|
|
3619
4166
|
...options
|
|
3620
4167
|
});
|
|
3621
4168
|
var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
4169
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3622
4170
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3623
4171
|
url: "/tenants/{id}",
|
|
3624
4172
|
...options,
|
|
@@ -3628,11 +4176,19 @@ var patchTenantsById = (options) => (options.client ?? client).patch({
|
|
|
3628
4176
|
}
|
|
3629
4177
|
});
|
|
3630
4178
|
var getPlans = (options) => (options.client ?? client).get({
|
|
4179
|
+
querySerializer: {
|
|
4180
|
+
parameters: {
|
|
4181
|
+
filter: { object: { style: "form" } },
|
|
4182
|
+
page: { object: { style: "form" } },
|
|
4183
|
+
fields: { object: { style: "form" } }
|
|
4184
|
+
}
|
|
4185
|
+
},
|
|
3631
4186
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3632
4187
|
url: "/plans",
|
|
3633
4188
|
...options
|
|
3634
4189
|
});
|
|
3635
4190
|
var postAgentsByIdTest = (options) => (options.client ?? client).post({
|
|
4191
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3636
4192
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3637
4193
|
url: "/agents/{id}/test",
|
|
3638
4194
|
...options,
|
|
@@ -3651,16 +4207,24 @@ var postAgentVersionsByIdAddSystemField = (options) => (options.client ?? client
|
|
|
3651
4207
|
}
|
|
3652
4208
|
});
|
|
3653
4209
|
var getExtractionDocuments = (options) => (options.client ?? client).get({
|
|
4210
|
+
querySerializer: {
|
|
4211
|
+
parameters: {
|
|
4212
|
+
filter: { object: { style: "form" } },
|
|
4213
|
+
fields: { object: { style: "form" } }
|
|
4214
|
+
}
|
|
4215
|
+
},
|
|
3654
4216
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3655
4217
|
url: "/extraction/documents",
|
|
3656
4218
|
...options
|
|
3657
4219
|
});
|
|
3658
4220
|
var deleteTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).delete({
|
|
4221
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3659
4222
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3660
4223
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
3661
4224
|
...options
|
|
3662
4225
|
});
|
|
3663
4226
|
var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? client).patch({
|
|
4227
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3664
4228
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3665
4229
|
url: "/tenant-memberships/{tenant_id}/{user_id}",
|
|
3666
4230
|
...options,
|
|
@@ -3670,6 +4234,7 @@ var patchTenantMembershipsByTenantIdByUserId = (options) => (options.client ?? c
|
|
|
3670
4234
|
}
|
|
3671
4235
|
});
|
|
3672
4236
|
var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client).patch({
|
|
4237
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3673
4238
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3674
4239
|
url: "/webhook_configs/{id}/rotate_secret",
|
|
3675
4240
|
...options,
|
|
@@ -3679,11 +4244,18 @@ var patchWebhookConfigsByIdRotateSecret = (options) => (options.client ?? client
|
|
|
3679
4244
|
}
|
|
3680
4245
|
});
|
|
3681
4246
|
var getAuditLogsActivity = (options) => (options.client ?? client).get({
|
|
4247
|
+
querySerializer: {
|
|
4248
|
+
parameters: {
|
|
4249
|
+
filter: { object: { style: "form" } },
|
|
4250
|
+
fields: { object: { style: "form" } }
|
|
4251
|
+
}
|
|
4252
|
+
},
|
|
3682
4253
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3683
4254
|
url: "/audit-logs/activity",
|
|
3684
4255
|
...options
|
|
3685
4256
|
});
|
|
3686
4257
|
var postUsersAuthResendConfirmation = (options) => (options.client ?? client).post({
|
|
4258
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3687
4259
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3688
4260
|
url: "/users/auth/resend-confirmation",
|
|
3689
4261
|
...options,
|
|
@@ -3693,16 +4265,29 @@ var postUsersAuthResendConfirmation = (options) => (options.client ?? client).po
|
|
|
3693
4265
|
}
|
|
3694
4266
|
});
|
|
3695
4267
|
var getWorkspacesAnalyticsBatch = (options) => (options.client ?? client).get({
|
|
4268
|
+
querySerializer: {
|
|
4269
|
+
parameters: {
|
|
4270
|
+
filter: { object: { style: "form" } },
|
|
4271
|
+
fields: { object: { style: "form" } }
|
|
4272
|
+
}
|
|
4273
|
+
},
|
|
3696
4274
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3697
4275
|
url: "/workspaces/analytics-batch",
|
|
3698
4276
|
...options
|
|
3699
4277
|
});
|
|
3700
4278
|
var getFieldTemplates = (options) => (options.client ?? client).get({
|
|
4279
|
+
querySerializer: {
|
|
4280
|
+
parameters: {
|
|
4281
|
+
filter: { object: { style: "form" } },
|
|
4282
|
+
fields: { object: { style: "form" } }
|
|
4283
|
+
}
|
|
4284
|
+
},
|
|
3701
4285
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3702
4286
|
url: "/field_templates",
|
|
3703
4287
|
...options
|
|
3704
4288
|
});
|
|
3705
4289
|
var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
4290
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3706
4291
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3707
4292
|
url: "/field_templates",
|
|
3708
4293
|
...options,
|
|
@@ -3712,11 +4297,19 @@ var postFieldTemplates = (options) => (options.client ?? client).post({
|
|
|
3712
4297
|
}
|
|
3713
4298
|
});
|
|
3714
4299
|
var getAiMessages = (options) => (options.client ?? client).get({
|
|
4300
|
+
querySerializer: {
|
|
4301
|
+
parameters: {
|
|
4302
|
+
filter: { object: { style: "form" } },
|
|
4303
|
+
page: { object: { style: "form" } },
|
|
4304
|
+
fields: { object: { style: "form" } }
|
|
4305
|
+
}
|
|
4306
|
+
},
|
|
3715
4307
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3716
4308
|
url: "/ai/messages",
|
|
3717
4309
|
...options
|
|
3718
4310
|
});
|
|
3719
4311
|
var postAiMessages = (options) => (options.client ?? client).post({
|
|
4312
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3720
4313
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3721
4314
|
url: "/ai/messages",
|
|
3722
4315
|
...options,
|
|
@@ -3726,6 +4319,13 @@ var postAiMessages = (options) => (options.client ?? client).post({
|
|
|
3726
4319
|
}
|
|
3727
4320
|
});
|
|
3728
4321
|
var getWatcherEvents = (options) => (options.client ?? client).get({
|
|
4322
|
+
querySerializer: {
|
|
4323
|
+
parameters: {
|
|
4324
|
+
filter: { object: { style: "form" } },
|
|
4325
|
+
page: { object: { style: "form" } },
|
|
4326
|
+
fields: { object: { style: "form" } }
|
|
4327
|
+
}
|
|
4328
|
+
},
|
|
3729
4329
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3730
4330
|
url: "/watcher/events",
|
|
3731
4331
|
...options
|
|
@@ -3740,6 +4340,7 @@ var postWatcherEvents = (options) => (options.client ?? client).post({
|
|
|
3740
4340
|
}
|
|
3741
4341
|
});
|
|
3742
4342
|
var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
4343
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3743
4344
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3744
4345
|
url: "/storage/sign_upload",
|
|
3745
4346
|
...options,
|
|
@@ -3749,6 +4350,7 @@ var postStorageSignUpload = (options) => (options.client ?? client).post({
|
|
|
3749
4350
|
}
|
|
3750
4351
|
});
|
|
3751
4352
|
var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).post({
|
|
4353
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3752
4354
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3753
4355
|
url: "/webhook_deliveries/{id}/retry",
|
|
3754
4356
|
...options,
|
|
@@ -3758,11 +4360,19 @@ var postWebhookDeliveriesByIdRetry = (options) => (options.client ?? client).pos
|
|
|
3758
4360
|
}
|
|
3759
4361
|
});
|
|
3760
4362
|
var getNotificationMethods = (options) => (options.client ?? client).get({
|
|
4363
|
+
querySerializer: {
|
|
4364
|
+
parameters: {
|
|
4365
|
+
filter: { object: { style: "form" } },
|
|
4366
|
+
page: { object: { style: "form" } },
|
|
4367
|
+
fields: { object: { style: "form" } }
|
|
4368
|
+
}
|
|
4369
|
+
},
|
|
3761
4370
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3762
4371
|
url: "/notification_methods",
|
|
3763
4372
|
...options
|
|
3764
4373
|
});
|
|
3765
4374
|
var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
4375
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3766
4376
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3767
4377
|
url: "/notification_methods",
|
|
3768
4378
|
...options,
|
|
@@ -3772,11 +4382,13 @@ var postNotificationMethods = (options) => (options.client ?? client).post({
|
|
|
3772
4382
|
}
|
|
3773
4383
|
});
|
|
3774
4384
|
var getWalletPlanPreview = (options) => (options.client ?? client).get({
|
|
4385
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3775
4386
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3776
4387
|
url: "/wallet/plan/preview",
|
|
3777
4388
|
...options
|
|
3778
4389
|
});
|
|
3779
4390
|
var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
4391
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3780
4392
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3781
4393
|
url: "/threads/{id}/summarize",
|
|
3782
4394
|
...options,
|
|
@@ -3786,6 +4398,7 @@ var postThreadsByIdSummarize = (options) => (options.client ?? client).post({
|
|
|
3786
4398
|
}
|
|
3787
4399
|
});
|
|
3788
4400
|
var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
4401
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3789
4402
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3790
4403
|
url: "/configs/{key}",
|
|
3791
4404
|
...options,
|
|
@@ -3795,6 +4408,7 @@ var patchConfigsByKey = (options) => (options.client ?? client).patch({
|
|
|
3795
4408
|
}
|
|
3796
4409
|
});
|
|
3797
4410
|
var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
4411
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3798
4412
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3799
4413
|
url: "/api_keys/{id}/rotate",
|
|
3800
4414
|
...options,
|
|
@@ -3804,11 +4418,18 @@ var patchApiKeysByIdRotate = (options) => (options.client ?? client).patch({
|
|
|
3804
4418
|
}
|
|
3805
4419
|
});
|
|
3806
4420
|
var getExtractionResults = (options) => (options.client ?? client).get({
|
|
4421
|
+
querySerializer: {
|
|
4422
|
+
parameters: {
|
|
4423
|
+
filter: { object: { style: "form" } },
|
|
4424
|
+
fields: { object: { style: "form" } }
|
|
4425
|
+
}
|
|
4426
|
+
},
|
|
3807
4427
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3808
4428
|
url: "/extraction/results",
|
|
3809
4429
|
...options
|
|
3810
4430
|
});
|
|
3811
4431
|
var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
4432
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3812
4433
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3813
4434
|
url: "/agents/{id}/clone",
|
|
3814
4435
|
...options,
|
|
@@ -3818,16 +4439,19 @@ var postAgentsByIdClone = (options) => (options.client ?? client).post({
|
|
|
3818
4439
|
}
|
|
3819
4440
|
});
|
|
3820
4441
|
var deleteAiConversationsById = (options) => (options.client ?? client).delete({
|
|
4442
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3821
4443
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3822
4444
|
url: "/ai/conversations/{id}",
|
|
3823
4445
|
...options
|
|
3824
4446
|
});
|
|
3825
4447
|
var getAiConversationsById = (options) => (options.client ?? client).get({
|
|
4448
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3826
4449
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3827
4450
|
url: "/ai/conversations/{id}",
|
|
3828
4451
|
...options
|
|
3829
4452
|
});
|
|
3830
4453
|
var patchAiConversationsById = (options) => (options.client ?? client).patch({
|
|
4454
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3831
4455
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3832
4456
|
url: "/ai/conversations/{id}",
|
|
3833
4457
|
...options,
|
|
@@ -3837,16 +4461,19 @@ var patchAiConversationsById = (options) => (options.client ?? client).patch({
|
|
|
3837
4461
|
}
|
|
3838
4462
|
});
|
|
3839
4463
|
var deleteUserProfilesById = (options) => (options.client ?? client).delete({
|
|
4464
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3840
4465
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3841
4466
|
url: "/user_profiles/{id}",
|
|
3842
4467
|
...options
|
|
3843
4468
|
});
|
|
3844
4469
|
var getUserProfilesById = (options) => (options.client ?? client).get({
|
|
4470
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3845
4471
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3846
4472
|
url: "/user_profiles/{id}",
|
|
3847
4473
|
...options
|
|
3848
4474
|
});
|
|
3849
4475
|
var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
4476
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3850
4477
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3851
4478
|
url: "/user_profiles/{id}",
|
|
3852
4479
|
...options,
|
|
@@ -3856,6 +4483,12 @@ var patchUserProfilesById = (options) => (options.client ?? client).patch({
|
|
|
3856
4483
|
}
|
|
3857
4484
|
});
|
|
3858
4485
|
var getInvitationsMe = (options) => (options.client ?? client).get({
|
|
4486
|
+
querySerializer: {
|
|
4487
|
+
parameters: {
|
|
4488
|
+
filter: { object: { style: "form" } },
|
|
4489
|
+
fields: { object: { style: "form" } }
|
|
4490
|
+
}
|
|
4491
|
+
},
|
|
3859
4492
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3860
4493
|
url: "/invitations/me",
|
|
3861
4494
|
...options
|
|
@@ -3870,6 +4503,7 @@ var patchAgentsByIdSchemaVersionsByVersionId = (options) => (options.client ?? c
|
|
|
3870
4503
|
}
|
|
3871
4504
|
});
|
|
3872
4505
|
var postSearchBatch = (options) => (options.client ?? client).post({
|
|
4506
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3873
4507
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3874
4508
|
url: "/search/batch",
|
|
3875
4509
|
...options,
|
|
@@ -3879,31 +4513,49 @@ var postSearchBatch = (options) => (options.client ?? client).post({
|
|
|
3879
4513
|
}
|
|
3880
4514
|
});
|
|
3881
4515
|
var getThreadsWorkspaceStats = (options) => (options.client ?? client).get({
|
|
4516
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3882
4517
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3883
4518
|
url: "/threads/workspace-stats",
|
|
3884
4519
|
...options
|
|
3885
4520
|
});
|
|
3886
4521
|
var deleteObjectsById = (options) => (options.client ?? client).delete({
|
|
4522
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3887
4523
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3888
4524
|
url: "/objects/{id}",
|
|
3889
4525
|
...options
|
|
3890
4526
|
});
|
|
3891
4527
|
var getObjectsById = (options) => (options.client ?? client).get({
|
|
4528
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3892
4529
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3893
4530
|
url: "/objects/{id}",
|
|
3894
4531
|
...options
|
|
3895
4532
|
});
|
|
3896
4533
|
var getExtractionDocumentsWorkspaceByWorkspaceIdExcluded = (options) => (options.client ?? client).get({
|
|
4534
|
+
querySerializer: {
|
|
4535
|
+
parameters: {
|
|
4536
|
+
filter: { object: { style: "form" } },
|
|
4537
|
+
page: { object: { style: "form" } },
|
|
4538
|
+
fields: { object: { style: "form" } }
|
|
4539
|
+
}
|
|
4540
|
+
},
|
|
3897
4541
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3898
4542
|
url: "/extraction/documents/workspace/{workspace_id}/excluded",
|
|
3899
4543
|
...options
|
|
3900
4544
|
});
|
|
3901
4545
|
var getWebhookConfigs = (options) => (options.client ?? client).get({
|
|
4546
|
+
querySerializer: {
|
|
4547
|
+
parameters: {
|
|
4548
|
+
filter: { object: { style: "form" } },
|
|
4549
|
+
page: { object: { style: "form" } },
|
|
4550
|
+
fields: { object: { style: "form" } }
|
|
4551
|
+
}
|
|
4552
|
+
},
|
|
3902
4553
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3903
4554
|
url: "/webhook_configs",
|
|
3904
4555
|
...options
|
|
3905
4556
|
});
|
|
3906
4557
|
var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
4558
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3907
4559
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3908
4560
|
url: "/webhook_configs",
|
|
3909
4561
|
...options,
|
|
@@ -3913,6 +4565,7 @@ var postWebhookConfigs = (options) => (options.client ?? client).post({
|
|
|
3913
4565
|
}
|
|
3914
4566
|
});
|
|
3915
4567
|
var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post({
|
|
4568
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3916
4569
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3917
4570
|
url: "/agents/{id}/publish_version",
|
|
3918
4571
|
...options,
|
|
@@ -3922,6 +4575,7 @@ var postAgentsByIdPublishVersion = (options) => (options.client ?? client).post(
|
|
|
3922
4575
|
}
|
|
3923
4576
|
});
|
|
3924
4577
|
var postExtractionDocumentsBulkReprocess = (options) => (options.client ?? client).post({
|
|
4578
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3925
4579
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3926
4580
|
url: "/extraction/documents/bulk-reprocess",
|
|
3927
4581
|
...options,
|
|
@@ -3931,6 +4585,7 @@ var postExtractionDocumentsBulkReprocess = (options) => (options.client ?? clien
|
|
|
3931
4585
|
}
|
|
3932
4586
|
});
|
|
3933
4587
|
var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
4588
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3934
4589
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3935
4590
|
url: "/objects/bulk-destroy",
|
|
3936
4591
|
...options,
|
|
@@ -3940,31 +4595,42 @@ var postObjectsBulkDestroy = (options) => (options.client ?? client).post({
|
|
|
3940
4595
|
}
|
|
3941
4596
|
});
|
|
3942
4597
|
var getApplicationsBySlugBySlug = (options) => (options.client ?? client).get({
|
|
4598
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3943
4599
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3944
4600
|
url: "/applications/by-slug/{slug}",
|
|
3945
4601
|
...options
|
|
3946
4602
|
});
|
|
3947
4603
|
var getNotificationLogs = (options) => (options.client ?? client).get({
|
|
4604
|
+
querySerializer: {
|
|
4605
|
+
parameters: {
|
|
4606
|
+
filter: { object: { style: "form" } },
|
|
4607
|
+
fields: { object: { style: "form" } }
|
|
4608
|
+
}
|
|
4609
|
+
},
|
|
3948
4610
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3949
4611
|
url: "/notification_logs",
|
|
3950
4612
|
...options
|
|
3951
4613
|
});
|
|
3952
4614
|
var getWallet = (options) => (options.client ?? client).get({
|
|
4615
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3953
4616
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3954
4617
|
url: "/wallet",
|
|
3955
4618
|
...options
|
|
3956
4619
|
});
|
|
3957
4620
|
var deleteMessagesById = (options) => (options.client ?? client).delete({
|
|
4621
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3958
4622
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3959
4623
|
url: "/messages/{id}",
|
|
3960
4624
|
...options
|
|
3961
4625
|
});
|
|
3962
4626
|
var getMessagesById = (options) => (options.client ?? client).get({
|
|
4627
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3963
4628
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3964
4629
|
url: "/messages/{id}",
|
|
3965
4630
|
...options
|
|
3966
4631
|
});
|
|
3967
4632
|
var patchMessagesById = (options) => (options.client ?? client).patch({
|
|
4633
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3968
4634
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3969
4635
|
url: "/messages/{id}",
|
|
3970
4636
|
...options,
|
|
@@ -3983,26 +4649,36 @@ var postAgentsByIdDiscoverSchema = (options) => (options.client ?? client).post(
|
|
|
3983
4649
|
}
|
|
3984
4650
|
});
|
|
3985
4651
|
var getLlmAnalyticsUsage = (options) => (options.client ?? client).get({
|
|
4652
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3986
4653
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3987
4654
|
url: "/llm_analytics/usage",
|
|
3988
4655
|
...options
|
|
3989
4656
|
});
|
|
3990
4657
|
var getSearchStats = (options) => (options.client ?? client).get({
|
|
4658
|
+
querySerializer: {
|
|
4659
|
+
parameters: {
|
|
4660
|
+
filter: { object: { style: "form" } },
|
|
4661
|
+
fields: { object: { style: "form" } }
|
|
4662
|
+
}
|
|
4663
|
+
},
|
|
3991
4664
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3992
4665
|
url: "/search/stats",
|
|
3993
4666
|
...options
|
|
3994
4667
|
});
|
|
3995
4668
|
var deleteNotificationPreferencesById = (options) => (options.client ?? client).delete({
|
|
4669
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
3996
4670
|
security: [{ scheme: "bearer", type: "http" }],
|
|
3997
4671
|
url: "/notification_preferences/{id}",
|
|
3998
4672
|
...options
|
|
3999
4673
|
});
|
|
4000
4674
|
var getNotificationPreferencesById = (options) => (options.client ?? client).get({
|
|
4675
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4001
4676
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4002
4677
|
url: "/notification_preferences/{id}",
|
|
4003
4678
|
...options
|
|
4004
4679
|
});
|
|
4005
4680
|
var patchNotificationPreferencesById = (options) => (options.client ?? client).patch({
|
|
4681
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4006
4682
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4007
4683
|
url: "/notification_preferences/{id}",
|
|
4008
4684
|
...options,
|
|
@@ -4012,11 +4688,19 @@ var patchNotificationPreferencesById = (options) => (options.client ?? client).p
|
|
|
4012
4688
|
}
|
|
4013
4689
|
});
|
|
4014
4690
|
var getAiGraphNodes = (options) => (options.client ?? client).get({
|
|
4691
|
+
querySerializer: {
|
|
4692
|
+
parameters: {
|
|
4693
|
+
filter: { object: { style: "form" } },
|
|
4694
|
+
page: { object: { style: "form" } },
|
|
4695
|
+
fields: { object: { style: "form" } }
|
|
4696
|
+
}
|
|
4697
|
+
},
|
|
4015
4698
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4016
4699
|
url: "/ai/graph/nodes",
|
|
4017
4700
|
...options
|
|
4018
4701
|
});
|
|
4019
4702
|
var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
4703
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4020
4704
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4021
4705
|
url: "/ai/graph/nodes",
|
|
4022
4706
|
...options,
|
|
@@ -4026,11 +4710,19 @@ var postAiGraphNodes = (options) => (options.client ?? client).post({
|
|
|
4026
4710
|
}
|
|
4027
4711
|
});
|
|
4028
4712
|
var getAgents = (options) => (options.client ?? client).get({
|
|
4713
|
+
querySerializer: {
|
|
4714
|
+
parameters: {
|
|
4715
|
+
filter: { object: { style: "form" } },
|
|
4716
|
+
page: { object: { style: "form" } },
|
|
4717
|
+
fields: { object: { style: "form" } }
|
|
4718
|
+
}
|
|
4719
|
+
},
|
|
4029
4720
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4030
4721
|
url: "/agents",
|
|
4031
4722
|
...options
|
|
4032
4723
|
});
|
|
4033
4724
|
var postAgents = (options) => (options.client ?? client).post({
|
|
4725
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4034
4726
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4035
4727
|
url: "/agents",
|
|
4036
4728
|
...options,
|
|
@@ -4040,16 +4732,19 @@ var postAgents = (options) => (options.client ?? client).post({
|
|
|
4040
4732
|
}
|
|
4041
4733
|
});
|
|
4042
4734
|
var deleteApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).delete({
|
|
4735
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4043
4736
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4044
4737
|
url: "/applications/{application_id}/email-templates/{slug}",
|
|
4045
4738
|
...options
|
|
4046
4739
|
});
|
|
4047
4740
|
var getApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).get({
|
|
4741
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4048
4742
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4049
4743
|
url: "/applications/{application_id}/email-templates/{slug}",
|
|
4050
4744
|
...options
|
|
4051
4745
|
});
|
|
4052
4746
|
var patchApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options.client ?? client).patch({
|
|
4747
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4053
4748
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4054
4749
|
url: "/applications/{application_id}/email-templates/{slug}",
|
|
4055
4750
|
...options,
|
|
@@ -4059,6 +4754,7 @@ var patchApplicationsByApplicationIdEmailTemplatesBySlug = (options) => (options
|
|
|
4059
4754
|
}
|
|
4060
4755
|
});
|
|
4061
4756
|
var patchPaymentMethodsByIdDefault = (options) => (options.client ?? client).patch({
|
|
4757
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4062
4758
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4063
4759
|
url: "/payment-methods/{id}/default",
|
|
4064
4760
|
...options,
|
|
@@ -4073,6 +4769,7 @@ var postAgentsByIdExport = (options) => (options.client ?? client).post({
|
|
|
4073
4769
|
...options
|
|
4074
4770
|
});
|
|
4075
4771
|
var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
4772
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4076
4773
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4077
4774
|
url: "/users/register_isv",
|
|
4078
4775
|
...options,
|
|
@@ -4082,21 +4779,31 @@ var postUsersRegisterIsv = (options) => (options.client ?? client).post({
|
|
|
4082
4779
|
}
|
|
4083
4780
|
});
|
|
4084
4781
|
var deleteExtractionBatchesById = (options) => (options.client ?? client).delete({
|
|
4782
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4085
4783
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4086
4784
|
url: "/extraction/batches/{id}",
|
|
4087
4785
|
...options
|
|
4088
4786
|
});
|
|
4089
4787
|
var getExtractionBatchesById = (options) => (options.client ?? client).get({
|
|
4788
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4090
4789
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4091
4790
|
url: "/extraction/batches/{id}",
|
|
4092
4791
|
...options
|
|
4093
4792
|
});
|
|
4094
4793
|
var getWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).get({
|
|
4794
|
+
querySerializer: {
|
|
4795
|
+
parameters: {
|
|
4796
|
+
filter: { object: { style: "form" } },
|
|
4797
|
+
page: { object: { style: "form" } },
|
|
4798
|
+
fields: { object: { style: "form" } }
|
|
4799
|
+
}
|
|
4800
|
+
},
|
|
4095
4801
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4096
4802
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
4097
4803
|
...options
|
|
4098
4804
|
});
|
|
4099
4805
|
var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client ?? client).post({
|
|
4806
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4100
4807
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4101
4808
|
url: "/workspaces/{workspace_id}/extraction/exports",
|
|
4102
4809
|
...options,
|
|
@@ -4106,11 +4813,13 @@ var postWorkspacesByWorkspaceIdExtractionExports = (options) => (options.client
|
|
|
4106
4813
|
}
|
|
4107
4814
|
});
|
|
4108
4815
|
var deleteWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).delete({
|
|
4816
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4109
4817
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4110
4818
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
4111
4819
|
...options
|
|
4112
4820
|
});
|
|
4113
4821
|
var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.client ?? client).patch({
|
|
4822
|
+
querySerializer: { parameters: { fields: { object: { style: "form" } } } },
|
|
4114
4823
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4115
4824
|
url: "/workspace-memberships/{workspace_id}/{user_id}",
|
|
4116
4825
|
...options,
|
|
@@ -4120,21 +4829,49 @@ var patchWorkspaceMembershipsByWorkspaceIdByUserId = (options) => (options.clien
|
|
|
4120
4829
|
}
|
|
4121
4830
|
});
|
|
4122
4831
|
var getExtractionDocumentsWorkspaceByWorkspaceIdTrashed = (options) => (options.client ?? client).get({
|
|
4832
|
+
querySerializer: {
|
|
4833
|
+
parameters: {
|
|
4834
|
+
filter: { object: { style: "form" } },
|
|
4835
|
+
page: { object: { style: "form" } },
|
|
4836
|
+
fields: { object: { style: "form" } }
|
|
4837
|
+
}
|
|
4838
|
+
},
|
|
4123
4839
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4124
4840
|
url: "/extraction/documents/workspace/{workspace_id}/trashed",
|
|
4125
4841
|
...options
|
|
4126
4842
|
});
|
|
4127
4843
|
var getCreditPackages = (options) => (options.client ?? client).get({
|
|
4844
|
+
querySerializer: {
|
|
4845
|
+
parameters: {
|
|
4846
|
+
filter: { object: { style: "form" } },
|
|
4847
|
+
page: { object: { style: "form" } },
|
|
4848
|
+
fields: { object: { style: "form" } }
|
|
4849
|
+
}
|
|
4850
|
+
},
|
|
4128
4851
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4129
4852
|
url: "/credit-packages",
|
|
4130
4853
|
...options
|
|
4131
4854
|
});
|
|
4132
4855
|
var getUsers = (options) => (options.client ?? client).get({
|
|
4856
|
+
querySerializer: {
|
|
4857
|
+
parameters: {
|
|
4858
|
+
filter: { object: { style: "form" } },
|
|
4859
|
+
page: { object: { style: "form" } },
|
|
4860
|
+
fields: { object: { style: "form" } }
|
|
4861
|
+
}
|
|
4862
|
+
},
|
|
4133
4863
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4134
4864
|
url: "/users",
|
|
4135
4865
|
...options
|
|
4136
4866
|
});
|
|
4137
4867
|
var getObjects = (options) => (options.client ?? client).get({
|
|
4868
|
+
querySerializer: {
|
|
4869
|
+
parameters: {
|
|
4870
|
+
filter: { object: { style: "form" } },
|
|
4871
|
+
page: { object: { style: "form" } },
|
|
4872
|
+
fields: { object: { style: "form" } }
|
|
4873
|
+
}
|
|
4874
|
+
},
|
|
4138
4875
|
security: [{ scheme: "bearer", type: "http" }],
|
|
4139
4876
|
url: "/objects",
|
|
4140
4877
|
...options
|