@supernova-studio/model 0.45.1 → 0.46.0

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.45.1",
3
+ "version": "0.46.0",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -143,7 +143,6 @@ export const PageBlockShortcut = z.object({
143
143
  description: nullishToOptional(z.string()),
144
144
  asset: nullishToOptional(PageBlockAsset),
145
145
  documentationItemId: nullishToOptional(z.string()),
146
- pageHeadingId: nullishToOptional(z.string()),
147
146
  url: nullishToOptional(z.string()),
148
147
  openInNewTab: nullishToOptional(z.boolean()),
149
148
  urlPreview: nullishToOptional(PageBlockUrlPreview),
@@ -18,6 +18,7 @@ export const PublishedDocPage = z.object({
18
18
  pathV1: z.string(),
19
19
  pathV2: z.string(),
20
20
  storagePath: z.string(),
21
+ fallbackPublicPath: z.string().optional(),
21
22
  locale: z.string().optional(),
22
23
 
23
24
  isPrivate: z.boolean(),