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