@supernova-studio/model 0.52.6 → 0.52.7

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
@@ -39459,6 +39459,7 @@ declare const PageBlockItemColorValue: z.ZodRecord<z.ZodString, z.ZodAny>;
39459
39459
  type PageBlockItemColorValue = z.infer<typeof PageBlockItemColorValue>;
39460
39460
  declare const PageBlockItemComponentValue: z.ZodObject<{
39461
39461
  selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
39462
+ selectedBrandId: z.ZodOptional<z.ZodString>;
39462
39463
  value: z.ZodDefault<z.ZodArray<z.ZodObject<{
39463
39464
  entityId: z.ZodString;
39464
39465
  entityType: z.ZodEnum<["Component", "ComponentGroup"]>;
@@ -39475,12 +39476,14 @@ declare const PageBlockItemComponentValue: z.ZodObject<{
39475
39476
  entityType: "Component" | "ComponentGroup";
39476
39477
  }[];
39477
39478
  selectedPropertyIds?: string[] | undefined;
39479
+ selectedBrandId?: string | undefined;
39478
39480
  }, {
39479
39481
  value?: {
39480
39482
  entityId: string;
39481
39483
  entityType: "Component" | "ComponentGroup";
39482
39484
  }[] | undefined;
39483
39485
  selectedPropertyIds?: string[] | undefined;
39486
+ selectedBrandId?: string | undefined;
39484
39487
  }>;
39485
39488
  type PageBlockItemComponentValue = z.infer<typeof PageBlockItemComponentValue>;
39486
39489
  declare const PageBlockItemComponentPropertyValue: z.ZodObject<{
package/dist/index.d.ts CHANGED
@@ -39459,6 +39459,7 @@ declare const PageBlockItemColorValue: z.ZodRecord<z.ZodString, z.ZodAny>;
39459
39459
  type PageBlockItemColorValue = z.infer<typeof PageBlockItemColorValue>;
39460
39460
  declare const PageBlockItemComponentValue: z.ZodObject<{
39461
39461
  selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
39462
+ selectedBrandId: z.ZodOptional<z.ZodString>;
39462
39463
  value: z.ZodDefault<z.ZodArray<z.ZodObject<{
39463
39464
  entityId: z.ZodString;
39464
39465
  entityType: z.ZodEnum<["Component", "ComponentGroup"]>;
@@ -39475,12 +39476,14 @@ declare const PageBlockItemComponentValue: z.ZodObject<{
39475
39476
  entityType: "Component" | "ComponentGroup";
39476
39477
  }[];
39477
39478
  selectedPropertyIds?: string[] | undefined;
39479
+ selectedBrandId?: string | undefined;
39478
39480
  }, {
39479
39481
  value?: {
39480
39482
  entityId: string;
39481
39483
  entityType: "Component" | "ComponentGroup";
39482
39484
  }[] | undefined;
39483
39485
  selectedPropertyIds?: string[] | undefined;
39486
+ selectedBrandId?: string | undefined;
39484
39487
  }>;
39485
39488
  type PageBlockItemComponentValue = z.infer<typeof PageBlockItemComponentValue>;
39486
39489
  declare const PageBlockItemComponentPropertyValue: z.ZodObject<{
package/dist/index.js CHANGED
@@ -2109,6 +2109,7 @@ var PageBlockItemSandboxValue = _zod.z.object({
2109
2109
  var PageBlockItemColorValue = _zod.z.record(_zod.z.any());
2110
2110
  var PageBlockItemComponentValue = _zod.z.object({
2111
2111
  selectedPropertyIds: _zod.z.array(_zod.z.string()).optional(),
2112
+ selectedBrandId: _zod.z.string().optional(),
2112
2113
  value: _zod.z.array(
2113
2114
  _zod.z.object({
2114
2115
  entityId: _zod.z.string(),