@nvisy/sdk 0.7.0 → 0.8.0

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.
@@ -217,7 +217,7 @@ interface paths {
217
217
  header?: never;
218
218
  path: {
219
219
  /** @description Public handle of the account. */
220
- username: components["schemas"]["Username"];
220
+ username: components["schemas"]["Handle"];
221
221
  };
222
222
  cookie?: never;
223
223
  };
@@ -1615,13 +1615,447 @@ interface paths {
1615
1615
  };
1616
1616
  };
1617
1617
  };
1618
+ put?: never;
1619
+ post?: never;
1620
+ /**
1621
+ * Delete connection
1622
+ * @description Soft-deletes the connection from the workspace.
1623
+ */
1624
+ delete: {
1625
+ parameters: {
1626
+ query?: never;
1627
+ header?: never;
1628
+ path: {
1629
+ /** @description URL-safe workspace identifier. */
1630
+ workspaceSlug: string;
1631
+ /** @description Opaque identifier of the connection. */
1632
+ connectionId: components["schemas"]["ConnectionId"];
1633
+ };
1634
+ cookie?: never;
1635
+ };
1636
+ requestBody?: never;
1637
+ responses: {
1638
+ /** @description no content */
1639
+ 204: {
1640
+ headers: {
1641
+ [name: string]: unknown;
1642
+ };
1643
+ content?: never;
1644
+ };
1645
+ /**
1646
+ * @description HTTP error response representation with security-conscious design.
1647
+ *
1648
+ * This struct contains all the information needed to serialize an error
1649
+ * response, including the error name, message, HTTP status code, resource
1650
+ * information, and user-friendly messages.
1651
+ */
1652
+ 401: {
1653
+ headers: {
1654
+ [name: string]: unknown;
1655
+ };
1656
+ content: {
1657
+ "application/json": components["schemas"]["ErrorResponse"];
1658
+ };
1659
+ };
1660
+ /**
1661
+ * @description HTTP error response representation with security-conscious design.
1662
+ *
1663
+ * This struct contains all the information needed to serialize an error
1664
+ * response, including the error name, message, HTTP status code, resource
1665
+ * information, and user-friendly messages.
1666
+ */
1667
+ 403: {
1668
+ headers: {
1669
+ [name: string]: unknown;
1670
+ };
1671
+ content: {
1672
+ "application/json": components["schemas"]["ErrorResponse"];
1673
+ };
1674
+ };
1675
+ /**
1676
+ * @description HTTP error response representation with security-conscious design.
1677
+ *
1678
+ * This struct contains all the information needed to serialize an error
1679
+ * response, including the error name, message, HTTP status code, resource
1680
+ * information, and user-friendly messages.
1681
+ */
1682
+ 404: {
1683
+ headers: {
1684
+ [name: string]: unknown;
1685
+ };
1686
+ content: {
1687
+ "application/json": components["schemas"]["ErrorResponse"];
1688
+ };
1689
+ };
1690
+ };
1691
+ };
1692
+ options?: never;
1693
+ head?: never;
1694
+ /**
1695
+ * Update connection
1696
+ * @description Updates connection name or encrypted data.
1697
+ */
1698
+ patch: {
1699
+ parameters: {
1700
+ query?: never;
1701
+ header?: never;
1702
+ path: {
1703
+ /** @description URL-safe workspace identifier. */
1704
+ workspaceSlug: string;
1705
+ /** @description Opaque identifier of the connection. */
1706
+ connectionId: components["schemas"]["ConnectionId"];
1707
+ };
1708
+ cookie?: never;
1709
+ };
1710
+ /** @description Request payload for updating an existing workspace connection. */
1711
+ requestBody: {
1712
+ content: {
1713
+ "application/json": components["schemas"]["UpdateConnection"];
1714
+ };
1715
+ };
1716
+ responses: {
1717
+ /**
1718
+ * @description Response type for a workspace connection.
1719
+ *
1720
+ * Note: The encrypted connection data is never exposed in API responses.
1721
+ * Only metadata about the connection is returned.
1722
+ */
1723
+ 200: {
1724
+ headers: {
1725
+ [name: string]: unknown;
1726
+ };
1727
+ content: {
1728
+ "application/json": components["schemas"]["Connection"];
1729
+ };
1730
+ };
1731
+ /**
1732
+ * @description HTTP error response representation with security-conscious design.
1733
+ *
1734
+ * This struct contains all the information needed to serialize an error
1735
+ * response, including the error name, message, HTTP status code, resource
1736
+ * information, and user-friendly messages.
1737
+ */
1738
+ 400: {
1739
+ headers: {
1740
+ [name: string]: unknown;
1741
+ };
1742
+ content: {
1743
+ "application/json": components["schemas"]["ErrorResponse"];
1744
+ };
1745
+ };
1746
+ /**
1747
+ * @description HTTP error response representation with security-conscious design.
1748
+ *
1749
+ * This struct contains all the information needed to serialize an error
1750
+ * response, including the error name, message, HTTP status code, resource
1751
+ * information, and user-friendly messages.
1752
+ */
1753
+ 401: {
1754
+ headers: {
1755
+ [name: string]: unknown;
1756
+ };
1757
+ content: {
1758
+ "application/json": components["schemas"]["ErrorResponse"];
1759
+ };
1760
+ };
1761
+ /**
1762
+ * @description HTTP error response representation with security-conscious design.
1763
+ *
1764
+ * This struct contains all the information needed to serialize an error
1765
+ * response, including the error name, message, HTTP status code, resource
1766
+ * information, and user-friendly messages.
1767
+ */
1768
+ 403: {
1769
+ headers: {
1770
+ [name: string]: unknown;
1771
+ };
1772
+ content: {
1773
+ "application/json": components["schemas"]["ErrorResponse"];
1774
+ };
1775
+ };
1776
+ /**
1777
+ * @description HTTP error response representation with security-conscious design.
1778
+ *
1779
+ * This struct contains all the information needed to serialize an error
1780
+ * response, including the error name, message, HTTP status code, resource
1781
+ * information, and user-friendly messages.
1782
+ */
1783
+ 404: {
1784
+ headers: {
1785
+ [name: string]: unknown;
1786
+ };
1787
+ content: {
1788
+ "application/json": components["schemas"]["ErrorResponse"];
1789
+ };
1790
+ };
1791
+ /** @description Expected request with `Content-Type: application/json` */
1792
+ 415: {
1793
+ headers: {
1794
+ [name: string]: unknown;
1795
+ };
1796
+ content: {
1797
+ "text/plain": string;
1798
+ };
1799
+ };
1800
+ /** @description Failed to deserialize the JSON body into the target type */
1801
+ 422: {
1802
+ headers: {
1803
+ [name: string]: unknown;
1804
+ };
1805
+ content: {
1806
+ "text/plain": string;
1807
+ };
1808
+ };
1809
+ };
1810
+ };
1811
+ trace?: never;
1812
+ };
1813
+ "/workspaces/{workspaceSlug}/connections/{connectionId}/verify/": {
1814
+ parameters: {
1815
+ query?: never;
1816
+ header?: never;
1817
+ path?: never;
1818
+ cookie?: never;
1819
+ };
1820
+ get?: never;
1821
+ put?: never;
1822
+ /**
1823
+ * Verify connection
1824
+ * @description Checks whether the connection's backing store is reachable with its stored credentials.
1825
+ */
1826
+ post: {
1827
+ parameters: {
1828
+ query?: never;
1829
+ header?: never;
1830
+ path: {
1831
+ /** @description URL-safe workspace identifier. */
1832
+ workspaceSlug: string;
1833
+ /** @description Opaque identifier of the connection. */
1834
+ connectionId: components["schemas"]["ConnectionId"];
1835
+ };
1836
+ cookie?: never;
1837
+ };
1838
+ requestBody?: never;
1839
+ responses: {
1840
+ /** @description Result of a connection reachability check. */
1841
+ 200: {
1842
+ headers: {
1843
+ [name: string]: unknown;
1844
+ };
1845
+ content: {
1846
+ "application/json": components["schemas"]["ConnectionVerification"];
1847
+ };
1848
+ };
1849
+ /**
1850
+ * @description HTTP error response representation with security-conscious design.
1851
+ *
1852
+ * This struct contains all the information needed to serialize an error
1853
+ * response, including the error name, message, HTTP status code, resource
1854
+ * information, and user-friendly messages.
1855
+ */
1856
+ 401: {
1857
+ headers: {
1858
+ [name: string]: unknown;
1859
+ };
1860
+ content: {
1861
+ "application/json": components["schemas"]["ErrorResponse"];
1862
+ };
1863
+ };
1864
+ /**
1865
+ * @description HTTP error response representation with security-conscious design.
1866
+ *
1867
+ * This struct contains all the information needed to serialize an error
1868
+ * response, including the error name, message, HTTP status code, resource
1869
+ * information, and user-friendly messages.
1870
+ */
1871
+ 403: {
1872
+ headers: {
1873
+ [name: string]: unknown;
1874
+ };
1875
+ content: {
1876
+ "application/json": components["schemas"]["ErrorResponse"];
1877
+ };
1878
+ };
1879
+ /**
1880
+ * @description HTTP error response representation with security-conscious design.
1881
+ *
1882
+ * This struct contains all the information needed to serialize an error
1883
+ * response, including the error name, message, HTTP status code, resource
1884
+ * information, and user-friendly messages.
1885
+ */
1886
+ 404: {
1887
+ headers: {
1888
+ [name: string]: unknown;
1889
+ };
1890
+ content: {
1891
+ "application/json": components["schemas"]["ErrorResponse"];
1892
+ };
1893
+ };
1894
+ };
1895
+ };
1896
+ delete?: never;
1897
+ options?: never;
1898
+ head?: never;
1899
+ patch?: never;
1900
+ trace?: never;
1901
+ };
1902
+ "/workspaces/{workspaceSlug}/connections/{connectionId}/sync/": {
1903
+ parameters: {
1904
+ query?: never;
1905
+ header?: never;
1906
+ path?: never;
1907
+ cookie?: never;
1908
+ };
1909
+ get?: never;
1910
+ put?: never;
1911
+ /**
1912
+ * Sync connection
1913
+ * @description Imports an object from or exports a file to the connection. Returns the created sync; poll it for completion.
1914
+ */
1915
+ post: {
1916
+ parameters: {
1917
+ query?: never;
1918
+ header?: never;
1919
+ path: {
1920
+ /** @description URL-safe workspace identifier. */
1921
+ workspaceSlug: string;
1922
+ /** @description Opaque identifier of the connection. */
1923
+ connectionId: components["schemas"]["ConnectionId"];
1924
+ };
1925
+ cookie?: never;
1926
+ };
1927
+ /**
1928
+ * @description Request payload to trigger a connection sync.
1929
+ *
1930
+ * The direction is determined by the connection's configured `sync_mode`.
1931
+ * - Import connections need no body: the sync fetches every not-yet-imported
1932
+ * object under the connection's root path.
1933
+ * - Export connections push one workspace file (`file_id`) to one object
1934
+ * `key`; both are required for export and ignored for import.
1935
+ */
1936
+ requestBody: {
1937
+ content: {
1938
+ "application/json": components["schemas"]["SyncConnection"];
1939
+ };
1940
+ };
1941
+ responses: {
1942
+ /** @description A connection sync run (import or export). */
1943
+ 202: {
1944
+ headers: {
1945
+ [name: string]: unknown;
1946
+ };
1947
+ content: {
1948
+ "application/json": components["schemas"]["ConnectionSync"];
1949
+ };
1950
+ };
1951
+ /**
1952
+ * @description HTTP error response representation with security-conscious design.
1953
+ *
1954
+ * This struct contains all the information needed to serialize an error
1955
+ * response, including the error name, message, HTTP status code, resource
1956
+ * information, and user-friendly messages.
1957
+ */
1958
+ 400: {
1959
+ headers: {
1960
+ [name: string]: unknown;
1961
+ };
1962
+ content: {
1963
+ "application/json": components["schemas"]["ErrorResponse"];
1964
+ };
1965
+ };
1966
+ /**
1967
+ * @description HTTP error response representation with security-conscious design.
1968
+ *
1969
+ * This struct contains all the information needed to serialize an error
1970
+ * response, including the error name, message, HTTP status code, resource
1971
+ * information, and user-friendly messages.
1972
+ */
1973
+ 401: {
1974
+ headers: {
1975
+ [name: string]: unknown;
1976
+ };
1977
+ content: {
1978
+ "application/json": components["schemas"]["ErrorResponse"];
1979
+ };
1980
+ };
1981
+ /**
1982
+ * @description HTTP error response representation with security-conscious design.
1983
+ *
1984
+ * This struct contains all the information needed to serialize an error
1985
+ * response, including the error name, message, HTTP status code, resource
1986
+ * information, and user-friendly messages.
1987
+ */
1988
+ 403: {
1989
+ headers: {
1990
+ [name: string]: unknown;
1991
+ };
1992
+ content: {
1993
+ "application/json": components["schemas"]["ErrorResponse"];
1994
+ };
1995
+ };
1996
+ /**
1997
+ * @description HTTP error response representation with security-conscious design.
1998
+ *
1999
+ * This struct contains all the information needed to serialize an error
2000
+ * response, including the error name, message, HTTP status code, resource
2001
+ * information, and user-friendly messages.
2002
+ */
2003
+ 404: {
2004
+ headers: {
2005
+ [name: string]: unknown;
2006
+ };
2007
+ content: {
2008
+ "application/json": components["schemas"]["ErrorResponse"];
2009
+ };
2010
+ };
2011
+ /** @description Expected request with `Content-Type: application/json` */
2012
+ 415: {
2013
+ headers: {
2014
+ [name: string]: unknown;
2015
+ };
2016
+ content: {
2017
+ "text/plain": string;
2018
+ };
2019
+ };
2020
+ /** @description Failed to deserialize the JSON body into the target type */
2021
+ 422: {
2022
+ headers: {
2023
+ [name: string]: unknown;
2024
+ };
2025
+ content: {
2026
+ "text/plain": string;
2027
+ };
2028
+ };
2029
+ };
2030
+ };
2031
+ delete?: never;
2032
+ options?: never;
2033
+ head?: never;
2034
+ patch?: never;
2035
+ trace?: never;
2036
+ };
2037
+ "/workspaces/{workspaceSlug}/connections/{connectionId}/syncs/": {
2038
+ parameters: {
2039
+ query?: never;
2040
+ header?: never;
2041
+ path?: never;
2042
+ cookie?: never;
2043
+ };
1618
2044
  /**
1619
- * Update connection
1620
- * @description Updates connection name or encrypted data.
2045
+ * List connection syncs
2046
+ * @description Returns the connection's sync history, most recent first.
1621
2047
  */
1622
- put: {
2048
+ get: {
1623
2049
  parameters: {
1624
- query?: never;
2050
+ query?: {
2051
+ /**
2052
+ * @description Cursor pointing to the last item of the previous page.
2053
+ * Obtain this from the `nextCursor` field in the response.
2054
+ */
2055
+ after?: string;
2056
+ /** @description The maximum number of records to return (1-100, default: 20). */
2057
+ limit?: number;
2058
+ };
1625
2059
  header?: never;
1626
2060
  path: {
1627
2061
  /** @description URL-safe workspace identifier. */
@@ -1631,25 +2065,21 @@ interface paths {
1631
2065
  };
1632
2066
  cookie?: never;
1633
2067
  };
1634
- /** @description Request payload for updating an existing workspace connection. */
1635
- requestBody: {
1636
- content: {
1637
- "application/json": components["schemas"]["UpdateConnection"];
1638
- };
1639
- };
2068
+ requestBody?: never;
1640
2069
  responses: {
1641
2070
  /**
1642
- * @description Response type for a workspace connection.
2071
+ * @description Generic paginated response wrapper.
1643
2072
  *
1644
- * Note: The encrypted connection data is never exposed in API responses.
1645
- * Only metadata about the connection is returned.
2073
+ * Provides a consistent structure for all paginated API responses with
2074
+ * cursor-based pagination support. When `next_cursor` is present, there
2075
+ * are more items to fetch.
1646
2076
  */
1647
2077
  200: {
1648
2078
  headers: {
1649
2079
  [name: string]: unknown;
1650
2080
  };
1651
2081
  content: {
1652
- "application/json": components["schemas"]["Connection"];
2082
+ "application/json": components["schemas"]["ConnectionSyncsPage"];
1653
2083
  };
1654
2084
  };
1655
2085
  /**
@@ -1659,7 +2089,7 @@ interface paths {
1659
2089
  * response, including the error name, message, HTTP status code, resource
1660
2090
  * information, and user-friendly messages.
1661
2091
  */
1662
- 400: {
2092
+ 401: {
1663
2093
  headers: {
1664
2094
  [name: string]: unknown;
1665
2095
  };
@@ -1674,7 +2104,7 @@ interface paths {
1674
2104
  * response, including the error name, message, HTTP status code, resource
1675
2105
  * information, and user-friendly messages.
1676
2106
  */
1677
- 401: {
2107
+ 403: {
1678
2108
  headers: {
1679
2109
  [name: string]: unknown;
1680
2110
  };
@@ -1689,7 +2119,7 @@ interface paths {
1689
2119
  * response, including the error name, message, HTTP status code, resource
1690
2120
  * information, and user-friendly messages.
1691
2121
  */
1692
- 403: {
2122
+ 404: {
1693
2123
  headers: {
1694
2124
  [name: string]: unknown;
1695
2125
  };
@@ -1697,6 +2127,52 @@ interface paths {
1697
2127
  "application/json": components["schemas"]["ErrorResponse"];
1698
2128
  };
1699
2129
  };
2130
+ };
2131
+ };
2132
+ put?: never;
2133
+ post?: never;
2134
+ delete?: never;
2135
+ options?: never;
2136
+ head?: never;
2137
+ patch?: never;
2138
+ trace?: never;
2139
+ };
2140
+ "/workspaces/{workspaceSlug}/connections/{connectionId}/syncs/{syncId}/": {
2141
+ parameters: {
2142
+ query?: never;
2143
+ header?: never;
2144
+ path?: never;
2145
+ cookie?: never;
2146
+ };
2147
+ /**
2148
+ * Get connection sync
2149
+ * @description Returns a single sync run for the connection.
2150
+ */
2151
+ get: {
2152
+ parameters: {
2153
+ query?: never;
2154
+ header?: never;
2155
+ path: {
2156
+ /** @description URL-safe workspace identifier. */
2157
+ workspaceSlug: string;
2158
+ /** @description Opaque identifier of the connection. */
2159
+ connectionId: components["schemas"]["ConnectionId"];
2160
+ /** @description Unique identifier of the sync run. */
2161
+ syncId: string;
2162
+ };
2163
+ cookie?: never;
2164
+ };
2165
+ requestBody?: never;
2166
+ responses: {
2167
+ /** @description A connection sync run (import or export). */
2168
+ 200: {
2169
+ headers: {
2170
+ [name: string]: unknown;
2171
+ };
2172
+ content: {
2173
+ "application/json": components["schemas"]["ConnectionSync"];
2174
+ };
2175
+ };
1700
2176
  /**
1701
2177
  * @description HTTP error response representation with security-conscious design.
1702
2178
  *
@@ -1704,7 +2180,7 @@ interface paths {
1704
2180
  * response, including the error name, message, HTTP status code, resource
1705
2181
  * information, and user-friendly messages.
1706
2182
  */
1707
- 404: {
2183
+ 401: {
1708
2184
  headers: {
1709
2185
  [name: string]: unknown;
1710
2186
  };
@@ -1712,32 +2188,60 @@ interface paths {
1712
2188
  "application/json": components["schemas"]["ErrorResponse"];
1713
2189
  };
1714
2190
  };
1715
- /** @description Expected request with `Content-Type: application/json` */
1716
- 415: {
2191
+ /**
2192
+ * @description HTTP error response representation with security-conscious design.
2193
+ *
2194
+ * This struct contains all the information needed to serialize an error
2195
+ * response, including the error name, message, HTTP status code, resource
2196
+ * information, and user-friendly messages.
2197
+ */
2198
+ 403: {
1717
2199
  headers: {
1718
2200
  [name: string]: unknown;
1719
2201
  };
1720
2202
  content: {
1721
- "text/plain": string;
2203
+ "application/json": components["schemas"]["ErrorResponse"];
1722
2204
  };
1723
2205
  };
1724
- /** @description Failed to deserialize the JSON body into the target type */
1725
- 422: {
2206
+ /**
2207
+ * @description HTTP error response representation with security-conscious design.
2208
+ *
2209
+ * This struct contains all the information needed to serialize an error
2210
+ * response, including the error name, message, HTTP status code, resource
2211
+ * information, and user-friendly messages.
2212
+ */
2213
+ 404: {
1726
2214
  headers: {
1727
2215
  [name: string]: unknown;
1728
2216
  };
1729
2217
  content: {
1730
- "text/plain": string;
2218
+ "application/json": components["schemas"]["ErrorResponse"];
1731
2219
  };
1732
2220
  };
1733
2221
  };
1734
2222
  };
2223
+ put?: never;
1735
2224
  post?: never;
2225
+ delete?: never;
2226
+ options?: never;
2227
+ head?: never;
2228
+ patch?: never;
2229
+ trace?: never;
2230
+ };
2231
+ "/workspaces/{workspaceSlug}/connections/{connectionId}/syncs/{syncId}/cancel/": {
2232
+ parameters: {
2233
+ query?: never;
2234
+ header?: never;
2235
+ path?: never;
2236
+ cookie?: never;
2237
+ };
2238
+ get?: never;
2239
+ put?: never;
1736
2240
  /**
1737
- * Delete connection
1738
- * @description Soft-deletes the connection from the workspace.
2241
+ * Cancel connection sync
2242
+ * @description Cancels an in-progress sync run. A run that already finished returns 409.
1739
2243
  */
1740
- delete: {
2244
+ post: {
1741
2245
  parameters: {
1742
2246
  query?: never;
1743
2247
  header?: never;
@@ -1746,17 +2250,21 @@ interface paths {
1746
2250
  workspaceSlug: string;
1747
2251
  /** @description Opaque identifier of the connection. */
1748
2252
  connectionId: components["schemas"]["ConnectionId"];
2253
+ /** @description Unique identifier of the sync run. */
2254
+ syncId: string;
1749
2255
  };
1750
2256
  cookie?: never;
1751
2257
  };
1752
2258
  requestBody?: never;
1753
2259
  responses: {
1754
- /** @description no content */
1755
- 204: {
2260
+ /** @description A connection sync run (import or export). */
2261
+ 200: {
1756
2262
  headers: {
1757
2263
  [name: string]: unknown;
1758
2264
  };
1759
- content?: never;
2265
+ content: {
2266
+ "application/json": components["schemas"]["ConnectionSync"];
2267
+ };
1760
2268
  };
1761
2269
  /**
1762
2270
  * @description HTTP error response representation with security-conscious design.
@@ -1803,8 +2311,24 @@ interface paths {
1803
2311
  "application/json": components["schemas"]["ErrorResponse"];
1804
2312
  };
1805
2313
  };
2314
+ /**
2315
+ * @description HTTP error response representation with security-conscious design.
2316
+ *
2317
+ * This struct contains all the information needed to serialize an error
2318
+ * response, including the error name, message, HTTP status code, resource
2319
+ * information, and user-friendly messages.
2320
+ */
2321
+ 409: {
2322
+ headers: {
2323
+ [name: string]: unknown;
2324
+ };
2325
+ content: {
2326
+ "application/json": components["schemas"]["ErrorResponse"];
2327
+ };
2328
+ };
1806
2329
  };
1807
2330
  };
2331
+ delete?: never;
1808
2332
  options?: never;
1809
2333
  head?: never;
1810
2334
  patch?: never;
@@ -2138,7 +2662,7 @@ interface paths {
2138
2662
  put?: never;
2139
2663
  /**
2140
2664
  * Reply to invitation
2141
- * @description Allows the invitee to accept or decline a workspace invitation.
2665
+ * @description Accepts or declines a workspace invitation. On accept the user becomes a member and the new membership is returned; on decline no membership is created.
2142
2666
  */
2143
2667
  post: {
2144
2668
  parameters: {
@@ -2159,19 +2683,21 @@ interface paths {
2159
2683
  };
2160
2684
  };
2161
2685
  responses: {
2162
- /**
2163
- * @description Workspace invite with complete information.
2164
- *
2165
- * This response includes all the essential information about an
2166
- * invitation, including the unique invite ID that can be used to track or cancel
2167
- * the invitation later.
2168
- */
2169
2686
  200: {
2170
2687
  headers: {
2171
2688
  [name: string]: unknown;
2172
2689
  };
2173
2690
  content: {
2174
- "application/json": components["schemas"]["Invite"];
2691
+ "application/json": components["schemas"]["Member"] | null;
2692
+ };
2693
+ };
2694
+ /** @description Represents a workspace member. */
2695
+ 201: {
2696
+ headers: {
2697
+ [name: string]: unknown;
2698
+ };
2699
+ content: {
2700
+ "application/json": components["schemas"]["Member"];
2175
2701
  };
2176
2702
  };
2177
2703
  /**
@@ -2219,6 +2745,21 @@ interface paths {
2219
2745
  "application/json": components["schemas"]["ErrorResponse"];
2220
2746
  };
2221
2747
  };
2748
+ /**
2749
+ * @description HTTP error response representation with security-conscious design.
2750
+ *
2751
+ * This struct contains all the information needed to serialize an error
2752
+ * response, including the error name, message, HTTP status code, resource
2753
+ * information, and user-friendly messages.
2754
+ */
2755
+ 409: {
2756
+ headers: {
2757
+ [name: string]: unknown;
2758
+ };
2759
+ content: {
2760
+ "application/json": components["schemas"]["ErrorResponse"];
2761
+ };
2762
+ };
2222
2763
  /** @description Expected request with `Content-Type: application/json` */
2223
2764
  415: {
2224
2765
  headers: {
@@ -2722,7 +3263,7 @@ interface paths {
2722
3263
  /** @description URL-safe workspace identifier. */
2723
3264
  workspaceSlug: string;
2724
3265
  /** @description Public handle of the member's account. */
2725
- username: components["schemas"]["Username"];
3266
+ username: components["schemas"]["Handle"];
2726
3267
  };
2727
3268
  cookie?: never;
2728
3269
  };
@@ -2798,7 +3339,7 @@ interface paths {
2798
3339
  /** @description URL-safe workspace identifier. */
2799
3340
  workspaceSlug: string;
2800
3341
  /** @description Public handle of the member's account. */
2801
- username: components["schemas"]["Username"];
3342
+ username: components["schemas"]["Handle"];
2802
3343
  };
2803
3344
  cookie?: never;
2804
3345
  };
@@ -2887,7 +3428,7 @@ interface paths {
2887
3428
  /** @description URL-safe workspace identifier. */
2888
3429
  workspaceSlug: string;
2889
3430
  /** @description Public handle of the member's account. */
2890
- username: components["schemas"]["Username"];
3431
+ username: components["schemas"]["Handle"];
2891
3432
  };
2892
3433
  cookie?: never;
2893
3434
  };
@@ -3256,11 +3797,13 @@ interface paths {
3256
3797
  };
3257
3798
  };
3258
3799
  };
3800
+ put?: never;
3801
+ post?: never;
3259
3802
  /**
3260
- * Update webhook
3261
- * @description Updates webhook configuration such as URL or event subscriptions.
3803
+ * Delete webhook
3804
+ * @description Permanently removes the webhook from the workspace.
3262
3805
  */
3263
- put: {
3806
+ delete: {
3264
3807
  parameters: {
3265
3808
  query?: never;
3266
3809
  header?: never;
@@ -3272,36 +3815,14 @@ interface paths {
3272
3815
  };
3273
3816
  cookie?: never;
3274
3817
  };
3275
- /** @description Request payload for updating an existing workspace webhook. */
3276
- requestBody: {
3277
- content: {
3278
- "application/json": components["schemas"]["UpdateWebhook"];
3279
- };
3280
- };
3818
+ requestBody?: never;
3281
3819
  responses: {
3282
- /** @description Workspace webhook response. */
3283
- 200: {
3284
- headers: {
3285
- [name: string]: unknown;
3286
- };
3287
- content: {
3288
- "application/json": components["schemas"]["Webhook"];
3289
- };
3290
- };
3291
- /**
3292
- * @description HTTP error response representation with security-conscious design.
3293
- *
3294
- * This struct contains all the information needed to serialize an error
3295
- * response, including the error name, message, HTTP status code, resource
3296
- * information, and user-friendly messages.
3297
- */
3298
- 400: {
3820
+ /** @description no content */
3821
+ 204: {
3299
3822
  headers: {
3300
3823
  [name: string]: unknown;
3301
3824
  };
3302
- content: {
3303
- "application/json": components["schemas"]["ErrorResponse"];
3304
- };
3825
+ content?: never;
3305
3826
  };
3306
3827
  /**
3307
3828
  * @description HTTP error response representation with security-conscious design.
@@ -3348,32 +3869,15 @@ interface paths {
3348
3869
  "application/json": components["schemas"]["ErrorResponse"];
3349
3870
  };
3350
3871
  };
3351
- /** @description Expected request with `Content-Type: application/json` */
3352
- 415: {
3353
- headers: {
3354
- [name: string]: unknown;
3355
- };
3356
- content: {
3357
- "text/plain": string;
3358
- };
3359
- };
3360
- /** @description Failed to deserialize the JSON body into the target type */
3361
- 422: {
3362
- headers: {
3363
- [name: string]: unknown;
3364
- };
3365
- content: {
3366
- "text/plain": string;
3367
- };
3368
- };
3369
3872
  };
3370
3873
  };
3371
- post?: never;
3874
+ options?: never;
3875
+ head?: never;
3372
3876
  /**
3373
- * Delete webhook
3374
- * @description Permanently removes the webhook from the workspace.
3877
+ * Update webhook
3878
+ * @description Updates webhook configuration such as URL or event subscriptions.
3375
3879
  */
3376
- delete: {
3880
+ patch: {
3377
3881
  parameters: {
3378
3882
  query?: never;
3379
3883
  header?: never;
@@ -3385,14 +3889,36 @@ interface paths {
3385
3889
  };
3386
3890
  cookie?: never;
3387
3891
  };
3388
- requestBody?: never;
3892
+ /** @description Request payload for updating an existing workspace webhook. */
3893
+ requestBody: {
3894
+ content: {
3895
+ "application/json": components["schemas"]["UpdateWebhook"];
3896
+ };
3897
+ };
3389
3898
  responses: {
3390
- /** @description no content */
3391
- 204: {
3899
+ /** @description Workspace webhook response. */
3900
+ 200: {
3901
+ headers: {
3902
+ [name: string]: unknown;
3903
+ };
3904
+ content: {
3905
+ "application/json": components["schemas"]["Webhook"];
3906
+ };
3907
+ };
3908
+ /**
3909
+ * @description HTTP error response representation with security-conscious design.
3910
+ *
3911
+ * This struct contains all the information needed to serialize an error
3912
+ * response, including the error name, message, HTTP status code, resource
3913
+ * information, and user-friendly messages.
3914
+ */
3915
+ 400: {
3392
3916
  headers: {
3393
3917
  [name: string]: unknown;
3394
3918
  };
3395
- content?: never;
3919
+ content: {
3920
+ "application/json": components["schemas"]["ErrorResponse"];
3921
+ };
3396
3922
  };
3397
3923
  /**
3398
3924
  * @description HTTP error response representation with security-conscious design.
@@ -3439,11 +3965,26 @@ interface paths {
3439
3965
  "application/json": components["schemas"]["ErrorResponse"];
3440
3966
  };
3441
3967
  };
3968
+ /** @description Expected request with `Content-Type: application/json` */
3969
+ 415: {
3970
+ headers: {
3971
+ [name: string]: unknown;
3972
+ };
3973
+ content: {
3974
+ "text/plain": string;
3975
+ };
3976
+ };
3977
+ /** @description Failed to deserialize the JSON body into the target type */
3978
+ 422: {
3979
+ headers: {
3980
+ [name: string]: unknown;
3981
+ };
3982
+ content: {
3983
+ "text/plain": string;
3984
+ };
3985
+ };
3442
3986
  };
3443
3987
  };
3444
- options?: never;
3445
- head?: never;
3446
- patch?: never;
3447
3988
  trace?: never;
3448
3989
  };
3449
3990
  "/workspaces/{workspaceSlug}/webhooks/{webhookId}/test/": {
@@ -5481,11 +6022,13 @@ interface paths {
5481
6022
  };
5482
6023
  };
5483
6024
  };
6025
+ put?: never;
6026
+ post?: never;
5484
6027
  /**
5485
- * Update policy
5486
- * @description Updates policy fields. Replacing the definition replaces the whole body.
6028
+ * Delete policy
6029
+ * @description Soft-deletes the policy from the workspace.
5487
6030
  */
5488
- put: {
6031
+ delete: {
5489
6032
  parameters: {
5490
6033
  query?: never;
5491
6034
  header?: never;
@@ -5497,40 +6040,14 @@ interface paths {
5497
6040
  };
5498
6041
  cookie?: never;
5499
6042
  };
5500
- /**
5501
- * @description Request payload for updating an existing workspace policy.
5502
- *
5503
- * Replacing the `definition` replaces the whole policy body.
5504
- */
5505
- requestBody: {
5506
- content: {
5507
- "application/json": components["schemas"]["UpdatePolicy"];
5508
- };
5509
- };
6043
+ requestBody?: never;
5510
6044
  responses: {
5511
- /** @description Response type for a workspace policy. */
5512
- 200: {
5513
- headers: {
5514
- [name: string]: unknown;
5515
- };
5516
- content: {
5517
- "application/json": components["schemas"]["Policy2"];
5518
- };
5519
- };
5520
- /**
5521
- * @description HTTP error response representation with security-conscious design.
5522
- *
5523
- * This struct contains all the information needed to serialize an error
5524
- * response, including the error name, message, HTTP status code, resource
5525
- * information, and user-friendly messages.
5526
- */
5527
- 400: {
6045
+ /** @description no content */
6046
+ 204: {
5528
6047
  headers: {
5529
6048
  [name: string]: unknown;
5530
6049
  };
5531
- content: {
5532
- "application/json": components["schemas"]["ErrorResponse"];
5533
- };
6050
+ content?: never;
5534
6051
  };
5535
6052
  /**
5536
6053
  * @description HTTP error response representation with security-conscious design.
@@ -5577,32 +6094,15 @@ interface paths {
5577
6094
  "application/json": components["schemas"]["ErrorResponse"];
5578
6095
  };
5579
6096
  };
5580
- /** @description Expected request with `Content-Type: application/json` */
5581
- 415: {
5582
- headers: {
5583
- [name: string]: unknown;
5584
- };
5585
- content: {
5586
- "text/plain": string;
5587
- };
5588
- };
5589
- /** @description Failed to deserialize the JSON body into the target type */
5590
- 422: {
5591
- headers: {
5592
- [name: string]: unknown;
5593
- };
5594
- content: {
5595
- "text/plain": string;
5596
- };
5597
- };
5598
6097
  };
5599
6098
  };
5600
- post?: never;
6099
+ options?: never;
6100
+ head?: never;
5601
6101
  /**
5602
- * Delete policy
5603
- * @description Soft-deletes the policy from the workspace.
6102
+ * Update policy
6103
+ * @description Updates policy fields. Replacing the definition replaces the whole body.
5604
6104
  */
5605
- delete: {
6105
+ patch: {
5606
6106
  parameters: {
5607
6107
  query?: never;
5608
6108
  header?: never;
@@ -5614,14 +6114,40 @@ interface paths {
5614
6114
  };
5615
6115
  cookie?: never;
5616
6116
  };
5617
- requestBody?: never;
6117
+ /**
6118
+ * @description Request payload for updating an existing workspace policy.
6119
+ *
6120
+ * Replacing the `definition` replaces the whole policy body.
6121
+ */
6122
+ requestBody: {
6123
+ content: {
6124
+ "application/json": components["schemas"]["UpdatePolicy"];
6125
+ };
6126
+ };
5618
6127
  responses: {
5619
- /** @description no content */
5620
- 204: {
6128
+ /** @description Response type for a workspace policy. */
6129
+ 200: {
5621
6130
  headers: {
5622
6131
  [name: string]: unknown;
5623
6132
  };
5624
- content?: never;
6133
+ content: {
6134
+ "application/json": components["schemas"]["Policy2"];
6135
+ };
6136
+ };
6137
+ /**
6138
+ * @description HTTP error response representation with security-conscious design.
6139
+ *
6140
+ * This struct contains all the information needed to serialize an error
6141
+ * response, including the error name, message, HTTP status code, resource
6142
+ * information, and user-friendly messages.
6143
+ */
6144
+ 400: {
6145
+ headers: {
6146
+ [name: string]: unknown;
6147
+ };
6148
+ content: {
6149
+ "application/json": components["schemas"]["ErrorResponse"];
6150
+ };
5625
6151
  };
5626
6152
  /**
5627
6153
  * @description HTTP error response representation with security-conscious design.
@@ -5668,11 +6194,26 @@ interface paths {
5668
6194
  "application/json": components["schemas"]["ErrorResponse"];
5669
6195
  };
5670
6196
  };
6197
+ /** @description Expected request with `Content-Type: application/json` */
6198
+ 415: {
6199
+ headers: {
6200
+ [name: string]: unknown;
6201
+ };
6202
+ content: {
6203
+ "text/plain": string;
6204
+ };
6205
+ };
6206
+ /** @description Failed to deserialize the JSON body into the target type */
6207
+ 422: {
6208
+ headers: {
6209
+ [name: string]: unknown;
6210
+ };
6211
+ content: {
6212
+ "text/plain": string;
6213
+ };
6214
+ };
5671
6215
  };
5672
6216
  };
5673
- options?: never;
5674
- head?: never;
5675
- patch?: never;
5676
6217
  trace?: never;
5677
6218
  };
5678
6219
  "/notifications/": {
@@ -6054,12 +6595,7 @@ interface paths {
6054
6595
  };
6055
6596
  cookie?: never;
6056
6597
  };
6057
- /** @description Request payload for monitoring status endpoint. */
6058
- requestBody: {
6059
- content: {
6060
- "application/json": components["schemas"]["CheckHealth"];
6061
- };
6062
- };
6598
+ requestBody?: never;
6063
6599
  responses: {
6064
6600
  /** @description Response body for `GET /health/`. */
6065
6601
  200: {
@@ -6115,7 +6651,7 @@ interface components {
6115
6651
  */
6116
6652
  updatedAt: string;
6117
6653
  /** @description Public handle of the account. */
6118
- username: components["schemas"]["Username"];
6654
+ username: components["schemas"]["Handle"];
6119
6655
  };
6120
6656
  /**
6121
6657
  * @description Path parameters for account operations.
@@ -6125,14 +6661,14 @@ interface components {
6125
6661
  */
6126
6662
  AccountPathParams: {
6127
6663
  /** @description Public handle of the account. */
6128
- username: components["schemas"]["Username"];
6664
+ username: components["schemas"]["Handle"];
6129
6665
  };
6130
6666
  /** @description Response type for a workspace activity. */
6131
6667
  Activity: {
6132
6668
  /** @description Type of activity. */
6133
6669
  activityType: components["schemas"]["ActivityType"];
6134
6670
  /** @description Handle of the account that performed the activity, if any. */
6135
- actorUsername?: components["schemas"]["Username"];
6671
+ actorUsername?: components["schemas"]["Handle"];
6136
6672
  /**
6137
6673
  * Format: date-time
6138
6674
  * @description When the activity occurred.
@@ -6145,8 +6681,8 @@ interface components {
6145
6681
  * @description Unique activity identifier.
6146
6682
  */
6147
6683
  id: string;
6148
- /** @description Slug of the workspace this activity belongs to. */
6149
- workspaceSlug: components["schemas"]["Slug"];
6684
+ /** @description Handle of the workspace this activity belongs to. */
6685
+ workspaceSlug: components["schemas"]["Handle"];
6150
6686
  };
6151
6687
  /**
6152
6688
  * @description Defines the type of activity performed in a workspace for audit logging.
@@ -6242,6 +6778,8 @@ interface components {
6242
6778
  * `false`; the listing handler sets it for the matching token.
6243
6779
  */
6244
6780
  current: boolean;
6781
+ /** @description Human-readable display name for the API token. */
6782
+ displayName: string;
6245
6783
  /**
6246
6784
  * Format: date-time
6247
6785
  * @description Timestamp when the token expires (None = never expires).
@@ -6262,8 +6800,6 @@ interface components {
6262
6800
  * @description Timestamp of most recent token activity.
6263
6801
  */
6264
6802
  lastUsedAt?: string;
6265
- /** @description Human-readable name for the API token. */
6266
- name: string;
6267
6803
  /** @description Type of token (web, api, etc.). */
6268
6804
  sessionType: components["schemas"]["ApiTokenType"];
6269
6805
  };
@@ -6276,6 +6812,8 @@ interface components {
6276
6812
  ApiTokenType: "web" | "api" | "cli";
6277
6813
  /** @description API token with JWT token string (only returned on creation). */
6278
6814
  ApiTokenWithJWT: {
6815
+ /** @description Human-readable display name for the API token. */
6816
+ displayName: string;
6279
6817
  /**
6280
6818
  * Format: date-time
6281
6819
  * @description Timestamp when the token expires (omitted = never expires).
@@ -6291,8 +6829,6 @@ interface components {
6291
6829
  * @description Timestamp of token creation.
6292
6830
  */
6293
6831
  issuedAt: string;
6294
- /** @description Human-readable name for the API token. */
6295
- name: string;
6296
6832
  /** @description Type of token (web, mobile, api, etc.). */
6297
6833
  sessionType: components["schemas"]["ApiTokenType"];
6298
6834
  /** @description The JWT token string (only shown once on creation). */
@@ -6461,7 +6997,7 @@ interface components {
6461
6997
  */
6462
6998
  issuedAt: string;
6463
6999
  /** @description Handle of the authenticated account. */
6464
- username: components["schemas"]["Username"];
7000
+ username: components["schemas"]["Handle"];
6465
7001
  };
6466
7002
  /**
6467
7003
  * @description Axis-aligned rectangle, given by its minimum and maximum corners.
@@ -6481,11 +7017,6 @@ interface components {
6481
7017
  /** @description Minimum corner (top-left, conventionally). */
6482
7018
  min: components["schemas"]["Point"];
6483
7019
  };
6484
- /** @description Request payload for monitoring status endpoint. */
6485
- CheckHealth: {
6486
- /** @description Whether to return cached results if available. */
6487
- useCache?: boolean;
6488
- };
6489
7020
  /**
6490
7021
  * @description Color as 8-bit RGB.
6491
7022
  *
@@ -6511,11 +7042,6 @@ interface components {
6511
7042
  };
6512
7043
  /** @description Health of a single service component. */
6513
7044
  ComponentHealth: {
6514
- /**
6515
- * Format: uint64
6516
- * @description How long the health check took, when measured.
6517
- */
6518
- latency?: number;
6519
7045
  /** @description Component name (e.g. `"postgres"`, `"nats"`). */
6520
7046
  name: string;
6521
7047
  /** @description Status of this component. */
@@ -6563,7 +7089,11 @@ interface components {
6563
7089
  */
6564
7090
  createdAt: string;
6565
7091
  /** @description Handle of the account that created this connection. */
6566
- creatorUsername: components["schemas"]["Username"];
7092
+ creatorUsername: components["schemas"]["Handle"];
7093
+ /** @description How an import reconciles files whose source object was deleted. */
7094
+ deletionPolicy: components["schemas"]["SyncDeletionPolicy"];
7095
+ /** @description Human-readable connection display name. */
7096
+ displayName: string;
6567
7097
  /** @description Opaque identifier of the connection. */
6568
7098
  id: components["schemas"]["ConnectionId"];
6569
7099
  /**
@@ -6571,17 +7101,19 @@ interface components {
6571
7101
  * @description When the connection last synced successfully, if ever.
6572
7102
  */
6573
7103
  lastSynced?: string;
6574
- /** @description Human-readable connection name. */
6575
- name: string;
6576
- /** @description Provider type (e.g., "openai", "postgres", "s3"). */
7104
+ /** @description Object store provider (`s3`, `azure`, `gcs`). */
6577
7105
  provider: string;
7106
+ /** @description Cron expression for scheduled imports, if configured. */
7107
+ scheduleCron?: string;
7108
+ /** @description Whether the connection imports data in or exports data out. */
7109
+ syncMode: components["schemas"]["SyncMode"];
6578
7110
  /**
6579
7111
  * Format: date-time
6580
7112
  * @description When the connection was last updated.
6581
7113
  */
6582
7114
  updatedAt: string;
6583
- /** @description Slug of the workspace this connection belongs to. */
6584
- workspaceSlug: components["schemas"]["Slug"];
7115
+ /** @description Handle of the workspace this connection belongs to. */
7116
+ workspaceSlug: components["schemas"]["Handle"];
6585
7117
  };
6586
7118
  /** @description Opaque conn identifier (conn_<uuid>). */
6587
7119
  ConnectionId: string;
@@ -6597,6 +7129,77 @@ interface components {
6597
7129
  /** @description Opaque identifier of the connection. */
6598
7130
  connectionId: components["schemas"]["ConnectionId"];
6599
7131
  };
7132
+ /** @description A connection sync run (import or export). */
7133
+ ConnectionSync: {
7134
+ /**
7135
+ * Format: int32
7136
+ * @description 1-based attempt number; scheduled syncs may be retried on failure.
7137
+ */
7138
+ attempt: number;
7139
+ /**
7140
+ * Format: date-time
7141
+ * @description When the sync finished, if it has.
7142
+ */
7143
+ completedAt?: string;
7144
+ /** @description The connection this sync belongs to. */
7145
+ connectionId: components["schemas"]["ConnectionId"];
7146
+ /** @description Failure reason when the sync failed; omitted otherwise. */
7147
+ errorMessage?: string;
7148
+ /**
7149
+ * Format: uuid
7150
+ * @description Unique sync identifier.
7151
+ */
7152
+ id: string;
7153
+ /**
7154
+ * Format: int64
7155
+ * @description Number of objects transferred so far.
7156
+ */
7157
+ recordsSynced: number;
7158
+ /**
7159
+ * Format: date-time
7160
+ * @description When the sync started.
7161
+ */
7162
+ startedAt: string;
7163
+ /** @description Current status of the sync. */
7164
+ status: components["schemas"]["SyncStatus"];
7165
+ /** @description How the sync was triggered. */
7166
+ triggerType: components["schemas"]["SyncTriggerType"];
7167
+ };
7168
+ /** @description Path parameters for a specific connection sync. */
7169
+ ConnectionSyncPathParams: {
7170
+ /** @description Opaque identifier of the connection. */
7171
+ connectionId: components["schemas"]["ConnectionId"];
7172
+ /**
7173
+ * Format: uuid
7174
+ * @description Unique identifier of the sync run.
7175
+ */
7176
+ syncId: string;
7177
+ };
7178
+ /**
7179
+ * @description Generic paginated response wrapper.
7180
+ *
7181
+ * Provides a consistent structure for all paginated API responses with
7182
+ * cursor-based pagination support. When `next_cursor` is present, there
7183
+ * are more items to fetch.
7184
+ */
7185
+ ConnectionSyncsPage: {
7186
+ /** @description Items in this page. */
7187
+ items: components["schemas"]["ConnectionSync"][];
7188
+ /** @description Cursor to fetch the next page. Present only when more items exist. */
7189
+ nextCursor?: string;
7190
+ /**
7191
+ * Format: int64
7192
+ * @description Total count of items matching the query (if requested).
7193
+ */
7194
+ total?: number;
7195
+ };
7196
+ /** @description Result of a connection reachability check. */
7197
+ ConnectionVerification: {
7198
+ /** @description Failure reason when not reachable; omitted on success. */
7199
+ error?: string;
7200
+ /** @description Whether the backing store was reachable with the stored credentials. */
7201
+ reachable: boolean;
7202
+ };
6600
7203
  /**
6601
7204
  * @description Generic paginated response wrapper.
6602
7205
  *
@@ -6638,22 +7241,34 @@ interface components {
6638
7241
  CountryCode: string;
6639
7242
  /** @description Request to create a new API token. */
6640
7243
  CreateApiToken: {
7244
+ /** @description Human-readable display name for the API token (1-100 characters). */
7245
+ displayName: string;
6641
7246
  /** @description When the token expires. */
6642
7247
  expiresIn: components["schemas"]["TokenExpiration"];
6643
- /** @description Human-readable name for the API token (1-100 characters). */
6644
- name: string;
6645
7248
  };
6646
7249
  /** @description Request payload for creating a new workspace connection. */
6647
7250
  CreateConnection: {
6648
7251
  /**
6649
- * @description Connection data to be encrypted (credentials + context).
6650
- * The structure depends on the provider type.
7252
+ * @description Connection data to be encrypted (provider credentials + optional root
7253
+ * path). The structure depends on the provider type.
6651
7254
  */
6652
7255
  data: unknown;
6653
- /** @description Human-readable connection name. */
6654
- name: string;
6655
- /** @description Provider type (e.g., "openai", "postgres", "s3"). */
7256
+ /**
7257
+ * @description How an import reconciles files whose source object was deleted.
7258
+ * @default ignore
7259
+ */
7260
+ deletionPolicy: components["schemas"]["SyncDeletionPolicy"];
7261
+ /** @description Human-readable connection display name. */
7262
+ displayName: string;
7263
+ /** @description Object store provider (`s3`, `azure`, `gcs`). */
6656
7264
  provider: string;
7265
+ /** @description Cron expression for scheduled imports; omit for manual-only. */
7266
+ scheduleCron?: string;
7267
+ /**
7268
+ * @description Whether the connection imports data in or exports data out.
7269
+ * @default import
7270
+ */
7271
+ syncMode: components["schemas"]["SyncMode"];
6657
7272
  };
6658
7273
  /** @description Request payload for creating a new workspace invite. */
6659
7274
  CreateInvite: {
@@ -6681,10 +7296,10 @@ interface components {
6681
7296
  definition?: components["schemas"]["PipelineDefinition"];
6682
7297
  /** @description Optional description of the pipeline (max 500 characters). */
6683
7298
  description?: string;
6684
- /** @description Pipeline name (2-128 characters). */
6685
- name: string;
7299
+ /** @description Pipeline display name (2-128 characters). */
7300
+ displayName: string;
6686
7301
  /** @description URL slug, unique within the workspace and immutable after creation. */
6687
- slug: components["schemas"]["Slug"];
7302
+ slug: components["schemas"]["Handle"];
6688
7303
  };
6689
7304
  /**
6690
7305
  * @description Request payload to start a run (detect) over a file.
@@ -6719,15 +7334,15 @@ interface components {
6719
7334
  /** @description Optional description override. Defaults to the policy's own description. */
6720
7335
  description?: string;
6721
7336
  /** @description Optional display name override. Defaults to the policy's own name. */
6722
- name?: string;
7337
+ displayName?: string;
6723
7338
  /** @description URL slug, unique within the workspace and immutable after creation. */
6724
- slug: components["schemas"]["Slug"];
7339
+ slug: components["schemas"]["Handle"];
6725
7340
  };
6726
7341
  /** @description Request payload for creating a new workspace webhook. */
6727
7342
  CreateWebhook: {
6728
7343
  /** @description Detailed description of the webhook's purpose (max 500 characters). */
6729
7344
  description: string;
6730
- /** @description Human-readable name for the webhook (1-100 characters). */
7345
+ /** @description Human-readable name for the webhook (1-128 characters). */
6731
7346
  displayName: string;
6732
7347
  /** @description List of event types this webhook should receive. */
6733
7348
  events: components["schemas"]["WebhookEvent"][];
@@ -6750,14 +7365,14 @@ interface components {
6750
7365
  * automatically added as an owner of the workspace.
6751
7366
  */
6752
7367
  CreateWorkspace: {
6753
- /** @description Optional description of the workspace (max 200 characters). */
7368
+ /** @description Optional description of the workspace (max 500 characters). */
6754
7369
  description?: string;
6755
- /** @description Display name of the workspace (3-32 characters). */
7370
+ /** @description Display name of the workspace (2-32 characters). */
6756
7371
  displayName: string;
6757
7372
  /** @description Whether approval is required for processed files to be visible. */
6758
7373
  requireApproval?: boolean;
6759
7374
  /** @description Optional URL slug. Derived from the display name when omitted. */
6760
- slug?: components["schemas"]["Slug"];
7375
+ slug?: components["schemas"]["Handle"];
6761
7376
  };
6762
7377
  /**
6763
7378
  * @description Cursor-based pagination query parameters.
@@ -7975,14 +8590,14 @@ interface components {
7975
8590
  */
7976
8591
  updatedAt: string;
7977
8592
  /** @description Handle of the account that uploaded/created the file. */
7978
- uploadedBy: components["schemas"]["Username"];
8593
+ uploadedBy: components["schemas"]["Handle"];
7979
8594
  /**
7980
8595
  * Format: int32
7981
8596
  * @description Version number (1 for original, higher for newer versions).
7982
8597
  */
7983
8598
  versionNumber: number;
7984
- /** @description Slug of the workspace this file belongs to. */
7985
- workspaceSlug: components["schemas"]["Slug"];
8599
+ /** @description Handle of the workspace this file belongs to. */
8600
+ workspaceSlug: components["schemas"]["Handle"];
7986
8601
  };
7987
8602
  /**
7988
8603
  * @description Defines how a file was created in the system.
@@ -8014,7 +8629,7 @@ interface components {
8014
8629
  * @description A supported file extension.
8015
8630
  * @enum {string}
8016
8631
  */
8017
- FormatToken: "csv" | "docx" | "htm" | "html" | "jpeg" | "jpg" | "json" | "log" | "png" | "tif" | "tiff" | "txt" | "wav" | "xlsx" | "xml";
8632
+ FormatToken: "csv" | "docx" | "htm" | "html" | "jpeg" | "jpg" | "json" | "log" | "pdf" | "png" | "rtf" | "tif" | "tiff" | "txt" | "wav" | "xlsx" | "xml";
8018
8633
  /** @description Request to generate a shareable invite code for a workspace. */
8019
8634
  GenerateInviteCode: {
8020
8635
  /** @description When the invite code expires. */
@@ -8022,6 +8637,8 @@ interface components {
8022
8637
  /** @description Role to assign when someone joins via this invite code. */
8023
8638
  invitedRole: components["schemas"]["WorkspaceRole"];
8024
8639
  };
8640
+ /** @description Lowercase, dash-separated identifier used in URLs and as account handles. */
8641
+ Handle: string;
8025
8642
  /**
8026
8643
  * @description SHA-2 variant for the [`TextRedaction::Hash`] operator.
8027
8644
  *
@@ -8247,8 +8864,8 @@ interface components {
8247
8864
  * @description When the invitation was last updated.
8248
8865
  */
8249
8866
  updatedAt: string;
8250
- /** @description Slug of the workspace the invitation is for. */
8251
- workspaceSlug: components["schemas"]["Slug"];
8867
+ /** @description Handle of the workspace the invitation is for. */
8868
+ workspaceSlug: components["schemas"]["Handle"];
8252
8869
  };
8253
8870
  /** @description Response containing a generated shareable invite code. */
8254
8871
  InviteCode: {
@@ -8261,8 +8878,8 @@ interface components {
8261
8878
  inviteCode: string;
8262
8879
  /** @description Role assigned when someone joins via this code. */
8263
8880
  role: components["schemas"]["WorkspaceRole"];
8264
- /** @description Slug of the workspace this invite code is for. */
8265
- workspaceSlug: components["schemas"]["Slug"];
8881
+ /** @description Handle of the workspace this invite code is for. */
8882
+ workspaceSlug: components["schemas"]["Handle"];
8266
8883
  };
8267
8884
  /** @description Path parameters for joining via invite code. */
8268
8885
  InviteCodePathParams: {
@@ -8304,8 +8921,8 @@ interface components {
8304
8921
  invitedRole: components["schemas"]["WorkspaceRole"];
8305
8922
  /** @description Tags associated with the workspace. */
8306
8923
  tags: string[];
8307
- /** @description Slug of the workspace. */
8308
- workspaceSlug: components["schemas"]["Slug"];
8924
+ /** @description Handle of the workspace. */
8925
+ workspaceSlug: components["schemas"]["Handle"];
8309
8926
  };
8310
8927
  /**
8311
8928
  * @description Acknowledgement returned after sending a workspace invitation.
@@ -8563,12 +9180,12 @@ interface components {
8563
9180
  /** @description Role of the member in the workspace. */
8564
9181
  memberRole: components["schemas"]["WorkspaceRole"];
8565
9182
  /** @description Handle of the member's account. */
8566
- username: components["schemas"]["Username"];
9183
+ username: components["schemas"]["Handle"];
8567
9184
  };
8568
9185
  /** @description Path parameters for workspace member operations. */
8569
9186
  MemberPathParams: {
8570
9187
  /** @description Public handle of the member's account. */
8571
- username: components["schemas"]["Username"];
9188
+ username: components["schemas"]["Handle"];
8572
9189
  };
8573
9190
  /** @description Fields available for sorting workspace members. */
8574
9191
  MemberSortField: "name" | "date";
@@ -8784,15 +9401,15 @@ interface components {
8784
9401
  */
8785
9402
  createdAt: string;
8786
9403
  /** @description Handle of the account that created this pipeline. */
8787
- creatorUsername: components["schemas"]["Username"];
9404
+ creatorUsername: components["schemas"]["Handle"];
8788
9405
  /** @description Detection + redaction configuration. */
8789
9406
  definition: components["schemas"]["PipelineDefinition"];
8790
9407
  /** @description Pipeline description. */
8791
9408
  description?: string;
8792
- /** @description Pipeline name. */
8793
- name: string;
9409
+ /** @description Pipeline display name. */
9410
+ displayName: string;
8794
9411
  /** @description URL slug of the pipeline, unique within its workspace. */
8795
- slug: components["schemas"]["Slug"];
9412
+ slug: components["schemas"]["Handle"];
8796
9413
  /** @description Pipeline lifecycle status. */
8797
9414
  status: components["schemas"]["PipelineStatus"];
8798
9415
  /**
@@ -8800,8 +9417,8 @@ interface components {
8800
9417
  * @description Timestamp when the pipeline was last updated.
8801
9418
  */
8802
9419
  updatedAt: string;
8803
- /** @description Slug of the workspace this pipeline belongs to. */
8804
- workspaceSlug: components["schemas"]["Slug"];
9420
+ /** @description Handle of the workspace this pipeline belongs to. */
9421
+ workspaceSlug: components["schemas"]["Handle"];
8805
9422
  };
8806
9423
  /**
8807
9424
  * @description A pipeline's deduplication intent.
@@ -8862,7 +9479,7 @@ interface components {
8862
9479
  * Stored relationally in the `workspace_pipeline_policies` join table, not the JSON
8863
9480
  * definition; surfaced here so the API exposes one coherent object.
8864
9481
  */
8865
- policySlugs?: components["schemas"]["Slug"][];
9482
+ policySlugs?: components["schemas"]["Handle"][];
8866
9483
  /**
8867
9484
  * @description Recognizer lineup: pattern (incl. inline custom rules and
8868
9485
  * dictionaries), plus the NER and LLM toggles.
@@ -8903,8 +9520,8 @@ interface components {
8903
9520
  id: components["schemas"]["RunId"];
8904
9521
  /** @description Non-encrypted metadata for filtering/display. */
8905
9522
  metadata: unknown;
8906
- /** @description Slug of the pipeline this run belongs to. */
8907
- pipelineSlug: components["schemas"]["Slug"];
9523
+ /** @description Handle of the pipeline this run belongs to. */
9524
+ pipelineSlug: components["schemas"]["Handle"];
8908
9525
  /**
8909
9526
  * Format: date-time
8910
9527
  * @description When the run started.
@@ -8920,9 +9537,9 @@ interface components {
8920
9537
  /** @description How the run was triggered. */
8921
9538
  triggerType: components["schemas"]["PipelineTriggerType"];
8922
9539
  /** @description Handle of the account that triggered the run, if any. */
8923
- triggerUsername?: components["schemas"]["Username"];
8924
- /** @description Slug of the workspace this run belongs to. */
8925
- workspaceSlug: components["schemas"]["Slug"];
9540
+ triggerUsername?: components["schemas"]["Handle"];
9541
+ /** @description Handle of the workspace this run belongs to. */
9542
+ workspaceSlug: components["schemas"]["Handle"];
8926
9543
  };
8927
9544
  /** @description Path parameters for pipeline run operations. */
8928
9545
  PipelineRunPathParams: {
@@ -8970,10 +9587,10 @@ interface components {
8970
9587
  createdAt: string;
8971
9588
  /** @description Pipeline description. */
8972
9589
  description?: string;
8973
- /** @description Pipeline name. */
8974
- name: string;
9590
+ /** @description Pipeline display name. */
9591
+ displayName: string;
8975
9592
  /** @description URL slug of the pipeline, unique within its workspace. */
8976
- slug: components["schemas"]["Slug"];
9593
+ slug: components["schemas"]["Handle"];
8977
9594
  /** @description Pipeline lifecycle status. */
8978
9595
  status: components["schemas"]["PipelineStatus"];
8979
9596
  /**
@@ -9088,15 +9705,15 @@ interface components {
9088
9705
  */
9089
9706
  createdAt: string;
9090
9707
  /** @description Handle of the account that created this policy. */
9091
- creatorUsername: components["schemas"]["Username"];
9708
+ creatorUsername: components["schemas"]["Handle"];
9092
9709
  /** @description The structured policy body consumed by the engine. */
9093
9710
  definition: components["schemas"]["Policy"];
9094
9711
  /** @description Policy description. */
9095
9712
  description?: string;
9096
- /** @description Human-readable policy name. */
9097
- name: string;
9713
+ /** @description Human-readable policy display name. */
9714
+ displayName: string;
9098
9715
  /** @description URL slug of the policy, unique within its workspace. */
9099
- slug: components["schemas"]["Slug"];
9716
+ slug: components["schemas"]["Handle"];
9100
9717
  /**
9101
9718
  * Format: date-time
9102
9719
  * @description When the policy was last updated.
@@ -9104,8 +9721,8 @@ interface components {
9104
9721
  updatedAt: string;
9105
9722
  /** @description Semver of the policy body. */
9106
9723
  version: string;
9107
- /** @description Slug of the workspace this policy belongs to. */
9108
- workspaceSlug: components["schemas"]["Slug"];
9724
+ /** @description Handle of the workspace this policy belongs to. */
9725
+ workspaceSlug: components["schemas"]["Handle"];
9109
9726
  };
9110
9727
  /**
9111
9728
  * @description What a rule does when its [`predicate`] matches.
@@ -9374,7 +9991,7 @@ interface components {
9374
9991
  /** @description Display name of the account holder, when set. */
9375
9992
  displayName?: string;
9376
9993
  /** @description Public handle of the account. */
9377
- username: components["schemas"]["Username"];
9994
+ username: components["schemas"]["Handle"];
9378
9995
  };
9379
9996
  Range_of_uint: {
9380
9997
  /** Format: uint */
@@ -9647,10 +10264,8 @@ interface components {
9647
10264
  */
9648
10265
  rememberMe: boolean;
9649
10266
  /** @description Public account handle, unique across all accounts. */
9650
- username: components["schemas"]["Username"];
10267
+ username: components["schemas"]["Handle"];
9651
10268
  };
9652
- /** @description Lowercase, dash-separated resource identifier used in URLs. */
9653
- Slug: string;
9654
10269
  /**
9655
10270
  * @description The `{workspaceSlug}` path segment. Named to match the OpenAPI parameter and
9656
10271
  * the route definition.
@@ -9671,6 +10286,53 @@ interface components {
9671
10286
  */
9672
10287
  reason?: string;
9673
10288
  };
10289
+ /**
10290
+ * @description Request payload to trigger a connection sync.
10291
+ *
10292
+ * The direction is determined by the connection's configured `sync_mode`.
10293
+ * - Import connections need no body: the sync fetches every not-yet-imported
10294
+ * object under the connection's root path.
10295
+ * - Export connections push one workspace file (`file_id`) to one object
10296
+ * `key`; both are required for export and ignored for import.
10297
+ */
10298
+ SyncConnection: {
10299
+ /**
10300
+ * Format: uuid
10301
+ * @description The workspace file to export (export connections only).
10302
+ */
10303
+ fileId?: string;
10304
+ /** @description The destination object key for an export, relative to the root path. */
10305
+ key?: string;
10306
+ };
10307
+ /**
10308
+ * @description What an import does with a file whose source object no longer exists.
10309
+ *
10310
+ * Corresponds to the `SYNC_DELETION_POLICY` PostgreSQL enum. Deletion is opt-in
10311
+ * per connection: the default `Ignore` keeps imports strictly additive so a
10312
+ * transient listing error or a misconfigured root path can never remove files.
10313
+ */
10314
+ SyncDeletionPolicy: "ignore" | "delete";
10315
+ /**
10316
+ * @description The direction a connection syncs data.
10317
+ *
10318
+ * Corresponds to the `SYNC_MODE` PostgreSQL enum: `Import` fetches objects from
10319
+ * the connection into the workspace; `Export` pushes workspace files out.
10320
+ */
10321
+ SyncMode: "import" | "export";
10322
+ /**
10323
+ * @description Defines the execution status of a connection sync run.
10324
+ *
10325
+ * This enumeration corresponds to the `SYNC_STATUS` PostgreSQL enum and tracks
10326
+ * the state of an individual synchronization run.
10327
+ */
10328
+ SyncStatus: "pending" | "running" | "completed" | "failed" | "cancelled";
10329
+ /**
10330
+ * @description Defines how a connection sync run was initiated.
10331
+ *
10332
+ * This enumeration corresponds to the `SYNC_TRIGGER_TYPE` PostgreSQL enum and is used
10333
+ * to track whether a run was manually triggered, scheduled, or triggered by a webhook.
10334
+ */
10335
+ SyncTriggerType: "manual" | "scheduled" | "webhook";
9674
10336
  /**
9675
10337
  * @description Cell-addressed location within tabular content.
9676
10338
  *
@@ -9904,22 +10566,31 @@ interface components {
9904
10566
  /** @description New password (will be hashed before storage). */
9905
10567
  password?: string;
9906
10568
  /** @description New account handle. */
9907
- username?: components["schemas"]["Username"];
10569
+ username?: components["schemas"]["Handle"];
9908
10570
  };
9909
10571
  /** @description Request to update an existing API token. */
9910
10572
  UpdateApiToken: {
9911
- /** @description Updated name for the API token (1-100 characters). */
9912
- name?: string;
10573
+ /** @description Updated display name for the API token (1-100 characters). */
10574
+ displayName?: string;
9913
10575
  };
9914
10576
  /** @description Request payload for updating an existing workspace connection. */
9915
10577
  UpdateConnection: {
9916
10578
  /**
9917
- * @description Connection data to be encrypted (credentials + context).
9918
- * If provided, replaces the existing encrypted data.
10579
+ * @description Connection data to be encrypted (provider credentials + optional root
10580
+ * path). If provided, replaces the existing encrypted data.
9919
10581
  */
9920
10582
  data?: unknown;
9921
- /** @description Human-readable connection name. */
9922
- name?: string;
10583
+ /** @description How an import reconciles files whose source object was deleted. */
10584
+ deletionPolicy?: components["schemas"]["SyncDeletionPolicy"];
10585
+ /** @description Human-readable connection display name. */
10586
+ displayName?: string;
10587
+ /**
10588
+ * @description Cron expression for scheduled imports. Omit to leave unchanged; send
10589
+ * `null` to clear it (make the connection manual-only).
10590
+ */
10591
+ scheduleCron?: string;
10592
+ /** @description Whether the connection imports data in or exports data out. */
10593
+ syncMode?: components["schemas"]["SyncMode"];
9923
10594
  };
9924
10595
  /** @description Request to update file metadata. */
9925
10596
  UpdateFile: {
@@ -9955,8 +10626,8 @@ interface components {
9955
10626
  definition?: components["schemas"]["PipelineDefinition"];
9956
10627
  /** @description New description for the pipeline (max 500 characters). */
9957
10628
  description?: string;
9958
- /** @description New name for the pipeline (2-128 characters). */
9959
- name?: string;
10629
+ /** @description New display name for the pipeline (2-128 characters). */
10630
+ displayName?: string;
9960
10631
  /** @description New status for the pipeline. */
9961
10632
  status?: components["schemas"]["PipelineStatus"];
9962
10633
  };
@@ -9970,14 +10641,14 @@ interface components {
9970
10641
  definition?: components["schemas"]["Policy"];
9971
10642
  /** @description Policy description. */
9972
10643
  description?: string;
9973
- /** @description Human-readable policy name. */
9974
- name?: string;
10644
+ /** @description Human-readable policy display name. */
10645
+ displayName?: string;
9975
10646
  };
9976
10647
  /** @description Request payload for updating an existing workspace webhook. */
9977
10648
  UpdateWebhook: {
9978
10649
  /** @description Updated description of the webhook's purpose (max 500 characters). */
9979
10650
  description?: string;
9980
- /** @description Updated human-readable name for the webhook (1-100 characters). */
10651
+ /** @description Updated human-readable name for the webhook (1-128 characters). */
9981
10652
  displayName?: string;
9982
10653
  /** @description Updated list of event types this webhook should receive. */
9983
10654
  events?: components["schemas"]["WebhookEvent"][];
@@ -10002,13 +10673,11 @@ interface components {
10002
10673
  UpdateWorkspace: {
10003
10674
  /** @description New description for the workspace (max 500 characters). */
10004
10675
  description?: string;
10005
- /** @description New display name for the workspace (3-32 characters). */
10676
+ /** @description New display name for the workspace (2-32 characters). */
10006
10677
  displayName?: string;
10007
10678
  /** @description Whether approval is required for processed files to be visible. */
10008
10679
  requireApproval?: boolean;
10009
10680
  };
10010
- /** @description Public account handle used in URLs (e.g. /accounts/{username}). */
10011
- Username: string;
10012
10681
  /** @description Validation error details for field-specific errors. */
10013
10682
  ValidationErrorDetail: {
10014
10683
  /** @description Error code for the validation failure */
@@ -10037,7 +10706,7 @@ interface components {
10037
10706
  */
10038
10707
  createdAt: string;
10039
10708
  /** @description Handle of the account that created this webhook. */
10040
- creatorUsername: components["schemas"]["Username"];
10709
+ creatorUsername: components["schemas"]["Handle"];
10041
10710
  /** @description Detailed description of the webhook's purpose. */
10042
10711
  description: string;
10043
10712
  /** @description Human-readable name for the webhook. */
@@ -10064,8 +10733,8 @@ interface components {
10064
10733
  updatedAt: string;
10065
10734
  /** @description The URL to send webhook payloads to. */
10066
10735
  url: string;
10067
- /** @description Slug of the workspace this webhook belongs to. */
10068
- workspaceSlug: components["schemas"]["Slug"];
10736
+ /** @description Handle of the workspace this webhook belongs to. */
10737
+ workspaceSlug: components["schemas"]["Handle"];
10069
10738
  };
10070
10739
  /**
10071
10740
  * @description Webhook creation response that includes the secret (visible only once).
@@ -10081,7 +10750,7 @@ interface components {
10081
10750
  */
10082
10751
  createdAt: string;
10083
10752
  /** @description Handle of the account that created this webhook. */
10084
- creatorUsername: components["schemas"]["Username"];
10753
+ creatorUsername: components["schemas"]["Handle"];
10085
10754
  /** @description Detailed description of the webhook's purpose. */
10086
10755
  description: string;
10087
10756
  /** @description Human-readable name for the webhook. */
@@ -10115,8 +10784,8 @@ interface components {
10115
10784
  updatedAt: string;
10116
10785
  /** @description The URL to send webhook payloads to. */
10117
10786
  url: string;
10118
- /** @description Slug of the workspace this webhook belongs to. */
10119
- workspaceSlug: components["schemas"]["Slug"];
10787
+ /** @description Handle of the workspace this webhook belongs to. */
10788
+ workspaceSlug: components["schemas"]["Handle"];
10120
10789
  };
10121
10790
  /**
10122
10791
  * @description Defines the types of events that can trigger webhook delivery.
@@ -10178,7 +10847,7 @@ interface components {
10178
10847
  */
10179
10848
  createdAt: string;
10180
10849
  /** @description Handle of the account that created this workspace. */
10181
- creatorUsername: components["schemas"]["Username"];
10850
+ creatorUsername: components["schemas"]["Handle"];
10182
10851
  /** @description Description of the workspace. */
10183
10852
  description?: string;
10184
10853
  /** @description Display name of the workspace. */
@@ -10188,7 +10857,7 @@ interface components {
10188
10857
  /** @description Whether approval is required to processed files to be visible. */
10189
10858
  requireApproval: boolean;
10190
10859
  /** @description URL-safe workspace identifier. */
10191
- slug: components["schemas"]["Slug"];
10860
+ slug: components["schemas"]["Handle"];
10192
10861
  /** @description Tags associated with the workspace. */
10193
10862
  tags: string[];
10194
10863
  /**
@@ -10278,6 +10947,10 @@ type CreateConnection = Schemas$12["CreateConnection"];
10278
10947
  type UpdateConnection = Schemas$12["UpdateConnection"];
10279
10948
  type ConnectionsQuery = Schemas$12["ConnectionsQuery"];
10280
10949
  type ConnectionsPage = Schemas$12["ConnectionsPage"];
10950
+ type SyncConnection = Schemas$12["SyncConnection"];
10951
+ type ConnectionSync = Schemas$12["ConnectionSync"];
10952
+ type ConnectionSyncsPage = Schemas$12["ConnectionSyncsPage"];
10953
+ type ConnectionVerification = Schemas$12["ConnectionVerification"];
10281
10954
  //#endregion
10282
10955
  //#region src/datatypes/error.d.ts
10283
10956
  type Schemas$11 = components["schemas"];
@@ -10299,7 +10972,6 @@ type Schemas$9 = components["schemas"];
10299
10972
  type Health = Schemas$9["Health"];
10300
10973
  type HealthStatus = Schemas$9["HealthStatus"];
10301
10974
  type ComponentHealth = Schemas$9["ComponentHealth"];
10302
- type CheckHealth = Schemas$9["CheckHealth"];
10303
10975
  //#endregion
10304
10976
  //#region src/datatypes/invite.d.ts
10305
10977
  type Schemas$8 = components["schemas"];
@@ -10388,5 +11060,5 @@ type UpdateWorkspace = Schemas["UpdateWorkspace"];
10388
11060
  type WorkspaceRole = Schemas["WorkspaceRole"];
10389
11061
  type WorkspacesPage = Schemas["WorkspacesPage"];
10390
11062
  //#endregion
10391
- export { InvitePreview as $, PipelineFilter as A, ApiTokenWithJWT as At, NotificationsPage as B, UpdateAccount as Bt, PolicyAction as C, CreateConnection as Ct, CreatePipeline as D, Signup as Dt, UpdatePolicy as E, Login as Et, UpdatePipeline as F, ActivitiesPage as Ft, MemberSortField as G, UpdateNotificationSettings as H, CursorPagination as I, Activity as It, CreateInvite as J, MembersPage as K, Notification as L, ActivityType as Lt, PipelineSummariesPage as M, CreateApiToken as Mt, PipelineSummary as N, TokenExpiration as Nt, Pipeline as O, ApiToken as Ot, PipelineTriggerType as P, UpdateApiToken as Pt, InviteExpiration as Q, NotificationEvent as R, Account as Rt, Policy as S, ConnectionsQuery as St, PolicyRule as T, AuthToken as Tt, ListMembers as U, UnreadStatus as V, paths as Vt, Member as W, Invite as X, GenerateInviteCode as Y, InviteCode as Z, PipelineRun as _, UpdateFile as _t, WorkspacesPage as a, ReplyInvite as at, CreatePolicy as b, Connection as bt, UpdateWebhook as c, ComponentHealth as ct, WebhookEvent as d, File as dt, InviteSent as et, WebhookResult as f, FileSource as ft, CreatePipelineRun as g, ModalityToken as gt, AnalyzedDocument as h, ListFiles as ht, WorkspaceRole as i, ListInvites as it, PipelineStatus as j, ApiTokensPage as jt, PipelineDefinition as k, ApiTokenType as kt, Webhook as l, Health as lt, WebhooksPage as m, FormatToken as mt, UpdateWorkspace as n, InviteStatus as nt, CreateWebhook as o, SortOrder as ot, WebhookStatus as p, FilesPage as pt, UpdateMember as q, Workspace as r, InvitesPage as rt, TestWebhook as s, CheckHealth as st, CreateWorkspace as t, InviteSortField as tt, WebhookCreated as u, HealthStatus as ut, PipelineRunStatus as v, ErrorResponse as vt, PolicyDefinition as w, UpdateConnection as wt, PoliciesPage as x, ConnectionsPage as xt, PipelineRunsPage as y, ValidationErrorDetail as yt, NotificationSettings as z, PublicAccount as zt };
10392
- //# sourceMappingURL=index-CAJoN0TD.d.ts.map
11063
+ export { InvitePreview as $, PipelineFilter as A, Signup as At, NotificationsPage as B, ActivityType as Bt, PolicyAction as C, ConnectionsPage as Ct, CreatePipeline as D, UpdateConnection as Dt, UpdatePolicy as E, SyncConnection as Et, UpdatePipeline as F, CreateApiToken as Ft, MemberSortField as G, UpdateNotificationSettings as H, PublicAccount as Ht, CursorPagination as I, TokenExpiration as It, CreateInvite as J, MembersPage as K, Notification as L, UpdateApiToken as Lt, PipelineSummariesPage as M, ApiTokenType as Mt, PipelineSummary as N, ApiTokenWithJWT as Nt, Pipeline as O, AuthToken as Ot, PipelineTriggerType as P, ApiTokensPage as Pt, InviteExpiration as Q, NotificationEvent as R, ActivitiesPage as Rt, Policy as S, ConnectionVerification as St, PolicyRule as T, CreateConnection as Tt, ListMembers as U, UpdateAccount as Ut, UnreadStatus as V, Account as Vt, Member as W, paths as Wt, Invite as X, GenerateInviteCode as Y, InviteCode as Z, PipelineRun as _, ErrorResponse as _t, WorkspacesPage as a, ReplyInvite as at, CreatePolicy as b, ConnectionSync as bt, UpdateWebhook as c, Health as ct, WebhookEvent as d, FileSource as dt, InviteSent as et, WebhookResult as f, FilesPage as ft, CreatePipelineRun as g, UpdateFile as gt, AnalyzedDocument as h, ModalityToken as ht, WorkspaceRole as i, ListInvites as it, PipelineStatus as j, ApiToken as jt, PipelineDefinition as k, Login as kt, Webhook as l, HealthStatus as lt, WebhooksPage as m, ListFiles as mt, UpdateWorkspace as n, InviteStatus as nt, CreateWebhook as o, SortOrder as ot, WebhookStatus as p, FormatToken as pt, UpdateMember as q, Workspace as r, InvitesPage as rt, TestWebhook as s, ComponentHealth as st, CreateWorkspace as t, InviteSortField as tt, WebhookCreated as u, File as ut, PipelineRunStatus as v, ValidationErrorDetail as vt, PolicyDefinition as w, ConnectionsQuery as wt, PoliciesPage as x, ConnectionSyncsPage as xt, PipelineRunsPage as y, Connection as yt, NotificationSettings as z, Activity as zt };
11064
+ //# sourceMappingURL=index-D1bAc98R.d.ts.map