1 | import { StorageCopyInputWithKey, StorageCopyInputWithPath, StorageDownloadDataInputWithKey, StorageDownloadDataInputWithPath, StorageGetPropertiesInputWithKey, StorageGetPropertiesInputWithPath, StorageGetUrlInputWithKey, StorageGetUrlInputWithPath, StorageListInputWithPath, StorageListInputWithPrefix, StorageRemoveInputWithKey, StorageRemoveInputWithPath, StorageUploadDataInputWithKey, StorageUploadDataInputWithPath } from '../../../types';
|
2 | import { CopyDestinationWithKeyOptions, CopySourceWithKeyOptions, DownloadDataWithKeyOptions, DownloadDataWithPathOptions, GetPropertiesWithKeyOptions, GetPropertiesWithPathOptions, GetUrlWithKeyOptions, GetUrlWithPathOptions, ListAllWithPathOptions, ListAllWithPrefixOptions, ListPaginateWithPathOptions, ListPaginateWithPrefixOptions, RemoveOptions, UploadDataWithKeyOptions, UploadDataWithPathOptions } from '../types';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 | export type CopyInput = StorageCopyInputWithKey<CopySourceWithKeyOptions, CopyDestinationWithKeyOptions>;
|
8 |
|
9 |
|
10 |
|
11 | export type CopyWithPathInput = StorageCopyInputWithPath;
|
12 |
|
13 |
|
14 |
|
15 |
|
16 | export type GetPropertiesInput = StorageGetPropertiesInputWithKey<GetPropertiesWithKeyOptions>;
|
17 |
|
18 |
|
19 |
|
20 | export type GetPropertiesWithPathInput = StorageGetPropertiesInputWithPath<GetPropertiesWithPathOptions>;
|
21 |
|
22 |
|
23 |
|
24 |
|
25 | export type GetUrlInput = StorageGetUrlInputWithKey<GetUrlWithKeyOptions>;
|
26 |
|
27 |
|
28 |
|
29 | export type GetUrlWithPathInput = StorageGetUrlInputWithPath<GetUrlWithPathOptions>;
|
30 |
|
31 |
|
32 |
|
33 | export type ListAllWithPathInput = StorageListInputWithPath<ListAllWithPathOptions>;
|
34 |
|
35 |
|
36 |
|
37 | export type ListPaginateWithPathInput = StorageListInputWithPath<ListPaginateWithPathOptions>;
|
38 |
|
39 |
|
40 |
|
41 |
|
42 | export type ListAllInput = StorageListInputWithPrefix<ListAllWithPrefixOptions>;
|
43 |
|
44 |
|
45 |
|
46 |
|
47 | export type ListPaginateInput = StorageListInputWithPrefix<ListPaginateWithPrefixOptions>;
|
48 |
|
49 |
|
50 |
|
51 |
|
52 | export type RemoveInput = StorageRemoveInputWithKey<RemoveOptions>;
|
53 |
|
54 |
|
55 |
|
56 | export type RemoveWithPathInput = StorageRemoveInputWithPath<Omit<RemoveOptions, 'accessLevel'>>;
|
57 |
|
58 |
|
59 |
|
60 |
|
61 | export type DownloadDataInput = StorageDownloadDataInputWithKey<DownloadDataWithKeyOptions>;
|
62 |
|
63 |
|
64 |
|
65 | export type DownloadDataWithPathInput = StorageDownloadDataInputWithPath<DownloadDataWithPathOptions>;
|
66 |
|
67 |
|
68 |
|
69 |
|
70 | export type UploadDataInput = StorageUploadDataInputWithKey<UploadDataWithKeyOptions>;
|
71 |
|
72 |
|
73 |
|
74 | export type UploadDataWithPathInput = StorageUploadDataInputWithPath<UploadDataWithPathOptions>;
|