@supernova-studio/client 0.57.16 → 0.57.18

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.ts CHANGED
@@ -2538,8 +2538,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
2538
2538
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
2539
2539
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
2540
2540
  }, "strip", z.ZodTypeAny, {
2541
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
2542
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
2543
2541
  workspace: {
2544
2542
  id: string;
2545
2543
  profile: {
@@ -2725,9 +2723,9 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
2725
2723
  password?: string | undefined;
2726
2724
  } | undefined;
2727
2725
  };
2728
- }, {
2729
2726
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
2730
2727
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
2728
+ }, {
2731
2729
  workspace: {
2732
2730
  id: string;
2733
2731
  profile: {
@@ -2913,6 +2911,8 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
2913
2911
  password?: string | undefined;
2914
2912
  } | undefined;
2915
2913
  };
2914
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
2915
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
2916
2916
  }>>;
2917
2917
  designSystem: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<Omit<{
2918
2918
  id: z.ZodString;
@@ -3145,8 +3145,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
3145
3145
  isReadonly: boolean;
3146
3146
  } | undefined;
3147
3147
  workspaceMembership?: {
3148
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
3149
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
3150
3148
  workspace: {
3151
3149
  id: string;
3152
3150
  profile: {
@@ -3332,6 +3330,8 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
3332
3330
  password?: string | undefined;
3333
3331
  } | undefined;
3334
3332
  };
3333
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
3334
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
3335
3335
  } | undefined;
3336
3336
  }, {
3337
3337
  brand?: {
@@ -3386,8 +3386,6 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
3386
3386
  isReadonly: boolean;
3387
3387
  } | undefined;
3388
3388
  workspaceMembership?: {
3389
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
3390
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
3391
3389
  workspace: {
3392
3390
  id: string;
3393
3391
  profile: {
@@ -3573,6 +3571,8 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
3573
3571
  password?: string | undefined;
3574
3572
  } | undefined;
3575
3573
  };
3574
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
3575
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
3576
3576
  } | undefined;
3577
3577
  }>;
3578
3578
  type DTOAppBootstrapDataResponse = z.infer<typeof DTOAppBootstrapDataResponse>;
@@ -3959,6 +3959,158 @@ declare const DTOBrandsListResponse: z.ZodObject<{
3959
3959
  }>;
3960
3960
  type DTOBrandsListResponse = z.infer<typeof DTOBrandsListResponse>;
3961
3961
 
3962
+ declare const DTODesignSystemContactsResponse: z.ZodObject<{
3963
+ contacts: z.ZodObject<{
3964
+ workspace: z.ZodArray<z.ZodObject<{
3965
+ id: z.ZodString;
3966
+ email: z.ZodString;
3967
+ profile: z.ZodObject<{
3968
+ name: z.ZodString;
3969
+ nickname: z.ZodOptional<z.ZodString>;
3970
+ avatar: z.ZodOptional<z.ZodString>;
3971
+ }, "strip", z.ZodTypeAny, {
3972
+ name: string;
3973
+ nickname?: string | undefined;
3974
+ avatar?: string | undefined;
3975
+ }, {
3976
+ name: string;
3977
+ nickname?: string | undefined;
3978
+ avatar?: string | undefined;
3979
+ }>;
3980
+ }, "strip", z.ZodTypeAny, {
3981
+ id: string;
3982
+ email: string;
3983
+ profile: {
3984
+ name: string;
3985
+ nickname?: string | undefined;
3986
+ avatar?: string | undefined;
3987
+ };
3988
+ }, {
3989
+ id: string;
3990
+ email: string;
3991
+ profile: {
3992
+ name: string;
3993
+ nickname?: string | undefined;
3994
+ avatar?: string | undefined;
3995
+ };
3996
+ }>, "many">;
3997
+ designSystem: z.ZodArray<z.ZodObject<{
3998
+ id: z.ZodString;
3999
+ email: z.ZodString;
4000
+ profile: z.ZodObject<{
4001
+ name: z.ZodString;
4002
+ nickname: z.ZodOptional<z.ZodString>;
4003
+ avatar: z.ZodOptional<z.ZodString>;
4004
+ }, "strip", z.ZodTypeAny, {
4005
+ name: string;
4006
+ nickname?: string | undefined;
4007
+ avatar?: string | undefined;
4008
+ }, {
4009
+ name: string;
4010
+ nickname?: string | undefined;
4011
+ avatar?: string | undefined;
4012
+ }>;
4013
+ }, "strip", z.ZodTypeAny, {
4014
+ id: string;
4015
+ email: string;
4016
+ profile: {
4017
+ name: string;
4018
+ nickname?: string | undefined;
4019
+ avatar?: string | undefined;
4020
+ };
4021
+ }, {
4022
+ id: string;
4023
+ email: string;
4024
+ profile: {
4025
+ name: string;
4026
+ nickname?: string | undefined;
4027
+ avatar?: string | undefined;
4028
+ };
4029
+ }>, "many">;
4030
+ }, "strip", z.ZodTypeAny, {
4031
+ workspace: {
4032
+ id: string;
4033
+ email: string;
4034
+ profile: {
4035
+ name: string;
4036
+ nickname?: string | undefined;
4037
+ avatar?: string | undefined;
4038
+ };
4039
+ }[];
4040
+ designSystem: {
4041
+ id: string;
4042
+ email: string;
4043
+ profile: {
4044
+ name: string;
4045
+ nickname?: string | undefined;
4046
+ avatar?: string | undefined;
4047
+ };
4048
+ }[];
4049
+ }, {
4050
+ workspace: {
4051
+ id: string;
4052
+ email: string;
4053
+ profile: {
4054
+ name: string;
4055
+ nickname?: string | undefined;
4056
+ avatar?: string | undefined;
4057
+ };
4058
+ }[];
4059
+ designSystem: {
4060
+ id: string;
4061
+ email: string;
4062
+ profile: {
4063
+ name: string;
4064
+ nickname?: string | undefined;
4065
+ avatar?: string | undefined;
4066
+ };
4067
+ }[];
4068
+ }>;
4069
+ }, "strip", z.ZodTypeAny, {
4070
+ contacts: {
4071
+ workspace: {
4072
+ id: string;
4073
+ email: string;
4074
+ profile: {
4075
+ name: string;
4076
+ nickname?: string | undefined;
4077
+ avatar?: string | undefined;
4078
+ };
4079
+ }[];
4080
+ designSystem: {
4081
+ id: string;
4082
+ email: string;
4083
+ profile: {
4084
+ name: string;
4085
+ nickname?: string | undefined;
4086
+ avatar?: string | undefined;
4087
+ };
4088
+ }[];
4089
+ };
4090
+ }, {
4091
+ contacts: {
4092
+ workspace: {
4093
+ id: string;
4094
+ email: string;
4095
+ profile: {
4096
+ name: string;
4097
+ nickname?: string | undefined;
4098
+ avatar?: string | undefined;
4099
+ };
4100
+ }[];
4101
+ designSystem: {
4102
+ id: string;
4103
+ email: string;
4104
+ profile: {
4105
+ name: string;
4106
+ nickname?: string | undefined;
4107
+ avatar?: string | undefined;
4108
+ };
4109
+ }[];
4110
+ };
4111
+ }>;
4112
+ type DTODesignSystemContactsResponse = z.infer<typeof DTODesignSystemContactsResponse>;
4113
+
3962
4114
  declare const DTODataSourceFigmaCloud: z.ZodObject<{
3963
4115
  fileId: z.ZodString;
3964
4116
  state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
@@ -3977,9 +4129,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
3977
4129
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
3978
4130
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
3979
4131
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
3980
- tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
3981
- tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
3982
- tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4132
+ tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4133
+ tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4134
+ tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
3983
4135
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
3984
4136
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
3985
4137
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -4033,9 +4185,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
4033
4185
  tokensCreated: number;
4034
4186
  tokensUpdated: number;
4035
4187
  tokensDeleted: number;
4036
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4037
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4038
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4188
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4189
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4190
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4039
4191
  componentsCreated: number;
4040
4192
  componentsUpdated: number;
4041
4193
  componentsDeleted: number;
@@ -4067,9 +4219,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
4067
4219
  tokensCreated?: number | null | undefined;
4068
4220
  tokensUpdated?: number | null | undefined;
4069
4221
  tokensDeleted?: number | null | undefined;
4070
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4071
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4072
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4222
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4223
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4224
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4073
4225
  componentsCreated?: number | null | undefined;
4074
4226
  componentsUpdated?: number | null | undefined;
4075
4227
  componentsDeleted?: number | null | undefined;
@@ -4143,9 +4295,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
4143
4295
  tokensCreated: number;
4144
4296
  tokensUpdated: number;
4145
4297
  tokensDeleted: number;
4146
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4147
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4148
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4298
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4299
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4300
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4149
4301
  componentsCreated: number;
4150
4302
  componentsUpdated: number;
4151
4303
  componentsDeleted: number;
@@ -4200,9 +4352,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
4200
4352
  tokensCreated?: number | null | undefined;
4201
4353
  tokensUpdated?: number | null | undefined;
4202
4354
  tokensDeleted?: number | null | undefined;
4203
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4204
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4205
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4355
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4356
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4357
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4206
4358
  componentsCreated?: number | null | undefined;
4207
4359
  componentsUpdated?: number | null | undefined;
4208
4360
  componentsDeleted?: number | null | undefined;
@@ -4277,9 +4429,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4277
4429
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4278
4430
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4279
4431
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4280
- tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4281
- tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4282
- tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4432
+ tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4433
+ tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4434
+ tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4283
4435
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
4284
4436
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
4285
4437
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -4333,9 +4485,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4333
4485
  tokensCreated: number;
4334
4486
  tokensUpdated: number;
4335
4487
  tokensDeleted: number;
4336
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4337
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4338
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4488
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4489
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4490
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4339
4491
  componentsCreated: number;
4340
4492
  componentsUpdated: number;
4341
4493
  componentsDeleted: number;
@@ -4367,9 +4519,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4367
4519
  tokensCreated?: number | null | undefined;
4368
4520
  tokensUpdated?: number | null | undefined;
4369
4521
  tokensDeleted?: number | null | undefined;
4370
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4371
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4372
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4522
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4523
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4524
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4373
4525
  componentsCreated?: number | null | undefined;
4374
4526
  componentsUpdated?: number | null | undefined;
4375
4527
  componentsDeleted?: number | null | undefined;
@@ -4443,9 +4595,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4443
4595
  tokensCreated: number;
4444
4596
  tokensUpdated: number;
4445
4597
  tokensDeleted: number;
4446
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4447
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4448
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4598
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4599
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4600
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4449
4601
  componentsCreated: number;
4450
4602
  componentsUpdated: number;
4451
4603
  componentsDeleted: number;
@@ -4500,9 +4652,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4500
4652
  tokensCreated?: number | null | undefined;
4501
4653
  tokensUpdated?: number | null | undefined;
4502
4654
  tokensDeleted?: number | null | undefined;
4503
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4504
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4505
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4655
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4656
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4657
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4506
4658
  componentsCreated?: number | null | undefined;
4507
4659
  componentsUpdated?: number | null | undefined;
4508
4660
  componentsDeleted?: number | null | undefined;
@@ -4564,9 +4716,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4564
4716
  tokensCreated: number;
4565
4717
  tokensUpdated: number;
4566
4718
  tokensDeleted: number;
4567
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4568
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4569
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
4719
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4720
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4721
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4570
4722
  componentsCreated: number;
4571
4723
  componentsUpdated: number;
4572
4724
  componentsDeleted: number;
@@ -4636,9 +4788,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4636
4788
  tokensCreated?: number | null | undefined;
4637
4789
  tokensUpdated?: number | null | undefined;
4638
4790
  tokensDeleted?: number | null | undefined;
4639
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4640
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4641
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4791
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4792
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4793
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4642
4794
  componentsCreated?: number | null | undefined;
4643
4795
  componentsUpdated?: number | null | undefined;
4644
4796
  componentsDeleted?: number | null | undefined;
@@ -4947,9 +5099,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
4947
5099
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4948
5100
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4949
5101
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4950
- tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4951
- tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4952
- tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5102
+ tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5103
+ tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5104
+ tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4953
5105
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
4954
5106
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
4955
5107
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -5003,9 +5155,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5003
5155
  tokensCreated: number;
5004
5156
  tokensUpdated: number;
5005
5157
  tokensDeleted: number;
5006
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5007
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5008
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5158
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5159
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5160
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5009
5161
  componentsCreated: number;
5010
5162
  componentsUpdated: number;
5011
5163
  componentsDeleted: number;
@@ -5037,9 +5189,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5037
5189
  tokensCreated?: number | null | undefined;
5038
5190
  tokensUpdated?: number | null | undefined;
5039
5191
  tokensDeleted?: number | null | undefined;
5040
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5041
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5042
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5192
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5193
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5194
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5043
5195
  componentsCreated?: number | null | undefined;
5044
5196
  componentsUpdated?: number | null | undefined;
5045
5197
  componentsDeleted?: number | null | undefined;
@@ -5113,9 +5265,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5113
5265
  tokensCreated: number;
5114
5266
  tokensUpdated: number;
5115
5267
  tokensDeleted: number;
5116
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5117
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5118
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5268
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5269
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5270
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5119
5271
  componentsCreated: number;
5120
5272
  componentsUpdated: number;
5121
5273
  componentsDeleted: number;
@@ -5170,9 +5322,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5170
5322
  tokensCreated?: number | null | undefined;
5171
5323
  tokensUpdated?: number | null | undefined;
5172
5324
  tokensDeleted?: number | null | undefined;
5173
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5174
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5175
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5325
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5326
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5327
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5176
5328
  componentsCreated?: number | null | undefined;
5177
5329
  componentsUpdated?: number | null | undefined;
5178
5330
  componentsDeleted?: number | null | undefined;
@@ -5234,9 +5386,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5234
5386
  tokensCreated: number;
5235
5387
  tokensUpdated: number;
5236
5388
  tokensDeleted: number;
5237
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5238
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5239
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5389
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5390
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5391
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5240
5392
  componentsCreated: number;
5241
5393
  componentsUpdated: number;
5242
5394
  componentsDeleted: number;
@@ -5306,9 +5458,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5306
5458
  tokensCreated?: number | null | undefined;
5307
5459
  tokensUpdated?: number | null | undefined;
5308
5460
  tokensDeleted?: number | null | undefined;
5309
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5310
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5311
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5461
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5462
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5463
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5312
5464
  componentsCreated?: number | null | undefined;
5313
5465
  componentsUpdated?: number | null | undefined;
5314
5466
  componentsDeleted?: number | null | undefined;
@@ -5614,9 +5766,9 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
5614
5766
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
5615
5767
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
5616
5768
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
5617
- tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5618
- tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5619
- tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5769
+ tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5770
+ tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5771
+ tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5620
5772
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
5621
5773
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
5622
5774
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -5670,9 +5822,9 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
5670
5822
  tokensCreated: number;
5671
5823
  tokensUpdated: number;
5672
5824
  tokensDeleted: number;
5673
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5674
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5675
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5825
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5826
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5827
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5676
5828
  componentsCreated: number;
5677
5829
  componentsUpdated: number;
5678
5830
  componentsDeleted: number;
@@ -5704,9 +5856,9 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
5704
5856
  tokensCreated?: number | null | undefined;
5705
5857
  tokensUpdated?: number | null | undefined;
5706
5858
  tokensDeleted?: number | null | undefined;
5707
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5708
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5709
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5859
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5860
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5861
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5710
5862
  componentsCreated?: number | null | undefined;
5711
5863
  componentsUpdated?: number | null | undefined;
5712
5864
  componentsDeleted?: number | null | undefined;
@@ -5780,9 +5932,9 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
5780
5932
  tokensCreated: number;
5781
5933
  tokensUpdated: number;
5782
5934
  tokensDeleted: number;
5783
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5784
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5785
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5935
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5936
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5937
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5786
5938
  componentsCreated: number;
5787
5939
  componentsUpdated: number;
5788
5940
  componentsDeleted: number;
@@ -5837,9 +5989,9 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
5837
5989
  tokensCreated?: number | null | undefined;
5838
5990
  tokensUpdated?: number | null | undefined;
5839
5991
  tokensDeleted?: number | null | undefined;
5840
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5841
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5842
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5992
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5993
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5994
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5843
5995
  componentsCreated?: number | null | undefined;
5844
5996
  componentsUpdated?: number | null | undefined;
5845
5997
  componentsDeleted?: number | null | undefined;
@@ -5901,9 +6053,9 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
5901
6053
  tokensCreated: number;
5902
6054
  tokensUpdated: number;
5903
6055
  tokensDeleted: number;
5904
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5905
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
5906
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6056
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6057
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6058
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5907
6059
  componentsCreated: number;
5908
6060
  componentsUpdated: number;
5909
6061
  componentsDeleted: number;
@@ -5973,9 +6125,9 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
5973
6125
  tokensCreated?: number | null | undefined;
5974
6126
  tokensUpdated?: number | null | undefined;
5975
6127
  tokensDeleted?: number | null | undefined;
5976
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5977
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5978
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6128
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6129
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6130
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5979
6131
  componentsCreated?: number | null | undefined;
5980
6132
  componentsUpdated?: number | null | undefined;
5981
6133
  componentsDeleted?: number | null | undefined;
@@ -6267,9 +6419,9 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
6267
6419
  tokensCreated: number;
6268
6420
  tokensUpdated: number;
6269
6421
  tokensDeleted: number;
6270
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6271
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6272
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6422
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6423
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6424
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6273
6425
  componentsCreated: number;
6274
6426
  componentsUpdated: number;
6275
6427
  componentsDeleted: number;
@@ -6385,9 +6537,9 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
6385
6537
  tokensCreated?: number | null | undefined;
6386
6538
  tokensUpdated?: number | null | undefined;
6387
6539
  tokensDeleted?: number | null | undefined;
6388
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6389
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6390
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6540
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6541
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6542
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6391
6543
  componentsCreated?: number | null | undefined;
6392
6544
  componentsUpdated?: number | null | undefined;
6393
6545
  componentsDeleted?: number | null | undefined;
@@ -6510,9 +6662,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6510
6662
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
6511
6663
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
6512
6664
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
6513
- tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6514
- tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6515
- tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6665
+ tokensCreatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6666
+ tokensUpdatedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6667
+ tokensDeletedPerType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Measure", "Radius", "GenericToken", "Font", "Text"]>]>, z.ZodNumber>>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6516
6668
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
6517
6669
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
6518
6670
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -6566,9 +6718,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6566
6718
  tokensCreated: number;
6567
6719
  tokensUpdated: number;
6568
6720
  tokensDeleted: number;
6569
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6570
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6571
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6721
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6722
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6723
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6572
6724
  componentsCreated: number;
6573
6725
  componentsUpdated: number;
6574
6726
  componentsDeleted: number;
@@ -6600,9 +6752,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6600
6752
  tokensCreated?: number | null | undefined;
6601
6753
  tokensUpdated?: number | null | undefined;
6602
6754
  tokensDeleted?: number | null | undefined;
6603
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6604
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6605
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6755
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6756
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6757
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6606
6758
  componentsCreated?: number | null | undefined;
6607
6759
  componentsUpdated?: number | null | undefined;
6608
6760
  componentsDeleted?: number | null | undefined;
@@ -6676,9 +6828,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6676
6828
  tokensCreated: number;
6677
6829
  tokensUpdated: number;
6678
6830
  tokensDeleted: number;
6679
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6680
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6681
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6831
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6832
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6833
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6682
6834
  componentsCreated: number;
6683
6835
  componentsUpdated: number;
6684
6836
  componentsDeleted: number;
@@ -6733,9 +6885,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6733
6885
  tokensCreated?: number | null | undefined;
6734
6886
  tokensUpdated?: number | null | undefined;
6735
6887
  tokensDeleted?: number | null | undefined;
6736
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6737
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6738
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6888
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6889
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6890
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6739
6891
  componentsCreated?: number | null | undefined;
6740
6892
  componentsUpdated?: number | null | undefined;
6741
6893
  componentsDeleted?: number | null | undefined;
@@ -6797,9 +6949,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6797
6949
  tokensCreated: number;
6798
6950
  tokensUpdated: number;
6799
6951
  tokensDeleted: number;
6800
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6801
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6802
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
6952
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6953
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6954
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6803
6955
  componentsCreated: number;
6804
6956
  componentsUpdated: number;
6805
6957
  componentsDeleted: number;
@@ -6869,9 +7021,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6869
7021
  tokensCreated?: number | null | undefined;
6870
7022
  tokensUpdated?: number | null | undefined;
6871
7023
  tokensDeleted?: number | null | undefined;
6872
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6873
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6874
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7024
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7025
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7026
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6875
7027
  componentsCreated?: number | null | undefined;
6876
7028
  componentsUpdated?: number | null | undefined;
6877
7029
  componentsDeleted?: number | null | undefined;
@@ -7163,9 +7315,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
7163
7315
  tokensCreated: number;
7164
7316
  tokensUpdated: number;
7165
7317
  tokensDeleted: number;
7166
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
7167
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
7168
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
7318
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7319
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7320
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7169
7321
  componentsCreated: number;
7170
7322
  componentsUpdated: number;
7171
7323
  componentsDeleted: number;
@@ -7281,9 +7433,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
7281
7433
  tokensCreated?: number | null | undefined;
7282
7434
  tokensUpdated?: number | null | undefined;
7283
7435
  tokensDeleted?: number | null | undefined;
7284
- tokensCreatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7285
- tokensUpdatedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7286
- tokensDeletedPerType?: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7436
+ tokensCreatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7437
+ tokensUpdatedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7438
+ tokensDeletedPerType?: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7287
7439
  componentsCreated?: number | null | undefined;
7288
7440
  componentsUpdated?: number | null | undefined;
7289
7441
  componentsDeleted?: number | null | undefined;
@@ -18672,6 +18824,185 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
18672
18824
  })[];
18673
18825
  }>;
18674
18826
  type DTODesignTokenListResponse = z.infer<typeof DTODesignTokenListResponse>;
18827
+ declare const DTODesignTokenGroup: z.ZodObject<{
18828
+ id: z.ZodString;
18829
+ tokenType: z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>;
18830
+ persistentId: z.ZodString;
18831
+ isRoot: z.ZodBoolean;
18832
+ brandId: z.ZodString;
18833
+ meta: z.ZodObject<{
18834
+ name: z.ZodString;
18835
+ description: z.ZodOptional<z.ZodString>;
18836
+ }, "strip", z.ZodTypeAny, {
18837
+ name: string;
18838
+ description?: string | undefined;
18839
+ }, {
18840
+ name: string;
18841
+ description?: string | undefined;
18842
+ }>;
18843
+ childrenIds: z.ZodArray<z.ZodString, "many">;
18844
+ }, "strip", z.ZodTypeAny, {
18845
+ id: string;
18846
+ persistentId: string;
18847
+ meta: {
18848
+ name: string;
18849
+ description?: string | undefined;
18850
+ };
18851
+ isRoot: boolean;
18852
+ childrenIds: string[];
18853
+ brandId: string;
18854
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
18855
+ }, {
18856
+ id: string;
18857
+ persistentId: string;
18858
+ meta: {
18859
+ name: string;
18860
+ description?: string | undefined;
18861
+ };
18862
+ isRoot: boolean;
18863
+ childrenIds: string[];
18864
+ brandId: string;
18865
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
18866
+ }>;
18867
+ type DTODesignTokenGroup = z.infer<typeof DTODesignTokenGroup>;
18868
+ declare const DTODesignTokenGroupListResponse: z.ZodObject<{
18869
+ groups: z.ZodArray<z.ZodObject<{
18870
+ id: z.ZodString;
18871
+ tokenType: z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>;
18872
+ persistentId: z.ZodString;
18873
+ isRoot: z.ZodBoolean;
18874
+ brandId: z.ZodString;
18875
+ meta: z.ZodObject<{
18876
+ name: z.ZodString;
18877
+ description: z.ZodOptional<z.ZodString>;
18878
+ }, "strip", z.ZodTypeAny, {
18879
+ name: string;
18880
+ description?: string | undefined;
18881
+ }, {
18882
+ name: string;
18883
+ description?: string | undefined;
18884
+ }>;
18885
+ childrenIds: z.ZodArray<z.ZodString, "many">;
18886
+ }, "strip", z.ZodTypeAny, {
18887
+ id: string;
18888
+ persistentId: string;
18889
+ meta: {
18890
+ name: string;
18891
+ description?: string | undefined;
18892
+ };
18893
+ isRoot: boolean;
18894
+ childrenIds: string[];
18895
+ brandId: string;
18896
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
18897
+ }, {
18898
+ id: string;
18899
+ persistentId: string;
18900
+ meta: {
18901
+ name: string;
18902
+ description?: string | undefined;
18903
+ };
18904
+ isRoot: boolean;
18905
+ childrenIds: string[];
18906
+ brandId: string;
18907
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
18908
+ }>, "many">;
18909
+ }, "strip", z.ZodTypeAny, {
18910
+ groups: {
18911
+ id: string;
18912
+ persistentId: string;
18913
+ meta: {
18914
+ name: string;
18915
+ description?: string | undefined;
18916
+ };
18917
+ isRoot: boolean;
18918
+ childrenIds: string[];
18919
+ brandId: string;
18920
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
18921
+ }[];
18922
+ }, {
18923
+ groups: {
18924
+ id: string;
18925
+ persistentId: string;
18926
+ meta: {
18927
+ name: string;
18928
+ description?: string | undefined;
18929
+ };
18930
+ isRoot: boolean;
18931
+ childrenIds: string[];
18932
+ brandId: string;
18933
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
18934
+ }[];
18935
+ }>;
18936
+ type DTODesignTokenGroupListResponse = z.infer<typeof DTODesignTokenGroupListResponse>;
18937
+ declare const DTODesignTokenGroupResponse: z.ZodObject<{
18938
+ group: z.ZodObject<{
18939
+ id: z.ZodString;
18940
+ tokenType: z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>;
18941
+ persistentId: z.ZodString;
18942
+ isRoot: z.ZodBoolean;
18943
+ brandId: z.ZodString;
18944
+ meta: z.ZodObject<{
18945
+ name: z.ZodString;
18946
+ description: z.ZodOptional<z.ZodString>;
18947
+ }, "strip", z.ZodTypeAny, {
18948
+ name: string;
18949
+ description?: string | undefined;
18950
+ }, {
18951
+ name: string;
18952
+ description?: string | undefined;
18953
+ }>;
18954
+ childrenIds: z.ZodArray<z.ZodString, "many">;
18955
+ }, "strip", z.ZodTypeAny, {
18956
+ id: string;
18957
+ persistentId: string;
18958
+ meta: {
18959
+ name: string;
18960
+ description?: string | undefined;
18961
+ };
18962
+ isRoot: boolean;
18963
+ childrenIds: string[];
18964
+ brandId: string;
18965
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
18966
+ }, {
18967
+ id: string;
18968
+ persistentId: string;
18969
+ meta: {
18970
+ name: string;
18971
+ description?: string | undefined;
18972
+ };
18973
+ isRoot: boolean;
18974
+ childrenIds: string[];
18975
+ brandId: string;
18976
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
18977
+ }>;
18978
+ }, "strip", z.ZodTypeAny, {
18979
+ group: {
18980
+ id: string;
18981
+ persistentId: string;
18982
+ meta: {
18983
+ name: string;
18984
+ description?: string | undefined;
18985
+ };
18986
+ isRoot: boolean;
18987
+ childrenIds: string[];
18988
+ brandId: string;
18989
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
18990
+ };
18991
+ }, {
18992
+ group: {
18993
+ id: string;
18994
+ persistentId: string;
18995
+ meta: {
18996
+ name: string;
18997
+ description?: string | undefined;
18998
+ };
18999
+ isRoot: boolean;
19000
+ childrenIds: string[];
19001
+ brandId: string;
19002
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19003
+ };
19004
+ }>;
19005
+ type DTODesignTokenGroupResponse = z.infer<typeof DTODesignTokenGroupResponse>;
18675
19006
  declare const DTODesignTokenCreatePayload: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
18676
19007
  type: z.ZodLiteral<"Blur">;
18677
19008
  data: z.ZodObject<z.objectUtil.extendShape<{
@@ -20922,6 +21253,44 @@ declare const DTODesignTokenCreatePayload: z.ZodIntersection<z.ZodDiscriminatedU
20922
21253
  groupPersistentId?: string | undefined;
20923
21254
  }>>;
20924
21255
  type DTODesignTokenCreatePayload = z.infer<typeof DTODesignTokenCreatePayload>;
21256
+ declare const DTODesignTokenGroupCreatePayload: z.ZodObject<{
21257
+ persistentId: z.ZodString;
21258
+ meta: z.ZodObject<{
21259
+ name: z.ZodString;
21260
+ description: z.ZodOptional<z.ZodString>;
21261
+ }, "strip", z.ZodTypeAny, {
21262
+ name: string;
21263
+ description?: string | undefined;
21264
+ }, {
21265
+ name: string;
21266
+ description?: string | undefined;
21267
+ }>;
21268
+ brandId: z.ZodString;
21269
+ parentId: z.ZodOptional<z.ZodString>;
21270
+ tokenType: z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>;
21271
+ childrenIds: z.ZodArray<z.ZodString, "many">;
21272
+ }, "strip", z.ZodTypeAny, {
21273
+ persistentId: string;
21274
+ meta: {
21275
+ name: string;
21276
+ description?: string | undefined;
21277
+ };
21278
+ childrenIds: string[];
21279
+ brandId: string;
21280
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
21281
+ parentId?: string | undefined;
21282
+ }, {
21283
+ persistentId: string;
21284
+ meta: {
21285
+ name: string;
21286
+ description?: string | undefined;
21287
+ };
21288
+ childrenIds: string[];
21289
+ brandId: string;
21290
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
21291
+ parentId?: string | undefined;
21292
+ }>;
21293
+ type DTODesignTokenGroupCreatePayload = z.infer<typeof DTODesignTokenGroupCreatePayload>;
20925
21294
 
20926
21295
  declare const DTODocumentationPageAnchor: z.ZodObject<{
20927
21296
  blockId: z.ZodString;
@@ -21075,14 +21444,14 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
21075
21444
  variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
21076
21445
  }, "strip", z.ZodTypeAny, {
21077
21446
  id: string;
21078
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21447
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21079
21448
  name: string;
21080
21449
  options?: Record<string, any> | undefined;
21081
21450
  description?: string | undefined;
21082
21451
  variantOptions?: Record<string, Record<string, any>> | undefined;
21083
21452
  }, {
21084
21453
  id: string;
21085
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21454
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21086
21455
  name: string;
21087
21456
  options?: Record<string, any> | undefined;
21088
21457
  description?: string | undefined;
@@ -21178,7 +21547,7 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
21178
21547
  }, "strip", z.ZodTypeAny, {
21179
21548
  properties: {
21180
21549
  id: string;
21181
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21550
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21182
21551
  name: string;
21183
21552
  options?: Record<string, any> | undefined;
21184
21553
  description?: string | undefined;
@@ -21217,7 +21586,7 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
21217
21586
  }, {
21218
21587
  properties: {
21219
21588
  id: string;
21220
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21589
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21221
21590
  name: string;
21222
21591
  options?: Record<string, any> | undefined;
21223
21592
  description?: string | undefined;
@@ -21337,14 +21706,14 @@ declare const DTOPageBlockDefinitionProperty: z.ZodObject<{
21337
21706
  variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
21338
21707
  }, "strip", z.ZodTypeAny, {
21339
21708
  id: string;
21340
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21709
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21341
21710
  name: string;
21342
21711
  options?: Record<string, any> | undefined;
21343
21712
  description?: string | undefined;
21344
21713
  variantOptions?: Record<string, Record<string, any>> | undefined;
21345
21714
  }, {
21346
21715
  id: string;
21347
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21716
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21348
21717
  name: string;
21349
21718
  options?: Record<string, any> | undefined;
21350
21719
  description?: string | undefined;
@@ -21380,14 +21749,14 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
21380
21749
  variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
21381
21750
  }, "strip", z.ZodTypeAny, {
21382
21751
  id: string;
21383
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21752
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21384
21753
  name: string;
21385
21754
  options?: Record<string, any> | undefined;
21386
21755
  description?: string | undefined;
21387
21756
  variantOptions?: Record<string, Record<string, any>> | undefined;
21388
21757
  }, {
21389
21758
  id: string;
21390
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21759
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21391
21760
  name: string;
21392
21761
  options?: Record<string, any> | undefined;
21393
21762
  description?: string | undefined;
@@ -21483,7 +21852,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
21483
21852
  }, "strip", z.ZodTypeAny, {
21484
21853
  properties: {
21485
21854
  id: string;
21486
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21855
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21487
21856
  name: string;
21488
21857
  options?: Record<string, any> | undefined;
21489
21858
  description?: string | undefined;
@@ -21522,7 +21891,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
21522
21891
  }, {
21523
21892
  properties: {
21524
21893
  id: string;
21525
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21894
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21526
21895
  name: string;
21527
21896
  options?: Record<string, any> | undefined;
21528
21897
  description?: string | undefined;
@@ -21652,11 +22021,11 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
21652
22021
  id: string;
21653
22022
  name: string;
21654
22023
  description: string;
21655
- category: "Figma" | "Text" | "Other" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
22024
+ category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
21656
22025
  item: {
21657
22026
  properties: {
21658
22027
  id: string;
21659
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
22028
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21660
22029
  name: string;
21661
22030
  options?: Record<string, any> | undefined;
21662
22031
  description?: string | undefined;
@@ -21725,11 +22094,11 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
21725
22094
  id: string;
21726
22095
  name: string;
21727
22096
  description: string;
21728
- category: "Figma" | "Text" | "Other" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
22097
+ category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
21729
22098
  item: {
21730
22099
  properties: {
21731
22100
  id: string;
21732
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
22101
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21733
22102
  name: string;
21734
22103
  options?: Record<string, any> | undefined;
21735
22104
  description?: string | undefined;
@@ -30906,9 +31275,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
30906
31275
  } | undefined;
30907
31276
  }>, "many">;
30908
31277
  }, "strip", z.ZodTypeAny, {
30909
- pages: {
30910
- path: string;
30911
- type: "Page";
31278
+ groups: {
31279
+ type: "Group";
30912
31280
  id: string;
30913
31281
  persistentId: string;
30914
31282
  designSystemVersionId: string;
@@ -30916,6 +31284,9 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
30916
31284
  updatedAt: Date;
30917
31285
  shortPersistentId: string;
30918
31286
  title: string;
31287
+ isRoot: boolean;
31288
+ childrenIds: string[];
31289
+ groupBehavior: "Group" | "Tabs";
30919
31290
  configuration: {
30920
31291
  showSidebar: boolean;
30921
31292
  isPrivate: boolean;
@@ -30951,15 +31322,10 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
30951
31322
  slug?: string | undefined;
30952
31323
  userSlug?: string | undefined;
30953
31324
  approvalState?: {
30954
- id: string;
30955
- createdAt: Date;
30956
- updatedAt: Date;
30957
31325
  persistentId: string;
30958
31326
  designSystemVersionId: string;
31327
+ groupId: string;
30959
31328
  approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
30960
- pageId: string;
30961
- pagePersistentId: string;
30962
- updatedByUserId: string;
30963
31329
  } | undefined;
30964
31330
  draftState?: {
30965
31331
  changeType: "Created";
@@ -31011,8 +31377,9 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
31011
31377
  lastPublishedAt: Date;
31012
31378
  } | undefined;
31013
31379
  }[];
31014
- groups: {
31015
- type: "Group";
31380
+ pages: {
31381
+ path: string;
31382
+ type: "Page";
31016
31383
  id: string;
31017
31384
  persistentId: string;
31018
31385
  designSystemVersionId: string;
@@ -31020,9 +31387,6 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
31020
31387
  updatedAt: Date;
31021
31388
  shortPersistentId: string;
31022
31389
  title: string;
31023
- isRoot: boolean;
31024
- childrenIds: string[];
31025
- groupBehavior: "Group" | "Tabs";
31026
31390
  configuration: {
31027
31391
  showSidebar: boolean;
31028
31392
  isPrivate: boolean;
@@ -31058,10 +31422,15 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
31058
31422
  slug?: string | undefined;
31059
31423
  userSlug?: string | undefined;
31060
31424
  approvalState?: {
31425
+ id: string;
31426
+ createdAt: Date;
31427
+ updatedAt: Date;
31061
31428
  persistentId: string;
31062
31429
  designSystemVersionId: string;
31063
- groupId: string;
31064
31430
  approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
31431
+ pageId: string;
31432
+ pagePersistentId: string;
31433
+ updatedByUserId: string;
31065
31434
  } | undefined;
31066
31435
  draftState?: {
31067
31436
  changeType: "Created";
@@ -31114,9 +31483,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
31114
31483
  } | undefined;
31115
31484
  }[];
31116
31485
  }, {
31117
- pages: {
31118
- path: string;
31119
- type: "Page";
31486
+ groups: {
31487
+ type: "Group";
31120
31488
  id: string;
31121
31489
  persistentId: string;
31122
31490
  designSystemVersionId: string;
@@ -31124,6 +31492,9 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
31124
31492
  updatedAt: Date;
31125
31493
  shortPersistentId: string;
31126
31494
  title: string;
31495
+ isRoot: boolean;
31496
+ childrenIds: string[];
31497
+ groupBehavior: "Group" | "Tabs";
31127
31498
  configuration: {
31128
31499
  showSidebar: boolean;
31129
31500
  isPrivate: boolean;
@@ -31159,15 +31530,10 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
31159
31530
  slug?: string | undefined;
31160
31531
  userSlug?: string | undefined;
31161
31532
  approvalState?: {
31162
- id: string;
31163
- createdAt: Date;
31164
- updatedAt: Date;
31165
31533
  persistentId: string;
31166
31534
  designSystemVersionId: string;
31535
+ groupId: string;
31167
31536
  approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
31168
- pageId: string;
31169
- pagePersistentId: string;
31170
- updatedByUserId: string;
31171
31537
  } | undefined;
31172
31538
  draftState?: {
31173
31539
  changeType: "Created";
@@ -31219,8 +31585,9 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
31219
31585
  lastPublishedAt: Date;
31220
31586
  } | undefined;
31221
31587
  }[];
31222
- groups: {
31223
- type: "Group";
31588
+ pages: {
31589
+ path: string;
31590
+ type: "Page";
31224
31591
  id: string;
31225
31592
  persistentId: string;
31226
31593
  designSystemVersionId: string;
@@ -31228,9 +31595,6 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
31228
31595
  updatedAt: Date;
31229
31596
  shortPersistentId: string;
31230
31597
  title: string;
31231
- isRoot: boolean;
31232
- childrenIds: string[];
31233
- groupBehavior: "Group" | "Tabs";
31234
31598
  configuration: {
31235
31599
  showSidebar: boolean;
31236
31600
  isPrivate: boolean;
@@ -31266,10 +31630,15 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
31266
31630
  slug?: string | undefined;
31267
31631
  userSlug?: string | undefined;
31268
31632
  approvalState?: {
31633
+ id: string;
31634
+ createdAt: Date;
31635
+ updatedAt: Date;
31269
31636
  persistentId: string;
31270
31637
  designSystemVersionId: string;
31271
- groupId: string;
31272
31638
  approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
31639
+ pageId: string;
31640
+ pagePersistentId: string;
31641
+ updatedByUserId: string;
31273
31642
  } | undefined;
31274
31643
  draftState?: {
31275
31644
  changeType: "Created";
@@ -35608,9 +35977,9 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
35608
35977
  data: z.ZodObject<{
35609
35978
  blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
35610
35979
  persistentId: string;
35611
- type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Text" | "Link" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
35980
+ type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Image" | "Text" | "Link" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
35612
35981
  url?: string | null | undefined;
35613
- tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
35982
+ tokenType?: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
35614
35983
  asset?: {
35615
35984
  type: "image" | "figmaFrame";
35616
35985
  id?: string | null | undefined;
@@ -36200,9 +36569,9 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
36200
36569
  }, {
36201
36570
  blocks: ({
36202
36571
  persistentId: string;
36203
- type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Text" | "Link" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
36572
+ type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Image" | "Text" | "Link" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
36204
36573
  url?: string | null | undefined;
36205
- tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
36574
+ tokenType?: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
36206
36575
  asset?: {
36207
36576
  type: "image" | "figmaFrame";
36208
36577
  id?: string | null | undefined;
@@ -37016,9 +37385,9 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
37016
37385
  }>;
37017
37386
  blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
37018
37387
  persistentId: string;
37019
- type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Text" | "Link" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
37388
+ type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Image" | "Text" | "Link" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
37020
37389
  url?: string | null | undefined;
37021
- tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
37390
+ tokenType?: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
37022
37391
  asset?: {
37023
37392
  type: "image" | "figmaFrame";
37024
37393
  id?: string | null | undefined;
@@ -37261,9 +37630,9 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
37261
37630
  } & {
37262
37631
  children: ({
37263
37632
  persistentId: string;
37264
- type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Text" | "Link" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
37633
+ type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Image" | "Text" | "Link" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
37265
37634
  url?: string | null | undefined;
37266
- tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
37635
+ tokenType?: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
37267
37636
  asset?: {
37268
37637
  type: "image" | "figmaFrame";
37269
37638
  id?: string | null | undefined;
@@ -37624,9 +37993,9 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
37624
37993
  };
37625
37994
  blocks: ({
37626
37995
  persistentId: string;
37627
- type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Text" | "Link" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
37996
+ type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Image" | "Text" | "Link" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
37628
37997
  url?: string | null | undefined;
37629
- tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
37998
+ tokenType?: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
37630
37999
  asset?: {
37631
38000
  type: "image" | "figmaFrame";
37632
38001
  id?: string | null | undefined;
@@ -37869,9 +38238,9 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
37869
38238
  } & {
37870
38239
  children: ({
37871
38240
  persistentId: string;
37872
- type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Text" | "Link" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
38241
+ type: "Tabs" | "Custom" | "Theme" | "Token" | "Component" | "Image" | "Text" | "Link" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "Guidelines" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "ComponentAssetGroup" | "RenderCode" | "TabItem" | "TableRow" | "TableCell" | "Guideline" | "FigmaComponents" | "FigmaComponentPropsTable";
37873
38242
  url?: string | null | undefined;
37874
- tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
38243
+ tokenType?: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
37875
38244
  asset?: {
37876
38245
  type: "image" | "figmaFrame";
37877
38246
  id?: string | null | undefined;
@@ -44104,7 +44473,7 @@ declare const DTOExporter: z.ZodObject<{
44104
44473
  }, {
44105
44474
  category: z.ZodString;
44106
44475
  }>, "strip", z.ZodTypeAny, {
44107
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44476
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44108
44477
  label: string;
44109
44478
  key: string;
44110
44479
  category: string;
@@ -44114,7 +44483,7 @@ declare const DTOExporter: z.ZodObject<{
44114
44483
  inputType?: "code" | "plain" | undefined;
44115
44484
  isMultiline?: boolean | null | undefined;
44116
44485
  }, {
44117
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44486
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44118
44487
  label: string;
44119
44488
  key: string;
44120
44489
  category: string;
@@ -44132,7 +44501,7 @@ declare const DTOExporter: z.ZodObject<{
44132
44501
  iconURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
44133
44502
  mode: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"array" | "block", z.ZodTypeDef, "array" | "block">>>, NonNullable<"array" | "block"> | undefined, "array" | "block" | null | undefined>;
44134
44503
  properties: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
44135
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44504
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44136
44505
  label: string;
44137
44506
  key: string;
44138
44507
  values?: string[] | null | undefined;
@@ -44141,7 +44510,7 @@ declare const DTOExporter: z.ZodObject<{
44141
44510
  inputType?: "code" | "plain" | undefined;
44142
44511
  isMultiline?: boolean | null | undefined;
44143
44512
  }[], z.ZodTypeDef, {
44144
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44513
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44145
44514
  label: string;
44146
44515
  key: string;
44147
44516
  values?: string[] | null | undefined;
@@ -44150,7 +44519,7 @@ declare const DTOExporter: z.ZodObject<{
44150
44519
  inputType?: "code" | "plain" | undefined;
44151
44520
  isMultiline?: boolean | null | undefined;
44152
44521
  }[]>>>, {
44153
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44522
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44154
44523
  label: string;
44155
44524
  key: string;
44156
44525
  values?: string[] | null | undefined;
@@ -44159,7 +44528,7 @@ declare const DTOExporter: z.ZodObject<{
44159
44528
  inputType?: "code" | "plain" | undefined;
44160
44529
  isMultiline?: boolean | null | undefined;
44161
44530
  }[] | undefined, {
44162
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44531
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44163
44532
  label: string;
44164
44533
  key: string;
44165
44534
  values?: string[] | null | undefined;
@@ -44168,7 +44537,7 @@ declare const DTOExporter: z.ZodObject<{
44168
44537
  inputType?: "code" | "plain" | undefined;
44169
44538
  isMultiline?: boolean | null | undefined;
44170
44539
  }[] | null | undefined>, {
44171
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44540
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44172
44541
  label: string;
44173
44542
  key: string;
44174
44543
  values?: string[] | null | undefined;
@@ -44177,7 +44546,7 @@ declare const DTOExporter: z.ZodObject<{
44177
44546
  inputType?: "code" | "plain" | undefined;
44178
44547
  isMultiline?: boolean | null | undefined;
44179
44548
  }[], {
44180
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44549
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44181
44550
  label: string;
44182
44551
  key: string;
44183
44552
  values?: string[] | null | undefined;
@@ -44189,7 +44558,7 @@ declare const DTOExporter: z.ZodObject<{
44189
44558
  }, "strip", z.ZodTypeAny, {
44190
44559
  key: string;
44191
44560
  properties: {
44192
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44561
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44193
44562
  label: string;
44194
44563
  key: string;
44195
44564
  values?: string[] | null | undefined;
@@ -44211,7 +44580,7 @@ declare const DTOExporter: z.ZodObject<{
44211
44580
  iconURL?: string | null | undefined;
44212
44581
  mode?: "array" | "block" | null | undefined;
44213
44582
  properties?: {
44214
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44583
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44215
44584
  label: string;
44216
44585
  key: string;
44217
44586
  values?: string[] | null | undefined;
@@ -44249,12 +44618,12 @@ declare const DTOExporter: z.ZodObject<{
44249
44618
  }, "strip", z.ZodTypeAny, {
44250
44619
  isPrivate: boolean;
44251
44620
  id: string;
44252
- source: "upload" | "git";
44253
44621
  name: string;
44622
+ source: "upload" | "git";
44254
44623
  exporterType: "code" | "documentation";
44255
44624
  isDefaultDocumentationExporter: boolean;
44256
44625
  configurationProperties: {
44257
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44626
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44258
44627
  label: string;
44259
44628
  key: string;
44260
44629
  category: string;
@@ -44267,7 +44636,7 @@ declare const DTOExporter: z.ZodObject<{
44267
44636
  customBlocks: {
44268
44637
  key: string;
44269
44638
  properties: {
44270
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44639
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44271
44640
  label: string;
44272
44641
  key: string;
44273
44642
  values?: string[] | null | undefined;
@@ -44298,12 +44667,12 @@ declare const DTOExporter: z.ZodObject<{
44298
44667
  }, {
44299
44668
  isPrivate: boolean;
44300
44669
  id: string;
44301
- source: "upload" | "git";
44302
44670
  name: string;
44671
+ source: "upload" | "git";
44303
44672
  exporterType: "code" | "documentation";
44304
44673
  isDefaultDocumentationExporter: boolean;
44305
44674
  configurationProperties: {
44306
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44675
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44307
44676
  label: string;
44308
44677
  key: string;
44309
44678
  category: string;
@@ -44321,7 +44690,7 @@ declare const DTOExporter: z.ZodObject<{
44321
44690
  iconURL?: string | null | undefined;
44322
44691
  mode?: "array" | "block" | null | undefined;
44323
44692
  properties?: {
44324
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44693
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44325
44694
  label: string;
44326
44695
  key: string;
44327
44696
  values?: string[] | null | undefined;
@@ -44380,7 +44749,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44380
44749
  }, {
44381
44750
  category: z.ZodString;
44382
44751
  }>, "strip", z.ZodTypeAny, {
44383
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44752
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44384
44753
  label: string;
44385
44754
  key: string;
44386
44755
  category: string;
@@ -44390,7 +44759,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44390
44759
  inputType?: "code" | "plain" | undefined;
44391
44760
  isMultiline?: boolean | null | undefined;
44392
44761
  }, {
44393
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44762
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44394
44763
  label: string;
44395
44764
  key: string;
44396
44765
  category: string;
@@ -44408,7 +44777,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44408
44777
  iconURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
44409
44778
  mode: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"array" | "block", z.ZodTypeDef, "array" | "block">>>, NonNullable<"array" | "block"> | undefined, "array" | "block" | null | undefined>;
44410
44779
  properties: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
44411
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44780
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44412
44781
  label: string;
44413
44782
  key: string;
44414
44783
  values?: string[] | null | undefined;
@@ -44417,7 +44786,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44417
44786
  inputType?: "code" | "plain" | undefined;
44418
44787
  isMultiline?: boolean | null | undefined;
44419
44788
  }[], z.ZodTypeDef, {
44420
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44789
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44421
44790
  label: string;
44422
44791
  key: string;
44423
44792
  values?: string[] | null | undefined;
@@ -44426,7 +44795,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44426
44795
  inputType?: "code" | "plain" | undefined;
44427
44796
  isMultiline?: boolean | null | undefined;
44428
44797
  }[]>>>, {
44429
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44798
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44430
44799
  label: string;
44431
44800
  key: string;
44432
44801
  values?: string[] | null | undefined;
@@ -44435,7 +44804,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44435
44804
  inputType?: "code" | "plain" | undefined;
44436
44805
  isMultiline?: boolean | null | undefined;
44437
44806
  }[] | undefined, {
44438
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44807
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44439
44808
  label: string;
44440
44809
  key: string;
44441
44810
  values?: string[] | null | undefined;
@@ -44444,7 +44813,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44444
44813
  inputType?: "code" | "plain" | undefined;
44445
44814
  isMultiline?: boolean | null | undefined;
44446
44815
  }[] | null | undefined>, {
44447
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44816
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44448
44817
  label: string;
44449
44818
  key: string;
44450
44819
  values?: string[] | null | undefined;
@@ -44453,7 +44822,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44453
44822
  inputType?: "code" | "plain" | undefined;
44454
44823
  isMultiline?: boolean | null | undefined;
44455
44824
  }[], {
44456
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44825
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44457
44826
  label: string;
44458
44827
  key: string;
44459
44828
  values?: string[] | null | undefined;
@@ -44465,7 +44834,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44465
44834
  }, "strip", z.ZodTypeAny, {
44466
44835
  key: string;
44467
44836
  properties: {
44468
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44837
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44469
44838
  label: string;
44470
44839
  key: string;
44471
44840
  values?: string[] | null | undefined;
@@ -44487,7 +44856,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44487
44856
  iconURL?: string | null | undefined;
44488
44857
  mode?: "array" | "block" | null | undefined;
44489
44858
  properties?: {
44490
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44859
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44491
44860
  label: string;
44492
44861
  key: string;
44493
44862
  values?: string[] | null | undefined;
@@ -44525,12 +44894,12 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44525
44894
  }, "strip", z.ZodTypeAny, {
44526
44895
  isPrivate: boolean;
44527
44896
  id: string;
44528
- source: "upload" | "git";
44529
44897
  name: string;
44898
+ source: "upload" | "git";
44530
44899
  exporterType: "code" | "documentation";
44531
44900
  isDefaultDocumentationExporter: boolean;
44532
44901
  configurationProperties: {
44533
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44902
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44534
44903
  label: string;
44535
44904
  key: string;
44536
44905
  category: string;
@@ -44543,7 +44912,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44543
44912
  customBlocks: {
44544
44913
  key: string;
44545
44914
  properties: {
44546
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44915
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44547
44916
  label: string;
44548
44917
  key: string;
44549
44918
  values?: string[] | null | undefined;
@@ -44574,12 +44943,12 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44574
44943
  }, {
44575
44944
  isPrivate: boolean;
44576
44945
  id: string;
44577
- source: "upload" | "git";
44578
44946
  name: string;
44947
+ source: "upload" | "git";
44579
44948
  exporterType: "code" | "documentation";
44580
44949
  isDefaultDocumentationExporter: boolean;
44581
44950
  configurationProperties: {
44582
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44951
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44583
44952
  label: string;
44584
44953
  key: string;
44585
44954
  category: string;
@@ -44597,7 +44966,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44597
44966
  iconURL?: string | null | undefined;
44598
44967
  mode?: "array" | "block" | null | undefined;
44599
44968
  properties?: {
44600
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
44969
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44601
44970
  label: string;
44602
44971
  key: string;
44603
44972
  values?: string[] | null | undefined;
@@ -44643,12 +45012,12 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44643
45012
  exporter: {
44644
45013
  isPrivate: boolean;
44645
45014
  id: string;
44646
- source: "upload" | "git";
44647
45015
  name: string;
45016
+ source: "upload" | "git";
44648
45017
  exporterType: "code" | "documentation";
44649
45018
  isDefaultDocumentationExporter: boolean;
44650
45019
  configurationProperties: {
44651
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45020
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44652
45021
  label: string;
44653
45022
  key: string;
44654
45023
  category: string;
@@ -44661,7 +45030,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44661
45030
  customBlocks: {
44662
45031
  key: string;
44663
45032
  properties: {
44664
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45033
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44665
45034
  label: string;
44666
45035
  key: string;
44667
45036
  values?: string[] | null | undefined;
@@ -44699,12 +45068,12 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44699
45068
  exporter: {
44700
45069
  isPrivate: boolean;
44701
45070
  id: string;
44702
- source: "upload" | "git";
44703
45071
  name: string;
45072
+ source: "upload" | "git";
44704
45073
  exporterType: "code" | "documentation";
44705
45074
  isDefaultDocumentationExporter: boolean;
44706
45075
  configurationProperties: {
44707
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45076
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44708
45077
  label: string;
44709
45078
  key: string;
44710
45079
  category: string;
@@ -44722,7 +45091,7 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44722
45091
  iconURL?: string | null | undefined;
44723
45092
  mode?: "array" | "block" | null | undefined;
44724
45093
  properties?: {
44725
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45094
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44726
45095
  label: string;
44727
45096
  key: string;
44728
45097
  values?: string[] | null | undefined;
@@ -44768,7 +45137,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44768
45137
  }, {
44769
45138
  category: z.ZodString;
44770
45139
  }>, "strip", z.ZodTypeAny, {
44771
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45140
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44772
45141
  label: string;
44773
45142
  key: string;
44774
45143
  category: string;
@@ -44778,7 +45147,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44778
45147
  inputType?: "code" | "plain" | undefined;
44779
45148
  isMultiline?: boolean | null | undefined;
44780
45149
  }, {
44781
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45150
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44782
45151
  label: string;
44783
45152
  key: string;
44784
45153
  category: string;
@@ -44796,7 +45165,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44796
45165
  iconURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
44797
45166
  mode: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"array" | "block", z.ZodTypeDef, "array" | "block">>>, NonNullable<"array" | "block"> | undefined, "array" | "block" | null | undefined>;
44798
45167
  properties: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
44799
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45168
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44800
45169
  label: string;
44801
45170
  key: string;
44802
45171
  values?: string[] | null | undefined;
@@ -44805,7 +45174,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44805
45174
  inputType?: "code" | "plain" | undefined;
44806
45175
  isMultiline?: boolean | null | undefined;
44807
45176
  }[], z.ZodTypeDef, {
44808
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45177
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44809
45178
  label: string;
44810
45179
  key: string;
44811
45180
  values?: string[] | null | undefined;
@@ -44814,7 +45183,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44814
45183
  inputType?: "code" | "plain" | undefined;
44815
45184
  isMultiline?: boolean | null | undefined;
44816
45185
  }[]>>>, {
44817
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45186
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44818
45187
  label: string;
44819
45188
  key: string;
44820
45189
  values?: string[] | null | undefined;
@@ -44823,7 +45192,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44823
45192
  inputType?: "code" | "plain" | undefined;
44824
45193
  isMultiline?: boolean | null | undefined;
44825
45194
  }[] | undefined, {
44826
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45195
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44827
45196
  label: string;
44828
45197
  key: string;
44829
45198
  values?: string[] | null | undefined;
@@ -44832,7 +45201,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44832
45201
  inputType?: "code" | "plain" | undefined;
44833
45202
  isMultiline?: boolean | null | undefined;
44834
45203
  }[] | null | undefined>, {
44835
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45204
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44836
45205
  label: string;
44837
45206
  key: string;
44838
45207
  values?: string[] | null | undefined;
@@ -44841,7 +45210,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44841
45210
  inputType?: "code" | "plain" | undefined;
44842
45211
  isMultiline?: boolean | null | undefined;
44843
45212
  }[], {
44844
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45213
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44845
45214
  label: string;
44846
45215
  key: string;
44847
45216
  values?: string[] | null | undefined;
@@ -44853,7 +45222,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44853
45222
  }, "strip", z.ZodTypeAny, {
44854
45223
  key: string;
44855
45224
  properties: {
44856
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45225
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44857
45226
  label: string;
44858
45227
  key: string;
44859
45228
  values?: string[] | null | undefined;
@@ -44875,7 +45244,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44875
45244
  iconURL?: string | null | undefined;
44876
45245
  mode?: "array" | "block" | null | undefined;
44877
45246
  properties?: {
44878
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45247
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44879
45248
  label: string;
44880
45249
  key: string;
44881
45250
  values?: string[] | null | undefined;
@@ -44913,12 +45282,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
44913
45282
  }, "strip", z.ZodTypeAny, {
44914
45283
  isPrivate: boolean;
44915
45284
  id: string;
44916
- source: "upload" | "git";
44917
45285
  name: string;
45286
+ source: "upload" | "git";
44918
45287
  exporterType: "code" | "documentation";
44919
45288
  isDefaultDocumentationExporter: boolean;
44920
45289
  configurationProperties: {
44921
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45290
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44922
45291
  label: string;
44923
45292
  key: string;
44924
45293
  category: string;
@@ -44931,7 +45300,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44931
45300
  customBlocks: {
44932
45301
  key: string;
44933
45302
  properties: {
44934
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45303
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44935
45304
  label: string;
44936
45305
  key: string;
44937
45306
  values?: string[] | null | undefined;
@@ -44962,12 +45331,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
44962
45331
  }, {
44963
45332
  isPrivate: boolean;
44964
45333
  id: string;
44965
- source: "upload" | "git";
44966
45334
  name: string;
45335
+ source: "upload" | "git";
44967
45336
  exporterType: "code" | "documentation";
44968
45337
  isDefaultDocumentationExporter: boolean;
44969
45338
  configurationProperties: {
44970
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45339
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44971
45340
  label: string;
44972
45341
  key: string;
44973
45342
  category: string;
@@ -44985,7 +45354,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
44985
45354
  iconURL?: string | null | undefined;
44986
45355
  mode?: "array" | "block" | null | undefined;
44987
45356
  properties?: {
44988
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45357
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
44989
45358
  label: string;
44990
45359
  key: string;
44991
45360
  values?: string[] | null | undefined;
@@ -45031,12 +45400,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
45031
45400
  exporters: {
45032
45401
  isPrivate: boolean;
45033
45402
  id: string;
45034
- source: "upload" | "git";
45035
45403
  name: string;
45404
+ source: "upload" | "git";
45036
45405
  exporterType: "code" | "documentation";
45037
45406
  isDefaultDocumentationExporter: boolean;
45038
45407
  configurationProperties: {
45039
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45408
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
45040
45409
  label: string;
45041
45410
  key: string;
45042
45411
  category: string;
@@ -45049,7 +45418,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
45049
45418
  customBlocks: {
45050
45419
  key: string;
45051
45420
  properties: {
45052
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45421
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
45053
45422
  label: string;
45054
45423
  key: string;
45055
45424
  values?: string[] | null | undefined;
@@ -45087,12 +45456,12 @@ declare const DTOExporterListResponse: z.ZodObject<{
45087
45456
  exporters: {
45088
45457
  isPrivate: boolean;
45089
45458
  id: string;
45090
- source: "upload" | "git";
45091
45459
  name: string;
45460
+ source: "upload" | "git";
45092
45461
  exporterType: "code" | "documentation";
45093
45462
  isDefaultDocumentationExporter: boolean;
45094
45463
  configurationProperties: {
45095
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45464
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
45096
45465
  label: string;
45097
45466
  key: string;
45098
45467
  category: string;
@@ -45110,7 +45479,7 @@ declare const DTOExporterListResponse: z.ZodObject<{
45110
45479
  iconURL?: string | null | undefined;
45111
45480
  mode?: "array" | "block" | null | undefined;
45112
45481
  properties?: {
45113
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
45482
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
45114
45483
  label: string;
45115
45484
  key: string;
45116
45485
  values?: string[] | null | undefined;
@@ -48558,8 +48927,8 @@ declare const DTOPipeline: z.ZodObject<{
48558
48927
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
48559
48928
  }, "strip", z.ZodTypeAny, {
48560
48929
  id: string;
48561
- workspaceId: string;
48562
48930
  name: string;
48931
+ workspaceId: string;
48563
48932
  designSystemId: string;
48564
48933
  exporterId: string;
48565
48934
  isEnabled: boolean;
@@ -48754,8 +49123,8 @@ declare const DTOPipeline: z.ZodObject<{
48754
49123
  } | undefined;
48755
49124
  }, {
48756
49125
  id: string;
48757
- workspaceId: string;
48758
49126
  name: string;
49127
+ workspaceId: string;
48759
49128
  designSystemId: string;
48760
49129
  exporterId: string;
48761
49130
  isEnabled: boolean;
@@ -49927,8 +50296,8 @@ declare const DTOPipelineResponse: z.ZodObject<{
49927
50296
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
49928
50297
  }, "strip", z.ZodTypeAny, {
49929
50298
  id: string;
49930
- workspaceId: string;
49931
50299
  name: string;
50300
+ workspaceId: string;
49932
50301
  designSystemId: string;
49933
50302
  exporterId: string;
49934
50303
  isEnabled: boolean;
@@ -50123,8 +50492,8 @@ declare const DTOPipelineResponse: z.ZodObject<{
50123
50492
  } | undefined;
50124
50493
  }, {
50125
50494
  id: string;
50126
- workspaceId: string;
50127
50495
  name: string;
50496
+ workspaceId: string;
50128
50497
  designSystemId: string;
50129
50498
  exporterId: string;
50130
50499
  isEnabled: boolean;
@@ -50321,8 +50690,8 @@ declare const DTOPipelineResponse: z.ZodObject<{
50321
50690
  }, "strip", z.ZodTypeAny, {
50322
50691
  pipeline: {
50323
50692
  id: string;
50324
- workspaceId: string;
50325
50693
  name: string;
50694
+ workspaceId: string;
50326
50695
  designSystemId: string;
50327
50696
  exporterId: string;
50328
50697
  isEnabled: boolean;
@@ -50519,8 +50888,8 @@ declare const DTOPipelineResponse: z.ZodObject<{
50519
50888
  }, {
50520
50889
  pipeline: {
50521
50890
  id: string;
50522
- workspaceId: string;
50523
50891
  name: string;
50892
+ workspaceId: string;
50524
50893
  designSystemId: string;
50525
50894
  exporterId: string;
50526
50895
  isEnabled: boolean;
@@ -51693,8 +52062,8 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51693
52062
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
51694
52063
  }, "strip", z.ZodTypeAny, {
51695
52064
  id: string;
51696
- workspaceId: string;
51697
52065
  name: string;
52066
+ workspaceId: string;
51698
52067
  designSystemId: string;
51699
52068
  exporterId: string;
51700
52069
  isEnabled: boolean;
@@ -51889,8 +52258,8 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51889
52258
  } | undefined;
51890
52259
  }, {
51891
52260
  id: string;
51892
- workspaceId: string;
51893
52261
  name: string;
52262
+ workspaceId: string;
51894
52263
  designSystemId: string;
51895
52264
  exporterId: string;
51896
52265
  isEnabled: boolean;
@@ -52087,8 +52456,8 @@ declare const DTOPipelineListResponse: z.ZodObject<{
52087
52456
  }, "strip", z.ZodTypeAny, {
52088
52457
  pipelines: {
52089
52458
  id: string;
52090
- workspaceId: string;
52091
52459
  name: string;
52460
+ workspaceId: string;
52092
52461
  designSystemId: string;
52093
52462
  exporterId: string;
52094
52463
  isEnabled: boolean;
@@ -52285,8 +52654,8 @@ declare const DTOPipelineListResponse: z.ZodObject<{
52285
52654
  }, {
52286
52655
  pipelines: {
52287
52656
  id: string;
52288
- workspaceId: string;
52289
52657
  name: string;
52658
+ workspaceId: string;
52290
52659
  designSystemId: string;
52291
52660
  exporterId: string;
52292
52661
  isEnabled: boolean;
@@ -70997,8 +71366,8 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
70997
71366
  }>>;
70998
71367
  }>, "strip", z.ZodTypeAny, {
70999
71368
  name: string;
71000
- avatar?: string | undefined;
71001
71369
  nickname?: string | undefined;
71370
+ avatar?: string | undefined;
71002
71371
  onboarding?: {
71003
71372
  companyName?: string | undefined;
71004
71373
  numberOfPeopleInOrg?: string | undefined;
@@ -71013,8 +71382,8 @@ declare const DTOAuthenticatedUserProfile: z.ZodObject<z.objectUtil.extendShape<
71013
71382
  } | undefined;
71014
71383
  }, {
71015
71384
  name: string;
71016
- avatar?: string | undefined;
71017
71385
  nickname?: string | undefined;
71386
+ avatar?: string | undefined;
71018
71387
  onboarding?: {
71019
71388
  companyName?: string | undefined;
71020
71389
  numberOfPeopleInOrg?: string | undefined;
@@ -71038,12 +71407,12 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
71038
71407
  avatar: z.ZodOptional<z.ZodString>;
71039
71408
  }, "strip", z.ZodTypeAny, {
71040
71409
  name: string;
71041
- avatar?: string | undefined;
71042
71410
  nickname?: string | undefined;
71411
+ avatar?: string | undefined;
71043
71412
  }, {
71044
71413
  name: string;
71045
- avatar?: string | undefined;
71046
71414
  nickname?: string | undefined;
71415
+ avatar?: string | undefined;
71047
71416
  }>;
71048
71417
  }, {
71049
71418
  profile: z.ZodObject<z.objectUtil.extendShape<{
@@ -71087,8 +71456,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
71087
71456
  }>>;
71088
71457
  }>, "strip", z.ZodTypeAny, {
71089
71458
  name: string;
71090
- avatar?: string | undefined;
71091
71459
  nickname?: string | undefined;
71460
+ avatar?: string | undefined;
71092
71461
  onboarding?: {
71093
71462
  companyName?: string | undefined;
71094
71463
  numberOfPeopleInOrg?: string | undefined;
@@ -71103,8 +71472,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
71103
71472
  } | undefined;
71104
71473
  }, {
71105
71474
  name: string;
71106
- avatar?: string | undefined;
71107
71475
  nickname?: string | undefined;
71476
+ avatar?: string | undefined;
71108
71477
  onboarding?: {
71109
71478
  companyName?: string | undefined;
71110
71479
  numberOfPeopleInOrg?: string | undefined;
@@ -71124,10 +71493,11 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
71124
71493
  }>, "strip", z.ZodTypeAny, {
71125
71494
  id: string;
71126
71495
  createdAt: Date;
71496
+ email: string;
71127
71497
  profile: {
71128
71498
  name: string;
71129
- avatar?: string | undefined;
71130
71499
  nickname?: string | undefined;
71500
+ avatar?: string | undefined;
71131
71501
  onboarding?: {
71132
71502
  companyName?: string | undefined;
71133
71503
  numberOfPeopleInOrg?: string | undefined;
@@ -71141,16 +71511,16 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
71141
71511
  isPageDraftOnboardingFinished?: boolean | undefined;
71142
71512
  } | undefined;
71143
71513
  };
71144
- email: string;
71145
- source?: "SignUp" | "Invite" | "SSO" | undefined;
71146
71514
  loggedOutAt?: Date | undefined;
71515
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
71147
71516
  }, {
71148
71517
  id: string;
71149
71518
  createdAt: Date;
71519
+ email: string;
71150
71520
  profile: {
71151
71521
  name: string;
71152
- avatar?: string | undefined;
71153
71522
  nickname?: string | undefined;
71523
+ avatar?: string | undefined;
71154
71524
  onboarding?: {
71155
71525
  companyName?: string | undefined;
71156
71526
  numberOfPeopleInOrg?: string | undefined;
@@ -71164,9 +71534,8 @@ declare const DTOAuthenticatedUser: z.ZodObject<z.objectUtil.extendShape<{
71164
71534
  isPageDraftOnboardingFinished?: boolean | undefined;
71165
71535
  } | undefined;
71166
71536
  };
71167
- email: string;
71168
- source?: "SignUp" | "Invite" | "SSO" | undefined;
71169
71537
  loggedOutAt?: Date | undefined;
71538
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
71170
71539
  }>;
71171
71540
  type DTOAuthenticatedUser = z.infer<typeof DTOAuthenticatedUser>;
71172
71541
  declare const DTOAuthenticatedUserResponse: z.ZodObject<{
@@ -71179,12 +71548,12 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
71179
71548
  avatar: z.ZodOptional<z.ZodString>;
71180
71549
  }, "strip", z.ZodTypeAny, {
71181
71550
  name: string;
71182
- avatar?: string | undefined;
71183
71551
  nickname?: string | undefined;
71552
+ avatar?: string | undefined;
71184
71553
  }, {
71185
71554
  name: string;
71186
- avatar?: string | undefined;
71187
71555
  nickname?: string | undefined;
71556
+ avatar?: string | undefined;
71188
71557
  }>;
71189
71558
  }, {
71190
71559
  profile: z.ZodObject<z.objectUtil.extendShape<{
@@ -71228,8 +71597,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
71228
71597
  }>>;
71229
71598
  }>, "strip", z.ZodTypeAny, {
71230
71599
  name: string;
71231
- avatar?: string | undefined;
71232
71600
  nickname?: string | undefined;
71601
+ avatar?: string | undefined;
71233
71602
  onboarding?: {
71234
71603
  companyName?: string | undefined;
71235
71604
  numberOfPeopleInOrg?: string | undefined;
@@ -71244,8 +71613,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
71244
71613
  } | undefined;
71245
71614
  }, {
71246
71615
  name: string;
71247
- avatar?: string | undefined;
71248
71616
  nickname?: string | undefined;
71617
+ avatar?: string | undefined;
71249
71618
  onboarding?: {
71250
71619
  companyName?: string | undefined;
71251
71620
  numberOfPeopleInOrg?: string | undefined;
@@ -71265,10 +71634,11 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
71265
71634
  }>, "strip", z.ZodTypeAny, {
71266
71635
  id: string;
71267
71636
  createdAt: Date;
71637
+ email: string;
71268
71638
  profile: {
71269
71639
  name: string;
71270
- avatar?: string | undefined;
71271
71640
  nickname?: string | undefined;
71641
+ avatar?: string | undefined;
71272
71642
  onboarding?: {
71273
71643
  companyName?: string | undefined;
71274
71644
  numberOfPeopleInOrg?: string | undefined;
@@ -71282,16 +71652,16 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
71282
71652
  isPageDraftOnboardingFinished?: boolean | undefined;
71283
71653
  } | undefined;
71284
71654
  };
71285
- email: string;
71286
- source?: "SignUp" | "Invite" | "SSO" | undefined;
71287
71655
  loggedOutAt?: Date | undefined;
71656
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
71288
71657
  }, {
71289
71658
  id: string;
71290
71659
  createdAt: Date;
71660
+ email: string;
71291
71661
  profile: {
71292
71662
  name: string;
71293
- avatar?: string | undefined;
71294
71663
  nickname?: string | undefined;
71664
+ avatar?: string | undefined;
71295
71665
  onboarding?: {
71296
71666
  companyName?: string | undefined;
71297
71667
  numberOfPeopleInOrg?: string | undefined;
@@ -71305,18 +71675,18 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
71305
71675
  isPageDraftOnboardingFinished?: boolean | undefined;
71306
71676
  } | undefined;
71307
71677
  };
71308
- email: string;
71309
- source?: "SignUp" | "Invite" | "SSO" | undefined;
71310
71678
  loggedOutAt?: Date | undefined;
71679
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
71311
71680
  }>;
71312
71681
  }, "strip", z.ZodTypeAny, {
71313
71682
  user: {
71314
71683
  id: string;
71315
71684
  createdAt: Date;
71685
+ email: string;
71316
71686
  profile: {
71317
71687
  name: string;
71318
- avatar?: string | undefined;
71319
71688
  nickname?: string | undefined;
71689
+ avatar?: string | undefined;
71320
71690
  onboarding?: {
71321
71691
  companyName?: string | undefined;
71322
71692
  numberOfPeopleInOrg?: string | undefined;
@@ -71330,18 +71700,18 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
71330
71700
  isPageDraftOnboardingFinished?: boolean | undefined;
71331
71701
  } | undefined;
71332
71702
  };
71333
- email: string;
71334
- source?: "SignUp" | "Invite" | "SSO" | undefined;
71335
71703
  loggedOutAt?: Date | undefined;
71704
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
71336
71705
  };
71337
71706
  }, {
71338
71707
  user: {
71339
71708
  id: string;
71340
71709
  createdAt: Date;
71710
+ email: string;
71341
71711
  profile: {
71342
71712
  name: string;
71343
- avatar?: string | undefined;
71344
71713
  nickname?: string | undefined;
71714
+ avatar?: string | undefined;
71345
71715
  onboarding?: {
71346
71716
  companyName?: string | undefined;
71347
71717
  numberOfPeopleInOrg?: string | undefined;
@@ -71355,9 +71725,8 @@ declare const DTOAuthenticatedUserResponse: z.ZodObject<{
71355
71725
  isPageDraftOnboardingFinished?: boolean | undefined;
71356
71726
  } | undefined;
71357
71727
  };
71358
- email: string;
71359
- source?: "SignUp" | "Invite" | "SSO" | undefined;
71360
71728
  loggedOutAt?: Date | undefined;
71729
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
71361
71730
  };
71362
71731
  }>;
71363
71732
  type DTOAuthenticatedUserResponse = z.infer<typeof DTOAuthenticatedUserResponse>;
@@ -71944,12 +72313,12 @@ declare const DTOUserProfile: z.ZodObject<{
71944
72313
  avatar: z.ZodOptional<z.ZodString>;
71945
72314
  }, "strip", z.ZodTypeAny, {
71946
72315
  name: string;
71947
- avatar?: string | undefined;
71948
72316
  nickname?: string | undefined;
72317
+ avatar?: string | undefined;
71949
72318
  }, {
71950
72319
  name: string;
71951
- avatar?: string | undefined;
71952
72320
  nickname?: string | undefined;
72321
+ avatar?: string | undefined;
71953
72322
  }>;
71954
72323
  type DTOUserProfile = z.infer<typeof DTOUserProfile>;
71955
72324
  /**
@@ -71964,29 +72333,29 @@ declare const DTOUser: z.ZodObject<{
71964
72333
  avatar: z.ZodOptional<z.ZodString>;
71965
72334
  }, "strip", z.ZodTypeAny, {
71966
72335
  name: string;
71967
- avatar?: string | undefined;
71968
72336
  nickname?: string | undefined;
72337
+ avatar?: string | undefined;
71969
72338
  }, {
71970
72339
  name: string;
71971
- avatar?: string | undefined;
71972
72340
  nickname?: string | undefined;
72341
+ avatar?: string | undefined;
71973
72342
  }>;
71974
72343
  }, "strip", z.ZodTypeAny, {
71975
72344
  id: string;
72345
+ email: string;
71976
72346
  profile: {
71977
72347
  name: string;
71978
- avatar?: string | undefined;
71979
72348
  nickname?: string | undefined;
72349
+ avatar?: string | undefined;
71980
72350
  };
71981
- email: string;
71982
72351
  }, {
71983
72352
  id: string;
72353
+ email: string;
71984
72354
  profile: {
71985
72355
  name: string;
71986
- avatar?: string | undefined;
71987
72356
  nickname?: string | undefined;
72357
+ avatar?: string | undefined;
71988
72358
  };
71989
- email: string;
71990
72359
  }>;
71991
72360
  type DTOUser = z.infer<typeof DTOUser>;
71992
72361
  declare const DTOUserGetResponse: z.ZodObject<{
@@ -71999,49 +72368,49 @@ declare const DTOUserGetResponse: z.ZodObject<{
71999
72368
  avatar: z.ZodOptional<z.ZodString>;
72000
72369
  }, "strip", z.ZodTypeAny, {
72001
72370
  name: string;
72002
- avatar?: string | undefined;
72003
72371
  nickname?: string | undefined;
72372
+ avatar?: string | undefined;
72004
72373
  }, {
72005
72374
  name: string;
72006
- avatar?: string | undefined;
72007
72375
  nickname?: string | undefined;
72376
+ avatar?: string | undefined;
72008
72377
  }>;
72009
72378
  }, "strip", z.ZodTypeAny, {
72010
72379
  id: string;
72380
+ email: string;
72011
72381
  profile: {
72012
72382
  name: string;
72013
- avatar?: string | undefined;
72014
72383
  nickname?: string | undefined;
72384
+ avatar?: string | undefined;
72015
72385
  };
72016
- email: string;
72017
72386
  }, {
72018
72387
  id: string;
72388
+ email: string;
72019
72389
  profile: {
72020
72390
  name: string;
72021
- avatar?: string | undefined;
72022
72391
  nickname?: string | undefined;
72392
+ avatar?: string | undefined;
72023
72393
  };
72024
- email: string;
72025
72394
  }>;
72026
72395
  }, "strip", z.ZodTypeAny, {
72027
72396
  user: {
72028
72397
  id: string;
72398
+ email: string;
72029
72399
  profile: {
72030
72400
  name: string;
72031
- avatar?: string | undefined;
72032
72401
  nickname?: string | undefined;
72402
+ avatar?: string | undefined;
72033
72403
  };
72034
- email: string;
72035
72404
  };
72036
72405
  }, {
72037
72406
  user: {
72038
72407
  id: string;
72408
+ email: string;
72039
72409
  profile: {
72040
72410
  name: string;
72041
- avatar?: string | undefined;
72042
72411
  nickname?: string | undefined;
72412
+ avatar?: string | undefined;
72043
72413
  };
72044
- email: string;
72045
72414
  };
72046
72415
  }>;
72047
72416
  type DTOUserGetResponse = z.infer<typeof DTOUserGetResponse>;
@@ -72260,7 +72629,6 @@ declare const DTOIntegration: z.ZodObject<{
72260
72629
  state: "Active" | "Inactive";
72261
72630
  userId: string;
72262
72631
  integrationId: string;
72263
- username?: string | undefined;
72264
72632
  profile?: {
72265
72633
  id?: string | undefined;
72266
72634
  type?: string | undefined;
@@ -72276,6 +72644,7 @@ declare const DTOIntegration: z.ZodObject<{
72276
72644
  email: string;
72277
72645
  avatar?: string | undefined;
72278
72646
  } | undefined;
72647
+ username?: string | undefined;
72279
72648
  tokenName?: string | undefined;
72280
72649
  expiresAt?: Date | undefined;
72281
72650
  refreshedAt?: Date | undefined;
@@ -72288,7 +72657,6 @@ declare const DTOIntegration: z.ZodObject<{
72288
72657
  state: "Active" | "Inactive";
72289
72658
  userId: string;
72290
72659
  integrationId: string;
72291
- username?: string | undefined;
72292
72660
  profile?: {
72293
72661
  id?: string | null | undefined;
72294
72662
  type?: string | null | undefined;
@@ -72304,6 +72672,7 @@ declare const DTOIntegration: z.ZodObject<{
72304
72672
  email: string;
72305
72673
  avatar?: string | undefined;
72306
72674
  } | undefined;
72675
+ username?: string | undefined;
72307
72676
  tokenName?: string | undefined;
72308
72677
  expiresAt?: Date | undefined;
72309
72678
  refreshedAt?: Date | undefined;
@@ -72341,7 +72710,6 @@ declare const DTOIntegration: z.ZodObject<{
72341
72710
  state: "Active" | "Inactive";
72342
72711
  userId: string;
72343
72712
  integrationId: string;
72344
- username?: string | undefined;
72345
72713
  profile?: {
72346
72714
  id?: string | undefined;
72347
72715
  type?: string | undefined;
@@ -72357,6 +72725,7 @@ declare const DTOIntegration: z.ZodObject<{
72357
72725
  email: string;
72358
72726
  avatar?: string | undefined;
72359
72727
  } | undefined;
72728
+ username?: string | undefined;
72360
72729
  tokenName?: string | undefined;
72361
72730
  expiresAt?: Date | undefined;
72362
72731
  refreshedAt?: Date | undefined;
@@ -72382,7 +72751,6 @@ declare const DTOIntegration: z.ZodObject<{
72382
72751
  state: "Active" | "Inactive";
72383
72752
  userId: string;
72384
72753
  integrationId: string;
72385
- username?: string | undefined;
72386
72754
  profile?: {
72387
72755
  id?: string | null | undefined;
72388
72756
  type?: string | null | undefined;
@@ -72398,6 +72766,7 @@ declare const DTOIntegration: z.ZodObject<{
72398
72766
  email: string;
72399
72767
  avatar?: string | undefined;
72400
72768
  } | undefined;
72769
+ username?: string | undefined;
72401
72770
  tokenName?: string | undefined;
72402
72771
  expiresAt?: Date | undefined;
72403
72772
  refreshedAt?: Date | undefined;
@@ -72476,7 +72845,6 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
72476
72845
  state: "Active" | "Inactive";
72477
72846
  userId: string;
72478
72847
  integrationId: string;
72479
- username?: string | undefined;
72480
72848
  profile?: {
72481
72849
  id?: string | undefined;
72482
72850
  type?: string | undefined;
@@ -72492,6 +72860,7 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
72492
72860
  email: string;
72493
72861
  avatar?: string | undefined;
72494
72862
  } | undefined;
72863
+ username?: string | undefined;
72495
72864
  tokenName?: string | undefined;
72496
72865
  expiresAt?: Date | undefined;
72497
72866
  refreshedAt?: Date | undefined;
@@ -72504,7 +72873,6 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
72504
72873
  state: "Active" | "Inactive";
72505
72874
  userId: string;
72506
72875
  integrationId: string;
72507
- username?: string | undefined;
72508
72876
  profile?: {
72509
72877
  id?: string | null | undefined;
72510
72878
  type?: string | null | undefined;
@@ -72520,6 +72888,7 @@ declare const DTOIntegrationCredentials: z.ZodObject<Omit<{
72520
72888
  email: string;
72521
72889
  avatar?: string | undefined;
72522
72890
  } | undefined;
72891
+ username?: string | undefined;
72523
72892
  tokenName?: string | undefined;
72524
72893
  expiresAt?: Date | undefined;
72525
72894
  refreshedAt?: Date | undefined;
@@ -72604,7 +72973,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72604
72973
  state: "Active" | "Inactive";
72605
72974
  userId: string;
72606
72975
  integrationId: string;
72607
- username?: string | undefined;
72608
72976
  profile?: {
72609
72977
  id?: string | undefined;
72610
72978
  type?: string | undefined;
@@ -72620,6 +72988,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72620
72988
  email: string;
72621
72989
  avatar?: string | undefined;
72622
72990
  } | undefined;
72991
+ username?: string | undefined;
72623
72992
  tokenName?: string | undefined;
72624
72993
  expiresAt?: Date | undefined;
72625
72994
  refreshedAt?: Date | undefined;
@@ -72632,7 +73001,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72632
73001
  state: "Active" | "Inactive";
72633
73002
  userId: string;
72634
73003
  integrationId: string;
72635
- username?: string | undefined;
72636
73004
  profile?: {
72637
73005
  id?: string | null | undefined;
72638
73006
  type?: string | null | undefined;
@@ -72648,6 +73016,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72648
73016
  email: string;
72649
73017
  avatar?: string | undefined;
72650
73018
  } | undefined;
73019
+ username?: string | undefined;
72651
73020
  tokenName?: string | undefined;
72652
73021
  expiresAt?: Date | undefined;
72653
73022
  refreshedAt?: Date | undefined;
@@ -72685,7 +73054,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72685
73054
  state: "Active" | "Inactive";
72686
73055
  userId: string;
72687
73056
  integrationId: string;
72688
- username?: string | undefined;
72689
73057
  profile?: {
72690
73058
  id?: string | undefined;
72691
73059
  type?: string | undefined;
@@ -72701,6 +73069,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72701
73069
  email: string;
72702
73070
  avatar?: string | undefined;
72703
73071
  } | undefined;
73072
+ username?: string | undefined;
72704
73073
  tokenName?: string | undefined;
72705
73074
  expiresAt?: Date | undefined;
72706
73075
  refreshedAt?: Date | undefined;
@@ -72726,7 +73095,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72726
73095
  state: "Active" | "Inactive";
72727
73096
  userId: string;
72728
73097
  integrationId: string;
72729
- username?: string | undefined;
72730
73098
  profile?: {
72731
73099
  id?: string | null | undefined;
72732
73100
  type?: string | null | undefined;
@@ -72742,6 +73110,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72742
73110
  email: string;
72743
73111
  avatar?: string | undefined;
72744
73112
  } | undefined;
73113
+ username?: string | undefined;
72745
73114
  tokenName?: string | undefined;
72746
73115
  expiresAt?: Date | undefined;
72747
73116
  refreshedAt?: Date | undefined;
@@ -72769,7 +73138,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72769
73138
  state: "Active" | "Inactive";
72770
73139
  userId: string;
72771
73140
  integrationId: string;
72772
- username?: string | undefined;
72773
73141
  profile?: {
72774
73142
  id?: string | undefined;
72775
73143
  type?: string | undefined;
@@ -72785,6 +73153,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72785
73153
  email: string;
72786
73154
  avatar?: string | undefined;
72787
73155
  } | undefined;
73156
+ username?: string | undefined;
72788
73157
  tokenName?: string | undefined;
72789
73158
  expiresAt?: Date | undefined;
72790
73159
  refreshedAt?: Date | undefined;
@@ -72812,7 +73181,6 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72812
73181
  state: "Active" | "Inactive";
72813
73182
  userId: string;
72814
73183
  integrationId: string;
72815
- username?: string | undefined;
72816
73184
  profile?: {
72817
73185
  id?: string | null | undefined;
72818
73186
  type?: string | null | undefined;
@@ -72828,6 +73196,7 @@ declare const DTOIntegrationPostResponse: z.ZodObject<{
72828
73196
  email: string;
72829
73197
  avatar?: string | undefined;
72830
73198
  } | undefined;
73199
+ username?: string | undefined;
72831
73200
  tokenName?: string | undefined;
72832
73201
  expiresAt?: Date | undefined;
72833
73202
  refreshedAt?: Date | undefined;
@@ -72913,7 +73282,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
72913
73282
  state: "Active" | "Inactive";
72914
73283
  userId: string;
72915
73284
  integrationId: string;
72916
- username?: string | undefined;
72917
73285
  profile?: {
72918
73286
  id?: string | undefined;
72919
73287
  type?: string | undefined;
@@ -72929,6 +73297,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
72929
73297
  email: string;
72930
73298
  avatar?: string | undefined;
72931
73299
  } | undefined;
73300
+ username?: string | undefined;
72932
73301
  tokenName?: string | undefined;
72933
73302
  expiresAt?: Date | undefined;
72934
73303
  refreshedAt?: Date | undefined;
@@ -72941,7 +73310,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
72941
73310
  state: "Active" | "Inactive";
72942
73311
  userId: string;
72943
73312
  integrationId: string;
72944
- username?: string | undefined;
72945
73313
  profile?: {
72946
73314
  id?: string | null | undefined;
72947
73315
  type?: string | null | undefined;
@@ -72957,6 +73325,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
72957
73325
  email: string;
72958
73326
  avatar?: string | undefined;
72959
73327
  } | undefined;
73328
+ username?: string | undefined;
72960
73329
  tokenName?: string | undefined;
72961
73330
  expiresAt?: Date | undefined;
72962
73331
  refreshedAt?: Date | undefined;
@@ -72994,7 +73363,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
72994
73363
  state: "Active" | "Inactive";
72995
73364
  userId: string;
72996
73365
  integrationId: string;
72997
- username?: string | undefined;
72998
73366
  profile?: {
72999
73367
  id?: string | undefined;
73000
73368
  type?: string | undefined;
@@ -73010,6 +73378,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
73010
73378
  email: string;
73011
73379
  avatar?: string | undefined;
73012
73380
  } | undefined;
73381
+ username?: string | undefined;
73013
73382
  tokenName?: string | undefined;
73014
73383
  expiresAt?: Date | undefined;
73015
73384
  refreshedAt?: Date | undefined;
@@ -73035,7 +73404,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
73035
73404
  state: "Active" | "Inactive";
73036
73405
  userId: string;
73037
73406
  integrationId: string;
73038
- username?: string | undefined;
73039
73407
  profile?: {
73040
73408
  id?: string | null | undefined;
73041
73409
  type?: string | null | undefined;
@@ -73051,6 +73419,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
73051
73419
  email: string;
73052
73420
  avatar?: string | undefined;
73053
73421
  } | undefined;
73422
+ username?: string | undefined;
73054
73423
  tokenName?: string | undefined;
73055
73424
  expiresAt?: Date | undefined;
73056
73425
  refreshedAt?: Date | undefined;
@@ -73078,7 +73447,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
73078
73447
  state: "Active" | "Inactive";
73079
73448
  userId: string;
73080
73449
  integrationId: string;
73081
- username?: string | undefined;
73082
73450
  profile?: {
73083
73451
  id?: string | undefined;
73084
73452
  type?: string | undefined;
@@ -73094,6 +73462,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
73094
73462
  email: string;
73095
73463
  avatar?: string | undefined;
73096
73464
  } | undefined;
73465
+ username?: string | undefined;
73097
73466
  tokenName?: string | undefined;
73098
73467
  expiresAt?: Date | undefined;
73099
73468
  refreshedAt?: Date | undefined;
@@ -73121,7 +73490,6 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
73121
73490
  state: "Active" | "Inactive";
73122
73491
  userId: string;
73123
73492
  integrationId: string;
73124
- username?: string | undefined;
73125
73493
  profile?: {
73126
73494
  id?: string | null | undefined;
73127
73495
  type?: string | null | undefined;
@@ -73137,6 +73505,7 @@ declare const DTOIntegrationsGetListResponse: z.ZodObject<{
73137
73505
  email: string;
73138
73506
  avatar?: string | undefined;
73139
73507
  } | undefined;
73508
+ username?: string | undefined;
73140
73509
  tokenName?: string | undefined;
73141
73510
  expiresAt?: Date | undefined;
73142
73511
  refreshedAt?: Date | undefined;
@@ -73158,11 +73527,11 @@ declare const DTOWorkspaceInvitationInput: z.ZodObject<{
73158
73527
  email: z.ZodString;
73159
73528
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
73160
73529
  }, "strip", z.ZodTypeAny, {
73161
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73162
73530
  email: string;
73163
- }, {
73164
73531
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73532
+ }, {
73165
73533
  email: string;
73534
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73166
73535
  }>;
73167
73536
  type DTOWorkspaceInvitationInput = z.infer<typeof DTOWorkspaceInvitationInput>;
73168
73537
  declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
@@ -73170,23 +73539,23 @@ declare const DTOWorkspaceInvitationsListInput: z.ZodObject<{
73170
73539
  email: z.ZodString;
73171
73540
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
73172
73541
  }, "strip", z.ZodTypeAny, {
73173
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73174
73542
  email: string;
73175
- }, {
73176
73543
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73544
+ }, {
73177
73545
  email: string;
73546
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73178
73547
  }>, "many">;
73179
73548
  designSystemId: z.ZodOptional<z.ZodString>;
73180
73549
  }, "strip", z.ZodTypeAny, {
73181
73550
  invites: {
73182
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73183
73551
  email: string;
73552
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73184
73553
  }[];
73185
73554
  designSystemId?: string | undefined;
73186
73555
  }, {
73187
73556
  invites: {
73188
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73189
73557
  email: string;
73558
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73190
73559
  }[];
73191
73560
  designSystemId?: string | undefined;
73192
73561
  }>;
@@ -73725,8 +74094,6 @@ declare const DTOWorkspaceMember: z.ZodObject<{
73725
74094
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
73726
74095
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
73727
74096
  }, "strip", z.ZodTypeAny, {
73728
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73729
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73730
74097
  user: {
73731
74098
  id: string;
73732
74099
  createdAt: Date;
@@ -73798,9 +74165,9 @@ declare const DTOWorkspaceMember: z.ZodObject<{
73798
74165
  } | undefined;
73799
74166
  loggedOutAt?: Date | undefined;
73800
74167
  };
73801
- }, {
73802
74168
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73803
74169
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
74170
+ }, {
73804
74171
  user: {
73805
74172
  id: string;
73806
74173
  createdAt: Date;
@@ -73872,6 +74239,8 @@ declare const DTOWorkspaceMember: z.ZodObject<{
73872
74239
  } | undefined;
73873
74240
  loggedOutAt?: Date | undefined;
73874
74241
  };
74242
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
74243
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
73875
74244
  }>;
73876
74245
  declare const DTOWorkspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
73877
74246
  type DTOWorkspaceRole = z.infer<typeof DTOWorkspaceRole>;
@@ -75256,8 +75625,6 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
75256
75625
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
75257
75626
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
75258
75627
  }, "strip", z.ZodTypeAny, {
75259
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
75260
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
75261
75628
  workspace: {
75262
75629
  id: string;
75263
75630
  profile: {
@@ -75443,9 +75810,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
75443
75810
  password?: string | undefined;
75444
75811
  } | undefined;
75445
75812
  };
75446
- }, {
75447
75813
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
75448
75814
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
75815
+ }, {
75449
75816
  workspace: {
75450
75817
  id: string;
75451
75818
  profile: {
@@ -75631,6 +75998,8 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
75631
75998
  password?: string | undefined;
75632
75999
  } | undefined;
75633
76000
  };
76001
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
76002
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
75634
76003
  }>;
75635
76004
  type DTOUserWorkspaceMembership = z.infer<typeof DTOUserWorkspaceMembership>;
75636
76005
  declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
@@ -77015,8 +77384,6 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
77015
77384
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
77016
77385
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Contributor"]>;
77017
77386
  }, "strip", z.ZodTypeAny, {
77018
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77019
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77020
77387
  workspace: {
77021
77388
  id: string;
77022
77389
  profile: {
@@ -77202,9 +77569,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
77202
77569
  password?: string | undefined;
77203
77570
  } | undefined;
77204
77571
  };
77205
- }, {
77206
77572
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77207
77573
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77574
+ }, {
77208
77575
  workspace: {
77209
77576
  id: string;
77210
77577
  profile: {
@@ -77390,11 +77757,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
77390
77757
  password?: string | undefined;
77391
77758
  } | undefined;
77392
77759
  };
77760
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77761
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77393
77762
  }>, "many">;
77394
77763
  }, "strip", z.ZodTypeAny, {
77395
77764
  membership: {
77396
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77397
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77398
77765
  workspace: {
77399
77766
  id: string;
77400
77767
  profile: {
@@ -77580,11 +77947,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
77580
77947
  password?: string | undefined;
77581
77948
  } | undefined;
77582
77949
  };
77950
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77951
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77583
77952
  }[];
77584
77953
  }, {
77585
77954
  membership: {
77586
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77587
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77588
77955
  workspace: {
77589
77956
  id: string;
77590
77957
  profile: {
@@ -77770,6 +78137,8 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
77770
78137
  password?: string | undefined;
77771
78138
  } | undefined;
77772
78139
  };
78140
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
78141
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
77773
78142
  }[];
77774
78143
  }>;
77775
78144
  type DTOUserWorkspaceMembershipsResponse = z.infer<typeof DTOUserWorkspaceMembershipsResponse>;
@@ -78203,8 +78572,6 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
78203
78572
  role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
78204
78573
  effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
78205
78574
  }, "strip", z.ZodTypeAny, {
78206
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78207
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78208
78575
  user: {
78209
78576
  id: string;
78210
78577
  createdAt: Date;
@@ -78276,9 +78643,9 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
78276
78643
  } | undefined;
78277
78644
  loggedOutAt?: Date | undefined;
78278
78645
  };
78279
- }, {
78280
78646
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78281
78647
  effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78648
+ }, {
78282
78649
  user: {
78283
78650
  id: string;
78284
78651
  createdAt: Date;
@@ -78350,11 +78717,11 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
78350
78717
  } | undefined;
78351
78718
  loggedOutAt?: Date | undefined;
78352
78719
  };
78720
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78721
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78353
78722
  }>, "many">;
78354
78723
  }, "strip", z.ZodTypeAny, {
78355
78724
  members: {
78356
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78357
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78358
78725
  user: {
78359
78726
  id: string;
78360
78727
  createdAt: Date;
@@ -78426,11 +78793,11 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
78426
78793
  } | undefined;
78427
78794
  loggedOutAt?: Date | undefined;
78428
78795
  };
78796
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78797
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78429
78798
  }[];
78430
78799
  }, {
78431
78800
  members: {
78432
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78433
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78434
78801
  user: {
78435
78802
  id: string;
78436
78803
  createdAt: Date;
@@ -78502,6 +78869,8 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
78502
78869
  } | undefined;
78503
78870
  loggedOutAt?: Date | undefined;
78504
78871
  };
78872
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78873
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
78505
78874
  }[];
78506
78875
  }>;
78507
78876
  type DTOWorkspaceMembersListResponse = z.infer<typeof DTOWorkspaceMembersListResponse>;
@@ -81893,12 +82262,12 @@ declare class ExportersEndpoint {
81893
82262
  exporters: {
81894
82263
  isPrivate: boolean;
81895
82264
  id: string;
81896
- source: "upload" | "git";
81897
82265
  name: string;
82266
+ source: "upload" | "git";
81898
82267
  exporterType: "code" | "documentation";
81899
82268
  isDefaultDocumentationExporter: boolean;
81900
82269
  configurationProperties: {
81901
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
82270
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
81902
82271
  label: string;
81903
82272
  key: string;
81904
82273
  category: string;
@@ -81911,7 +82280,7 @@ declare class ExportersEndpoint {
81911
82280
  customBlocks: {
81912
82281
  key: string;
81913
82282
  properties: {
81914
- type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
82283
+ type: "string" | "number" | "boolean" | "color" | "tokenType" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties";
81915
82284
  label: string;
81916
82285
  key: string;
81917
82286
  values?: string[] | null | undefined;
@@ -82189,14 +82558,14 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82189
82558
  variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
82190
82559
  }, "strip", z.ZodTypeAny, {
82191
82560
  id: string;
82192
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82561
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82193
82562
  name: string;
82194
82563
  options?: Record<string, any> | undefined;
82195
82564
  description?: string | undefined;
82196
82565
  variantOptions?: Record<string, Record<string, any>> | undefined;
82197
82566
  }, {
82198
82567
  id: string;
82199
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82568
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82200
82569
  name: string;
82201
82570
  options?: Record<string, any> | undefined;
82202
82571
  description?: string | undefined;
@@ -82292,7 +82661,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82292
82661
  }, "strip", z.ZodTypeAny, {
82293
82662
  properties: {
82294
82663
  id: string;
82295
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82664
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82296
82665
  name: string;
82297
82666
  options?: Record<string, any> | undefined;
82298
82667
  description?: string | undefined;
@@ -82331,7 +82700,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82331
82700
  }, {
82332
82701
  properties: {
82333
82702
  id: string;
82334
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82703
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82335
82704
  name: string;
82336
82705
  options?: Record<string, any> | undefined;
82337
82706
  description?: string | undefined;
@@ -82461,11 +82830,11 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82461
82830
  id: string;
82462
82831
  name: string;
82463
82832
  description: string;
82464
- category: "Figma" | "Text" | "Other" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
82833
+ category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
82465
82834
  item: {
82466
82835
  properties: {
82467
82836
  id: string;
82468
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82837
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82469
82838
  name: string;
82470
82839
  options?: Record<string, any> | undefined;
82471
82840
  description?: string | undefined;
@@ -82534,11 +82903,11 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82534
82903
  id: string;
82535
82904
  name: string;
82536
82905
  description: string;
82537
- category: "Figma" | "Text" | "Other" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
82906
+ category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
82538
82907
  item: {
82539
82908
  properties: {
82540
82909
  id: string;
82541
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82910
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82542
82911
  name: string;
82543
82912
  options?: Record<string, any> | undefined;
82544
82913
  description?: string | undefined;
@@ -82609,11 +82978,11 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82609
82978
  id: string;
82610
82979
  name: string;
82611
82980
  description: string;
82612
- category: "Figma" | "Text" | "Other" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
82981
+ category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
82613
82982
  item: {
82614
82983
  properties: {
82615
82984
  id: string;
82616
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82985
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82617
82986
  name: string;
82618
82987
  options?: Record<string, any> | undefined;
82619
82988
  description?: string | undefined;
@@ -82684,11 +83053,11 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82684
83053
  id: string;
82685
83054
  name: string;
82686
83055
  description: string;
82687
- category: "Figma" | "Text" | "Other" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
83056
+ category: "Other" | "Figma" | "Text" | "Code" | "Embed" | "Guidelines" | "Layout" | "Media" | "Tokens" | "Components" | "Assets" | "Data";
82688
83057
  item: {
82689
83058
  properties: {
82690
83059
  id: string;
82691
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
83060
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82692
83061
  name: string;
82693
83062
  options?: Record<string, any> | undefined;
82694
83063
  description?: string | undefined;
@@ -84157,39 +84526,6 @@ declare const WorkspaceConfigurationPayload: z.ZodObject<{
84157
84526
  } | null | undefined;
84158
84527
  }>>;
84159
84528
  }, "strip", z.ZodTypeAny, {
84160
- ipWhitelist?: {
84161
- entries?: {
84162
- name: string;
84163
- isEnabled: boolean;
84164
- range: string;
84165
- }[] | undefined;
84166
- isEnabledForCloud?: boolean | undefined;
84167
- isEnabledForDocs?: boolean | undefined;
84168
- } | undefined;
84169
- sso?: {
84170
- providerId?: string | undefined;
84171
- metadataXml?: string | null | undefined;
84172
- emailDomains?: string[] | undefined;
84173
- defaultAutoInviteValue?: boolean | undefined;
84174
- autoInviteDomains?: Record<string, boolean> | undefined;
84175
- skipDocsSupernovaLogin?: boolean | undefined;
84176
- areInvitesDisabled?: boolean | undefined;
84177
- isTestMode?: boolean | undefined;
84178
- } | undefined;
84179
- npmRegistrySettings?: {
84180
- enabledScopes?: string[] | undefined;
84181
- customRegistryUrl?: string | undefined;
84182
- bypassProxy?: boolean | undefined;
84183
- npmProxyRegistryConfigId?: string | undefined;
84184
- npmProxyVersion?: number | undefined;
84185
- registryType?: string | undefined;
84186
- authType?: string | undefined;
84187
- authHeaderName?: string | undefined;
84188
- authHeaderValue?: string | undefined;
84189
- accessToken?: string | undefined;
84190
- username?: string | undefined;
84191
- password?: string | undefined;
84192
- } | undefined;
84193
84529
  profile?: {
84194
84530
  name?: string | undefined;
84195
84531
  avatar?: string | undefined;
@@ -84212,7 +84548,6 @@ declare const WorkspaceConfigurationPayload: z.ZodObject<{
84212
84548
  poNumber?: string | undefined;
84213
84549
  } | undefined;
84214
84550
  } | undefined;
84215
- }, {
84216
84551
  ipWhitelist?: {
84217
84552
  entries?: {
84218
84553
  name: string;
@@ -84246,6 +84581,7 @@ declare const WorkspaceConfigurationPayload: z.ZodObject<{
84246
84581
  username?: string | undefined;
84247
84582
  password?: string | undefined;
84248
84583
  } | undefined;
84584
+ }, {
84249
84585
  profile?: {
84250
84586
  name?: string | undefined;
84251
84587
  avatar?: string | null | undefined;
@@ -84268,6 +84604,39 @@ declare const WorkspaceConfigurationPayload: z.ZodObject<{
84268
84604
  poNumber?: string | null | undefined;
84269
84605
  } | null | undefined;
84270
84606
  } | undefined;
84607
+ ipWhitelist?: {
84608
+ entries?: {
84609
+ name: string;
84610
+ isEnabled: boolean;
84611
+ range: string;
84612
+ }[] | undefined;
84613
+ isEnabledForCloud?: boolean | undefined;
84614
+ isEnabledForDocs?: boolean | undefined;
84615
+ } | undefined;
84616
+ sso?: {
84617
+ providerId?: string | undefined;
84618
+ metadataXml?: string | null | undefined;
84619
+ emailDomains?: string[] | undefined;
84620
+ defaultAutoInviteValue?: boolean | undefined;
84621
+ autoInviteDomains?: Record<string, boolean> | undefined;
84622
+ skipDocsSupernovaLogin?: boolean | undefined;
84623
+ areInvitesDisabled?: boolean | undefined;
84624
+ isTestMode?: boolean | undefined;
84625
+ } | undefined;
84626
+ npmRegistrySettings?: {
84627
+ enabledScopes?: string[] | undefined;
84628
+ customRegistryUrl?: string | undefined;
84629
+ bypassProxy?: boolean | undefined;
84630
+ npmProxyRegistryConfigId?: string | undefined;
84631
+ npmProxyVersion?: number | undefined;
84632
+ registryType?: string | undefined;
84633
+ authType?: string | undefined;
84634
+ authHeaderName?: string | undefined;
84635
+ authHeaderValue?: string | undefined;
84636
+ accessToken?: string | undefined;
84637
+ username?: string | undefined;
84638
+ password?: string | undefined;
84639
+ } | undefined;
84271
84640
  }>;
84272
84641
  type WorkspaceConfigurationPayload = z.infer<typeof WorkspaceConfigurationPayload>;
84273
84642
 
@@ -84410,17 +84779,17 @@ declare const DTOWorkspaceIntegrationGetGitObjectsInput: z.ZodObject<{
84410
84779
  branch: z.ZodOptional<z.ZodString>;
84411
84780
  user: z.ZodOptional<z.ZodString>;
84412
84781
  }, "strip", z.ZodTypeAny, {
84782
+ user?: string | undefined;
84413
84783
  organization?: string | undefined;
84414
84784
  project?: string | undefined;
84415
84785
  repository?: string | undefined;
84416
84786
  branch?: string | undefined;
84417
- user?: string | undefined;
84418
84787
  }, {
84788
+ user?: string | undefined;
84419
84789
  organization?: string | undefined;
84420
84790
  project?: string | undefined;
84421
84791
  repository?: string | undefined;
84422
84792
  branch?: string | undefined;
84423
- user?: string | undefined;
84424
84793
  }>;
84425
84794
  type DTOWorkspaceIntegrationGetGitObjectsInput = z.infer<typeof DTOWorkspaceIntegrationGetGitObjectsInput>;
84426
84795
 
@@ -84430,8 +84799,8 @@ declare class PipelinesEndpoint {
84430
84799
  list(workspaceId: string, query: DTOPipelineListQuery): Promise<{
84431
84800
  pipelines: {
84432
84801
  id: string;
84433
- workspaceId: string;
84434
84802
  name: string;
84803
+ workspaceId: string;
84435
84804
  designSystemId: string;
84436
84805
  exporterId: string;
84437
84806
  isEnabled: boolean;
@@ -84629,8 +84998,8 @@ declare class PipelinesEndpoint {
84629
84998
  create(workspaceId: string, payload: DTOPipelineCreateBody): Promise<{
84630
84999
  pipeline: {
84631
85000
  id: string;
84632
- workspaceId: string;
84633
85001
  name: string;
85002
+ workspaceId: string;
84634
85003
  designSystemId: string;
84635
85004
  exporterId: string;
84636
85005
  isEnabled: boolean;
@@ -86655,6 +87024,26 @@ declare class TokensEndpoint {
86655
87024
  get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
86656
87025
  }
86657
87026
 
87027
+ declare class TokenGroupsEndpoint {
87028
+ private readonly requestExecutor;
87029
+ constructor(requestExecutor: RequestExecutor);
87030
+ create(dsId: string, versionId: string, body: DTODesignTokenGroupCreatePayload): Promise<{
87031
+ group: {
87032
+ id: string;
87033
+ persistentId: string;
87034
+ meta: {
87035
+ name: string;
87036
+ description?: string | undefined;
87037
+ };
87038
+ isRoot: boolean;
87039
+ childrenIds: string[];
87040
+ brandId: string;
87041
+ tokenType: "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
87042
+ };
87043
+ }>;
87044
+ list(dsId: string, versionId: string): Promise<DTODesignTokenGroupListResponse>;
87045
+ }
87046
+
86658
87047
  declare class DesignSystemVersionsEndpoint {
86659
87048
  private readonly requestExecutor;
86660
87049
  readonly themes: ThemesEndpoint;
@@ -86662,6 +87051,7 @@ declare class DesignSystemVersionsEndpoint {
86662
87051
  readonly tokenCollections: TokenCollectionsEndpoint;
86663
87052
  readonly importJobs: ImportJobsEndpoint;
86664
87053
  readonly tokens: TokensEndpoint;
87054
+ readonly tokenGroups: TokenGroupsEndpoint;
86665
87055
  readonly stats: VersionStatsEndpoint;
86666
87056
  readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
86667
87057
  readonly elementPropertyValues: ElementPropertyValuesEndpoint;
@@ -86699,6 +87089,33 @@ declare class DesignSystemBffEndpoint {
86699
87089
  }>;
86700
87090
  }
86701
87091
 
87092
+ declare class DesignSystemContactsEndpoint {
87093
+ private readonly requestExecutor;
87094
+ constructor(requestExecutor: RequestExecutor);
87095
+ list(dsId: string): Promise<{
87096
+ contacts: {
87097
+ workspace: {
87098
+ id: string;
87099
+ email: string;
87100
+ profile: {
87101
+ name: string;
87102
+ nickname?: string | undefined;
87103
+ avatar?: string | undefined;
87104
+ };
87105
+ }[];
87106
+ designSystem: {
87107
+ id: string;
87108
+ email: string;
87109
+ profile: {
87110
+ name: string;
87111
+ nickname?: string | undefined;
87112
+ avatar?: string | undefined;
87113
+ };
87114
+ }[];
87115
+ };
87116
+ }>;
87117
+ }
87118
+
86702
87119
  declare class DesignSystemMembersEndpoint {
86703
87120
  private readonly requestExecutor;
86704
87121
  constructor(requestExecutor: RequestExecutor);
@@ -86755,9 +87172,9 @@ declare class DesignSystemSourcesEndpoint {
86755
87172
  tokensCreated: number;
86756
87173
  tokensUpdated: number;
86757
87174
  tokensDeleted: number;
86758
- tokensCreatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
86759
- tokensUpdatedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
86760
- tokensDeletedPerType: Partial<Record<"Text" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Measure" | "Radius" | "GenericToken", number>>;
87175
+ tokensCreatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
87176
+ tokensUpdatedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
87177
+ tokensDeletedPerType: Partial<Record<"Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
86761
87178
  componentsCreated: number;
86762
87179
  componentsUpdated: number;
86763
87180
  componentsDeleted: number;
@@ -86844,6 +87261,7 @@ declare class DesignSystemsEndpoint {
86844
87261
  readonly versions: DesignSystemVersionsEndpoint;
86845
87262
  readonly bff: DesignSystemBffEndpoint;
86846
87263
  readonly sources: DesignSystemSourcesEndpoint;
87264
+ readonly contacts: DesignSystemContactsEndpoint;
86847
87265
  constructor(requestExecutor: RequestExecutor);
86848
87266
  create(body: DTODesignSystemCreateInput): Promise<{
86849
87267
  designSystem: {
@@ -87227,8 +87645,6 @@ declare class WorkspaceMembersEndpoint {
87227
87645
  constructor(requestExecutor: RequestExecutor);
87228
87646
  list(workspaceId: string): Promise<{
87229
87647
  members: {
87230
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
87231
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
87232
87648
  user: {
87233
87649
  id: string;
87234
87650
  createdAt: Date;
@@ -87300,6 +87716,8 @@ declare class WorkspaceMembersEndpoint {
87300
87716
  } | undefined;
87301
87717
  loggedOutAt?: Date | undefined;
87302
87718
  };
87719
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
87720
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
87303
87721
  }[];
87304
87722
  }>;
87305
87723
  update(workspaceId: string, body: UpdateMembershipRolesInput): Promise<{
@@ -88069,10 +88487,11 @@ declare class UsersEndpoint {
88069
88487
  user: {
88070
88488
  id: string;
88071
88489
  createdAt: Date;
88490
+ email: string;
88072
88491
  profile: {
88073
88492
  name: string;
88074
- avatar?: string | undefined;
88075
88493
  nickname?: string | undefined;
88494
+ avatar?: string | undefined;
88076
88495
  onboarding?: {
88077
88496
  companyName?: string | undefined;
88078
88497
  numberOfPeopleInOrg?: string | undefined;
@@ -88086,15 +88505,12 @@ declare class UsersEndpoint {
88086
88505
  isPageDraftOnboardingFinished?: boolean | undefined;
88087
88506
  } | undefined;
88088
88507
  };
88089
- email: string;
88090
- source?: "SignUp" | "Invite" | "SSO" | undefined;
88091
88508
  loggedOutAt?: Date | undefined;
88509
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
88092
88510
  };
88093
88511
  }>;
88094
88512
  listWorkspaces(uid: string): Promise<{
88095
88513
  membership: {
88096
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
88097
- effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
88098
88514
  workspace: {
88099
88515
  id: string;
88100
88516
  profile: {
@@ -88280,16 +88696,19 @@ declare class UsersEndpoint {
88280
88696
  password?: string | undefined;
88281
88697
  } | undefined;
88282
88698
  };
88699
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
88700
+ effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
88283
88701
  }[];
88284
88702
  }>;
88285
88703
  delete(uid: string): Promise<{
88286
88704
  user: {
88287
88705
  id: string;
88288
88706
  createdAt: Date;
88707
+ email: string;
88289
88708
  profile: {
88290
88709
  name: string;
88291
- avatar?: string | undefined;
88292
88710
  nickname?: string | undefined;
88711
+ avatar?: string | undefined;
88293
88712
  onboarding?: {
88294
88713
  companyName?: string | undefined;
88295
88714
  numberOfPeopleInOrg?: string | undefined;
@@ -88303,19 +88722,19 @@ declare class UsersEndpoint {
88303
88722
  isPageDraftOnboardingFinished?: boolean | undefined;
88304
88723
  } | undefined;
88305
88724
  };
88306
- email: string;
88307
- source?: "SignUp" | "Invite" | "SSO" | undefined;
88308
88725
  loggedOutAt?: Date | undefined;
88726
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
88309
88727
  };
88310
88728
  }>;
88311
88729
  updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
88312
88730
  user: {
88313
88731
  id: string;
88314
88732
  createdAt: Date;
88733
+ email: string;
88315
88734
  profile: {
88316
88735
  name: string;
88317
- avatar?: string | undefined;
88318
88736
  nickname?: string | undefined;
88737
+ avatar?: string | undefined;
88319
88738
  onboarding?: {
88320
88739
  companyName?: string | undefined;
88321
88740
  numberOfPeopleInOrg?: string | undefined;
@@ -88329,9 +88748,8 @@ declare class UsersEndpoint {
88329
88748
  isPageDraftOnboardingFinished?: boolean | undefined;
88330
88749
  } | undefined;
88331
88750
  };
88332
- email: string;
88333
- source?: "SignUp" | "Invite" | "SSO" | undefined;
88334
88751
  loggedOutAt?: Date | undefined;
88752
+ source?: "SignUp" | "Invite" | "SSO" | undefined;
88335
88753
  };
88336
88754
  }>;
88337
88755
  }
@@ -90757,7 +91175,7 @@ declare const BlockParsingUtils: {
90757
91175
  declare const BlockDefinitionUtils: {
90758
91176
  firstRichTextProperty(definition: PageBlockDefinition): {
90759
91177
  id: string;
90760
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91178
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
90761
91179
  name: string;
90762
91180
  options?: Record<string, any> | undefined;
90763
91181
  description?: string | undefined;
@@ -90765,7 +91183,7 @@ declare const BlockDefinitionUtils: {
90765
91183
  } | undefined;
90766
91184
  firstMultiRichTextProperty(definition: PageBlockDefinition): {
90767
91185
  id: string;
90768
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91186
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
90769
91187
  name: string;
90770
91188
  options?: Record<string, any> | undefined;
90771
91189
  description?: string | undefined;
@@ -90773,7 +91191,7 @@ declare const BlockDefinitionUtils: {
90773
91191
  } | undefined;
90774
91192
  firstTableProperty(definition: PageBlockDefinition): {
90775
91193
  id: string;
90776
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91194
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
90777
91195
  name: string;
90778
91196
  options?: Record<string, any> | undefined;
90779
91197
  description?: string | undefined;
@@ -90781,7 +91199,7 @@ declare const BlockDefinitionUtils: {
90781
91199
  } | undefined;
90782
91200
  firstEmbedProperty(definition: PageBlockDefinition): {
90783
91201
  id: string;
90784
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91202
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
90785
91203
  name: string;
90786
91204
  options?: Record<string, any> | undefined;
90787
91205
  description?: string | undefined;
@@ -90789,7 +91207,7 @@ declare const BlockDefinitionUtils: {
90789
91207
  } | undefined;
90790
91208
  richTextProperty(definition: PageBlockDefinition, propertyKey: string): {
90791
91209
  id: string;
90792
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91210
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
90793
91211
  name: string;
90794
91212
  options?: Record<string, any> | undefined;
90795
91213
  description?: string | undefined;
@@ -90797,7 +91215,7 @@ declare const BlockDefinitionUtils: {
90797
91215
  };
90798
91216
  property(definition: PageBlockDefinition, propertyKey: string, expectedPropertyType?: PageBlockDefinitionPropertyType): {
90799
91217
  id: string;
90800
- type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91218
+ type: "Token" | "Component" | "Color" | "Image" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
90801
91219
  name: string;
90802
91220
  options?: Record<string, any> | undefined;
90803
91221
  description?: string | undefined;
@@ -90901,4 +91319,4 @@ declare class FrontendVersionRoomYDoc {
90901
91319
 
90902
91320
  declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
90903
91321
 
90904
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
91322
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };