@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supernova-studio/model",
3
- "version": "0.54.11",
3
+ "version": "0.54.13",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -198,6 +198,7 @@ export const PageBlockItemEmbedValue = z.object({
198
198
  value: z.string().optional(),
199
199
  caption: z.string().optional(),
200
200
  height: z.number().optional(),
201
+ alt: z.number().optional(),
201
202
  openGraph: z
202
203
  .object({
203
204
  title: z.string().optional(),
@@ -9,6 +9,7 @@ import { ImportModelBase, ImportModelInputBase } from "./base";
9
9
  const DesignTokenImportModelPart = z.object({
10
10
  collection: z.string().optional(),
11
11
  codeSyntax: z.record(z.coerce.string()).optional(),
12
+ scopes: z.array(z.string()).optional(),
12
13
  });
13
14
 
14
15
  export const DesignTokenImportModelBase = ImportModelBase.extend(DesignTokenImportModelPart.shape).extend({