@supernova-studio/model 0.12.0 → 0.13.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.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -25,7 +25,10 @@ export type PageBlockThemeDisplayMode = z.infer<typeof PageBlockThemeDisplayMode
25
25
  // Definitions - Block
26
26
  //
27
27
 
28
- export const PageBlockColorV2 = z.string();
28
+ export const PageBlockColorV2 = z.object({
29
+ value: z.string(),
30
+ referencedTokenId: z.string().optional(),
31
+ });
29
32
 
30
33
  export const PageBlockAppearanceV2 = z.object({
31
34
  itemBackgroundColor: PageBlockColorV2.optional(),