@supernova-studio/client 0.52.13 → 0.52.14

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
@@ -8967,7 +8967,6 @@ declare const DTOFigmaComponent: z.ZodObject<{
8967
8967
  persistentId: z.ZodString;
8968
8968
  designSystemVersionId: z.ZodString;
8969
8969
  brandId: z.ZodString;
8970
- parentComponentId: z.ZodOptional<z.ZodString>;
8971
8970
  thumbnailUrl: z.ZodOptional<z.ZodString>;
8972
8971
  svgUrl: z.ZodOptional<z.ZodString>;
8973
8972
  exportProperties: z.ZodObject<{
@@ -9012,6 +9011,7 @@ declare const DTOFigmaComponent: z.ZodObject<{
9012
9011
  height?: number | undefined;
9013
9012
  nodeId?: string | undefined;
9014
9013
  }>>;
9014
+ parentComponentPersistentId: z.ZodOptional<z.ZodString>;
9015
9015
  componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9016
9016
  type: z.ZodLiteral<"Boolean">;
9017
9017
  defaultValue: z.ZodBoolean;
@@ -9072,7 +9072,6 @@ declare const DTOFigmaComponent: z.ZodObject<{
9072
9072
  exportProperties: {
9073
9073
  isAsset: boolean;
9074
9074
  };
9075
- parentComponentId?: string | undefined;
9076
9075
  thumbnailUrl?: string | undefined;
9077
9076
  svgUrl?: string | undefined;
9078
9077
  originComponent?: {
@@ -9083,6 +9082,7 @@ declare const DTOFigmaComponent: z.ZodObject<{
9083
9082
  height?: number | undefined;
9084
9083
  nodeId?: string | undefined;
9085
9084
  } | undefined;
9085
+ parentComponentPersistentId?: string | undefined;
9086
9086
  componentPropertyDefinitions?: Record<string, {
9087
9087
  type: "Boolean";
9088
9088
  defaultValue: boolean;
@@ -9111,7 +9111,6 @@ declare const DTOFigmaComponent: z.ZodObject<{
9111
9111
  exportProperties: {
9112
9112
  isAsset: boolean;
9113
9113
  };
9114
- parentComponentId?: string | undefined;
9115
9114
  thumbnailUrl?: string | undefined;
9116
9115
  svgUrl?: string | undefined;
9117
9116
  originComponent?: {
@@ -9122,6 +9121,7 @@ declare const DTOFigmaComponent: z.ZodObject<{
9122
9121
  height?: number | undefined;
9123
9122
  nodeId?: string | undefined;
9124
9123
  } | undefined;
9124
+ parentComponentPersistentId?: string | undefined;
9125
9125
  componentPropertyDefinitions?: Record<string, {
9126
9126
  type: "Boolean";
9127
9127
  defaultValue: boolean;
package/dist/index.d.ts CHANGED
@@ -8967,7 +8967,6 @@ declare const DTOFigmaComponent: z.ZodObject<{
8967
8967
  persistentId: z.ZodString;
8968
8968
  designSystemVersionId: z.ZodString;
8969
8969
  brandId: z.ZodString;
8970
- parentComponentId: z.ZodOptional<z.ZodString>;
8971
8970
  thumbnailUrl: z.ZodOptional<z.ZodString>;
8972
8971
  svgUrl: z.ZodOptional<z.ZodString>;
8973
8972
  exportProperties: z.ZodObject<{
@@ -9012,6 +9011,7 @@ declare const DTOFigmaComponent: z.ZodObject<{
9012
9011
  height?: number | undefined;
9013
9012
  nodeId?: string | undefined;
9014
9013
  }>>;
9014
+ parentComponentPersistentId: z.ZodOptional<z.ZodString>;
9015
9015
  componentPropertyDefinitions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9016
9016
  type: z.ZodLiteral<"Boolean">;
9017
9017
  defaultValue: z.ZodBoolean;
@@ -9072,7 +9072,6 @@ declare const DTOFigmaComponent: z.ZodObject<{
9072
9072
  exportProperties: {
9073
9073
  isAsset: boolean;
9074
9074
  };
9075
- parentComponentId?: string | undefined;
9076
9075
  thumbnailUrl?: string | undefined;
9077
9076
  svgUrl?: string | undefined;
9078
9077
  originComponent?: {
@@ -9083,6 +9082,7 @@ declare const DTOFigmaComponent: z.ZodObject<{
9083
9082
  height?: number | undefined;
9084
9083
  nodeId?: string | undefined;
9085
9084
  } | undefined;
9085
+ parentComponentPersistentId?: string | undefined;
9086
9086
  componentPropertyDefinitions?: Record<string, {
9087
9087
  type: "Boolean";
9088
9088
  defaultValue: boolean;
@@ -9111,7 +9111,6 @@ declare const DTOFigmaComponent: z.ZodObject<{
9111
9111
  exportProperties: {
9112
9112
  isAsset: boolean;
9113
9113
  };
9114
- parentComponentId?: string | undefined;
9115
9114
  thumbnailUrl?: string | undefined;
9116
9115
  svgUrl?: string | undefined;
9117
9116
  originComponent?: {
@@ -9122,6 +9121,7 @@ declare const DTOFigmaComponent: z.ZodObject<{
9122
9121
  height?: number | undefined;
9123
9122
  nodeId?: string | undefined;
9124
9123
  } | undefined;
9124
+ parentComponentPersistentId?: string | undefined;
9125
9125
  componentPropertyDefinitions?: Record<string, {
9126
9126
  type: "Boolean";
9127
9127
  defaultValue: boolean;
package/dist/index.js CHANGED
@@ -5632,7 +5632,6 @@ var DTOFigmaComponent = _zod.z.object({
5632
5632
  persistentId: _zod.z.string(),
5633
5633
  designSystemVersionId: _zod.z.string(),
5634
5634
  brandId: _zod.z.string(),
5635
- parentComponentId: _zod.z.string().optional(),
5636
5635
  thumbnailUrl: _zod.z.string().optional(),
5637
5636
  svgUrl: _zod.z.string().optional(),
5638
5637
  exportProperties: _zod.z.object({
@@ -5642,6 +5641,7 @@ var DTOFigmaComponent = _zod.z.object({
5642
5641
  updatedAt: _zod.z.coerce.date(),
5643
5642
  meta: ObjectMeta,
5644
5643
  originComponent: FigmaComponentOrigin.optional(),
5644
+ parentComponentPersistentId: _zod.z.string().optional(),
5645
5645
  componentPropertyDefinitions: FigmaComponentPropertyMap.optional()
5646
5646
  });
5647
5647