@supernova-studio/model 0.49.0 → 0.49.2

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.49.0",
3
+ "version": "0.49.2",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -241,6 +241,8 @@ export const PageBlockGuideline = z.object({
241
241
  description: nullishToOptional(z.string()),
242
242
  asset: nullishToOptional(PageBlockAsset),
243
243
  type: z.string(),
244
+ imageAlt: nullishToOptional(z.string()),
245
+ imageCaption: nullishToOptional(z.string()),
244
246
  });
245
247
 
246
248
  export type PageBlockCalloutType = z.infer<typeof PageBlockCalloutType>;