@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/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().uuid()
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().uuid()
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().uuid()
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().uuid()
688
+ id: z.string().min(1)
689
689
  });
690
690
  var GetSignedUrlQuerySchema = z.object({
691
691
  expiresIn: z.number().positive().optional()