@supernova-studio/model 0.54.11 → 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.mjs CHANGED
@@ -2394,6 +2394,7 @@ var PageBlockItemEmbedValue = z44.object({
2394
2394
  value: z44.string().optional(),
2395
2395
  caption: z44.string().optional(),
2396
2396
  height: z44.number().optional(),
2397
+ alt: z44.number().optional(),
2397
2398
  openGraph: z44.object({
2398
2399
  title: z44.string().optional(),
2399
2400
  description: z44.string().optional(),
@@ -3698,7 +3699,8 @@ var ThemeUpdateImportModelInput = z96.object({
3698
3699
  import { z as z97 } from "zod";
3699
3700
  var DesignTokenImportModelPart = z97.object({
3700
3701
  collection: z97.string().optional(),
3701
- codeSyntax: z97.record(z97.coerce.string()).optional()
3702
+ codeSyntax: z97.record(z97.coerce.string()).optional(),
3703
+ scopes: z97.array(z97.string()).optional()
3702
3704
  });
3703
3705
  var DesignTokenImportModelBase = ImportModelBase.extend(DesignTokenImportModelPart.shape).extend({
3704
3706
  origin: DesignTokenOrigin