@supernova-studio/model 0.55.14 → 0.55.16

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.55.14",
3
+ "version": "0.55.16",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -148,7 +148,11 @@ export const PageBlockItemFigmaComponentValue = z.object({
148
148
  z.object({
149
149
  entityId: z.string(),
150
150
  entityType: z.enum(["FigmaComponent"]),
151
- selectedComponentProperties: z.string().array().optional(),
151
+ entityMeta: z
152
+ .object({
153
+ selectedComponentProperties: z.string().array().optional(),
154
+ })
155
+ .optional(),
152
156
  })
153
157
  )
154
158
  .default([]),