@meistrari/vault-http-client 2.3.1 → 2.3.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/dist/index.cjs +1 -8
- package/dist/index.d.cts +120 -190
- package/dist/index.d.mts +120 -190
- package/dist/index.d.ts +120 -190
- package/dist/index.mjs +1 -8
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -40,77 +40,42 @@ declare function createApiClient(baseUrl: string, options?: ZodiosOptions): _zod
|
|
|
40
40
|
response: z.ZodObject<{
|
|
41
41
|
files: z.ZodArray<z.ZodObject<{
|
|
42
42
|
id: z.ZodString;
|
|
43
|
-
path: z.ZodString;
|
|
44
|
-
workspaceId: z.ZodString;
|
|
45
43
|
originalFileName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
46
|
-
mimeType: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47
44
|
size: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
48
|
-
legacyKey: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
49
|
-
bucketName: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
50
|
-
encryptionKey: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
51
|
-
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
52
45
|
createdAt: z.ZodString;
|
|
53
|
-
|
|
46
|
+
createdBy: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
54
47
|
}, "strict", z.ZodTypeAny, {
|
|
55
|
-
path: string;
|
|
56
|
-
workspaceId: string;
|
|
57
48
|
id: string;
|
|
58
49
|
createdAt: string;
|
|
59
|
-
bucketName?: string | null | undefined;
|
|
60
50
|
size?: number | null | undefined;
|
|
61
|
-
mimeType?: string | null | undefined;
|
|
62
51
|
createdBy?: string | null | undefined;
|
|
63
|
-
deletedAt?: string | null | undefined;
|
|
64
52
|
originalFileName?: string | null | undefined;
|
|
65
|
-
legacyKey?: string | null | undefined;
|
|
66
|
-
encryptionKey?: string | null | undefined;
|
|
67
53
|
}, {
|
|
68
|
-
path: string;
|
|
69
|
-
workspaceId: string;
|
|
70
54
|
id: string;
|
|
71
55
|
createdAt: string;
|
|
72
|
-
bucketName?: string | null | undefined;
|
|
73
56
|
size?: number | null | undefined;
|
|
74
|
-
mimeType?: string | null | undefined;
|
|
75
57
|
createdBy?: string | null | undefined;
|
|
76
|
-
deletedAt?: string | null | undefined;
|
|
77
58
|
originalFileName?: string | null | undefined;
|
|
78
|
-
legacyKey?: string | null | undefined;
|
|
79
|
-
encryptionKey?: string | null | undefined;
|
|
80
59
|
}>, "many">;
|
|
81
60
|
count: z.ZodNumber;
|
|
82
61
|
pages: z.ZodNumber;
|
|
83
62
|
}, "strict", z.ZodTypeAny, {
|
|
84
63
|
files: {
|
|
85
|
-
path: string;
|
|
86
|
-
workspaceId: string;
|
|
87
64
|
id: string;
|
|
88
65
|
createdAt: string;
|
|
89
|
-
bucketName?: string | null | undefined;
|
|
90
66
|
size?: number | null | undefined;
|
|
91
|
-
mimeType?: string | null | undefined;
|
|
92
67
|
createdBy?: string | null | undefined;
|
|
93
|
-
deletedAt?: string | null | undefined;
|
|
94
68
|
originalFileName?: string | null | undefined;
|
|
95
|
-
legacyKey?: string | null | undefined;
|
|
96
|
-
encryptionKey?: string | null | undefined;
|
|
97
69
|
}[];
|
|
98
70
|
count: number;
|
|
99
71
|
pages: number;
|
|
100
72
|
}, {
|
|
101
73
|
files: {
|
|
102
|
-
path: string;
|
|
103
|
-
workspaceId: string;
|
|
104
74
|
id: string;
|
|
105
75
|
createdAt: string;
|
|
106
|
-
bucketName?: string | null | undefined;
|
|
107
76
|
size?: number | null | undefined;
|
|
108
|
-
mimeType?: string | null | undefined;
|
|
109
77
|
createdBy?: string | null | undefined;
|
|
110
|
-
deletedAt?: string | null | undefined;
|
|
111
78
|
originalFileName?: string | null | undefined;
|
|
112
|
-
legacyKey?: string | null | undefined;
|
|
113
|
-
encryptionKey?: string | null | undefined;
|
|
114
79
|
}[];
|
|
115
80
|
count: number;
|
|
116
81
|
pages: number;
|
|
@@ -1849,76 +1814,41 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
1849
1814
|
response: zod.ZodObject<{
|
|
1850
1815
|
files: zod.ZodArray<zod.ZodObject<{
|
|
1851
1816
|
id: zod.ZodString;
|
|
1852
|
-
path: zod.ZodString;
|
|
1853
|
-
workspaceId: zod.ZodString;
|
|
1854
1817
|
originalFileName: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1855
|
-
mimeType: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1856
1818
|
size: zod.ZodOptional<zod.ZodUnion<[zod.ZodNumber, zod.ZodNull]>>;
|
|
1857
|
-
legacyKey: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1858
|
-
bucketName: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1859
|
-
encryptionKey: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1860
|
-
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1861
1819
|
createdAt: zod.ZodString;
|
|
1862
|
-
|
|
1820
|
+
createdBy: zod.ZodOptional<zod.ZodUnion<[zod.ZodString, zod.ZodNull]>>;
|
|
1863
1821
|
}, "strict", zod.ZodTypeAny, {
|
|
1864
|
-
path: string;
|
|
1865
|
-
workspaceId: string;
|
|
1866
1822
|
id: string;
|
|
1867
1823
|
createdAt: string;
|
|
1868
|
-
deletedAt?: string | null | undefined;
|
|
1869
1824
|
originalFileName?: string | null | undefined;
|
|
1870
|
-
mimeType?: string | null | undefined;
|
|
1871
1825
|
size?: number | null | undefined;
|
|
1872
|
-
legacyKey?: string | null | undefined;
|
|
1873
|
-
bucketName?: string | null | undefined;
|
|
1874
|
-
encryptionKey?: string | null | undefined;
|
|
1875
1826
|
createdBy?: string | null | undefined;
|
|
1876
1827
|
}, {
|
|
1877
|
-
path: string;
|
|
1878
|
-
workspaceId: string;
|
|
1879
1828
|
id: string;
|
|
1880
1829
|
createdAt: string;
|
|
1881
|
-
deletedAt?: string | null | undefined;
|
|
1882
1830
|
originalFileName?: string | null | undefined;
|
|
1883
|
-
mimeType?: string | null | undefined;
|
|
1884
1831
|
size?: number | null | undefined;
|
|
1885
|
-
legacyKey?: string | null | undefined;
|
|
1886
|
-
bucketName?: string | null | undefined;
|
|
1887
|
-
encryptionKey?: string | null | undefined;
|
|
1888
1832
|
createdBy?: string | null | undefined;
|
|
1889
1833
|
}>, "many">;
|
|
1890
1834
|
count: zod.ZodNumber;
|
|
1891
1835
|
pages: zod.ZodNumber;
|
|
1892
1836
|
}, "strict", zod.ZodTypeAny, {
|
|
1893
1837
|
files: {
|
|
1894
|
-
path: string;
|
|
1895
|
-
workspaceId: string;
|
|
1896
1838
|
id: string;
|
|
1897
1839
|
createdAt: string;
|
|
1898
|
-
deletedAt?: string | null | undefined;
|
|
1899
1840
|
originalFileName?: string | null | undefined;
|
|
1900
|
-
mimeType?: string | null | undefined;
|
|
1901
1841
|
size?: number | null | undefined;
|
|
1902
|
-
legacyKey?: string | null | undefined;
|
|
1903
|
-
bucketName?: string | null | undefined;
|
|
1904
|
-
encryptionKey?: string | null | undefined;
|
|
1905
1842
|
createdBy?: string | null | undefined;
|
|
1906
1843
|
}[];
|
|
1907
1844
|
count: number;
|
|
1908
1845
|
pages: number;
|
|
1909
1846
|
}, {
|
|
1910
1847
|
files: {
|
|
1911
|
-
path: string;
|
|
1912
|
-
workspaceId: string;
|
|
1913
1848
|
id: string;
|
|
1914
1849
|
createdAt: string;
|
|
1915
|
-
deletedAt?: string | null | undefined;
|
|
1916
1850
|
originalFileName?: string | null | undefined;
|
|
1917
|
-
mimeType?: string | null | undefined;
|
|
1918
1851
|
size?: number | null | undefined;
|
|
1919
|
-
legacyKey?: string | null | undefined;
|
|
1920
|
-
bucketName?: string | null | undefined;
|
|
1921
|
-
encryptionKey?: string | null | undefined;
|
|
1922
1852
|
createdBy?: string | null | undefined;
|
|
1923
1853
|
}[];
|
|
1924
1854
|
count: number;
|
|
@@ -1940,16 +1870,16 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
1940
1870
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
1941
1871
|
}, "strict", zod.ZodTypeAny, {
|
|
1942
1872
|
fileName: string;
|
|
1943
|
-
mimeType?: string | undefined;
|
|
1944
1873
|
size?: number | undefined;
|
|
1945
1874
|
createdBy?: string | undefined;
|
|
1946
1875
|
sha256sum?: string | undefined;
|
|
1876
|
+
mimeType?: string | undefined;
|
|
1947
1877
|
}, {
|
|
1948
1878
|
fileName: string;
|
|
1949
|
-
mimeType?: string | undefined;
|
|
1950
1879
|
size?: number | undefined;
|
|
1951
1880
|
createdBy?: string | undefined;
|
|
1952
1881
|
sha256sum?: string | undefined;
|
|
1882
|
+
mimeType?: string | undefined;
|
|
1953
1883
|
}>;
|
|
1954
1884
|
}, {
|
|
1955
1885
|
name: "expiresIn";
|
|
@@ -1984,12 +1914,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
1984
1914
|
createdAt: string;
|
|
1985
1915
|
deletedAt?: string | null | undefined;
|
|
1986
1916
|
originalFileName?: string | null | undefined;
|
|
1987
|
-
mimeType?: string | null | undefined;
|
|
1988
1917
|
size?: number | null | undefined;
|
|
1918
|
+
createdBy?: string | null | undefined;
|
|
1919
|
+
mimeType?: string | null | undefined;
|
|
1989
1920
|
legacyKey?: string | null | undefined;
|
|
1990
1921
|
bucketName?: string | null | undefined;
|
|
1991
1922
|
encryptionKey?: string | null | undefined;
|
|
1992
|
-
createdBy?: string | null | undefined;
|
|
1993
1923
|
}, {
|
|
1994
1924
|
path: string;
|
|
1995
1925
|
workspaceId: string;
|
|
@@ -1997,12 +1927,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
1997
1927
|
createdAt: string;
|
|
1998
1928
|
deletedAt?: string | null | undefined;
|
|
1999
1929
|
originalFileName?: string | null | undefined;
|
|
2000
|
-
mimeType?: string | null | undefined;
|
|
2001
1930
|
size?: number | null | undefined;
|
|
1931
|
+
createdBy?: string | null | undefined;
|
|
1932
|
+
mimeType?: string | null | undefined;
|
|
2002
1933
|
legacyKey?: string | null | undefined;
|
|
2003
1934
|
bucketName?: string | null | undefined;
|
|
2004
1935
|
encryptionKey?: string | null | undefined;
|
|
2005
|
-
createdBy?: string | null | undefined;
|
|
2006
1936
|
}>;
|
|
2007
1937
|
}, "strict", zod.ZodTypeAny, {
|
|
2008
1938
|
id: string;
|
|
@@ -2015,12 +1945,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2015
1945
|
createdAt: string;
|
|
2016
1946
|
deletedAt?: string | null | undefined;
|
|
2017
1947
|
originalFileName?: string | null | undefined;
|
|
2018
|
-
mimeType?: string | null | undefined;
|
|
2019
1948
|
size?: number | null | undefined;
|
|
1949
|
+
createdBy?: string | null | undefined;
|
|
1950
|
+
mimeType?: string | null | undefined;
|
|
2020
1951
|
legacyKey?: string | null | undefined;
|
|
2021
1952
|
bucketName?: string | null | undefined;
|
|
2022
1953
|
encryptionKey?: string | null | undefined;
|
|
2023
|
-
createdBy?: string | null | undefined;
|
|
2024
1954
|
};
|
|
2025
1955
|
}, {
|
|
2026
1956
|
id: string;
|
|
@@ -2033,12 +1963,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2033
1963
|
createdAt: string;
|
|
2034
1964
|
deletedAt?: string | null | undefined;
|
|
2035
1965
|
originalFileName?: string | null | undefined;
|
|
2036
|
-
mimeType?: string | null | undefined;
|
|
2037
1966
|
size?: number | null | undefined;
|
|
1967
|
+
createdBy?: string | null | undefined;
|
|
1968
|
+
mimeType?: string | null | undefined;
|
|
2038
1969
|
legacyKey?: string | null | undefined;
|
|
2039
1970
|
bucketName?: string | null | undefined;
|
|
2040
1971
|
encryptionKey?: string | null | undefined;
|
|
2041
|
-
createdBy?: string | null | undefined;
|
|
2042
1972
|
};
|
|
2043
1973
|
}>, zod.ZodObject<{
|
|
2044
1974
|
url: zod.ZodString;
|
|
@@ -2091,12 +2021,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2091
2021
|
createdAt: string;
|
|
2092
2022
|
deletedAt?: string | null | undefined;
|
|
2093
2023
|
originalFileName?: string | null | undefined;
|
|
2094
|
-
mimeType?: string | null | undefined;
|
|
2095
2024
|
size?: number | null | undefined;
|
|
2025
|
+
createdBy?: string | null | undefined;
|
|
2026
|
+
mimeType?: string | null | undefined;
|
|
2096
2027
|
legacyKey?: string | null | undefined;
|
|
2097
2028
|
bucketName?: string | null | undefined;
|
|
2098
2029
|
encryptionKey?: string | null | undefined;
|
|
2099
|
-
createdBy?: string | null | undefined;
|
|
2100
2030
|
}, {
|
|
2101
2031
|
path: string;
|
|
2102
2032
|
workspaceId: string;
|
|
@@ -2104,12 +2034,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2104
2034
|
createdAt: string;
|
|
2105
2035
|
deletedAt?: string | null | undefined;
|
|
2106
2036
|
originalFileName?: string | null | undefined;
|
|
2107
|
-
mimeType?: string | null | undefined;
|
|
2108
2037
|
size?: number | null | undefined;
|
|
2038
|
+
createdBy?: string | null | undefined;
|
|
2039
|
+
mimeType?: string | null | undefined;
|
|
2109
2040
|
legacyKey?: string | null | undefined;
|
|
2110
2041
|
bucketName?: string | null | undefined;
|
|
2111
2042
|
encryptionKey?: string | null | undefined;
|
|
2112
|
-
createdBy?: string | null | undefined;
|
|
2113
2043
|
}>, zod.ZodNull]>;
|
|
2114
2044
|
}, "strict", zod.ZodTypeAny, {
|
|
2115
2045
|
expiresAt: string;
|
|
@@ -2120,12 +2050,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2120
2050
|
createdAt: string;
|
|
2121
2051
|
deletedAt?: string | null | undefined;
|
|
2122
2052
|
originalFileName?: string | null | undefined;
|
|
2123
|
-
mimeType?: string | null | undefined;
|
|
2124
2053
|
size?: number | null | undefined;
|
|
2054
|
+
createdBy?: string | null | undefined;
|
|
2055
|
+
mimeType?: string | null | undefined;
|
|
2125
2056
|
legacyKey?: string | null | undefined;
|
|
2126
2057
|
bucketName?: string | null | undefined;
|
|
2127
2058
|
encryptionKey?: string | null | undefined;
|
|
2128
|
-
createdBy?: string | null | undefined;
|
|
2129
2059
|
} | null;
|
|
2130
2060
|
url: string;
|
|
2131
2061
|
}, {
|
|
@@ -2137,12 +2067,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2137
2067
|
createdAt: string;
|
|
2138
2068
|
deletedAt?: string | null | undefined;
|
|
2139
2069
|
originalFileName?: string | null | undefined;
|
|
2140
|
-
mimeType?: string | null | undefined;
|
|
2141
2070
|
size?: number | null | undefined;
|
|
2071
|
+
createdBy?: string | null | undefined;
|
|
2072
|
+
mimeType?: string | null | undefined;
|
|
2142
2073
|
legacyKey?: string | null | undefined;
|
|
2143
2074
|
bucketName?: string | null | undefined;
|
|
2144
2075
|
encryptionKey?: string | null | undefined;
|
|
2145
|
-
createdBy?: string | null | undefined;
|
|
2146
2076
|
} | null;
|
|
2147
2077
|
url: string;
|
|
2148
2078
|
}>;
|
|
@@ -2193,12 +2123,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2193
2123
|
createdAt: string;
|
|
2194
2124
|
deletedAt?: string | null | undefined;
|
|
2195
2125
|
originalFileName?: string | null | undefined;
|
|
2196
|
-
mimeType?: string | null | undefined;
|
|
2197
2126
|
size?: number | null | undefined;
|
|
2127
|
+
createdBy?: string | null | undefined;
|
|
2128
|
+
mimeType?: string | null | undefined;
|
|
2198
2129
|
legacyKey?: string | null | undefined;
|
|
2199
2130
|
bucketName?: string | null | undefined;
|
|
2200
2131
|
encryptionKey?: string | null | undefined;
|
|
2201
|
-
createdBy?: string | null | undefined;
|
|
2202
2132
|
}, {
|
|
2203
2133
|
path: string;
|
|
2204
2134
|
workspaceId: string;
|
|
@@ -2206,12 +2136,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2206
2136
|
createdAt: string;
|
|
2207
2137
|
deletedAt?: string | null | undefined;
|
|
2208
2138
|
originalFileName?: string | null | undefined;
|
|
2209
|
-
mimeType?: string | null | undefined;
|
|
2210
2139
|
size?: number | null | undefined;
|
|
2140
|
+
createdBy?: string | null | undefined;
|
|
2141
|
+
mimeType?: string | null | undefined;
|
|
2211
2142
|
legacyKey?: string | null | undefined;
|
|
2212
2143
|
bucketName?: string | null | undefined;
|
|
2213
2144
|
encryptionKey?: string | null | undefined;
|
|
2214
|
-
createdBy?: string | null | undefined;
|
|
2215
2145
|
}>;
|
|
2216
2146
|
}, "strict", zod.ZodTypeAny, {
|
|
2217
2147
|
id: string;
|
|
@@ -2224,12 +2154,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2224
2154
|
createdAt: string;
|
|
2225
2155
|
deletedAt?: string | null | undefined;
|
|
2226
2156
|
originalFileName?: string | null | undefined;
|
|
2227
|
-
mimeType?: string | null | undefined;
|
|
2228
2157
|
size?: number | null | undefined;
|
|
2158
|
+
createdBy?: string | null | undefined;
|
|
2159
|
+
mimeType?: string | null | undefined;
|
|
2229
2160
|
legacyKey?: string | null | undefined;
|
|
2230
2161
|
bucketName?: string | null | undefined;
|
|
2231
2162
|
encryptionKey?: string | null | undefined;
|
|
2232
|
-
createdBy?: string | null | undefined;
|
|
2233
2163
|
};
|
|
2234
2164
|
}, {
|
|
2235
2165
|
id: string;
|
|
@@ -2242,12 +2172,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2242
2172
|
createdAt: string;
|
|
2243
2173
|
deletedAt?: string | null | undefined;
|
|
2244
2174
|
originalFileName?: string | null | undefined;
|
|
2245
|
-
mimeType?: string | null | undefined;
|
|
2246
2175
|
size?: number | null | undefined;
|
|
2176
|
+
createdBy?: string | null | undefined;
|
|
2177
|
+
mimeType?: string | null | undefined;
|
|
2247
2178
|
legacyKey?: string | null | undefined;
|
|
2248
2179
|
bucketName?: string | null | undefined;
|
|
2249
2180
|
encryptionKey?: string | null | undefined;
|
|
2250
|
-
createdBy?: string | null | undefined;
|
|
2251
2181
|
};
|
|
2252
2182
|
}>, zod.ZodObject<{
|
|
2253
2183
|
url: zod.ZodString;
|
|
@@ -2308,12 +2238,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2308
2238
|
createdAt: string;
|
|
2309
2239
|
deletedAt?: string | null | undefined;
|
|
2310
2240
|
originalFileName?: string | null | undefined;
|
|
2311
|
-
mimeType?: string | null | undefined;
|
|
2312
2241
|
size?: number | null | undefined;
|
|
2242
|
+
createdBy?: string | null | undefined;
|
|
2243
|
+
mimeType?: string | null | undefined;
|
|
2313
2244
|
legacyKey?: string | null | undefined;
|
|
2314
2245
|
bucketName?: string | null | undefined;
|
|
2315
2246
|
encryptionKey?: string | null | undefined;
|
|
2316
|
-
createdBy?: string | null | undefined;
|
|
2317
2247
|
}, {
|
|
2318
2248
|
path: string;
|
|
2319
2249
|
workspaceId: string;
|
|
@@ -2321,12 +2251,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2321
2251
|
createdAt: string;
|
|
2322
2252
|
deletedAt?: string | null | undefined;
|
|
2323
2253
|
originalFileName?: string | null | undefined;
|
|
2324
|
-
mimeType?: string | null | undefined;
|
|
2325
2254
|
size?: number | null | undefined;
|
|
2255
|
+
createdBy?: string | null | undefined;
|
|
2256
|
+
mimeType?: string | null | undefined;
|
|
2326
2257
|
legacyKey?: string | null | undefined;
|
|
2327
2258
|
bucketName?: string | null | undefined;
|
|
2328
2259
|
encryptionKey?: string | null | undefined;
|
|
2329
|
-
createdBy?: string | null | undefined;
|
|
2330
2260
|
}>;
|
|
2331
2261
|
errors: [{
|
|
2332
2262
|
status: 404;
|
|
@@ -2442,12 +2372,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2442
2372
|
createdAt: string;
|
|
2443
2373
|
deletedAt?: string | null | undefined;
|
|
2444
2374
|
originalFileName?: string | null | undefined;
|
|
2445
|
-
mimeType?: string | null | undefined;
|
|
2446
2375
|
size?: number | null | undefined;
|
|
2376
|
+
createdBy?: string | null | undefined;
|
|
2377
|
+
mimeType?: string | null | undefined;
|
|
2447
2378
|
legacyKey?: string | null | undefined;
|
|
2448
2379
|
bucketName?: string | null | undefined;
|
|
2449
2380
|
encryptionKey?: string | null | undefined;
|
|
2450
|
-
createdBy?: string | null | undefined;
|
|
2451
2381
|
}, {
|
|
2452
2382
|
path: string;
|
|
2453
2383
|
workspaceId: string;
|
|
@@ -2455,12 +2385,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2455
2385
|
createdAt: string;
|
|
2456
2386
|
deletedAt?: string | null | undefined;
|
|
2457
2387
|
originalFileName?: string | null | undefined;
|
|
2458
|
-
mimeType?: string | null | undefined;
|
|
2459
2388
|
size?: number | null | undefined;
|
|
2389
|
+
createdBy?: string | null | undefined;
|
|
2390
|
+
mimeType?: string | null | undefined;
|
|
2460
2391
|
legacyKey?: string | null | undefined;
|
|
2461
2392
|
bucketName?: string | null | undefined;
|
|
2462
2393
|
encryptionKey?: string | null | undefined;
|
|
2463
|
-
createdBy?: string | null | undefined;
|
|
2464
2394
|
}>, zod.ZodNull]>;
|
|
2465
2395
|
}, "strict", zod.ZodTypeAny, {
|
|
2466
2396
|
expiresAt: string;
|
|
@@ -2471,12 +2401,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2471
2401
|
createdAt: string;
|
|
2472
2402
|
deletedAt?: string | null | undefined;
|
|
2473
2403
|
originalFileName?: string | null | undefined;
|
|
2474
|
-
mimeType?: string | null | undefined;
|
|
2475
2404
|
size?: number | null | undefined;
|
|
2405
|
+
createdBy?: string | null | undefined;
|
|
2406
|
+
mimeType?: string | null | undefined;
|
|
2476
2407
|
legacyKey?: string | null | undefined;
|
|
2477
2408
|
bucketName?: string | null | undefined;
|
|
2478
2409
|
encryptionKey?: string | null | undefined;
|
|
2479
|
-
createdBy?: string | null | undefined;
|
|
2480
2410
|
} | null;
|
|
2481
2411
|
url: string;
|
|
2482
2412
|
}, {
|
|
@@ -2488,12 +2418,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2488
2418
|
createdAt: string;
|
|
2489
2419
|
deletedAt?: string | null | undefined;
|
|
2490
2420
|
originalFileName?: string | null | undefined;
|
|
2491
|
-
mimeType?: string | null | undefined;
|
|
2492
2421
|
size?: number | null | undefined;
|
|
2422
|
+
createdBy?: string | null | undefined;
|
|
2423
|
+
mimeType?: string | null | undefined;
|
|
2493
2424
|
legacyKey?: string | null | undefined;
|
|
2494
2425
|
bucketName?: string | null | undefined;
|
|
2495
2426
|
encryptionKey?: string | null | undefined;
|
|
2496
|
-
createdBy?: string | null | undefined;
|
|
2497
2427
|
} | null;
|
|
2498
2428
|
url: string;
|
|
2499
2429
|
}>;
|
|
@@ -2591,17 +2521,17 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2591
2521
|
mimeType: zod.ZodOptional<zod.ZodString>;
|
|
2592
2522
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
2593
2523
|
}, "strict", zod.ZodTypeAny, {
|
|
2594
|
-
mimeType?: string | undefined;
|
|
2595
2524
|
size?: number | undefined;
|
|
2596
2525
|
createdBy?: string | undefined;
|
|
2597
2526
|
fileName?: string | undefined;
|
|
2598
2527
|
sha256sum?: string | undefined;
|
|
2599
|
-
}, {
|
|
2600
2528
|
mimeType?: string | undefined;
|
|
2529
|
+
}, {
|
|
2601
2530
|
size?: number | undefined;
|
|
2602
2531
|
createdBy?: string | undefined;
|
|
2603
2532
|
fileName?: string | undefined;
|
|
2604
2533
|
sha256sum?: string | undefined;
|
|
2534
|
+
mimeType?: string | undefined;
|
|
2605
2535
|
}>;
|
|
2606
2536
|
}, {
|
|
2607
2537
|
name: "expiresIn";
|
|
@@ -2636,12 +2566,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2636
2566
|
createdAt: string;
|
|
2637
2567
|
deletedAt?: string | null | undefined;
|
|
2638
2568
|
originalFileName?: string | null | undefined;
|
|
2639
|
-
mimeType?: string | null | undefined;
|
|
2640
2569
|
size?: number | null | undefined;
|
|
2570
|
+
createdBy?: string | null | undefined;
|
|
2571
|
+
mimeType?: string | null | undefined;
|
|
2641
2572
|
legacyKey?: string | null | undefined;
|
|
2642
2573
|
bucketName?: string | null | undefined;
|
|
2643
2574
|
encryptionKey?: string | null | undefined;
|
|
2644
|
-
createdBy?: string | null | undefined;
|
|
2645
2575
|
}, {
|
|
2646
2576
|
path: string;
|
|
2647
2577
|
workspaceId: string;
|
|
@@ -2649,12 +2579,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2649
2579
|
createdAt: string;
|
|
2650
2580
|
deletedAt?: string | null | undefined;
|
|
2651
2581
|
originalFileName?: string | null | undefined;
|
|
2652
|
-
mimeType?: string | null | undefined;
|
|
2653
2582
|
size?: number | null | undefined;
|
|
2583
|
+
createdBy?: string | null | undefined;
|
|
2584
|
+
mimeType?: string | null | undefined;
|
|
2654
2585
|
legacyKey?: string | null | undefined;
|
|
2655
2586
|
bucketName?: string | null | undefined;
|
|
2656
2587
|
encryptionKey?: string | null | undefined;
|
|
2657
|
-
createdBy?: string | null | undefined;
|
|
2658
2588
|
}>;
|
|
2659
2589
|
}, "strict", zod.ZodTypeAny, {
|
|
2660
2590
|
id: string;
|
|
@@ -2667,12 +2597,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2667
2597
|
createdAt: string;
|
|
2668
2598
|
deletedAt?: string | null | undefined;
|
|
2669
2599
|
originalFileName?: string | null | undefined;
|
|
2670
|
-
mimeType?: string | null | undefined;
|
|
2671
2600
|
size?: number | null | undefined;
|
|
2601
|
+
createdBy?: string | null | undefined;
|
|
2602
|
+
mimeType?: string | null | undefined;
|
|
2672
2603
|
legacyKey?: string | null | undefined;
|
|
2673
2604
|
bucketName?: string | null | undefined;
|
|
2674
2605
|
encryptionKey?: string | null | undefined;
|
|
2675
|
-
createdBy?: string | null | undefined;
|
|
2676
2606
|
};
|
|
2677
2607
|
}, {
|
|
2678
2608
|
id: string;
|
|
@@ -2685,12 +2615,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2685
2615
|
createdAt: string;
|
|
2686
2616
|
deletedAt?: string | null | undefined;
|
|
2687
2617
|
originalFileName?: string | null | undefined;
|
|
2688
|
-
mimeType?: string | null | undefined;
|
|
2689
2618
|
size?: number | null | undefined;
|
|
2619
|
+
createdBy?: string | null | undefined;
|
|
2620
|
+
mimeType?: string | null | undefined;
|
|
2690
2621
|
legacyKey?: string | null | undefined;
|
|
2691
2622
|
bucketName?: string | null | undefined;
|
|
2692
2623
|
encryptionKey?: string | null | undefined;
|
|
2693
|
-
createdBy?: string | null | undefined;
|
|
2694
2624
|
};
|
|
2695
2625
|
}>, zod.ZodObject<{
|
|
2696
2626
|
url: zod.ZodString;
|
|
@@ -2740,12 +2670,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2740
2670
|
createdAt: string;
|
|
2741
2671
|
deletedAt?: string | null | undefined;
|
|
2742
2672
|
originalFileName?: string | null | undefined;
|
|
2743
|
-
mimeType?: string | null | undefined;
|
|
2744
2673
|
size?: number | null | undefined;
|
|
2674
|
+
createdBy?: string | null | undefined;
|
|
2675
|
+
mimeType?: string | null | undefined;
|
|
2745
2676
|
legacyKey?: string | null | undefined;
|
|
2746
2677
|
bucketName?: string | null | undefined;
|
|
2747
2678
|
encryptionKey?: string | null | undefined;
|
|
2748
|
-
createdBy?: string | null | undefined;
|
|
2749
2679
|
}, {
|
|
2750
2680
|
path: string;
|
|
2751
2681
|
workspaceId: string;
|
|
@@ -2753,12 +2683,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2753
2683
|
createdAt: string;
|
|
2754
2684
|
deletedAt?: string | null | undefined;
|
|
2755
2685
|
originalFileName?: string | null | undefined;
|
|
2756
|
-
mimeType?: string | null | undefined;
|
|
2757
2686
|
size?: number | null | undefined;
|
|
2687
|
+
createdBy?: string | null | undefined;
|
|
2688
|
+
mimeType?: string | null | undefined;
|
|
2758
2689
|
legacyKey?: string | null | undefined;
|
|
2759
2690
|
bucketName?: string | null | undefined;
|
|
2760
2691
|
encryptionKey?: string | null | undefined;
|
|
2761
|
-
createdBy?: string | null | undefined;
|
|
2762
2692
|
}>;
|
|
2763
2693
|
}, "strict", zod.ZodTypeAny, {
|
|
2764
2694
|
id: string;
|
|
@@ -2771,12 +2701,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2771
2701
|
createdAt: string;
|
|
2772
2702
|
deletedAt?: string | null | undefined;
|
|
2773
2703
|
originalFileName?: string | null | undefined;
|
|
2774
|
-
mimeType?: string | null | undefined;
|
|
2775
2704
|
size?: number | null | undefined;
|
|
2705
|
+
createdBy?: string | null | undefined;
|
|
2706
|
+
mimeType?: string | null | undefined;
|
|
2776
2707
|
legacyKey?: string | null | undefined;
|
|
2777
2708
|
bucketName?: string | null | undefined;
|
|
2778
2709
|
encryptionKey?: string | null | undefined;
|
|
2779
|
-
createdBy?: string | null | undefined;
|
|
2780
2710
|
};
|
|
2781
2711
|
}, {
|
|
2782
2712
|
id: string;
|
|
@@ -2789,12 +2719,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2789
2719
|
createdAt: string;
|
|
2790
2720
|
deletedAt?: string | null | undefined;
|
|
2791
2721
|
originalFileName?: string | null | undefined;
|
|
2792
|
-
mimeType?: string | null | undefined;
|
|
2793
2722
|
size?: number | null | undefined;
|
|
2723
|
+
createdBy?: string | null | undefined;
|
|
2724
|
+
mimeType?: string | null | undefined;
|
|
2794
2725
|
legacyKey?: string | null | undefined;
|
|
2795
2726
|
bucketName?: string | null | undefined;
|
|
2796
2727
|
encryptionKey?: string | null | undefined;
|
|
2797
|
-
createdBy?: string | null | undefined;
|
|
2798
2728
|
};
|
|
2799
2729
|
}>, zod.ZodObject<{
|
|
2800
2730
|
url: zod.ZodString;
|
|
@@ -2847,12 +2777,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2847
2777
|
createdAt: string;
|
|
2848
2778
|
deletedAt?: string | null | undefined;
|
|
2849
2779
|
originalFileName?: string | null | undefined;
|
|
2850
|
-
mimeType?: string | null | undefined;
|
|
2851
2780
|
size?: number | null | undefined;
|
|
2781
|
+
createdBy?: string | null | undefined;
|
|
2782
|
+
mimeType?: string | null | undefined;
|
|
2852
2783
|
legacyKey?: string | null | undefined;
|
|
2853
2784
|
bucketName?: string | null | undefined;
|
|
2854
2785
|
encryptionKey?: string | null | undefined;
|
|
2855
|
-
createdBy?: string | null | undefined;
|
|
2856
2786
|
}, {
|
|
2857
2787
|
path: string;
|
|
2858
2788
|
workspaceId: string;
|
|
@@ -2860,12 +2790,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2860
2790
|
createdAt: string;
|
|
2861
2791
|
deletedAt?: string | null | undefined;
|
|
2862
2792
|
originalFileName?: string | null | undefined;
|
|
2863
|
-
mimeType?: string | null | undefined;
|
|
2864
2793
|
size?: number | null | undefined;
|
|
2794
|
+
createdBy?: string | null | undefined;
|
|
2795
|
+
mimeType?: string | null | undefined;
|
|
2865
2796
|
legacyKey?: string | null | undefined;
|
|
2866
2797
|
bucketName?: string | null | undefined;
|
|
2867
2798
|
encryptionKey?: string | null | undefined;
|
|
2868
|
-
createdBy?: string | null | undefined;
|
|
2869
2799
|
}>;
|
|
2870
2800
|
errors: [{
|
|
2871
2801
|
status: 404;
|
|
@@ -2888,16 +2818,16 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2888
2818
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
2889
2819
|
}, "strict", zod.ZodTypeAny, {
|
|
2890
2820
|
fileName: string;
|
|
2891
|
-
mimeType?: string | undefined;
|
|
2892
2821
|
size?: number | undefined;
|
|
2893
2822
|
createdBy?: string | undefined;
|
|
2894
2823
|
sha256sum?: string | undefined;
|
|
2824
|
+
mimeType?: string | undefined;
|
|
2895
2825
|
}, {
|
|
2896
2826
|
fileName: string;
|
|
2897
|
-
mimeType?: string | undefined;
|
|
2898
2827
|
size?: number | undefined;
|
|
2899
2828
|
createdBy?: string | undefined;
|
|
2900
2829
|
sha256sum?: string | undefined;
|
|
2830
|
+
mimeType?: string | undefined;
|
|
2901
2831
|
}>, "many">, zod.ZodObject<{
|
|
2902
2832
|
files: zod.ZodArray<zod.ZodString, "many">;
|
|
2903
2833
|
}, "strict", zod.ZodTypeAny, {
|
|
@@ -2926,12 +2856,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2926
2856
|
createdAt: string;
|
|
2927
2857
|
deletedAt?: string | null | undefined;
|
|
2928
2858
|
originalFileName?: string | null | undefined;
|
|
2929
|
-
mimeType?: string | null | undefined;
|
|
2930
2859
|
size?: number | null | undefined;
|
|
2860
|
+
createdBy?: string | null | undefined;
|
|
2861
|
+
mimeType?: string | null | undefined;
|
|
2931
2862
|
legacyKey?: string | null | undefined;
|
|
2932
2863
|
bucketName?: string | null | undefined;
|
|
2933
2864
|
encryptionKey?: string | null | undefined;
|
|
2934
|
-
createdBy?: string | null | undefined;
|
|
2935
2865
|
}, {
|
|
2936
2866
|
path: string;
|
|
2937
2867
|
workspaceId: string;
|
|
@@ -2939,12 +2869,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2939
2869
|
createdAt: string;
|
|
2940
2870
|
deletedAt?: string | null | undefined;
|
|
2941
2871
|
originalFileName?: string | null | undefined;
|
|
2942
|
-
mimeType?: string | null | undefined;
|
|
2943
2872
|
size?: number | null | undefined;
|
|
2873
|
+
createdBy?: string | null | undefined;
|
|
2874
|
+
mimeType?: string | null | undefined;
|
|
2944
2875
|
legacyKey?: string | null | undefined;
|
|
2945
2876
|
bucketName?: string | null | undefined;
|
|
2946
2877
|
encryptionKey?: string | null | undefined;
|
|
2947
|
-
createdBy?: string | null | undefined;
|
|
2948
2878
|
}>, "many">, zod.ZodObject<{
|
|
2949
2879
|
files: zod.ZodArray<zod.ZodObject<{
|
|
2950
2880
|
id: zod.ZodString;
|
|
@@ -2966,12 +2896,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2966
2896
|
createdAt: string;
|
|
2967
2897
|
deletedAt?: string | null | undefined;
|
|
2968
2898
|
originalFileName?: string | null | undefined;
|
|
2969
|
-
mimeType?: string | null | undefined;
|
|
2970
2899
|
size?: number | null | undefined;
|
|
2900
|
+
createdBy?: string | null | undefined;
|
|
2901
|
+
mimeType?: string | null | undefined;
|
|
2971
2902
|
legacyKey?: string | null | undefined;
|
|
2972
2903
|
bucketName?: string | null | undefined;
|
|
2973
2904
|
encryptionKey?: string | null | undefined;
|
|
2974
|
-
createdBy?: string | null | undefined;
|
|
2975
2905
|
}, {
|
|
2976
2906
|
path: string;
|
|
2977
2907
|
workspaceId: string;
|
|
@@ -2979,12 +2909,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2979
2909
|
createdAt: string;
|
|
2980
2910
|
deletedAt?: string | null | undefined;
|
|
2981
2911
|
originalFileName?: string | null | undefined;
|
|
2982
|
-
mimeType?: string | null | undefined;
|
|
2983
2912
|
size?: number | null | undefined;
|
|
2913
|
+
createdBy?: string | null | undefined;
|
|
2914
|
+
mimeType?: string | null | undefined;
|
|
2984
2915
|
legacyKey?: string | null | undefined;
|
|
2985
2916
|
bucketName?: string | null | undefined;
|
|
2986
2917
|
encryptionKey?: string | null | undefined;
|
|
2987
|
-
createdBy?: string | null | undefined;
|
|
2988
2918
|
}>, "many">;
|
|
2989
2919
|
}, "strict", zod.ZodTypeAny, {
|
|
2990
2920
|
files: {
|
|
@@ -2994,12 +2924,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
2994
2924
|
createdAt: string;
|
|
2995
2925
|
deletedAt?: string | null | undefined;
|
|
2996
2926
|
originalFileName?: string | null | undefined;
|
|
2997
|
-
mimeType?: string | null | undefined;
|
|
2998
2927
|
size?: number | null | undefined;
|
|
2928
|
+
createdBy?: string | null | undefined;
|
|
2929
|
+
mimeType?: string | null | undefined;
|
|
2999
2930
|
legacyKey?: string | null | undefined;
|
|
3000
2931
|
bucketName?: string | null | undefined;
|
|
3001
2932
|
encryptionKey?: string | null | undefined;
|
|
3002
|
-
createdBy?: string | null | undefined;
|
|
3003
2933
|
}[];
|
|
3004
2934
|
}, {
|
|
3005
2935
|
files: {
|
|
@@ -3009,12 +2939,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3009
2939
|
createdAt: string;
|
|
3010
2940
|
deletedAt?: string | null | undefined;
|
|
3011
2941
|
originalFileName?: string | null | undefined;
|
|
3012
|
-
mimeType?: string | null | undefined;
|
|
3013
2942
|
size?: number | null | undefined;
|
|
2943
|
+
createdBy?: string | null | undefined;
|
|
2944
|
+
mimeType?: string | null | undefined;
|
|
3014
2945
|
legacyKey?: string | null | undefined;
|
|
3015
2946
|
bucketName?: string | null | undefined;
|
|
3016
2947
|
encryptionKey?: string | null | undefined;
|
|
3017
|
-
createdBy?: string | null | undefined;
|
|
3018
2948
|
}[];
|
|
3019
2949
|
}>]>;
|
|
3020
2950
|
}, {
|
|
@@ -3118,12 +3048,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3118
3048
|
createdAt: string;
|
|
3119
3049
|
deletedAt?: string | null | undefined;
|
|
3120
3050
|
originalFileName?: string | null | undefined;
|
|
3121
|
-
mimeType?: string | null | undefined;
|
|
3122
3051
|
size?: number | null | undefined;
|
|
3052
|
+
createdBy?: string | null | undefined;
|
|
3053
|
+
mimeType?: string | null | undefined;
|
|
3123
3054
|
legacyKey?: string | null | undefined;
|
|
3124
3055
|
bucketName?: string | null | undefined;
|
|
3125
3056
|
encryptionKey?: string | null | undefined;
|
|
3126
|
-
createdBy?: string | null | undefined;
|
|
3127
3057
|
}, {
|
|
3128
3058
|
path: string;
|
|
3129
3059
|
workspaceId: string;
|
|
@@ -3131,12 +3061,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3131
3061
|
createdAt: string;
|
|
3132
3062
|
deletedAt?: string | null | undefined;
|
|
3133
3063
|
originalFileName?: string | null | undefined;
|
|
3134
|
-
mimeType?: string | null | undefined;
|
|
3135
3064
|
size?: number | null | undefined;
|
|
3065
|
+
createdBy?: string | null | undefined;
|
|
3066
|
+
mimeType?: string | null | undefined;
|
|
3136
3067
|
legacyKey?: string | null | undefined;
|
|
3137
3068
|
bucketName?: string | null | undefined;
|
|
3138
3069
|
encryptionKey?: string | null | undefined;
|
|
3139
|
-
createdBy?: string | null | undefined;
|
|
3140
3070
|
}>, zod.ZodNull]>;
|
|
3141
3071
|
}, "strict", zod.ZodTypeAny, {
|
|
3142
3072
|
expiresAt: string;
|
|
@@ -3147,12 +3077,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3147
3077
|
createdAt: string;
|
|
3148
3078
|
deletedAt?: string | null | undefined;
|
|
3149
3079
|
originalFileName?: string | null | undefined;
|
|
3150
|
-
mimeType?: string | null | undefined;
|
|
3151
3080
|
size?: number | null | undefined;
|
|
3081
|
+
createdBy?: string | null | undefined;
|
|
3082
|
+
mimeType?: string | null | undefined;
|
|
3152
3083
|
legacyKey?: string | null | undefined;
|
|
3153
3084
|
bucketName?: string | null | undefined;
|
|
3154
3085
|
encryptionKey?: string | null | undefined;
|
|
3155
|
-
createdBy?: string | null | undefined;
|
|
3156
3086
|
} | null;
|
|
3157
3087
|
url: string;
|
|
3158
3088
|
}, {
|
|
@@ -3164,12 +3094,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3164
3094
|
createdAt: string;
|
|
3165
3095
|
deletedAt?: string | null | undefined;
|
|
3166
3096
|
originalFileName?: string | null | undefined;
|
|
3167
|
-
mimeType?: string | null | undefined;
|
|
3168
3097
|
size?: number | null | undefined;
|
|
3098
|
+
createdBy?: string | null | undefined;
|
|
3099
|
+
mimeType?: string | null | undefined;
|
|
3169
3100
|
legacyKey?: string | null | undefined;
|
|
3170
3101
|
bucketName?: string | null | undefined;
|
|
3171
3102
|
encryptionKey?: string | null | undefined;
|
|
3172
|
-
createdBy?: string | null | undefined;
|
|
3173
3103
|
} | null;
|
|
3174
3104
|
url: string;
|
|
3175
3105
|
}>;
|
|
@@ -3193,17 +3123,17 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3193
3123
|
mimeType: zod.ZodOptional<zod.ZodString>;
|
|
3194
3124
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
3195
3125
|
}, "strict", zod.ZodTypeAny, {
|
|
3196
|
-
mimeType?: string | undefined;
|
|
3197
3126
|
size?: number | undefined;
|
|
3198
3127
|
createdBy?: string | undefined;
|
|
3199
3128
|
fileName?: string | undefined;
|
|
3200
3129
|
sha256sum?: string | undefined;
|
|
3201
|
-
}, {
|
|
3202
3130
|
mimeType?: string | undefined;
|
|
3131
|
+
}, {
|
|
3203
3132
|
size?: number | undefined;
|
|
3204
3133
|
createdBy?: string | undefined;
|
|
3205
3134
|
fileName?: string | undefined;
|
|
3206
3135
|
sha256sum?: string | undefined;
|
|
3136
|
+
mimeType?: string | undefined;
|
|
3207
3137
|
}>;
|
|
3208
3138
|
}, {
|
|
3209
3139
|
name: "expiresIn";
|
|
@@ -3238,12 +3168,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3238
3168
|
createdAt: string;
|
|
3239
3169
|
deletedAt?: string | null | undefined;
|
|
3240
3170
|
originalFileName?: string | null | undefined;
|
|
3241
|
-
mimeType?: string | null | undefined;
|
|
3242
3171
|
size?: number | null | undefined;
|
|
3172
|
+
createdBy?: string | null | undefined;
|
|
3173
|
+
mimeType?: string | null | undefined;
|
|
3243
3174
|
legacyKey?: string | null | undefined;
|
|
3244
3175
|
bucketName?: string | null | undefined;
|
|
3245
3176
|
encryptionKey?: string | null | undefined;
|
|
3246
|
-
createdBy?: string | null | undefined;
|
|
3247
3177
|
}, {
|
|
3248
3178
|
path: string;
|
|
3249
3179
|
workspaceId: string;
|
|
@@ -3251,12 +3181,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3251
3181
|
createdAt: string;
|
|
3252
3182
|
deletedAt?: string | null | undefined;
|
|
3253
3183
|
originalFileName?: string | null | undefined;
|
|
3254
|
-
mimeType?: string | null | undefined;
|
|
3255
3184
|
size?: number | null | undefined;
|
|
3185
|
+
createdBy?: string | null | undefined;
|
|
3186
|
+
mimeType?: string | null | undefined;
|
|
3256
3187
|
legacyKey?: string | null | undefined;
|
|
3257
3188
|
bucketName?: string | null | undefined;
|
|
3258
3189
|
encryptionKey?: string | null | undefined;
|
|
3259
|
-
createdBy?: string | null | undefined;
|
|
3260
3190
|
}>;
|
|
3261
3191
|
}, "strict", zod.ZodTypeAny, {
|
|
3262
3192
|
id: string;
|
|
@@ -3269,12 +3199,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3269
3199
|
createdAt: string;
|
|
3270
3200
|
deletedAt?: string | null | undefined;
|
|
3271
3201
|
originalFileName?: string | null | undefined;
|
|
3272
|
-
mimeType?: string | null | undefined;
|
|
3273
3202
|
size?: number | null | undefined;
|
|
3203
|
+
createdBy?: string | null | undefined;
|
|
3204
|
+
mimeType?: string | null | undefined;
|
|
3274
3205
|
legacyKey?: string | null | undefined;
|
|
3275
3206
|
bucketName?: string | null | undefined;
|
|
3276
3207
|
encryptionKey?: string | null | undefined;
|
|
3277
|
-
createdBy?: string | null | undefined;
|
|
3278
3208
|
};
|
|
3279
3209
|
}, {
|
|
3280
3210
|
id: string;
|
|
@@ -3287,12 +3217,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3287
3217
|
createdAt: string;
|
|
3288
3218
|
deletedAt?: string | null | undefined;
|
|
3289
3219
|
originalFileName?: string | null | undefined;
|
|
3290
|
-
mimeType?: string | null | undefined;
|
|
3291
3220
|
size?: number | null | undefined;
|
|
3221
|
+
createdBy?: string | null | undefined;
|
|
3222
|
+
mimeType?: string | null | undefined;
|
|
3292
3223
|
legacyKey?: string | null | undefined;
|
|
3293
3224
|
bucketName?: string | null | undefined;
|
|
3294
3225
|
encryptionKey?: string | null | undefined;
|
|
3295
|
-
createdBy?: string | null | undefined;
|
|
3296
3226
|
};
|
|
3297
3227
|
}>, zod.ZodObject<{
|
|
3298
3228
|
url: zod.ZodString;
|
|
@@ -3342,12 +3272,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3342
3272
|
createdAt: string;
|
|
3343
3273
|
deletedAt?: string | null | undefined;
|
|
3344
3274
|
originalFileName?: string | null | undefined;
|
|
3345
|
-
mimeType?: string | null | undefined;
|
|
3346
3275
|
size?: number | null | undefined;
|
|
3276
|
+
createdBy?: string | null | undefined;
|
|
3277
|
+
mimeType?: string | null | undefined;
|
|
3347
3278
|
legacyKey?: string | null | undefined;
|
|
3348
3279
|
bucketName?: string | null | undefined;
|
|
3349
3280
|
encryptionKey?: string | null | undefined;
|
|
3350
|
-
createdBy?: string | null | undefined;
|
|
3351
3281
|
}, {
|
|
3352
3282
|
path: string;
|
|
3353
3283
|
workspaceId: string;
|
|
@@ -3355,12 +3285,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3355
3285
|
createdAt: string;
|
|
3356
3286
|
deletedAt?: string | null | undefined;
|
|
3357
3287
|
originalFileName?: string | null | undefined;
|
|
3358
|
-
mimeType?: string | null | undefined;
|
|
3359
3288
|
size?: number | null | undefined;
|
|
3289
|
+
createdBy?: string | null | undefined;
|
|
3290
|
+
mimeType?: string | null | undefined;
|
|
3360
3291
|
legacyKey?: string | null | undefined;
|
|
3361
3292
|
bucketName?: string | null | undefined;
|
|
3362
3293
|
encryptionKey?: string | null | undefined;
|
|
3363
|
-
createdBy?: string | null | undefined;
|
|
3364
3294
|
}>;
|
|
3365
3295
|
}, "strict", zod.ZodTypeAny, {
|
|
3366
3296
|
id: string;
|
|
@@ -3373,12 +3303,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3373
3303
|
createdAt: string;
|
|
3374
3304
|
deletedAt?: string | null | undefined;
|
|
3375
3305
|
originalFileName?: string | null | undefined;
|
|
3376
|
-
mimeType?: string | null | undefined;
|
|
3377
3306
|
size?: number | null | undefined;
|
|
3307
|
+
createdBy?: string | null | undefined;
|
|
3308
|
+
mimeType?: string | null | undefined;
|
|
3378
3309
|
legacyKey?: string | null | undefined;
|
|
3379
3310
|
bucketName?: string | null | undefined;
|
|
3380
3311
|
encryptionKey?: string | null | undefined;
|
|
3381
|
-
createdBy?: string | null | undefined;
|
|
3382
3312
|
};
|
|
3383
3313
|
}, {
|
|
3384
3314
|
id: string;
|
|
@@ -3391,12 +3321,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3391
3321
|
createdAt: string;
|
|
3392
3322
|
deletedAt?: string | null | undefined;
|
|
3393
3323
|
originalFileName?: string | null | undefined;
|
|
3394
|
-
mimeType?: string | null | undefined;
|
|
3395
3324
|
size?: number | null | undefined;
|
|
3325
|
+
createdBy?: string | null | undefined;
|
|
3326
|
+
mimeType?: string | null | undefined;
|
|
3396
3327
|
legacyKey?: string | null | undefined;
|
|
3397
3328
|
bucketName?: string | null | undefined;
|
|
3398
3329
|
encryptionKey?: string | null | undefined;
|
|
3399
|
-
createdBy?: string | null | undefined;
|
|
3400
3330
|
};
|
|
3401
3331
|
}>, zod.ZodObject<{
|
|
3402
3332
|
url: zod.ZodString;
|
|
@@ -3449,12 +3379,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3449
3379
|
createdAt: string;
|
|
3450
3380
|
deletedAt?: string | null | undefined;
|
|
3451
3381
|
originalFileName?: string | null | undefined;
|
|
3452
|
-
mimeType?: string | null | undefined;
|
|
3453
3382
|
size?: number | null | undefined;
|
|
3383
|
+
createdBy?: string | null | undefined;
|
|
3384
|
+
mimeType?: string | null | undefined;
|
|
3454
3385
|
legacyKey?: string | null | undefined;
|
|
3455
3386
|
bucketName?: string | null | undefined;
|
|
3456
3387
|
encryptionKey?: string | null | undefined;
|
|
3457
|
-
createdBy?: string | null | undefined;
|
|
3458
3388
|
}, {
|
|
3459
3389
|
path: string;
|
|
3460
3390
|
workspaceId: string;
|
|
@@ -3462,12 +3392,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3462
3392
|
createdAt: string;
|
|
3463
3393
|
deletedAt?: string | null | undefined;
|
|
3464
3394
|
originalFileName?: string | null | undefined;
|
|
3465
|
-
mimeType?: string | null | undefined;
|
|
3466
3395
|
size?: number | null | undefined;
|
|
3396
|
+
createdBy?: string | null | undefined;
|
|
3397
|
+
mimeType?: string | null | undefined;
|
|
3467
3398
|
legacyKey?: string | null | undefined;
|
|
3468
3399
|
bucketName?: string | null | undefined;
|
|
3469
3400
|
encryptionKey?: string | null | undefined;
|
|
3470
|
-
createdBy?: string | null | undefined;
|
|
3471
3401
|
}>;
|
|
3472
3402
|
errors: [{
|
|
3473
3403
|
status: 404;
|
|
@@ -3490,16 +3420,16 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3490
3420
|
createdBy: zod.ZodOptional<zod.ZodString>;
|
|
3491
3421
|
}, "strict", zod.ZodTypeAny, {
|
|
3492
3422
|
fileName: string;
|
|
3493
|
-
mimeType?: string | undefined;
|
|
3494
3423
|
size?: number | undefined;
|
|
3495
3424
|
createdBy?: string | undefined;
|
|
3496
3425
|
sha256sum?: string | undefined;
|
|
3426
|
+
mimeType?: string | undefined;
|
|
3497
3427
|
}, {
|
|
3498
3428
|
fileName: string;
|
|
3499
|
-
mimeType?: string | undefined;
|
|
3500
3429
|
size?: number | undefined;
|
|
3501
3430
|
createdBy?: string | undefined;
|
|
3502
3431
|
sha256sum?: string | undefined;
|
|
3432
|
+
mimeType?: string | undefined;
|
|
3503
3433
|
}>, "many">, zod.ZodObject<{
|
|
3504
3434
|
files: zod.ZodArray<zod.ZodString, "many">;
|
|
3505
3435
|
}, "strict", zod.ZodTypeAny, {
|
|
@@ -3528,12 +3458,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3528
3458
|
createdAt: string;
|
|
3529
3459
|
deletedAt?: string | null | undefined;
|
|
3530
3460
|
originalFileName?: string | null | undefined;
|
|
3531
|
-
mimeType?: string | null | undefined;
|
|
3532
3461
|
size?: number | null | undefined;
|
|
3462
|
+
createdBy?: string | null | undefined;
|
|
3463
|
+
mimeType?: string | null | undefined;
|
|
3533
3464
|
legacyKey?: string | null | undefined;
|
|
3534
3465
|
bucketName?: string | null | undefined;
|
|
3535
3466
|
encryptionKey?: string | null | undefined;
|
|
3536
|
-
createdBy?: string | null | undefined;
|
|
3537
3467
|
}, {
|
|
3538
3468
|
path: string;
|
|
3539
3469
|
workspaceId: string;
|
|
@@ -3541,12 +3471,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3541
3471
|
createdAt: string;
|
|
3542
3472
|
deletedAt?: string | null | undefined;
|
|
3543
3473
|
originalFileName?: string | null | undefined;
|
|
3544
|
-
mimeType?: string | null | undefined;
|
|
3545
3474
|
size?: number | null | undefined;
|
|
3475
|
+
createdBy?: string | null | undefined;
|
|
3476
|
+
mimeType?: string | null | undefined;
|
|
3546
3477
|
legacyKey?: string | null | undefined;
|
|
3547
3478
|
bucketName?: string | null | undefined;
|
|
3548
3479
|
encryptionKey?: string | null | undefined;
|
|
3549
|
-
createdBy?: string | null | undefined;
|
|
3550
3480
|
}>, "many">, zod.ZodObject<{
|
|
3551
3481
|
files: zod.ZodArray<zod.ZodObject<{
|
|
3552
3482
|
id: zod.ZodString;
|
|
@@ -3568,12 +3498,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3568
3498
|
createdAt: string;
|
|
3569
3499
|
deletedAt?: string | null | undefined;
|
|
3570
3500
|
originalFileName?: string | null | undefined;
|
|
3571
|
-
mimeType?: string | null | undefined;
|
|
3572
3501
|
size?: number | null | undefined;
|
|
3502
|
+
createdBy?: string | null | undefined;
|
|
3503
|
+
mimeType?: string | null | undefined;
|
|
3573
3504
|
legacyKey?: string | null | undefined;
|
|
3574
3505
|
bucketName?: string | null | undefined;
|
|
3575
3506
|
encryptionKey?: string | null | undefined;
|
|
3576
|
-
createdBy?: string | null | undefined;
|
|
3577
3507
|
}, {
|
|
3578
3508
|
path: string;
|
|
3579
3509
|
workspaceId: string;
|
|
@@ -3581,12 +3511,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3581
3511
|
createdAt: string;
|
|
3582
3512
|
deletedAt?: string | null | undefined;
|
|
3583
3513
|
originalFileName?: string | null | undefined;
|
|
3584
|
-
mimeType?: string | null | undefined;
|
|
3585
3514
|
size?: number | null | undefined;
|
|
3515
|
+
createdBy?: string | null | undefined;
|
|
3516
|
+
mimeType?: string | null | undefined;
|
|
3586
3517
|
legacyKey?: string | null | undefined;
|
|
3587
3518
|
bucketName?: string | null | undefined;
|
|
3588
3519
|
encryptionKey?: string | null | undefined;
|
|
3589
|
-
createdBy?: string | null | undefined;
|
|
3590
3520
|
}>, "many">;
|
|
3591
3521
|
}, "strict", zod.ZodTypeAny, {
|
|
3592
3522
|
files: {
|
|
@@ -3596,12 +3526,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3596
3526
|
createdAt: string;
|
|
3597
3527
|
deletedAt?: string | null | undefined;
|
|
3598
3528
|
originalFileName?: string | null | undefined;
|
|
3599
|
-
mimeType?: string | null | undefined;
|
|
3600
3529
|
size?: number | null | undefined;
|
|
3530
|
+
createdBy?: string | null | undefined;
|
|
3531
|
+
mimeType?: string | null | undefined;
|
|
3601
3532
|
legacyKey?: string | null | undefined;
|
|
3602
3533
|
bucketName?: string | null | undefined;
|
|
3603
3534
|
encryptionKey?: string | null | undefined;
|
|
3604
|
-
createdBy?: string | null | undefined;
|
|
3605
3535
|
}[];
|
|
3606
3536
|
}, {
|
|
3607
3537
|
files: {
|
|
@@ -3611,12 +3541,12 @@ declare function useVaultClient(vaultUrl: string, token: string): _zodios_core.Z
|
|
|
3611
3541
|
createdAt: string;
|
|
3612
3542
|
deletedAt?: string | null | undefined;
|
|
3613
3543
|
originalFileName?: string | null | undefined;
|
|
3614
|
-
mimeType?: string | null | undefined;
|
|
3615
3544
|
size?: number | null | undefined;
|
|
3545
|
+
createdBy?: string | null | undefined;
|
|
3546
|
+
mimeType?: string | null | undefined;
|
|
3616
3547
|
legacyKey?: string | null | undefined;
|
|
3617
3548
|
bucketName?: string | null | undefined;
|
|
3618
3549
|
encryptionKey?: string | null | undefined;
|
|
3619
|
-
createdBy?: string | null | undefined;
|
|
3620
3550
|
}[];
|
|
3621
3551
|
}>]>;
|
|
3622
3552
|
}]>;
|