@zyacreatives/shared 1.3.5 → 1.3.6
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/types/file.d.ts +3 -0
- package/package.json +1 -1
- package/src/types/file.ts +3 -0
package/dist/types/file.d.ts
CHANGED
|
@@ -3,6 +3,9 @@ import { CreateFileInputSchema, CreateFileOutputSchema, DeleteFileInputParams, D
|
|
|
3
3
|
export type FileEntity = z.infer<typeof FileEntitySchema>;
|
|
4
4
|
export type FileUpdateEntity = z.infer<typeof FileUpdateEntitySchema>;
|
|
5
5
|
export type GetPresignedUploadUrlInput = z.infer<typeof GetFilePresignedUploadUrlInputSchema>;
|
|
6
|
+
export type FileKeyInput = {
|
|
7
|
+
key: string;
|
|
8
|
+
};
|
|
6
9
|
export type GetPresignedUploadUrlOutput = z.infer<typeof GetFilePresignedUploadUrlOutputSchema>;
|
|
7
10
|
export type GetPresignedDownloadUrlInput = z.infer<typeof GetFilePresignedDownloadUrlParams>;
|
|
8
11
|
export type GetPresignedDownloadUrlOutput = GetPresignedUploadUrlOutput;
|
package/package.json
CHANGED
package/src/types/file.ts
CHANGED
|
@@ -18,6 +18,9 @@ export type FileUpdateEntity = z.infer<typeof FileUpdateEntitySchema>;
|
|
|
18
18
|
export type GetPresignedUploadUrlInput = z.infer<
|
|
19
19
|
typeof GetFilePresignedUploadUrlInputSchema
|
|
20
20
|
>;
|
|
21
|
+
export type FileKeyInput = {
|
|
22
|
+
key: string;
|
|
23
|
+
};
|
|
21
24
|
|
|
22
25
|
export type GetPresignedUploadUrlOutput = z.infer<
|
|
23
26
|
typeof GetFilePresignedUploadUrlOutputSchema
|