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