@encatch/schema 1.2.0-beta.14 → 1.2.0-beta.15

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/esm/index.js CHANGED
@@ -2044,7 +2044,7 @@ var imageAttachmentSchema = z8.object({
2044
2044
  decorative: z8.boolean().default(false).describe(
2045
2045
  "When true the image is purely visual; screen readers skip it and description is not surfaced as alt text"
2046
2046
  ),
2047
- brightness: z8.number().min(-100).max(100).optional().describe("Brightness adjustment: -100 darkest, 0 unchanged, +100 brightest. Applied as filter: brightness(1 + value/100)."),
2047
+ brightness: z8.number().min(-100).max(100).optional().describe("Brightness adjustment rendered with a black/white overlay: -100 fully black, 0 unchanged, +100 fully white."),
2048
2048
  focalPoint: focalPointSchema.optional()
2049
2049
  }).optional().describe("Optional display properties for the image")
2050
2050
  }).describe("Image attachment for section layouts");
@@ -2057,7 +2057,7 @@ var videoAttachmentSchema = z8.object({
2057
2057
  properties: z8.object({
2058
2058
  description: z8.string().optional().describe("Accessible description of the video"),
2059
2059
  decorative: z8.boolean().default(false).describe("When true the video is purely decorative and screen readers skip it"),
2060
- brightness: z8.number().min(-100).max(100).optional().describe("Brightness adjustment: -100 darkest, 0 unchanged, +100 brightest. Applied as filter: brightness(1 + value/100).")
2060
+ brightness: z8.number().min(-100).max(100).optional().describe("Brightness adjustment rendered with a black/white overlay: -100 fully black, 0 unchanged, +100 fully white.")
2061
2061
  }).optional().describe("Optional display properties for the video")
2062
2062
  }).describe("Video attachment for section layouts (external embed or self-hosted CDN)");
2063
2063
  var colorAttachmentSchema = z8.object({