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