@plyaz/types 1.38.2 → 1.39.1
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/api/debugger/types.d.ts +10 -0
- package/dist/api/endpoints/files/schemas.d.ts +4 -0
- package/dist/api/index.cjs +4 -4
- package/dist/api/index.cjs.map +1 -1
- package/dist/api/index.js +4 -4
- package/dist/api/index.js.map +1 -1
- package/dist/core/domain/files/schemas.d.ts +3 -0
- package/dist/core/index.cjs +4 -2
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.js +4 -2
- package/dist/core/index.js.map +1 -1
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/api/index.js
CHANGED
|
@@ -646,7 +646,7 @@ var GenerateDocumentResponseSchema = z.object({
|
|
|
646
646
|
size: z.number().nonnegative()
|
|
647
647
|
});
|
|
648
648
|
var GetFileParamsSchema = z.object({
|
|
649
|
-
id: z.string().
|
|
649
|
+
id: z.string().min(1)
|
|
650
650
|
});
|
|
651
651
|
var GetFileRequestSchema = GetFileParamsSchema;
|
|
652
652
|
var GetFileResponseSchema = z.object({
|
|
@@ -667,7 +667,7 @@ var GetFileResponseSchema = z.object({
|
|
|
667
667
|
expiresAt: z.string().optional()
|
|
668
668
|
});
|
|
669
669
|
var DownloadFileParamsSchema = z.object({
|
|
670
|
-
id: z.string().
|
|
670
|
+
id: z.string().min(1)
|
|
671
671
|
});
|
|
672
672
|
var DownloadFileRequestSchema = DownloadFileParamsSchema;
|
|
673
673
|
var DownloadFileResponseSchema = z.object({
|
|
@@ -678,14 +678,14 @@ var DownloadFileResponseSchema = z.object({
|
|
|
678
678
|
filename: z.string().optional()
|
|
679
679
|
});
|
|
680
680
|
var DeleteFileParamsSchema = z.object({
|
|
681
|
-
id: z.string().
|
|
681
|
+
id: z.string().min(1)
|
|
682
682
|
});
|
|
683
683
|
var DeleteFileRequestSchema = DeleteFileParamsSchema;
|
|
684
684
|
var DeleteFileResponseSchema = z.object({
|
|
685
685
|
success: z.boolean()
|
|
686
686
|
});
|
|
687
687
|
var GetSignedUrlParamsSchema = z.object({
|
|
688
|
-
id: z.string().
|
|
688
|
+
id: z.string().min(1)
|
|
689
689
|
});
|
|
690
690
|
var GetSignedUrlQuerySchema = z.object({
|
|
691
691
|
expiresIn: z.number().positive().optional()
|