@supernova-studio/model 1.4.2 → 1.4.4

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 CHANGED
@@ -48318,22 +48318,27 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
48318
48318
  entityType: z.ZodEnum<["FigmaComponent"]>;
48319
48319
  entityMeta: z.ZodOptional<z.ZodObject<{
48320
48320
  selectedComponentProperties: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
48321
+ selectedComponentVariants: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
48321
48322
  }, "strip", z.ZodTypeAny, {
48322
48323
  selectedComponentProperties?: string[] | undefined;
48324
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48323
48325
  }, {
48324
48326
  selectedComponentProperties?: string[] | undefined;
48327
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48325
48328
  }>>;
48326
48329
  }, "strip", z.ZodTypeAny, {
48327
48330
  entityId: string;
48328
48331
  entityType: "FigmaComponent";
48329
48332
  entityMeta?: {
48330
48333
  selectedComponentProperties?: string[] | undefined;
48334
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48331
48335
  } | undefined;
48332
48336
  }, {
48333
48337
  entityId: string;
48334
48338
  entityType: "FigmaComponent";
48335
48339
  entityMeta?: {
48336
48340
  selectedComponentProperties?: string[] | undefined;
48341
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48337
48342
  } | undefined;
48338
48343
  }>, "many">>;
48339
48344
  }, "strip", z.ZodTypeAny, {
@@ -48342,6 +48347,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
48342
48347
  entityType: "FigmaComponent";
48343
48348
  entityMeta?: {
48344
48349
  selectedComponentProperties?: string[] | undefined;
48350
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48345
48351
  } | undefined;
48346
48352
  }[];
48347
48353
  backgroundColor?: {
@@ -48360,6 +48366,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
48360
48366
  entityType: "FigmaComponent";
48361
48367
  entityMeta?: {
48362
48368
  selectedComponentProperties?: string[] | undefined;
48369
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48363
48370
  } | undefined;
48364
48371
  }[] | undefined;
48365
48372
  backgroundColor?: {
package/dist/index.d.ts CHANGED
@@ -48318,22 +48318,27 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
48318
48318
  entityType: z.ZodEnum<["FigmaComponent"]>;
48319
48319
  entityMeta: z.ZodOptional<z.ZodObject<{
48320
48320
  selectedComponentProperties: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
48321
+ selectedComponentVariants: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
48321
48322
  }, "strip", z.ZodTypeAny, {
48322
48323
  selectedComponentProperties?: string[] | undefined;
48324
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48323
48325
  }, {
48324
48326
  selectedComponentProperties?: string[] | undefined;
48327
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48325
48328
  }>>;
48326
48329
  }, "strip", z.ZodTypeAny, {
48327
48330
  entityId: string;
48328
48331
  entityType: "FigmaComponent";
48329
48332
  entityMeta?: {
48330
48333
  selectedComponentProperties?: string[] | undefined;
48334
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48331
48335
  } | undefined;
48332
48336
  }, {
48333
48337
  entityId: string;
48334
48338
  entityType: "FigmaComponent";
48335
48339
  entityMeta?: {
48336
48340
  selectedComponentProperties?: string[] | undefined;
48341
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48337
48342
  } | undefined;
48338
48343
  }>, "many">>;
48339
48344
  }, "strip", z.ZodTypeAny, {
@@ -48342,6 +48347,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
48342
48347
  entityType: "FigmaComponent";
48343
48348
  entityMeta?: {
48344
48349
  selectedComponentProperties?: string[] | undefined;
48350
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48345
48351
  } | undefined;
48346
48352
  }[];
48347
48353
  backgroundColor?: {
@@ -48360,6 +48366,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
48360
48366
  entityType: "FigmaComponent";
48361
48367
  entityMeta?: {
48362
48368
  selectedComponentProperties?: string[] | undefined;
48369
+ selectedComponentVariants?: Record<string, string[]> | undefined;
48363
48370
  } | undefined;
48364
48371
  }[] | undefined;
48365
48372
  backgroundColor?: {
package/dist/index.js CHANGED
@@ -2566,7 +2566,8 @@ var PageBlockItemFigmaComponentValue = _zod.z.object({
2566
2566
  entityId: _zod.z.string(),
2567
2567
  entityType: _zod.z.enum(["FigmaComponent"]),
2568
2568
  entityMeta: _zod.z.object({
2569
- selectedComponentProperties: _zod.z.string().array().optional()
2569
+ selectedComponentProperties: _zod.z.string().array().optional(),
2570
+ selectedComponentVariants: _zod.z.record(_zod.z.string().array()).optional()
2570
2571
  }).optional()
2571
2572
  })
2572
2573
  ).default([])