@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/index.js CHANGED
@@ -6803,7 +6803,8 @@ var FilesDatabaseRowSchema = z.object({
6803
6803
  variants: z.record(z.string(), z.unknown()).nullable(),
6804
6804
  entity_type: z.string().nullable(),
6805
6805
  entity_id: z.string().nullable(),
6806
- access_level: z.string().nullable()
6806
+ access_level: z.string().nullable(),
6807
+ bucket: z.string().nullable()
6807
6808
  });
6808
6809
  var CreateFilesSchema = z.object({
6809
6810
  // Required fields with defaults for optional scenarios
@@ -6825,7 +6826,8 @@ var CreateFilesSchema = z.object({
6825
6826
  variants: z.record(z.string(), z.unknown()).nullable().default(null),
6826
6827
  entity_type: z.string().nullable().default(null),
6827
6828
  entity_id: z.string().nullable().default(null),
6828
- access_level: MediaAccessLevelSchema.default(null)
6829
+ access_level: MediaAccessLevelSchema.default(null),
6830
+ bucket: z.string().nullable().default(null)
6829
6831
  });
6830
6832
  var PatchFilesSchema = CreateFilesSchema.partial();
6831
6833
  var MediaVariantsDatabaseRowSchema = z.object({