@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/dist/index.d.mts +265 -265
- package/dist/index.d.ts +265 -265
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v1.ts +2 -1
package/package.json
CHANGED
|
@@ -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
|
-
|
|
308
|
+
guideline: nullishToOptional(PageBlockGuideline),
|
|
308
309
|
|
|
309
310
|
// Custom blocks
|
|
310
311
|
customBlockKey: nullishToOptional(z.string()),
|