@xylex-group/athena 2.8.0 → 2.8.2
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/README.md +13 -6
- package/dist/browser.cjs +663 -17
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.d.cts +7 -7
- package/dist/browser.d.ts +7 -7
- package/dist/browser.js +663 -17
- package/dist/browser.js.map +1 -1
- package/dist/cli/index.cjs +693 -18
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +3 -3
- package/dist/cli/index.d.ts +3 -3
- package/dist/cli/index.js +693 -18
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +664 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +664 -17
- package/dist/index.js.map +1 -1
- package/dist/{model-form-DMed05gE.d.cts → model-form-Cx3wtvi8.d.ts} +641 -36
- package/dist/{model-form-DXPlOnlI.d.ts → model-form-_ugfOXao.d.cts} +641 -36
- package/dist/{pipeline-D4sJRKqN.d.cts → pipeline-BtD-Uo5X.d.cts} +1 -1
- package/dist/{pipeline-CkMnhwPI.d.ts → pipeline-yCIZNJHE.d.ts} +1 -1
- package/dist/{react-email-DZhDDlEl.d.cts → react-email-CiiSVa9F.d.cts} +4 -6
- package/dist/{react-email-Lrz9A-BW.d.ts → react-email-WN8UU3AL.d.ts} +4 -6
- package/dist/react.cjs +1 -1
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +4 -4
- package/dist/react.d.ts +4 -4
- package/dist/react.js +1 -1
- package/dist/react.js.map +1 -1
- package/dist/{types-CAtTGGoz.d.cts → types-89EfjLjV.d.cts} +2 -1
- package/dist/{types-BzY6fETM.d.ts → types-C2kiTt6-.d.ts} +2 -1
- package/dist/{types-vikz9YIO.d.cts → types-g8G6J0xE.d.cts} +4 -1
- package/dist/{types-vikz9YIO.d.ts → types-g8G6J0xE.d.ts} +4 -1
- package/package.json +26 -56
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { j as AthenaModelTarget, H as RowOf, r as InsertOf, U as UpdateOf, i as AthenaJsonValue, a as AthenaGatewayCallOptions, g as AthenaJsonObject, k as AthenaRpcCallOptions,
|
|
1
|
+
import { j as AthenaModelTarget, H as RowOf, r as InsertOf, U as UpdateOf, i as AthenaJsonValue, a as AthenaGatewayCallOptions, g as AthenaJsonObject, k as AthenaRpcCallOptions, b as AthenaGatewayConnectionOptions, c as AthenaGatewayConnectionResult, V as AthenaFetchPayload, W as AthenaGatewayResponse, X as AthenaInsertPayload, Y as AthenaUpdatePayload, Q as AthenaDeletePayload, o as AthenaRpcPayload, Z as AthenaQueryPayload, _ as AthenaGatewayEndpointPath, $ as AthenaGatewayMethod, a0 as AthenaConditionValue, a1 as AthenaConditionArrayValue, R as RegistryDef, D as DatabaseDef, J as SchemaDef, N as AnyModelDef, C as ModelDef, G as ModelRelationMetadata, a2 as AthenaGatewayCondition, a3 as AthenaSortBy, l as AthenaRpcFilter, p as BackendConfig, q as BackendType, e as AthenaGatewayErrorDetails, A as AthenaConditionCastType, a4 as AthenaConditionOperator, d as AthenaGatewayErrorCode } from './types-g8G6J0xE.js';
|
|
2
2
|
|
|
3
3
|
type AthenaAuthMethod = 'GET' | 'POST';
|
|
4
4
|
type AthenaAuthCredentials = 'omit' | 'same-origin' | 'include';
|
|
@@ -1510,6 +1510,26 @@ interface AthenaDbModule<TStrict extends boolean = false> {
|
|
|
1510
1510
|
query<Row = unknown>(query: string, options?: AthenaGatewayCallOptions): Promise<AthenaResult<Row[]>>;
|
|
1511
1511
|
}
|
|
1512
1512
|
|
|
1513
|
+
interface AthenaFindManyAstPayload$1 {
|
|
1514
|
+
table_name: string;
|
|
1515
|
+
select: Record<string, unknown>;
|
|
1516
|
+
where?: Record<string, unknown>;
|
|
1517
|
+
orderBy?: Record<string, unknown>;
|
|
1518
|
+
limit?: number;
|
|
1519
|
+
}
|
|
1520
|
+
declare function verifyAthenaGatewayUrl(baseUrl: string, options?: AthenaGatewayConnectionOptions): Promise<AthenaGatewayConnectionResult>;
|
|
1521
|
+
interface AthenaGatewayClient {
|
|
1522
|
+
baseUrl: string;
|
|
1523
|
+
buildHeaders(options?: AthenaGatewayCallOptions): Record<string, string>;
|
|
1524
|
+
verifyConnection(options?: AthenaGatewayConnectionOptions): Promise<AthenaGatewayConnectionResult>;
|
|
1525
|
+
fetchGateway<T>(payload: AthenaFetchPayload | AthenaFindManyAstPayload$1, options?: AthenaGatewayCallOptions): Promise<AthenaGatewayResponse<T>>;
|
|
1526
|
+
insertGateway<T>(payload: AthenaInsertPayload, options?: AthenaGatewayCallOptions): Promise<AthenaGatewayResponse<T>>;
|
|
1527
|
+
updateGateway<T>(payload: AthenaUpdatePayload, options?: AthenaGatewayCallOptions): Promise<AthenaGatewayResponse<T>>;
|
|
1528
|
+
deleteGateway<T>(payload: AthenaDeletePayload, options?: AthenaGatewayCallOptions): Promise<AthenaGatewayResponse<T>>;
|
|
1529
|
+
rpcGateway<T>(payload: AthenaRpcPayload, options?: AthenaRpcCallOptions): Promise<AthenaGatewayResponse<T>>;
|
|
1530
|
+
queryGateway<T>(payload: AthenaQueryPayload, options?: AthenaGatewayCallOptions): Promise<AthenaGatewayResponse<T>>;
|
|
1531
|
+
}
|
|
1532
|
+
|
|
1513
1533
|
type AthenaStorageTemplateValue = string | number | boolean | null | undefined;
|
|
1514
1534
|
type AthenaStorageTemplateVars = Record<string, AthenaStorageTemplateValue>;
|
|
1515
1535
|
type AthenaStorageEnv = Record<string, string | undefined>;
|
|
@@ -1556,7 +1576,7 @@ interface AthenaStorageUploadProgress {
|
|
|
1556
1576
|
aggregatePercent: number;
|
|
1557
1577
|
}
|
|
1558
1578
|
type AthenaStorageUploadProgressHandler = (progress: AthenaStorageUploadProgress) => void;
|
|
1559
|
-
interface AthenaStorageFileUploadInput extends AthenaStorageUploadConstraints {
|
|
1579
|
+
interface AthenaStorageFileUploadInput extends AthenaStorageUploadConstraints, StorageServerSideEncryptionOptions {
|
|
1560
1580
|
s3_id: string;
|
|
1561
1581
|
bucket?: string;
|
|
1562
1582
|
files: AthenaStorageUploadSource | ArrayLike<AthenaStorageUploadSource> | readonly AthenaStorageUploadSource[];
|
|
@@ -1730,6 +1750,21 @@ declare const storageSdkManifest: {
|
|
|
1730
1750
|
readonly requestType: "SetStorageFileVisibilityRequest";
|
|
1731
1751
|
readonly responseEnvelope: "athena";
|
|
1732
1752
|
readonly responseType: "StorageFileMutationResponse";
|
|
1753
|
+
}, {
|
|
1754
|
+
readonly name: "postStorageFileVisibility";
|
|
1755
|
+
readonly method: "POST";
|
|
1756
|
+
readonly path: "/storage/files/{file_id}/visibility";
|
|
1757
|
+
readonly pathParams: readonly ["file_id"];
|
|
1758
|
+
readonly requestType: "SetStorageFileVisibilityRequest";
|
|
1759
|
+
readonly responseEnvelope: "athena";
|
|
1760
|
+
readonly responseType: "StorageFileMutationResponse";
|
|
1761
|
+
}, {
|
|
1762
|
+
readonly name: "setManyStorageFileVisibility";
|
|
1763
|
+
readonly method: "POST";
|
|
1764
|
+
readonly path: "/storage/files/visibility-many";
|
|
1765
|
+
readonly requestType: "SetManyStorageFileVisibilityRequest";
|
|
1766
|
+
readonly responseEnvelope: "athena";
|
|
1767
|
+
readonly responseType: "StorageFileMutationManyResponse";
|
|
1733
1768
|
}, {
|
|
1734
1769
|
readonly name: "deleteStorageFolder";
|
|
1735
1770
|
readonly method: "POST";
|
|
@@ -1744,6 +1779,425 @@ declare const storageSdkManifest: {
|
|
|
1744
1779
|
readonly requestType: "MoveStorageFolderRequest";
|
|
1745
1780
|
readonly responseEnvelope: "athena";
|
|
1746
1781
|
readonly responseType: "StorageFolderMutationResponse";
|
|
1782
|
+
}, {
|
|
1783
|
+
readonly name: "searchStorageFiles";
|
|
1784
|
+
readonly method: "POST";
|
|
1785
|
+
readonly path: "/storage/files/search";
|
|
1786
|
+
readonly requestType: "SearchStorageFilesRequest";
|
|
1787
|
+
readonly responseEnvelope: "athena";
|
|
1788
|
+
readonly responseType: "StorageListFilesResponse";
|
|
1789
|
+
}, {
|
|
1790
|
+
readonly name: "confirmStorageUpload";
|
|
1791
|
+
readonly method: "POST";
|
|
1792
|
+
readonly path: "/storage/files/{file_id}/confirm-upload";
|
|
1793
|
+
readonly pathParams: readonly ["file_id"];
|
|
1794
|
+
readonly requestType: "ConfirmStorageUploadRequest";
|
|
1795
|
+
readonly responseEnvelope: "athena";
|
|
1796
|
+
readonly responseType: "StorageFileMutationResponse";
|
|
1797
|
+
}, {
|
|
1798
|
+
readonly name: "uploadStorageFileBinary";
|
|
1799
|
+
readonly method: "PUT";
|
|
1800
|
+
readonly path: "/storage/files/{file_id}/upload";
|
|
1801
|
+
readonly pathParams: readonly ["file_id"];
|
|
1802
|
+
readonly responseEnvelope: "athena";
|
|
1803
|
+
readonly responseType: "StorageFileMutationResponse";
|
|
1804
|
+
readonly binary: true;
|
|
1805
|
+
}, {
|
|
1806
|
+
readonly name: "copyStorageFile";
|
|
1807
|
+
readonly method: "POST";
|
|
1808
|
+
readonly path: "/storage/files/{file_id}/copy";
|
|
1809
|
+
readonly pathParams: readonly ["file_id"];
|
|
1810
|
+
readonly requestType: "CopyStorageFileRequest";
|
|
1811
|
+
readonly responseEnvelope: "athena";
|
|
1812
|
+
readonly responseType: "StorageFileMutationResponse";
|
|
1813
|
+
}, {
|
|
1814
|
+
readonly name: "deleteManyStorageFiles";
|
|
1815
|
+
readonly method: "POST";
|
|
1816
|
+
readonly path: "/storage/files/delete-many";
|
|
1817
|
+
readonly requestType: "DeleteManyStorageFilesRequest";
|
|
1818
|
+
readonly responseEnvelope: "athena";
|
|
1819
|
+
readonly responseType: "StorageFileMutationManyResponse";
|
|
1820
|
+
}, {
|
|
1821
|
+
readonly name: "updateManyStorageFiles";
|
|
1822
|
+
readonly method: "POST";
|
|
1823
|
+
readonly path: "/storage/files/update-many";
|
|
1824
|
+
readonly requestType: "UpdateManyStorageFilesRequest";
|
|
1825
|
+
readonly responseEnvelope: "athena";
|
|
1826
|
+
readonly responseType: "StorageFileMutationManyResponse";
|
|
1827
|
+
}, {
|
|
1828
|
+
readonly name: "restoreStorageFile";
|
|
1829
|
+
readonly method: "POST";
|
|
1830
|
+
readonly path: "/storage/files/{file_id}/restore";
|
|
1831
|
+
readonly pathParams: readonly ["file_id"];
|
|
1832
|
+
readonly responseEnvelope: "athena";
|
|
1833
|
+
readonly responseType: "StorageFileMutationResponse";
|
|
1834
|
+
}, {
|
|
1835
|
+
readonly name: "purgeStorageFile";
|
|
1836
|
+
readonly method: "DELETE";
|
|
1837
|
+
readonly path: "/storage/files/{file_id}/purge";
|
|
1838
|
+
readonly pathParams: readonly ["file_id"];
|
|
1839
|
+
readonly responseEnvelope: "athena";
|
|
1840
|
+
readonly responseType: "StorageFileMutationResponse";
|
|
1841
|
+
}, {
|
|
1842
|
+
readonly name: "getStorageFilePublicUrl";
|
|
1843
|
+
readonly method: "GET";
|
|
1844
|
+
readonly path: "/storage/files/{file_id}/public-url";
|
|
1845
|
+
readonly pathParams: readonly ["file_id"];
|
|
1846
|
+
readonly responseEnvelope: "athena";
|
|
1847
|
+
readonly responseType: "Record<string, unknown>";
|
|
1848
|
+
}, {
|
|
1849
|
+
readonly name: "getStorageFileProxyUrl";
|
|
1850
|
+
readonly method: "GET";
|
|
1851
|
+
readonly path: "/storage/files/{file_id}/proxy-url";
|
|
1852
|
+
readonly pathParams: readonly ["file_id"];
|
|
1853
|
+
readonly queryParams: readonly ["purpose"];
|
|
1854
|
+
readonly responseEnvelope: "athena";
|
|
1855
|
+
readonly responseType: "Record<string, unknown>";
|
|
1856
|
+
}, {
|
|
1857
|
+
readonly name: "listStorageFileVersions";
|
|
1858
|
+
readonly method: "GET";
|
|
1859
|
+
readonly path: "/storage/files/{file_id}/versions";
|
|
1860
|
+
readonly pathParams: readonly ["file_id"];
|
|
1861
|
+
readonly responseEnvelope: "athena";
|
|
1862
|
+
readonly responseType: "Record<string, unknown>";
|
|
1863
|
+
}, {
|
|
1864
|
+
readonly name: "restoreStorageFileVersion";
|
|
1865
|
+
readonly method: "POST";
|
|
1866
|
+
readonly path: "/storage/files/{file_id}/versions/{version_id}/restore";
|
|
1867
|
+
readonly pathParams: readonly ["file_id", "version_id"];
|
|
1868
|
+
readonly responseEnvelope: "athena";
|
|
1869
|
+
readonly responseType: "Record<string, unknown>";
|
|
1870
|
+
}, {
|
|
1871
|
+
readonly name: "deleteStorageFileVersion";
|
|
1872
|
+
readonly method: "DELETE";
|
|
1873
|
+
readonly path: "/storage/files/{file_id}/versions/{version_id}";
|
|
1874
|
+
readonly pathParams: readonly ["file_id", "version_id"];
|
|
1875
|
+
readonly responseEnvelope: "athena";
|
|
1876
|
+
readonly responseType: "Record<string, unknown>";
|
|
1877
|
+
}, {
|
|
1878
|
+
readonly name: "getStorageFileRetention";
|
|
1879
|
+
readonly method: "GET";
|
|
1880
|
+
readonly path: "/storage/files/{file_id}/retention";
|
|
1881
|
+
readonly pathParams: readonly ["file_id"];
|
|
1882
|
+
readonly queryParams: readonly ["version_id"];
|
|
1883
|
+
readonly responseEnvelope: "athena";
|
|
1884
|
+
readonly responseType: "Record<string, unknown>";
|
|
1885
|
+
}, {
|
|
1886
|
+
readonly name: "setStorageFileRetention";
|
|
1887
|
+
readonly method: "POST";
|
|
1888
|
+
readonly path: "/storage/files/{file_id}/retention";
|
|
1889
|
+
readonly pathParams: readonly ["file_id"];
|
|
1890
|
+
readonly requestType: "StorageFileRetentionRequest";
|
|
1891
|
+
readonly responseEnvelope: "athena";
|
|
1892
|
+
readonly responseType: "Record<string, unknown>";
|
|
1893
|
+
}, {
|
|
1894
|
+
readonly name: "listStorageFolders";
|
|
1895
|
+
readonly method: "POST";
|
|
1896
|
+
readonly path: "/storage/folders/list";
|
|
1897
|
+
readonly requestType: "ListStorageFoldersRequest";
|
|
1898
|
+
readonly responseEnvelope: "athena";
|
|
1899
|
+
readonly responseType: "Record<string, unknown>";
|
|
1900
|
+
}, {
|
|
1901
|
+
readonly name: "treeStorageFolders";
|
|
1902
|
+
readonly method: "POST";
|
|
1903
|
+
readonly path: "/storage/folders/tree";
|
|
1904
|
+
readonly requestType: "TreeStorageFoldersRequest";
|
|
1905
|
+
readonly responseEnvelope: "athena";
|
|
1906
|
+
readonly responseType: "Record<string, unknown>";
|
|
1907
|
+
}, {
|
|
1908
|
+
readonly name: "listStoragePermissions";
|
|
1909
|
+
readonly method: "POST";
|
|
1910
|
+
readonly path: "/storage/permissions/list";
|
|
1911
|
+
readonly requestType: "StoragePermissionListRequest";
|
|
1912
|
+
readonly responseEnvelope: "athena";
|
|
1913
|
+
readonly responseType: "StoragePermissionListResponse";
|
|
1914
|
+
}, {
|
|
1915
|
+
readonly name: "grantStoragePermission";
|
|
1916
|
+
readonly method: "POST";
|
|
1917
|
+
readonly path: "/storage/permissions/grant";
|
|
1918
|
+
readonly requestType: "StoragePermissionGrantRequest";
|
|
1919
|
+
readonly responseEnvelope: "athena";
|
|
1920
|
+
readonly responseType: "Record<string, unknown>";
|
|
1921
|
+
}, {
|
|
1922
|
+
readonly name: "revokeStoragePermission";
|
|
1923
|
+
readonly method: "POST";
|
|
1924
|
+
readonly path: "/storage/permissions/revoke";
|
|
1925
|
+
readonly requestType: "StoragePermissionRevokeRequest";
|
|
1926
|
+
readonly responseEnvelope: "athena";
|
|
1927
|
+
readonly responseType: "Record<string, unknown>";
|
|
1928
|
+
}, {
|
|
1929
|
+
readonly name: "checkStoragePermission";
|
|
1930
|
+
readonly method: "POST";
|
|
1931
|
+
readonly path: "/storage/permissions/check";
|
|
1932
|
+
readonly requestType: "StoragePermissionCheckRequest";
|
|
1933
|
+
readonly responseEnvelope: "athena";
|
|
1934
|
+
readonly responseType: "StoragePermissionCheckResponse";
|
|
1935
|
+
}, {
|
|
1936
|
+
readonly name: "listStorageObjects";
|
|
1937
|
+
readonly method: "POST";
|
|
1938
|
+
readonly path: "/storage/objects";
|
|
1939
|
+
readonly requestType: "StorageListObjectsRequest";
|
|
1940
|
+
readonly responseEnvelope: "athena";
|
|
1941
|
+
readonly responseType: "Record<string, unknown>";
|
|
1942
|
+
}, {
|
|
1943
|
+
readonly name: "headStorageObject";
|
|
1944
|
+
readonly method: "POST";
|
|
1945
|
+
readonly path: "/storage/objects/head";
|
|
1946
|
+
readonly requestType: "StorageObjectRequest";
|
|
1947
|
+
readonly responseEnvelope: "athena";
|
|
1948
|
+
readonly responseType: "Record<string, unknown>";
|
|
1949
|
+
}, {
|
|
1950
|
+
readonly name: "existsStorageObject";
|
|
1951
|
+
readonly method: "POST";
|
|
1952
|
+
readonly path: "/storage/objects/exists";
|
|
1953
|
+
readonly requestType: "StorageObjectRequest";
|
|
1954
|
+
readonly responseEnvelope: "athena";
|
|
1955
|
+
readonly responseType: "Record<string, unknown>";
|
|
1956
|
+
}, {
|
|
1957
|
+
readonly name: "validateStorageObject";
|
|
1958
|
+
readonly method: "POST";
|
|
1959
|
+
readonly path: "/storage/objects/validate";
|
|
1960
|
+
readonly requestType: "StorageObjectValidateRequest";
|
|
1961
|
+
readonly responseEnvelope: "athena";
|
|
1962
|
+
readonly responseType: "Record<string, unknown>";
|
|
1963
|
+
}, {
|
|
1964
|
+
readonly name: "updateStorageObject";
|
|
1965
|
+
readonly method: "POST";
|
|
1966
|
+
readonly path: "/storage/objects/update";
|
|
1967
|
+
readonly requestType: "StorageUpdateObjectRequest";
|
|
1968
|
+
readonly responseEnvelope: "athena";
|
|
1969
|
+
readonly responseType: "Record<string, unknown>";
|
|
1970
|
+
}, {
|
|
1971
|
+
readonly name: "copyStorageObject";
|
|
1972
|
+
readonly method: "POST";
|
|
1973
|
+
readonly path: "/storage/objects/copy";
|
|
1974
|
+
readonly requestType: "StorageObjectCopyRequest";
|
|
1975
|
+
readonly responseEnvelope: "athena";
|
|
1976
|
+
readonly responseType: "Record<string, unknown>";
|
|
1977
|
+
}, {
|
|
1978
|
+
readonly name: "getStorageObjectUrl";
|
|
1979
|
+
readonly method: "POST";
|
|
1980
|
+
readonly path: "/storage/objects/url";
|
|
1981
|
+
readonly requestType: "StorageObjectRequest";
|
|
1982
|
+
readonly responseEnvelope: "athena";
|
|
1983
|
+
readonly responseType: "Record<string, unknown>";
|
|
1984
|
+
}, {
|
|
1985
|
+
readonly name: "getStorageObjectPublicUrl";
|
|
1986
|
+
readonly method: "POST";
|
|
1987
|
+
readonly path: "/storage/objects/public-url";
|
|
1988
|
+
readonly requestType: "StorageObjectPublicUrlRequest";
|
|
1989
|
+
readonly responseEnvelope: "athena";
|
|
1990
|
+
readonly responseType: "Record<string, unknown>";
|
|
1991
|
+
}, {
|
|
1992
|
+
readonly name: "deleteStorageObject";
|
|
1993
|
+
readonly method: "POST";
|
|
1994
|
+
readonly path: "/storage/objects/delete";
|
|
1995
|
+
readonly requestType: "StorageObjectRequest";
|
|
1996
|
+
readonly responseEnvelope: "athena";
|
|
1997
|
+
readonly responseType: "Record<string, unknown>";
|
|
1998
|
+
}, {
|
|
1999
|
+
readonly name: "createStorageObjectUploadUrl";
|
|
2000
|
+
readonly method: "POST";
|
|
2001
|
+
readonly path: "/storage/objects/upload-url";
|
|
2002
|
+
readonly requestType: "StoragePresignUploadRequest";
|
|
2003
|
+
readonly responseEnvelope: "athena";
|
|
2004
|
+
readonly responseType: "Record<string, unknown>";
|
|
2005
|
+
}, {
|
|
2006
|
+
readonly name: "createStorageObjectPostPolicy";
|
|
2007
|
+
readonly method: "POST";
|
|
2008
|
+
readonly path: "/storage/objects/post-policy";
|
|
2009
|
+
readonly requestType: "StorageSignedPostPolicyRequest";
|
|
2010
|
+
readonly responseEnvelope: "athena";
|
|
2011
|
+
readonly responseType: "Record<string, unknown>";
|
|
2012
|
+
}, {
|
|
2013
|
+
readonly name: "listStorageObjectVersions";
|
|
2014
|
+
readonly method: "POST";
|
|
2015
|
+
readonly path: "/storage/objects/versions";
|
|
2016
|
+
readonly requestType: "StorageObjectVersionListRequest";
|
|
2017
|
+
readonly responseEnvelope: "athena";
|
|
2018
|
+
readonly responseType: "Record<string, unknown>";
|
|
2019
|
+
}, {
|
|
2020
|
+
readonly name: "restoreStorageObjectVersion";
|
|
2021
|
+
readonly method: "POST";
|
|
2022
|
+
readonly path: "/storage/objects/versions/restore";
|
|
2023
|
+
readonly requestType: "StorageObjectVersionMutationRequest";
|
|
2024
|
+
readonly responseEnvelope: "athena";
|
|
2025
|
+
readonly responseType: "Record<string, unknown>";
|
|
2026
|
+
}, {
|
|
2027
|
+
readonly name: "deleteStorageObjectVersion";
|
|
2028
|
+
readonly method: "POST";
|
|
2029
|
+
readonly path: "/storage/objects/versions/delete";
|
|
2030
|
+
readonly requestType: "StorageObjectVersionMutationRequest";
|
|
2031
|
+
readonly responseEnvelope: "athena";
|
|
2032
|
+
readonly responseType: "Record<string, unknown>";
|
|
2033
|
+
}, {
|
|
2034
|
+
readonly name: "createStorageObjectFolder";
|
|
2035
|
+
readonly method: "POST";
|
|
2036
|
+
readonly path: "/storage/objects/folder";
|
|
2037
|
+
readonly requestType: "StorageObjectFolderCreateRequest";
|
|
2038
|
+
readonly responseEnvelope: "athena";
|
|
2039
|
+
readonly responseType: "Record<string, unknown>";
|
|
2040
|
+
}, {
|
|
2041
|
+
readonly name: "deleteStorageObjectFolder";
|
|
2042
|
+
readonly method: "POST";
|
|
2043
|
+
readonly path: "/storage/objects/folder/delete";
|
|
2044
|
+
readonly requestType: "StorageObjectFolderDeleteRequest";
|
|
2045
|
+
readonly responseEnvelope: "athena";
|
|
2046
|
+
readonly responseType: "Record<string, unknown>";
|
|
2047
|
+
}, {
|
|
2048
|
+
readonly name: "renameStorageObjectFolder";
|
|
2049
|
+
readonly method: "POST";
|
|
2050
|
+
readonly path: "/storage/objects/folder/rename";
|
|
2051
|
+
readonly requestType: "StorageObjectFolderRenameRequest";
|
|
2052
|
+
readonly responseEnvelope: "athena";
|
|
2053
|
+
readonly responseType: "Record<string, unknown>";
|
|
2054
|
+
}, {
|
|
2055
|
+
readonly name: "listStorageBuckets";
|
|
2056
|
+
readonly method: "POST";
|
|
2057
|
+
readonly path: "/storage/buckets/list";
|
|
2058
|
+
readonly requestType: "Omit<StorageObjectBaseRequest, 'bucket'>";
|
|
2059
|
+
readonly responseEnvelope: "athena";
|
|
2060
|
+
readonly responseType: "Record<string, unknown>";
|
|
2061
|
+
}, {
|
|
2062
|
+
readonly name: "createStorageBucket";
|
|
2063
|
+
readonly method: "POST";
|
|
2064
|
+
readonly path: "/storage/buckets/create";
|
|
2065
|
+
readonly requestType: "StorageObjectBaseRequest";
|
|
2066
|
+
readonly responseEnvelope: "athena";
|
|
2067
|
+
readonly responseType: "Record<string, unknown>";
|
|
2068
|
+
}, {
|
|
2069
|
+
readonly name: "deleteStorageBucket";
|
|
2070
|
+
readonly method: "POST";
|
|
2071
|
+
readonly path: "/storage/buckets/delete";
|
|
2072
|
+
readonly requestType: "StorageObjectBaseRequest";
|
|
2073
|
+
readonly responseEnvelope: "athena";
|
|
2074
|
+
readonly responseType: "Record<string, unknown>";
|
|
2075
|
+
}, {
|
|
2076
|
+
readonly name: "getStorageBucketLifecycle";
|
|
2077
|
+
readonly method: "POST";
|
|
2078
|
+
readonly path: "/storage/buckets/lifecycle";
|
|
2079
|
+
readonly requestType: "StorageBucketLifecycleRequest";
|
|
2080
|
+
readonly responseEnvelope: "athena";
|
|
2081
|
+
readonly responseType: "Record<string, unknown>";
|
|
2082
|
+
}, {
|
|
2083
|
+
readonly name: "setStorageBucketLifecycle";
|
|
2084
|
+
readonly method: "POST";
|
|
2085
|
+
readonly path: "/storage/buckets/lifecycle/set";
|
|
2086
|
+
readonly requestType: "StorageSetBucketLifecycleRequest";
|
|
2087
|
+
readonly responseEnvelope: "athena";
|
|
2088
|
+
readonly responseType: "Record<string, unknown>";
|
|
2089
|
+
}, {
|
|
2090
|
+
readonly name: "deleteStorageBucketLifecycle";
|
|
2091
|
+
readonly method: "POST";
|
|
2092
|
+
readonly path: "/storage/buckets/lifecycle/delete";
|
|
2093
|
+
readonly requestType: "StorageBucketLifecycleRequest";
|
|
2094
|
+
readonly responseEnvelope: "athena";
|
|
2095
|
+
readonly responseType: "Record<string, unknown>";
|
|
2096
|
+
}, {
|
|
2097
|
+
readonly name: "getStorageBucketPolicy";
|
|
2098
|
+
readonly method: "POST";
|
|
2099
|
+
readonly path: "/storage/buckets/policy";
|
|
2100
|
+
readonly requestType: "StorageBucketPolicyRequest";
|
|
2101
|
+
readonly responseEnvelope: "athena";
|
|
2102
|
+
readonly responseType: "Record<string, unknown>";
|
|
2103
|
+
}, {
|
|
2104
|
+
readonly name: "setStorageBucketPolicy";
|
|
2105
|
+
readonly method: "POST";
|
|
2106
|
+
readonly path: "/storage/buckets/policy/set";
|
|
2107
|
+
readonly requestType: "StorageSetBucketPolicyRequest";
|
|
2108
|
+
readonly responseEnvelope: "athena";
|
|
2109
|
+
readonly responseType: "Record<string, unknown>";
|
|
2110
|
+
}, {
|
|
2111
|
+
readonly name: "deleteStorageBucketPolicy";
|
|
2112
|
+
readonly method: "POST";
|
|
2113
|
+
readonly path: "/storage/buckets/policy/delete";
|
|
2114
|
+
readonly requestType: "StorageBucketPolicyRequest";
|
|
2115
|
+
readonly responseEnvelope: "athena";
|
|
2116
|
+
readonly responseType: "Record<string, unknown>";
|
|
2117
|
+
}, {
|
|
2118
|
+
readonly name: "getStorageBucketPublicAccess";
|
|
2119
|
+
readonly method: "POST";
|
|
2120
|
+
readonly path: "/storage/buckets/public-access";
|
|
2121
|
+
readonly requestType: "StoragePublicAccessBlockRequest";
|
|
2122
|
+
readonly responseEnvelope: "athena";
|
|
2123
|
+
readonly responseType: "Record<string, unknown>";
|
|
2124
|
+
}, {
|
|
2125
|
+
readonly name: "setStorageBucketPublicAccess";
|
|
2126
|
+
readonly method: "POST";
|
|
2127
|
+
readonly path: "/storage/buckets/public-access/set";
|
|
2128
|
+
readonly requestType: "StorageSetPublicAccessBlockRequest";
|
|
2129
|
+
readonly responseEnvelope: "athena";
|
|
2130
|
+
readonly responseType: "Record<string, unknown>";
|
|
2131
|
+
}, {
|
|
2132
|
+
readonly name: "deleteStorageBucketPublicAccess";
|
|
2133
|
+
readonly method: "POST";
|
|
2134
|
+
readonly path: "/storage/buckets/public-access/delete";
|
|
2135
|
+
readonly requestType: "StoragePublicAccessBlockRequest";
|
|
2136
|
+
readonly responseEnvelope: "athena";
|
|
2137
|
+
readonly responseType: "Record<string, unknown>";
|
|
2138
|
+
}, {
|
|
2139
|
+
readonly name: "getStorageBucketCors";
|
|
2140
|
+
readonly method: "POST";
|
|
2141
|
+
readonly path: "/storage/buckets/cors";
|
|
2142
|
+
readonly requestType: "StorageBucketCorsRequest";
|
|
2143
|
+
readonly responseEnvelope: "athena";
|
|
2144
|
+
readonly responseType: "Record<string, unknown>";
|
|
2145
|
+
}, {
|
|
2146
|
+
readonly name: "setStorageBucketCors";
|
|
2147
|
+
readonly method: "POST";
|
|
2148
|
+
readonly path: "/storage/buckets/cors/set";
|
|
2149
|
+
readonly requestType: "StorageSetBucketCorsRequest";
|
|
2150
|
+
readonly responseEnvelope: "athena";
|
|
2151
|
+
readonly responseType: "Record<string, unknown>";
|
|
2152
|
+
}, {
|
|
2153
|
+
readonly name: "deleteStorageBucketCors";
|
|
2154
|
+
readonly method: "POST";
|
|
2155
|
+
readonly path: "/storage/buckets/cors/delete";
|
|
2156
|
+
readonly requestType: "StorageBucketCorsRequest";
|
|
2157
|
+
readonly responseEnvelope: "athena";
|
|
2158
|
+
readonly responseType: "Record<string, unknown>";
|
|
2159
|
+
}, {
|
|
2160
|
+
readonly name: "createStorageMultipartUpload";
|
|
2161
|
+
readonly method: "POST";
|
|
2162
|
+
readonly path: "/storage/multipart/create";
|
|
2163
|
+
readonly requestType: "StorageMultipartCreateRequest";
|
|
2164
|
+
readonly responseEnvelope: "athena";
|
|
2165
|
+
readonly responseType: "Record<string, unknown>";
|
|
2166
|
+
}, {
|
|
2167
|
+
readonly name: "signStorageMultipartPart";
|
|
2168
|
+
readonly method: "POST";
|
|
2169
|
+
readonly path: "/storage/multipart/sign-part";
|
|
2170
|
+
readonly requestType: "StorageMultipartSignPartRequest";
|
|
2171
|
+
readonly responseEnvelope: "athena";
|
|
2172
|
+
readonly responseType: "Record<string, unknown>";
|
|
2173
|
+
}, {
|
|
2174
|
+
readonly name: "completeStorageMultipartUpload";
|
|
2175
|
+
readonly method: "POST";
|
|
2176
|
+
readonly path: "/storage/multipart/complete";
|
|
2177
|
+
readonly requestType: "StorageMultipartCompleteRequest";
|
|
2178
|
+
readonly responseEnvelope: "athena";
|
|
2179
|
+
readonly responseType: "StorageFileMutationResponse";
|
|
2180
|
+
}, {
|
|
2181
|
+
readonly name: "abortStorageMultipartUpload";
|
|
2182
|
+
readonly method: "POST";
|
|
2183
|
+
readonly path: "/storage/multipart/abort";
|
|
2184
|
+
readonly requestType: "StorageMultipartAbortRequest";
|
|
2185
|
+
readonly responseEnvelope: "athena";
|
|
2186
|
+
readonly responseType: "Record<string, unknown>";
|
|
2187
|
+
}, {
|
|
2188
|
+
readonly name: "listStorageMultipartParts";
|
|
2189
|
+
readonly method: "POST";
|
|
2190
|
+
readonly path: "/storage/multipart/list-parts";
|
|
2191
|
+
readonly requestType: "StorageMultipartListPartsRequest";
|
|
2192
|
+
readonly responseEnvelope: "athena";
|
|
2193
|
+
readonly responseType: "Record<string, unknown>";
|
|
2194
|
+
}, {
|
|
2195
|
+
readonly name: "listStorageAuditEvents";
|
|
2196
|
+
readonly method: "POST";
|
|
2197
|
+
readonly path: "/storage/audit/list";
|
|
2198
|
+
readonly requestType: "StorageAuditQueryRequest";
|
|
2199
|
+
readonly responseEnvelope: "athena";
|
|
2200
|
+
readonly responseType: "StorageAuditListResponse";
|
|
1747
2201
|
}];
|
|
1748
2202
|
};
|
|
1749
2203
|
interface S3CatalogItem {
|
|
@@ -1807,12 +2261,20 @@ interface PresignedFileUrlResponse {
|
|
|
1807
2261
|
storage_key: string;
|
|
1808
2262
|
purpose: string;
|
|
1809
2263
|
url: string;
|
|
2264
|
+
headers?: Record<string, string>;
|
|
1810
2265
|
expires_at: string;
|
|
1811
2266
|
expires_at_epoch_seconds: number;
|
|
1812
2267
|
expires_in: number;
|
|
1813
2268
|
cache_hit: boolean;
|
|
1814
2269
|
cache_layer: string;
|
|
1815
2270
|
}
|
|
2271
|
+
interface StorageServerSideEncryptionOptions {
|
|
2272
|
+
server_side_encryption?: 'AES256' | 'aws:kms' | 'aws:kms:dsse' | (string & {});
|
|
2273
|
+
sse?: 'AES256' | 'aws:kms' | 'aws:kms:dsse' | (string & {});
|
|
2274
|
+
ssekms_key_id?: string;
|
|
2275
|
+
kms_key_id?: string;
|
|
2276
|
+
bucket_key_enabled?: boolean;
|
|
2277
|
+
}
|
|
1816
2278
|
interface CreateStorageCatalogRequest {
|
|
1817
2279
|
name: string;
|
|
1818
2280
|
endpoint: string;
|
|
@@ -1842,7 +2304,7 @@ interface UpdateStorageCatalogRequest {
|
|
|
1842
2304
|
is_active?: boolean;
|
|
1843
2305
|
metadata?: Record<string, unknown>;
|
|
1844
2306
|
}
|
|
1845
|
-
interface CreateStorageUploadUrlRequest {
|
|
2307
|
+
interface CreateStorageUploadUrlRequest extends StorageServerSideEncryptionOptions {
|
|
1846
2308
|
s3_id: string;
|
|
1847
2309
|
bucket?: string;
|
|
1848
2310
|
storage_key: string;
|
|
@@ -1869,15 +2331,42 @@ interface StorageBatchUploadUrlResponse {
|
|
|
1869
2331
|
}
|
|
1870
2332
|
interface ListStorageFilesRequest {
|
|
1871
2333
|
s3_id: string;
|
|
1872
|
-
prefix
|
|
2334
|
+
prefix?: string;
|
|
2335
|
+
limit?: number;
|
|
2336
|
+
offset?: number;
|
|
2337
|
+
metadata?: Record<string, unknown>;
|
|
2338
|
+
name?: string;
|
|
2339
|
+
resource_id?: string;
|
|
2340
|
+
mime_type?: string;
|
|
2341
|
+
content_type?: string;
|
|
2342
|
+
status?: string;
|
|
2343
|
+
visibility?: 'private' | 'organization' | 'public' | (string & {});
|
|
2344
|
+
bucket?: string;
|
|
2345
|
+
key_prefix?: string;
|
|
1873
2346
|
}
|
|
1874
2347
|
interface StorageListFilesResponse {
|
|
1875
2348
|
files: ManagedFileRecord[];
|
|
1876
2349
|
count: number;
|
|
2350
|
+
total?: number;
|
|
2351
|
+
limit?: number;
|
|
2352
|
+
offset?: number;
|
|
2353
|
+
next_offset?: number | null;
|
|
2354
|
+
has_more?: boolean;
|
|
1877
2355
|
}
|
|
1878
2356
|
interface UpdateStorageFileRequest {
|
|
1879
|
-
storage_key
|
|
2357
|
+
storage_key?: string;
|
|
1880
2358
|
bucket?: string;
|
|
2359
|
+
name?: string;
|
|
2360
|
+
file_name?: string;
|
|
2361
|
+
original_name?: string;
|
|
2362
|
+
resource_id?: string;
|
|
2363
|
+
mime_type?: string;
|
|
2364
|
+
content_type?: string;
|
|
2365
|
+
size_bytes?: number;
|
|
2366
|
+
checksum_sha256?: string;
|
|
2367
|
+
visibility?: 'private' | 'organization' | 'public' | (string & {});
|
|
2368
|
+
status?: string;
|
|
2369
|
+
metadata?: Record<string, unknown>;
|
|
1881
2370
|
}
|
|
1882
2371
|
interface SetStorageFileVisibilityRequest {
|
|
1883
2372
|
public?: boolean;
|
|
@@ -1951,21 +2440,44 @@ interface ConfirmStorageUploadRequest {
|
|
|
1951
2440
|
interface SearchStorageFilesRequest {
|
|
1952
2441
|
query?: string;
|
|
1953
2442
|
limit?: number;
|
|
2443
|
+
offset?: number;
|
|
2444
|
+
s3_id?: string;
|
|
2445
|
+
prefix?: string;
|
|
2446
|
+
metadata?: Record<string, unknown>;
|
|
2447
|
+
name?: string;
|
|
2448
|
+
resource_id?: string;
|
|
2449
|
+
mime_type?: string;
|
|
2450
|
+
content_type?: string;
|
|
2451
|
+
status?: string;
|
|
2452
|
+
visibility?: 'private' | 'organization' | 'public' | (string & {});
|
|
2453
|
+
bucket?: string;
|
|
2454
|
+
key_prefix?: string;
|
|
1954
2455
|
}
|
|
1955
2456
|
interface DeleteManyStorageFilesRequest {
|
|
1956
2457
|
file_ids: string[];
|
|
1957
2458
|
}
|
|
1958
2459
|
interface UpdateManyStorageFilesRequest {
|
|
1959
2460
|
file_ids: string[];
|
|
1960
|
-
storage_key
|
|
2461
|
+
storage_key?: string;
|
|
1961
2462
|
bucket?: string;
|
|
2463
|
+
name?: string;
|
|
2464
|
+
file_name?: string;
|
|
2465
|
+
original_name?: string;
|
|
2466
|
+
resource_id?: string;
|
|
2467
|
+
mime_type?: string;
|
|
2468
|
+
content_type?: string;
|
|
2469
|
+
size_bytes?: number;
|
|
2470
|
+
checksum_sha256?: string;
|
|
2471
|
+
visibility?: 'private' | 'organization' | 'public' | (string & {});
|
|
2472
|
+
status?: string;
|
|
2473
|
+
metadata?: Record<string, unknown>;
|
|
1962
2474
|
}
|
|
1963
2475
|
interface SetManyStorageFileVisibilityRequest {
|
|
1964
2476
|
file_ids: string[];
|
|
1965
2477
|
public?: boolean;
|
|
1966
2478
|
visibility?: 'private' | 'organization' | 'public';
|
|
1967
2479
|
}
|
|
1968
|
-
interface CopyStorageFileRequest {
|
|
2480
|
+
interface CopyStorageFileRequest extends StorageServerSideEncryptionOptions {
|
|
1969
2481
|
storage_key: string;
|
|
1970
2482
|
bucket?: string;
|
|
1971
2483
|
file_name?: string;
|
|
@@ -2001,7 +2513,7 @@ interface StoragePermissionCheckRequest {
|
|
|
2001
2513
|
file_id: string;
|
|
2002
2514
|
permission: 'read' | 'write' | 'delete' | 'share' | 'owner';
|
|
2003
2515
|
}
|
|
2004
|
-
interface StorageMultipartCreateRequest {
|
|
2516
|
+
interface StorageMultipartCreateRequest extends StorageServerSideEncryptionOptions {
|
|
2005
2517
|
file_id: string;
|
|
2006
2518
|
content_type?: string;
|
|
2007
2519
|
}
|
|
@@ -2050,7 +2562,11 @@ interface StorageObjectBaseRequest {
|
|
|
2050
2562
|
interface StorageObjectRequest extends StorageObjectBaseRequest {
|
|
2051
2563
|
key: string;
|
|
2052
2564
|
}
|
|
2053
|
-
interface
|
|
2565
|
+
interface StorageObjectValidateRequest extends StorageObjectRequest {
|
|
2566
|
+
checksum_sha256?: string;
|
|
2567
|
+
etag?: string;
|
|
2568
|
+
}
|
|
2569
|
+
interface StorageObjectCopyRequest extends StorageObjectBaseRequest, StorageServerSideEncryptionOptions {
|
|
2054
2570
|
source_key: string;
|
|
2055
2571
|
destination_key: string;
|
|
2056
2572
|
destination_bucket?: string;
|
|
@@ -2074,7 +2590,26 @@ interface StorageUpdateObjectRequest extends StorageObjectRequest {
|
|
|
2074
2590
|
content_language?: string;
|
|
2075
2591
|
metadata?: Record<string, string>;
|
|
2076
2592
|
}
|
|
2077
|
-
interface
|
|
2593
|
+
interface StorageObjectVersionListRequest extends StorageObjectBaseRequest {
|
|
2594
|
+
key?: string;
|
|
2595
|
+
max_keys?: number;
|
|
2596
|
+
key_marker?: string;
|
|
2597
|
+
version_id_marker?: string;
|
|
2598
|
+
delimiter?: string;
|
|
2599
|
+
}
|
|
2600
|
+
interface StorageObjectVersionMutationRequest extends StorageObjectRequest {
|
|
2601
|
+
version_id: string;
|
|
2602
|
+
}
|
|
2603
|
+
interface StorageSignedPostPolicyRequest extends StorageObjectRequest, StorageServerSideEncryptionOptions {
|
|
2604
|
+
content_type?: string;
|
|
2605
|
+
min_size?: number;
|
|
2606
|
+
max_size?: number;
|
|
2607
|
+
expires_in?: number;
|
|
2608
|
+
public_base_url?: string;
|
|
2609
|
+
force_path_style?: boolean;
|
|
2610
|
+
success_action_status?: string;
|
|
2611
|
+
}
|
|
2612
|
+
interface StoragePresignUploadRequest extends StorageObjectRequest, StorageServerSideEncryptionOptions {
|
|
2078
2613
|
content_type?: string;
|
|
2079
2614
|
}
|
|
2080
2615
|
type StorageBucketCorsRequest = StorageObjectBaseRequest;
|
|
@@ -2088,6 +2623,41 @@ interface StorageBucketCorsRuleInput {
|
|
|
2088
2623
|
interface StorageSetBucketCorsRequest extends StorageBucketCorsRequest {
|
|
2089
2624
|
rules: StorageBucketCorsRuleInput[];
|
|
2090
2625
|
}
|
|
2626
|
+
type StorageBucketLifecycleRequest = StorageObjectBaseRequest;
|
|
2627
|
+
interface StorageBucketLifecycleRuleInput {
|
|
2628
|
+
id?: string;
|
|
2629
|
+
prefix?: string;
|
|
2630
|
+
status?: 'Enabled' | 'Disabled' | 'enabled' | 'disabled' | (string & {});
|
|
2631
|
+
expiration_days?: number;
|
|
2632
|
+
expired_object_delete_marker?: boolean;
|
|
2633
|
+
noncurrent_version_expiration_days?: number;
|
|
2634
|
+
abort_incomplete_multipart_upload_days?: number;
|
|
2635
|
+
}
|
|
2636
|
+
interface StorageSetBucketLifecycleRequest extends StorageBucketLifecycleRequest {
|
|
2637
|
+
rules: StorageBucketLifecycleRuleInput[];
|
|
2638
|
+
}
|
|
2639
|
+
type StorageBucketPolicyRequest = StorageObjectBaseRequest;
|
|
2640
|
+
interface StorageSetBucketPolicyRequest extends StorageBucketPolicyRequest {
|
|
2641
|
+
policy: Record<string, unknown> | string;
|
|
2642
|
+
}
|
|
2643
|
+
type StoragePublicAccessBlockRequest = StorageObjectBaseRequest;
|
|
2644
|
+
interface StorageSetPublicAccessBlockRequest extends StoragePublicAccessBlockRequest {
|
|
2645
|
+
block_public_acls?: boolean;
|
|
2646
|
+
ignore_public_acls?: boolean;
|
|
2647
|
+
block_public_policy?: boolean;
|
|
2648
|
+
restrict_public_buckets?: boolean;
|
|
2649
|
+
}
|
|
2650
|
+
interface StorageFileVersionPathRequest {
|
|
2651
|
+
file_id: string;
|
|
2652
|
+
version_id: string;
|
|
2653
|
+
}
|
|
2654
|
+
interface StorageFileRetentionRequest {
|
|
2655
|
+
mode?: 'GOVERNANCE' | 'COMPLIANCE' | (string & {});
|
|
2656
|
+
retain_until?: string;
|
|
2657
|
+
retain_until_date?: string;
|
|
2658
|
+
version_id?: string;
|
|
2659
|
+
bypass_governance?: boolean;
|
|
2660
|
+
}
|
|
2091
2661
|
interface StorageAuditQueryRequest {
|
|
2092
2662
|
file_id?: string;
|
|
2093
2663
|
limit?: number;
|
|
@@ -2206,7 +2776,7 @@ interface StorageUploadUrlResponseWithPut extends Omit<StorageUploadUrlResponse,
|
|
|
2206
2776
|
interface StorageBatchUploadUrlResponseWithPut {
|
|
2207
2777
|
files: StorageUploadUrlResponseWithPut[];
|
|
2208
2778
|
}
|
|
2209
|
-
interface AthenaStorageFileUploadRequest {
|
|
2779
|
+
interface AthenaStorageFileUploadRequest extends StorageServerSideEncryptionOptions {
|
|
2210
2780
|
s3_id?: string;
|
|
2211
2781
|
s3Id?: string;
|
|
2212
2782
|
bucket?: string;
|
|
@@ -2249,8 +2819,17 @@ interface AthenaStorageFileNamespace extends AthenaStorageFileModule {
|
|
|
2249
2819
|
copy(fileId: string, input: CopyStorageFileRequest, options?: AthenaStorageCallOptions): Promise<StorageFileMutationResponse>;
|
|
2250
2820
|
url(fileId: string, query?: GetStorageFileUrlQuery, options?: AthenaStorageCallOptions): Promise<PresignedFileUrlResponse>;
|
|
2251
2821
|
publicUrl(fileId: string, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2822
|
+
proxyUrl(fileId: string, query?: GetStorageFileUrlQuery, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2252
2823
|
proxy(fileId: string, query?: GetStorageFileUrlQuery, options?: AthenaStorageBinaryCallOptions): Promise<Response>;
|
|
2824
|
+
versions(fileId: string, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2825
|
+
restoreVersion(fileId: string, versionId: string, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2826
|
+
deleteVersion(fileId: string, versionId: string, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2827
|
+
retention: {
|
|
2828
|
+
get(fileId: string, query?: Pick<StorageFileRetentionRequest, 'version_id'>, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2829
|
+
set(fileId: string, input: StorageFileRetentionRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2830
|
+
};
|
|
2253
2831
|
visibility: {
|
|
2832
|
+
update(fileId: string, input: SetStorageFileVisibilityRequest, options?: AthenaStorageCallOptions): Promise<StorageFileMutationResponse>;
|
|
2254
2833
|
set(fileId: string, input: SetStorageFileVisibilityRequest, options?: AthenaStorageCallOptions): Promise<StorageFileMutationResponse>;
|
|
2255
2834
|
setMany(input: SetManyStorageFileVisibilityRequest, options?: AthenaStorageCallOptions): Promise<StorageFileMutationManyResponse>;
|
|
2256
2835
|
};
|
|
@@ -2292,13 +2871,17 @@ interface AthenaStorageObjectNamespace {
|
|
|
2292
2871
|
list(input: StorageListObjectsRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2293
2872
|
head(input: StorageObjectRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2294
2873
|
exists(input: StorageObjectRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2295
|
-
validate(input:
|
|
2874
|
+
validate(input: StorageObjectValidateRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2296
2875
|
update(input: StorageUpdateObjectRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2297
2876
|
copy(input: StorageObjectCopyRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2298
2877
|
url(input: StorageObjectRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2299
2878
|
publicUrl(input: StorageObjectPublicUrlRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2300
2879
|
delete(input: StorageObjectRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2301
2880
|
uploadUrl(input: StoragePresignUploadRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2881
|
+
versions(input: StorageObjectVersionListRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2882
|
+
restoreVersion(input: StorageObjectVersionMutationRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2883
|
+
deleteVersion(input: StorageObjectVersionMutationRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2884
|
+
postPolicy(input: StorageSignedPostPolicyRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2302
2885
|
folder: AthenaStorageObjectFolderNamespace;
|
|
2303
2886
|
}
|
|
2304
2887
|
interface AthenaStorageBucketCorsNamespace {
|
|
@@ -2310,6 +2893,21 @@ interface AthenaStorageBucketNamespace {
|
|
|
2310
2893
|
list(input: Omit<StorageObjectBaseRequest, 'bucket'>, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2311
2894
|
create(input: StorageObjectBaseRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2312
2895
|
delete(input: StorageObjectBaseRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2896
|
+
lifecycle: {
|
|
2897
|
+
get(input: StorageBucketLifecycleRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2898
|
+
set(input: StorageSetBucketLifecycleRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2899
|
+
delete(input: StorageBucketLifecycleRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2900
|
+
};
|
|
2901
|
+
policy: {
|
|
2902
|
+
get(input: StorageBucketPolicyRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2903
|
+
set(input: StorageSetBucketPolicyRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2904
|
+
delete(input: StorageBucketPolicyRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2905
|
+
};
|
|
2906
|
+
publicAccess: {
|
|
2907
|
+
get(input: StoragePublicAccessBlockRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2908
|
+
set(input: StorageSetPublicAccessBlockRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2909
|
+
delete(input: StoragePublicAccessBlockRequest, options?: AthenaStorageCallOptions): Promise<Record<string, unknown>>;
|
|
2910
|
+
};
|
|
2313
2911
|
cors: AthenaStorageBucketCorsNamespace;
|
|
2314
2912
|
}
|
|
2315
2913
|
interface AthenaStorageMultipartNamespace {
|
|
@@ -2335,6 +2933,7 @@ interface AthenaStorageModule extends AthenaStorageBaseModule {
|
|
|
2335
2933
|
delete: AthenaStorageFileModule['delete'];
|
|
2336
2934
|
}
|
|
2337
2935
|
declare function createAthenaStorageError(input: AthenaStorageErrorInput): AthenaStorageError;
|
|
2936
|
+
declare function createStorageModule(gateway: AthenaGatewayClient, runtimeOptions?: AthenaStorageClientConfig): AthenaStorageModule;
|
|
2338
2937
|
|
|
2339
2938
|
type AthenaRowShape$1 = Record<string, AthenaJsonValue | undefined>;
|
|
2340
2939
|
type FilterColumnKey$1<Row> = Extract<keyof NonNullable<Row>, string>;
|
|
@@ -2843,20 +3442,26 @@ interface AthenaSdkClientWithStorage<TStrict extends boolean = false> extends At
|
|
|
2843
3442
|
storage: AthenaStorageModule;
|
|
2844
3443
|
}
|
|
2845
3444
|
interface AthenaCreateClientServiceUrlConfig {
|
|
2846
|
-
url?: string | null;
|
|
3445
|
+
url?: string | null | undefined;
|
|
2847
3446
|
}
|
|
2848
|
-
interface AthenaCreateClientAuthOptions extends AthenaAuthClientConfig {
|
|
2849
|
-
url?: string | null;
|
|
3447
|
+
interface AthenaCreateClientAuthOptions extends Omit<AthenaAuthClientConfig, 'baseUrl' | 'apiKey' | 'bearerToken'> {
|
|
3448
|
+
url?: string | null | undefined;
|
|
3449
|
+
baseUrl?: string | null | undefined;
|
|
3450
|
+
apiKey?: string | null | undefined;
|
|
3451
|
+
bearerToken?: string | null | undefined;
|
|
2850
3452
|
}
|
|
2851
|
-
interface AthenaCreateClientOptions
|
|
3453
|
+
interface AthenaCreateClientOptions {
|
|
3454
|
+
client?: string | null | undefined;
|
|
3455
|
+
headers?: Record<string, string>;
|
|
3456
|
+
backend?: BackendConfig | BackendType;
|
|
2852
3457
|
db?: AthenaCreateClientServiceUrlConfig;
|
|
2853
3458
|
gateway?: AthenaCreateClientServiceUrlConfig;
|
|
2854
3459
|
auth?: AthenaCreateClientAuthOptions;
|
|
2855
3460
|
storage?: AthenaCreateClientServiceUrlConfig;
|
|
2856
|
-
dbUrl?: string | null;
|
|
2857
|
-
gatewayUrl?: string | null;
|
|
2858
|
-
authUrl?: string | null;
|
|
2859
|
-
storageUrl?: string | null;
|
|
3461
|
+
dbUrl?: string | null | undefined;
|
|
3462
|
+
gatewayUrl?: string | null | undefined;
|
|
3463
|
+
authUrl?: string | null | undefined;
|
|
3464
|
+
storageUrl?: string | null | undefined;
|
|
2860
3465
|
experimental?: AthenaClientExperimentalOptions;
|
|
2861
3466
|
}
|
|
2862
3467
|
interface AthenaCreateClientOptionsWithStorage extends AthenaCreateClientOptions {
|
|
@@ -2876,30 +3481,30 @@ interface AthenaCreateClientOptionsWithStorageAndTypecheckedColumns extends Athe
|
|
|
2876
3481
|
};
|
|
2877
3482
|
}
|
|
2878
3483
|
interface AthenaCreateClientConfig extends AthenaCreateClientOptions {
|
|
2879
|
-
url?: string | null;
|
|
2880
|
-
key: string;
|
|
3484
|
+
url?: string | null | undefined;
|
|
3485
|
+
key: string | null | undefined;
|
|
2881
3486
|
}
|
|
2882
3487
|
interface AthenaCreateClientConfigWithStorage extends AthenaCreateClientOptionsWithStorage {
|
|
2883
|
-
url?: string | null;
|
|
2884
|
-
key: string;
|
|
3488
|
+
url?: string | null | undefined;
|
|
3489
|
+
key: string | null | undefined;
|
|
2885
3490
|
}
|
|
2886
3491
|
interface AthenaCreateClientConfigWithTypecheckedColumns extends AthenaCreateClientOptionsWithTypecheckedColumns {
|
|
2887
|
-
url?: string | null;
|
|
2888
|
-
key: string;
|
|
3492
|
+
url?: string | null | undefined;
|
|
3493
|
+
key: string | null | undefined;
|
|
2889
3494
|
}
|
|
2890
3495
|
interface AthenaCreateClientConfigWithStorageAndTypecheckedColumns extends AthenaCreateClientOptionsWithStorageAndTypecheckedColumns {
|
|
2891
|
-
url?: string | null;
|
|
2892
|
-
key: string;
|
|
3496
|
+
url?: string | null | undefined;
|
|
3497
|
+
key: string | null | undefined;
|
|
2893
3498
|
}
|
|
2894
3499
|
interface AthenaClientBuilder<StorageEnabled extends boolean = false, TStrict extends boolean = false> {
|
|
2895
3500
|
/** Set the public Athena base URL. */
|
|
2896
|
-
url(url: string): AthenaClientBuilder<StorageEnabled, TStrict>;
|
|
3501
|
+
url(url: string | null | undefined): AthenaClientBuilder<StorageEnabled, TStrict>;
|
|
2897
3502
|
/** Set the API key used for all requests. */
|
|
2898
|
-
key(apiKey: string): AthenaClientBuilder<StorageEnabled, TStrict>;
|
|
3503
|
+
key(apiKey: string | null | undefined): AthenaClientBuilder<StorageEnabled, TStrict>;
|
|
2899
3504
|
/** Set the default backend routing strategy. */
|
|
2900
3505
|
backend(backend: BackendConfig | BackendType): AthenaClientBuilder<StorageEnabled, TStrict>;
|
|
2901
3506
|
/** Set the default Athena client routing key. */
|
|
2902
|
-
client(clientName: string): AthenaClientBuilder<StorageEnabled, TStrict>;
|
|
3507
|
+
client(clientName: string | null | undefined): AthenaClientBuilder<StorageEnabled, TStrict>;
|
|
2903
3508
|
/** Attach static headers to every request. */
|
|
2904
3509
|
headers(headers: Record<string, string>): AthenaClientBuilder<StorageEnabled, TStrict>;
|
|
2905
3510
|
/** Configure Athena Auth client behavior for `client.auth.*` methods. */
|
|
@@ -2936,10 +3541,10 @@ declare function createClient(config: AthenaCreateClientConfigWithStorageAndType
|
|
|
2936
3541
|
declare function createClient(config: AthenaCreateClientConfigWithStorage): AthenaSdkClientWithStorage<false>;
|
|
2937
3542
|
declare function createClient(config: AthenaCreateClientConfigWithTypecheckedColumns): AthenaSdkClientWithAuth<true>;
|
|
2938
3543
|
declare function createClient(config: AthenaCreateClientConfig): AthenaSdkClientWithAuth<false>;
|
|
2939
|
-
declare function createClient(url: string, apiKey: string, options: AthenaCreateClientOptionsWithStorageAndTypecheckedColumns): AthenaSdkClientWithStorage<true>;
|
|
2940
|
-
declare function createClient(url: string, apiKey: string, options: AthenaCreateClientOptionsWithStorage): AthenaSdkClientWithStorage<false>;
|
|
2941
|
-
declare function createClient(url: string, apiKey: string, options: AthenaCreateClientOptionsWithTypecheckedColumns): AthenaSdkClientWithAuth<true>;
|
|
2942
|
-
declare function createClient(url: string, apiKey: string, options?: AthenaCreateClientOptions): AthenaSdkClientWithAuth<false>;
|
|
3544
|
+
declare function createClient(url: string | null | undefined, apiKey: string | null | undefined, options: AthenaCreateClientOptionsWithStorageAndTypecheckedColumns): AthenaSdkClientWithStorage<true>;
|
|
3545
|
+
declare function createClient(url: string | null | undefined, apiKey: string | null | undefined, options: AthenaCreateClientOptionsWithStorage): AthenaSdkClientWithStorage<false>;
|
|
3546
|
+
declare function createClient(url: string | null | undefined, apiKey: string | null | undefined, options: AthenaCreateClientOptionsWithTypecheckedColumns): AthenaSdkClientWithAuth<true>;
|
|
3547
|
+
declare function createClient(url: string | null | undefined, apiKey: string | null | undefined, options?: AthenaCreateClientOptions): AthenaSdkClientWithAuth<false>;
|
|
2943
3548
|
|
|
2944
3549
|
interface AthenaGatewayErrorInput {
|
|
2945
3550
|
code: AthenaGatewayErrorCode;
|
|
@@ -3034,4 +3639,4 @@ interface ModelFormAdapter<TModel extends AnyModelDef> {
|
|
|
3034
3639
|
*/
|
|
3035
3640
|
declare function createModelFormAdapter<TModel extends AnyModelDef>(model: TModel): ModelFormAdapter<TModel>;
|
|
3036
3641
|
|
|
3037
|
-
export { type AthenaClientExperimentalOptions as $, type AthenaAdminListUsersFilterOperator as A, type AthenaAuthQueryValue as B, type AthenaAuthReactEmailComponent as C, type AthenaAuthReactEmailConfig as D, type AthenaAuthReactEmailEventPhase as E, type AthenaAuthReactEmailProps as F, type AthenaAuthReactEmailRenderEvent as G, type AthenaAuthReactEmailRenderInput as H, type AthenaAuthReactEmailRenderOptions as I, type AthenaAuthRequestInput as J, type AthenaAuthResetPasswordBinding as K, type AthenaAuthResult as L, type AthenaAuthRevokeSessionRequest as M, type AthenaAuthSdkClient as N, type AthenaAuthSearchOperator as O, type AthenaAuthSession as P, type AthenaAuthSessionResponse as Q, type AthenaAuthSessionRevokeBinding as R, type AthenaAuthSignInResponse as S, type AthenaAuthSignOutResponse as T, type AthenaAuthSocialRedirectResponse as U, type AthenaAuthStatusResponse as V, type AthenaAuthUser as W, type AthenaChangeEmailRequest as X, type AthenaChangePasswordRequest as Y, AthenaClient as Z, type AthenaClientBuilder as _, type AthenaAdminListUsersQuery as a, type AthenaStorageFileConfig as a$, type AthenaCreateClientAuthOptions as a0, type AthenaCreateClientConfig as a1, type AthenaCreateClientConfigWithStorage as a2, type AthenaCreateClientConfigWithStorageAndTypecheckedColumns as a3, type AthenaCreateClientConfigWithTypecheckedColumns as a4, type AthenaCreateClientOptions as a5, type AthenaCreateClientOptionsWithStorage as a6, type AthenaCreateClientOptionsWithStorageAndTypecheckedColumns as a7, type AthenaCreateClientOptionsWithTypecheckedColumns as a8, type AthenaCreateClientServiceUrlConfig as a9, type AthenaQueryTraceCallsite as aA, type AthenaQueryTraceEvent as aB, type AthenaQueryTraceOptions as aC, type AthenaRawQueryDebugAst as aD, type AthenaRelationSelectNode as aE, type AthenaResetPasswordRequest as aF, type AthenaResult as aG, type AthenaResultError as aH, type AthenaRpcBuilderStateAst as aI, type AthenaRpcDebugAst as aJ, type AthenaSdkClient as aK, type AthenaSdkClientWithAuth as aL, type AthenaSdkClientWithStorage as aM, type AthenaSelectDebugAst as aN, type AthenaSelectDebugTransport as aO, type AthenaSelectShape as aP, type AthenaSendVerificationEmailRequest as aQ, type AthenaSocialSignInRequest as aR, type AthenaStorageBinaryCallOptions as aS, type AthenaStorageCallOptions as aT, type AthenaStorageClientConfig as aU, type AthenaStorageEnv as aV, AthenaStorageError as aW, AthenaStorageErrorCode as aX, type AthenaStorageErrorDetails as aY, type AthenaStorageErrorHandler as aZ, type AthenaStorageErrorInput as a_, type AthenaDbModule as aa, type AthenaDeleteDebugAst as ab, type AthenaDeleteUserCallbackRequest as ac, type AthenaDeleteUserRequest as ad, type AthenaDeleteUserResponse as ae, type AthenaEmailSignInRequest as af, type AthenaEmailSignUpRequest as ag, type AthenaEnvelope as ah, AthenaError as ai, AthenaErrorCategory as aj, AthenaErrorCode as ak, type AthenaErrorInput as al, AthenaErrorKind as am, type AthenaFindManyDebugAst as an, type AthenaFindManyOptions as ao, type AthenaFindManyResult as ap, type AthenaForgetPasswordRequest as aq, type AthenaFromOptions as ar, AthenaGatewayError as as, type AthenaInsertDebugAst as at, type AthenaLinkSocialRequest as au, type AthenaOAuthAccountTokenRequest as av, type AthenaOAuthTokenBundle as aw, type AthenaOperationContext as ax, type AthenaOrderBy as ay, type AthenaQueryDebugAst as az, type AthenaAdminListUsersSearchOperator as b, assertInt as b$, type AthenaStorageFileDeleteInput as b0, type AthenaStorageFileDownloadInput as b1, type AthenaStorageFileListInput as b2, type AthenaStorageFileModule as b3, type AthenaStorageFileUploadInput as b4, type AthenaStorageFileUploadResult as b5, type AthenaStorageModule as b6, type AthenaStoragePathContext as b7, type AthenaStoragePrefixPath as b8, type AthenaStorageTemplateValue as b9, type ModelFormDefaults as bA, type ModelFormNullishMode as bB, type ModelFormValues as bC, type MoveStorageFolderRequest as bD, type NormalizedAthenaError as bE, type PresignedFileUrlResponse as bF, type RequireAffectedOptions as bG, type RetryBackoffStrategy as bH, type RetryConfig as bI, type RpcOrderOptions as bJ, type RpcQueryBuilder as bK, type S3CatalogItem as bL, type S3CredentialListItem as bM, type SetStorageFileVisibilityRequest as bN, type StorageBatchUploadUrlResponse as bO, type StorageFileAccessPurpose as bP, type StorageFileMutationResponse as bQ, type StorageFolderMutationResponse as bR, type StorageListFilesResponse as bS, type StorageUploadUrlResponse as bT, type TableQueryBuilder as bU, type ToModelFormDefaultsOptions as bV, type ToModelPayloadOptions as bW, type UnwrapOneOptions as bX, type UnwrapOptions as bY, type UpdateStorageCatalogRequest as bZ, type UpdateStorageFileRequest as b_, type AthenaStorageTemplateVars as ba, type AthenaStorageUploadConstraints as bb, type AthenaStorageUploadProgress as bc, type AthenaStorageUploadProgressHandler as bd, type AthenaStorageUploadSource as be, type AthenaStorageUploadedFile as bf, type AthenaTableBuilderStateAst as bg, type AthenaUnlinkAccountRequest as bh, type AthenaUpdateDebugAst as bi, type AthenaUpdateUserRequest as bj, type AthenaUpsertDebugAst as bk, type AthenaUsernameSignInRequest as bl, type AthenaVerifyEmailRequest as bm, type AthenaWhere as bn, type AthenaWhereBooleanOperand as bo, type AthenaWhereOperatorInput as bp, type CreateStorageCatalogRequest as bq, type CreateStorageUploadUrlRequest as br, type CreateStorageUploadUrlsRequest as bs, type DeleteStorageFolderRequest as bt, type FormValuesOf as bu, type GetStorageFileUrlQuery as bv, type IntCoercionOptions as bw, type ListStorageFilesRequest as bx, type ManagedFileRecord as by, type ModelFormAdapter as bz, type AthenaAuthAdminUserSessionRevokeBinding as c, coerceInt as c0, createAthenaStorageError as c1, createClient as c2, createModelFormAdapter as c3, getAthenaDebugAst as c4, isAthenaGatewayError as c5, isOk as c6, normalizeAthenaError as c7, parseBooleanFlag as c8, requireAffected as c9, requireSuccess as ca, storageSdkManifest as cb, toModelFormDefaults as cc, toModelPayload as cd, unwrap as ce, unwrapOne as cf, unwrapRows as cg, withRetry as ch, type AthenaAuthFetchCompatibleInput as ci, type AthenaAuthBindings as d, type AthenaAuthCallOptions as e, type AthenaAuthClientConfig as f, type AthenaAuthCredentials as g, type AthenaAuthEmailChangeResponse as h, type AthenaAuthEmailTemplateBuilder as i, type AthenaAuthEmailTemplateCreateFromDefinitionInput as j, type AthenaAuthEmailTemplateDefinition as k, type AthenaAuthEmailTemplateReactOverrides as l, type AthenaAuthEmailTemplateUpdateFromDefinitionInput as m, type AthenaAuthEndpointPath as n, type AthenaAuthErrorCode as o, type AthenaAuthErrorDetails as p, type AthenaAuthFilterOperator as q, type AthenaAuthGenericInput as r, type AthenaAuthGenericQueryInput as s, type AthenaAuthLinkedAccount as t, type AthenaAuthMethod as u, type AthenaAuthOrganization as v, type AthenaAuthOrganizationBindings as w, type AthenaAuthOrganizationInvitation as x, type AthenaAuthOrganizationMember as y, type AthenaAuthQueryPrimitive as z };
|
|
3642
|
+
export { type AthenaClientExperimentalOptions as $, type AthenaAdminListUsersFilterOperator as A, type AthenaAuthQueryValue as B, type AthenaAuthReactEmailComponent as C, type AthenaAuthReactEmailConfig as D, type AthenaAuthReactEmailEventPhase as E, type AthenaAuthReactEmailProps as F, type AthenaAuthReactEmailRenderEvent as G, type AthenaAuthReactEmailRenderInput as H, type AthenaAuthReactEmailRenderOptions as I, type AthenaAuthRequestInput as J, type AthenaAuthResetPasswordBinding as K, type AthenaAuthResult as L, type AthenaAuthRevokeSessionRequest as M, type AthenaAuthSdkClient as N, type AthenaAuthSearchOperator as O, type AthenaAuthSession as P, type AthenaAuthSessionResponse as Q, type AthenaAuthSessionRevokeBinding as R, type AthenaAuthSignInResponse as S, type AthenaAuthSignOutResponse as T, type AthenaAuthSocialRedirectResponse as U, type AthenaAuthStatusResponse as V, type AthenaAuthUser as W, type AthenaChangeEmailRequest as X, type AthenaChangePasswordRequest as Y, AthenaClient as Z, type AthenaClientBuilder as _, type AthenaAdminListUsersQuery as a, type AthenaStorageEnv as a$, type AthenaCreateClientAuthOptions as a0, type AthenaCreateClientConfig as a1, type AthenaCreateClientConfigWithStorage as a2, type AthenaCreateClientConfigWithStorageAndTypecheckedColumns as a3, type AthenaCreateClientConfigWithTypecheckedColumns as a4, type AthenaCreateClientOptions as a5, type AthenaCreateClientOptionsWithStorage as a6, type AthenaCreateClientOptionsWithStorageAndTypecheckedColumns as a7, type AthenaCreateClientOptionsWithTypecheckedColumns as a8, type AthenaCreateClientServiceUrlConfig as a9, type AthenaQueryTraceCallsite as aA, type AthenaQueryTraceEvent as aB, type AthenaQueryTraceOptions as aC, type AthenaRawQueryDebugAst as aD, type AthenaRelationSelectNode as aE, type AthenaResetPasswordRequest as aF, type AthenaResult as aG, type AthenaResultError as aH, type AthenaRpcBuilderStateAst as aI, type AthenaRpcDebugAst as aJ, type AthenaSdkClient as aK, type AthenaSdkClientWithAuth as aL, type AthenaSdkClientWithStorage as aM, type AthenaSelectDebugAst as aN, type AthenaSelectDebugTransport as aO, type AthenaSelectShape as aP, type AthenaSendVerificationEmailRequest as aQ, type AthenaSocialSignInRequest as aR, type AthenaStorageAuditNamespace as aS, type AthenaStorageBaseModule as aT, type AthenaStorageBinaryCallOptions as aU, type AthenaStorageBucketCorsNamespace as aV, type AthenaStorageBucketNamespace as aW, type AthenaStorageCallOptions as aX, type AthenaStorageCatalogNamespace as aY, type AthenaStorageClientConfig as aZ, type AthenaStorageCredentialsNamespace as a_, type AthenaDbModule as aa, type AthenaDeleteDebugAst as ab, type AthenaDeleteUserCallbackRequest as ac, type AthenaDeleteUserRequest as ad, type AthenaDeleteUserResponse as ae, type AthenaEmailSignInRequest as af, type AthenaEmailSignUpRequest as ag, type AthenaEnvelope as ah, AthenaError as ai, AthenaErrorCategory as aj, AthenaErrorCode as ak, type AthenaErrorInput as al, AthenaErrorKind as am, type AthenaFindManyDebugAst as an, type AthenaFindManyOptions as ao, type AthenaFindManyResult as ap, type AthenaForgetPasswordRequest as aq, type AthenaFromOptions as ar, AthenaGatewayError as as, type AthenaInsertDebugAst as at, type AthenaLinkSocialRequest as au, type AthenaOAuthAccountTokenRequest as av, type AthenaOAuthTokenBundle as aw, type AthenaOperationContext as ax, type AthenaOrderBy as ay, type AthenaQueryDebugAst as az, type AthenaAdminListUsersSearchOperator as b, type RequireAffectedOptions as b$, AthenaStorageError as b0, AthenaStorageErrorCode as b1, type AthenaStorageErrorDetails as b2, type AthenaStorageErrorHandler as b3, type AthenaStorageErrorInput as b4, type AthenaStorageFileConfig as b5, type AthenaStorageFileDeleteInput as b6, type AthenaStorageFileDownloadInput as b7, type AthenaStorageFileListInput as b8, type AthenaStorageFileModule as b9, type AthenaUpdateUserRequest as bA, type AthenaUpsertDebugAst as bB, type AthenaUsernameSignInRequest as bC, type AthenaVerifyEmailRequest as bD, type AthenaWhere as bE, type AthenaWhereBooleanOperand as bF, type AthenaWhereOperatorInput as bG, type ConfirmStorageUploadRequest as bH, type CopyStorageFileRequest as bI, type CreateStorageCatalogRequest as bJ, type CreateStorageUploadUrlRequest as bK, type CreateStorageUploadUrlsRequest as bL, type DeleteManyStorageFilesRequest as bM, type DeleteStorageFolderRequest as bN, type FormValuesOf as bO, type GetStorageFileUrlQuery as bP, type IntCoercionOptions as bQ, type ListStorageFilesRequest as bR, type ListStorageFoldersRequest as bS, type ManagedFileRecord as bT, type ModelFormAdapter as bU, type ModelFormDefaults as bV, type ModelFormNullishMode as bW, type ModelFormValues as bX, type MoveStorageFolderRequest as bY, type NormalizedAthenaError as bZ, type PresignedFileUrlResponse as b_, type AthenaStorageFileNamespace as ba, type AthenaStorageFileUploadInput as bb, type AthenaStorageFileUploadManyRequest as bc, type AthenaStorageFileUploadRequest as bd, type AthenaStorageFileUploadResult as be, type AthenaStorageFolderNamespace as bf, type AthenaStorageManagedUpload as bg, type AthenaStorageModule as bh, type AthenaStorageMultipartNamespace as bi, type AthenaStorageObjectFolderNamespace as bj, type AthenaStorageObjectNamespace as bk, type AthenaStoragePathContext as bl, type AthenaStoragePermissionNamespace as bm, type AthenaStoragePrefixPath as bn, type AthenaStoragePutBody as bo, type AthenaStoragePutOptions as bp, type AthenaStorageTemplateValue as bq, type AthenaStorageTemplateVars as br, type AthenaStorageUploadConstraints as bs, type AthenaStorageUploadProgress as bt, type AthenaStorageUploadProgressHandler as bu, type AthenaStorageUploadSource as bv, type AthenaStorageUploadedFile as bw, type AthenaTableBuilderStateAst as bx, type AthenaUnlinkAccountRequest as by, type AthenaUpdateDebugAst as bz, type AthenaAuthAdminUserSessionRevokeBinding as c, type ToModelPayloadOptions as c$, type RetryBackoffStrategy as c0, type RetryConfig as c1, type RpcOrderOptions as c2, type RpcQueryBuilder as c3, type S3CatalogItem as c4, type S3CredentialListItem as c5, type SearchStorageFilesRequest as c6, type SetManyStorageFileVisibilityRequest as c7, type SetStorageFileVisibilityRequest as c8, type StorageAuditEventRecord as c9, type StorageObjectFolderCreateRequest as cA, type StorageObjectFolderDeleteRequest as cB, type StorageObjectFolderRenameRequest as cC, type StorageObjectPublicUrlRequest as cD, type StorageObjectRequest as cE, type StorageObjectValidateRequest as cF, type StorageObjectVersionListRequest as cG, type StorageObjectVersionMutationRequest as cH, type StoragePermissionCheckRequest as cI, type StoragePermissionCheckResponse as cJ, type StoragePermissionGrantRequest as cK, type StoragePermissionListRequest as cL, type StoragePermissionListResponse as cM, type StoragePermissionRevokeRequest as cN, type StoragePresignUploadRequest as cO, type StoragePublicAccessBlockRequest as cP, type StorageServerSideEncryptionOptions as cQ, type StorageSetBucketCorsRequest as cR, type StorageSetBucketLifecycleRequest as cS, type StorageSetBucketPolicyRequest as cT, type StorageSetPublicAccessBlockRequest as cU, type StorageSignedPostPolicyRequest as cV, type StorageUpdateObjectRequest as cW, type StorageUploadUrlResponse as cX, type StorageUploadUrlResponseWithPut as cY, type TableQueryBuilder as cZ, type ToModelFormDefaultsOptions as c_, type StorageAuditListResponse as ca, type StorageAuditQueryRequest as cb, type StorageBatchUploadUrlResponse as cc, type StorageBatchUploadUrlResponseWithPut as cd, type StorageBucketCorsRequest as ce, type StorageBucketCorsRuleInput as cf, type StorageBucketLifecycleRequest as cg, type StorageBucketLifecycleRuleInput as ch, type StorageBucketPolicyRequest as ci, type StorageFileAccessPurpose as cj, type StorageFileMutationManyResponse as ck, type StorageFileMutationResponse as cl, type StorageFilePermissionRecord as cm, type StorageFileRetentionRequest as cn, type StorageFileVersionPathRequest as co, type StorageFolderMutationResponse as cp, type StorageListFilesResponse as cq, type StorageListObjectsRequest as cr, type StorageMultipartAbortRequest as cs, type StorageMultipartCompletePartInput as ct, type StorageMultipartCompleteRequest as cu, type StorageMultipartCreateRequest as cv, type StorageMultipartListPartsRequest as cw, type StorageMultipartSignPartRequest as cx, type StorageObjectBaseRequest as cy, type StorageObjectCopyRequest as cz, type AthenaAuthBindings as d, type TreeStorageFoldersRequest as d0, type UnwrapOneOptions as d1, type UnwrapOptions as d2, type UpdateManyStorageFilesRequest as d3, type UpdateStorageCatalogRequest as d4, type UpdateStorageFileRequest as d5, assertInt as d6, coerceInt as d7, createAthenaStorageError as d8, createClient as d9, createModelFormAdapter as da, createStorageModule as db, getAthenaDebugAst as dc, isAthenaGatewayError as dd, isOk as de, normalizeAthenaError as df, parseBooleanFlag as dg, requireAffected as dh, requireSuccess as di, storageSdkManifest as dj, toModelFormDefaults as dk, toModelPayload as dl, unwrap as dm, unwrapOne as dn, unwrapRows as dp, verifyAthenaGatewayUrl as dq, withRetry as dr, type AthenaAuthFetchCompatibleInput as ds, type AthenaAuthCallOptions as e, type AthenaAuthClientConfig as f, type AthenaAuthCredentials as g, type AthenaAuthEmailChangeResponse as h, type AthenaAuthEmailTemplateBuilder as i, type AthenaAuthEmailTemplateCreateFromDefinitionInput as j, type AthenaAuthEmailTemplateDefinition as k, type AthenaAuthEmailTemplateReactOverrides as l, type AthenaAuthEmailTemplateUpdateFromDefinitionInput as m, type AthenaAuthEndpointPath as n, type AthenaAuthErrorCode as o, type AthenaAuthErrorDetails as p, type AthenaAuthFilterOperator as q, type AthenaAuthGenericInput as r, type AthenaAuthGenericQueryInput as s, type AthenaAuthLinkedAccount as t, type AthenaAuthMethod as u, type AthenaAuthOrganization as v, type AthenaAuthOrganizationBindings as w, type AthenaAuthOrganizationInvitation as x, type AthenaAuthOrganizationMember as y, type AthenaAuthQueryPrimitive as z };
|