@supernova-studio/model 0.54.12 → 0.54.13

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.d.mts CHANGED
@@ -39789,6 +39789,7 @@ declare const PageBlockItemEmbedValue: z.ZodObject<{
39789
39789
  value: z.ZodOptional<z.ZodString>;
39790
39790
  caption: z.ZodOptional<z.ZodString>;
39791
39791
  height: z.ZodOptional<z.ZodNumber>;
39792
+ alt: z.ZodOptional<z.ZodNumber>;
39792
39793
  openGraph: z.ZodOptional<z.ZodObject<{
39793
39794
  title: z.ZodOptional<z.ZodString>;
39794
39795
  description: z.ZodOptional<z.ZodString>;
@@ -39806,6 +39807,7 @@ declare const PageBlockItemEmbedValue: z.ZodObject<{
39806
39807
  value?: string | undefined;
39807
39808
  height?: number | undefined;
39808
39809
  caption?: string | undefined;
39810
+ alt?: number | undefined;
39809
39811
  openGraph?: {
39810
39812
  description?: string | undefined;
39811
39813
  title?: string | undefined;
@@ -39815,6 +39817,7 @@ declare const PageBlockItemEmbedValue: z.ZodObject<{
39815
39817
  value?: string | undefined;
39816
39818
  height?: number | undefined;
39817
39819
  caption?: string | undefined;
39820
+ alt?: number | undefined;
39818
39821
  openGraph?: {
39819
39822
  description?: string | undefined;
39820
39823
  title?: string | undefined;
package/dist/index.d.ts CHANGED
@@ -39789,6 +39789,7 @@ declare const PageBlockItemEmbedValue: z.ZodObject<{
39789
39789
  value: z.ZodOptional<z.ZodString>;
39790
39790
  caption: z.ZodOptional<z.ZodString>;
39791
39791
  height: z.ZodOptional<z.ZodNumber>;
39792
+ alt: z.ZodOptional<z.ZodNumber>;
39792
39793
  openGraph: z.ZodOptional<z.ZodObject<{
39793
39794
  title: z.ZodOptional<z.ZodString>;
39794
39795
  description: z.ZodOptional<z.ZodString>;
@@ -39806,6 +39807,7 @@ declare const PageBlockItemEmbedValue: z.ZodObject<{
39806
39807
  value?: string | undefined;
39807
39808
  height?: number | undefined;
39808
39809
  caption?: string | undefined;
39810
+ alt?: number | undefined;
39809
39811
  openGraph?: {
39810
39812
  description?: string | undefined;
39811
39813
  title?: string | undefined;
@@ -39815,6 +39817,7 @@ declare const PageBlockItemEmbedValue: z.ZodObject<{
39815
39817
  value?: string | undefined;
39816
39818
  height?: number | undefined;
39817
39819
  caption?: string | undefined;
39820
+ alt?: number | undefined;
39818
39821
  openGraph?: {
39819
39822
  description?: string | undefined;
39820
39823
  title?: string | undefined;
package/dist/index.js CHANGED
@@ -2394,6 +2394,7 @@ var PageBlockItemEmbedValue = _zod.z.object({
2394
2394
  value: _zod.z.string().optional(),
2395
2395
  caption: _zod.z.string().optional(),
2396
2396
  height: _zod.z.number().optional(),
2397
+ alt: _zod.z.number().optional(),
2397
2398
  openGraph: _zod.z.object({
2398
2399
  title: _zod.z.string().optional(),
2399
2400
  description: _zod.z.string().optional(),