@supernova-studio/model 0.53.5 → 0.53.7

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.53.5",
3
+ "version": "0.53.7",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -45,6 +45,7 @@ export const PageBlockTypeV1 = z.enum([
45
45
  "TableRow",
46
46
  "TableCell",
47
47
  "Guidelines",
48
+ "Guideline",
48
49
  ]);
49
50
 
50
51
  export const PageBlockCodeLanguage = z.enum([
@@ -304,7 +305,7 @@ export const PageBlockBaseV1 = z.object({
304
305
  shortcuts: nullishToOptional(z.array(PageBlockShortcut)),
305
306
 
306
307
  // Guidelines
307
- guidelines: nullishToOptional(PageBlockGuideline.array()),
308
+ guideline: nullishToOptional(PageBlockGuideline),
308
309
 
309
310
  // Custom blocks
310
311
  customBlockKey: nullishToOptional(z.string()),