@supernova-studio/client 0.58.9 → 0.58.11

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.
Files changed (39) hide show
  1. package/dist/index.d.mts +2478 -228
  2. package/dist/index.d.ts +2478 -228
  3. package/dist/index.js +312 -146
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +910 -744
  6. package/dist/index.mjs.map +1 -1
  7. package/package.json +1 -1
  8. package/src/api/dto/design-systems/brand.ts +23 -1
  9. package/src/api/dto/design-systems/component.ts +32 -2
  10. package/src/api/dto/design-systems/index.ts +0 -1
  11. package/src/api/dto/elements/components/figma-component-group.ts +19 -0
  12. package/src/api/dto/elements/components/index.ts +1 -0
  13. package/src/api/dto/elements/frame-node-structures/frame-node-structure.ts +17 -0
  14. package/src/api/dto/elements/frame-node-structures/index.ts +1 -0
  15. package/src/api/dto/elements/index.ts +1 -0
  16. package/src/api/dto/export/exporter-property.ts +95 -0
  17. package/src/api/dto/export/exporter.ts +2 -0
  18. package/src/api/dto/export/index.ts +1 -0
  19. package/src/api/dto/export/job.ts +3 -0
  20. package/src/api/dto/export/pipeline.ts +3 -0
  21. package/src/api/endpoints/codegen/exporters.ts +2 -7
  22. package/src/api/endpoints/design-system/versions/brands.ts +16 -3
  23. package/src/api/endpoints/design-system/versions/ds-components.ts +28 -0
  24. package/src/api/endpoints/design-system/versions/elements-action.ts +16 -59
  25. package/src/api/endpoints/design-system/versions/elements.ts +13 -0
  26. package/src/api/endpoints/design-system/versions/figma-component-groups.ts +13 -0
  27. package/src/api/endpoints/design-system/versions/figma-components.ts +13 -0
  28. package/src/api/endpoints/design-system/versions/figma-frame-structures.ts +13 -0
  29. package/src/api/endpoints/design-system/versions/index.ts +5 -1
  30. package/src/api/endpoints/design-system/versions/versions.ts +13 -1
  31. package/src/api/payloads/design-systems/index.ts +0 -1
  32. package/src/api/payloads/export/pipeline.ts +3 -0
  33. package/src/api/transport/request-executor-error.ts +1 -1
  34. package/src/api/transport/request-executor.ts +2 -0
  35. package/src/utils/index.ts +1 -0
  36. package/src/utils/query.ts +18 -0
  37. package/src/api/dto/design-systems/exporter-property.ts +0 -8
  38. package/src/api/endpoints/design-system/versions/components.ts +0 -15
  39. package/src/api/payloads/design-systems/brand.ts +0 -12
package/dist/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, DocumentationPageApproval, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, ElementGroup, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, SsoProvider, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, DocumentationPageSnapshot, ElementGroupSnapshot } from '@supernova-studio/model';
2
2
  import * as zod from 'zod';
3
- import { z, ZodSchema, ZodTypeDef } from 'zod';
3
+ import zod__default, { z, ZodSchema, ZodTypeDef } from 'zod';
4
4
  import { RequestInit } from 'node-fetch';
5
5
  import * as Y from 'yjs';
6
6
  import { Schema } from 'prosemirror-model';
@@ -3979,7 +3979,238 @@ declare const DTOBrandsListResponse: z.ZodObject<{
3979
3979
  }[];
3980
3980
  }>;
3981
3981
  type DTOBrandsListResponse = z.infer<typeof DTOBrandsListResponse>;
3982
+ declare const DTOBrandCreatePayload: z.ZodObject<{
3983
+ persistentId: z.ZodString;
3984
+ meta: z.ZodObject<{
3985
+ name: z.ZodString;
3986
+ description: z.ZodOptional<z.ZodString>;
3987
+ }, "strip", z.ZodTypeAny, {
3988
+ name: string;
3989
+ description?: string | undefined;
3990
+ }, {
3991
+ name: string;
3992
+ description?: string | undefined;
3993
+ }>;
3994
+ }, "strip", z.ZodTypeAny, {
3995
+ persistentId: string;
3996
+ meta: {
3997
+ name: string;
3998
+ description?: string | undefined;
3999
+ };
4000
+ }, {
4001
+ persistentId: string;
4002
+ meta: {
4003
+ name: string;
4004
+ description?: string | undefined;
4005
+ };
4006
+ }>;
4007
+ type DTOBrandCreatePayload = z.infer<typeof DTOBrandCreatePayload>;
4008
+ declare const DTOBrandUpdatePayload: z.ZodObject<{
4009
+ meta: z.ZodOptional<z.ZodObject<{
4010
+ name: z.ZodString;
4011
+ description: z.ZodOptional<z.ZodString>;
4012
+ }, "strip", z.ZodTypeAny, {
4013
+ name: string;
4014
+ description?: string | undefined;
4015
+ }, {
4016
+ name: string;
4017
+ description?: string | undefined;
4018
+ }>>;
4019
+ persistentId: z.ZodString;
4020
+ }, "strip", z.ZodTypeAny, {
4021
+ persistentId: string;
4022
+ meta?: {
4023
+ name: string;
4024
+ description?: string | undefined;
4025
+ } | undefined;
4026
+ }, {
4027
+ persistentId: string;
4028
+ meta?: {
4029
+ name: string;
4030
+ description?: string | undefined;
4031
+ } | undefined;
4032
+ }>;
4033
+ type DTOBrandUpdatePayload = z.infer<typeof DTOBrandUpdatePayload>;
3982
4034
 
4035
+ declare const DTODesignSystemComponent: z.ZodObject<{
4036
+ id: z.ZodString;
4037
+ persistentId: z.ZodString;
4038
+ designSystemVersionId: z.ZodString;
4039
+ brandId: z.ZodString;
4040
+ meta: z.ZodObject<{
4041
+ name: z.ZodString;
4042
+ description: z.ZodOptional<z.ZodString>;
4043
+ }, "strip", z.ZodTypeAny, {
4044
+ name: string;
4045
+ description?: string | undefined;
4046
+ }, {
4047
+ name: string;
4048
+ description?: string | undefined;
4049
+ }>;
4050
+ createdAt: z.ZodDate;
4051
+ updatedAt: z.ZodDate;
4052
+ }, "strip", z.ZodTypeAny, {
4053
+ id: string;
4054
+ persistentId: string;
4055
+ meta: {
4056
+ name: string;
4057
+ description?: string | undefined;
4058
+ };
4059
+ designSystemVersionId: string;
4060
+ createdAt: Date;
4061
+ updatedAt: Date;
4062
+ brandId: string;
4063
+ }, {
4064
+ id: string;
4065
+ persistentId: string;
4066
+ meta: {
4067
+ name: string;
4068
+ description?: string | undefined;
4069
+ };
4070
+ designSystemVersionId: string;
4071
+ createdAt: Date;
4072
+ updatedAt: Date;
4073
+ brandId: string;
4074
+ }>;
4075
+ type DTODesignSystemComponent = z.infer<typeof DTODesignSystemComponent>;
4076
+ declare const DTODesignSystemComponentResponse: z.ZodObject<{
4077
+ designSystemComponent: z.ZodObject<{
4078
+ id: z.ZodString;
4079
+ persistentId: z.ZodString;
4080
+ designSystemVersionId: z.ZodString;
4081
+ brandId: z.ZodString;
4082
+ meta: z.ZodObject<{
4083
+ name: z.ZodString;
4084
+ description: z.ZodOptional<z.ZodString>;
4085
+ }, "strip", z.ZodTypeAny, {
4086
+ name: string;
4087
+ description?: string | undefined;
4088
+ }, {
4089
+ name: string;
4090
+ description?: string | undefined;
4091
+ }>;
4092
+ createdAt: z.ZodDate;
4093
+ updatedAt: z.ZodDate;
4094
+ }, "strip", z.ZodTypeAny, {
4095
+ id: string;
4096
+ persistentId: string;
4097
+ meta: {
4098
+ name: string;
4099
+ description?: string | undefined;
4100
+ };
4101
+ designSystemVersionId: string;
4102
+ createdAt: Date;
4103
+ updatedAt: Date;
4104
+ brandId: string;
4105
+ }, {
4106
+ id: string;
4107
+ persistentId: string;
4108
+ meta: {
4109
+ name: string;
4110
+ description?: string | undefined;
4111
+ };
4112
+ designSystemVersionId: string;
4113
+ createdAt: Date;
4114
+ updatedAt: Date;
4115
+ brandId: string;
4116
+ }>;
4117
+ }, "strip", z.ZodTypeAny, {
4118
+ designSystemComponent: {
4119
+ id: string;
4120
+ persistentId: string;
4121
+ meta: {
4122
+ name: string;
4123
+ description?: string | undefined;
4124
+ };
4125
+ designSystemVersionId: string;
4126
+ createdAt: Date;
4127
+ updatedAt: Date;
4128
+ brandId: string;
4129
+ };
4130
+ }, {
4131
+ designSystemComponent: {
4132
+ id: string;
4133
+ persistentId: string;
4134
+ meta: {
4135
+ name: string;
4136
+ description?: string | undefined;
4137
+ };
4138
+ designSystemVersionId: string;
4139
+ createdAt: Date;
4140
+ updatedAt: Date;
4141
+ brandId: string;
4142
+ };
4143
+ }>;
4144
+ type DTODesignSystemComponentResponse = z.infer<typeof DTODesignSystemComponentResponse>;
4145
+ declare const DTODesignSystemComponentListResponse: z.ZodObject<{
4146
+ designSystemComponents: z.ZodArray<z.ZodObject<{
4147
+ id: z.ZodString;
4148
+ persistentId: z.ZodString;
4149
+ designSystemVersionId: z.ZodString;
4150
+ brandId: z.ZodString;
4151
+ meta: z.ZodObject<{
4152
+ name: z.ZodString;
4153
+ description: z.ZodOptional<z.ZodString>;
4154
+ }, "strip", z.ZodTypeAny, {
4155
+ name: string;
4156
+ description?: string | undefined;
4157
+ }, {
4158
+ name: string;
4159
+ description?: string | undefined;
4160
+ }>;
4161
+ createdAt: z.ZodDate;
4162
+ updatedAt: z.ZodDate;
4163
+ }, "strip", z.ZodTypeAny, {
4164
+ id: string;
4165
+ persistentId: string;
4166
+ meta: {
4167
+ name: string;
4168
+ description?: string | undefined;
4169
+ };
4170
+ designSystemVersionId: string;
4171
+ createdAt: Date;
4172
+ updatedAt: Date;
4173
+ brandId: string;
4174
+ }, {
4175
+ id: string;
4176
+ persistentId: string;
4177
+ meta: {
4178
+ name: string;
4179
+ description?: string | undefined;
4180
+ };
4181
+ designSystemVersionId: string;
4182
+ createdAt: Date;
4183
+ updatedAt: Date;
4184
+ brandId: string;
4185
+ }>, "many">;
4186
+ }, "strip", z.ZodTypeAny, {
4187
+ designSystemComponents: {
4188
+ id: string;
4189
+ persistentId: string;
4190
+ meta: {
4191
+ name: string;
4192
+ description?: string | undefined;
4193
+ };
4194
+ designSystemVersionId: string;
4195
+ createdAt: Date;
4196
+ updatedAt: Date;
4197
+ brandId: string;
4198
+ }[];
4199
+ }, {
4200
+ designSystemComponents: {
4201
+ id: string;
4202
+ persistentId: string;
4203
+ meta: {
4204
+ name: string;
4205
+ description?: string | undefined;
4206
+ };
4207
+ designSystemVersionId: string;
4208
+ createdAt: Date;
4209
+ updatedAt: Date;
4210
+ brandId: string;
4211
+ }[];
4212
+ }>;
4213
+ type DTODesignSystemComponentListResponse = z.infer<typeof DTODesignSystemComponentListResponse>;
3983
4214
  declare const DTODesignSystemComponentCreateInput: z.ZodObject<{
3984
4215
  brandId: z.ZodString;
3985
4216
  persistentId: z.ZodString;
@@ -4180,9 +4411,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
4180
4411
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4181
4412
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4182
4413
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4183
- 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>;
4184
- 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>;
4185
- 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>;
4414
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4415
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4416
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4186
4417
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
4187
4418
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
4188
4419
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -4236,9 +4467,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
4236
4467
  tokensCreated: number;
4237
4468
  tokensUpdated: number;
4238
4469
  tokensDeleted: number;
4239
- 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>>;
4240
- 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>>;
4241
- 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>>;
4470
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4471
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4472
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4242
4473
  componentsCreated: number;
4243
4474
  componentsUpdated: number;
4244
4475
  componentsDeleted: number;
@@ -4270,9 +4501,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
4270
4501
  tokensCreated?: number | null | undefined;
4271
4502
  tokensUpdated?: number | null | undefined;
4272
4503
  tokensDeleted?: number | null | undefined;
4273
- 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;
4274
- 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;
4275
- 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;
4504
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4505
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4506
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4276
4507
  componentsCreated?: number | null | undefined;
4277
4508
  componentsUpdated?: number | null | undefined;
4278
4509
  componentsDeleted?: number | null | undefined;
@@ -4346,9 +4577,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
4346
4577
  tokensCreated: number;
4347
4578
  tokensUpdated: number;
4348
4579
  tokensDeleted: number;
4349
- 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>>;
4350
- 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>>;
4351
- 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>>;
4580
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4581
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4582
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4352
4583
  componentsCreated: number;
4353
4584
  componentsUpdated: number;
4354
4585
  componentsDeleted: number;
@@ -4403,9 +4634,9 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
4403
4634
  tokensCreated?: number | null | undefined;
4404
4635
  tokensUpdated?: number | null | undefined;
4405
4636
  tokensDeleted?: number | null | undefined;
4406
- 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;
4407
- 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;
4408
- 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;
4637
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4638
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4639
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4409
4640
  componentsCreated?: number | null | undefined;
4410
4641
  componentsUpdated?: number | null | undefined;
4411
4642
  componentsDeleted?: number | null | undefined;
@@ -4480,9 +4711,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4480
4711
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4481
4712
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4482
4713
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
4483
- 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>;
4484
- 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>;
4485
- 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>;
4714
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4715
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4716
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
4486
4717
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
4487
4718
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
4488
4719
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -4536,9 +4767,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4536
4767
  tokensCreated: number;
4537
4768
  tokensUpdated: number;
4538
4769
  tokensDeleted: number;
4539
- 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>>;
4540
- 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>>;
4541
- 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>>;
4770
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4771
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4772
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4542
4773
  componentsCreated: number;
4543
4774
  componentsUpdated: number;
4544
4775
  componentsDeleted: number;
@@ -4570,9 +4801,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4570
4801
  tokensCreated?: number | null | undefined;
4571
4802
  tokensUpdated?: number | null | undefined;
4572
4803
  tokensDeleted?: number | null | undefined;
4573
- 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;
4574
- 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;
4575
- 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;
4804
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4805
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4806
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4576
4807
  componentsCreated?: number | null | undefined;
4577
4808
  componentsUpdated?: number | null | undefined;
4578
4809
  componentsDeleted?: number | null | undefined;
@@ -4646,9 +4877,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4646
4877
  tokensCreated: number;
4647
4878
  tokensUpdated: number;
4648
4879
  tokensDeleted: number;
4649
- 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>>;
4650
- 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>>;
4651
- 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>>;
4880
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4881
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4882
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4652
4883
  componentsCreated: number;
4653
4884
  componentsUpdated: number;
4654
4885
  componentsDeleted: number;
@@ -4703,9 +4934,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4703
4934
  tokensCreated?: number | null | undefined;
4704
4935
  tokensUpdated?: number | null | undefined;
4705
4936
  tokensDeleted?: number | null | undefined;
4706
- 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;
4707
- 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;
4708
- 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;
4937
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4938
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4939
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4709
4940
  componentsCreated?: number | null | undefined;
4710
4941
  componentsUpdated?: number | null | undefined;
4711
4942
  componentsDeleted?: number | null | undefined;
@@ -4767,9 +4998,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4767
4998
  tokensCreated: number;
4768
4999
  tokensUpdated: number;
4769
5000
  tokensDeleted: number;
4770
- 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>>;
4771
- 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>>;
4772
- 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>>;
5001
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5002
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5003
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
4773
5004
  componentsCreated: number;
4774
5005
  componentsUpdated: number;
4775
5006
  componentsDeleted: number;
@@ -4839,9 +5070,9 @@ declare const DTODataSourceFigma: z.ZodObject<{
4839
5070
  tokensCreated?: number | null | undefined;
4840
5071
  tokensUpdated?: number | null | undefined;
4841
5072
  tokensDeleted?: number | null | undefined;
4842
- 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;
4843
- 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;
4844
- 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;
5073
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5074
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5075
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
4845
5076
  componentsCreated?: number | null | undefined;
4846
5077
  componentsUpdated?: number | null | undefined;
4847
5078
  componentsDeleted?: number | null | undefined;
@@ -5155,9 +5386,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5155
5386
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
5156
5387
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
5157
5388
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
5158
- 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>;
5159
- 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>;
5160
- 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>;
5389
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5390
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5391
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5161
5392
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
5162
5393
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
5163
5394
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -5211,9 +5442,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5211
5442
  tokensCreated: number;
5212
5443
  tokensUpdated: number;
5213
5444
  tokensDeleted: number;
5214
- 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>>;
5215
- 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>>;
5216
- 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>>;
5445
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5446
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5447
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5217
5448
  componentsCreated: number;
5218
5449
  componentsUpdated: number;
5219
5450
  componentsDeleted: number;
@@ -5245,9 +5476,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5245
5476
  tokensCreated?: number | null | undefined;
5246
5477
  tokensUpdated?: number | null | undefined;
5247
5478
  tokensDeleted?: number | null | undefined;
5248
- 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;
5249
- 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;
5250
- 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;
5479
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5480
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5481
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5251
5482
  componentsCreated?: number | null | undefined;
5252
5483
  componentsUpdated?: number | null | undefined;
5253
5484
  componentsDeleted?: number | null | undefined;
@@ -5321,9 +5552,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5321
5552
  tokensCreated: number;
5322
5553
  tokensUpdated: number;
5323
5554
  tokensDeleted: number;
5324
- 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>>;
5325
- 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>>;
5326
- 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>>;
5555
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5556
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5557
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5327
5558
  componentsCreated: number;
5328
5559
  componentsUpdated: number;
5329
5560
  componentsDeleted: number;
@@ -5378,9 +5609,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5378
5609
  tokensCreated?: number | null | undefined;
5379
5610
  tokensUpdated?: number | null | undefined;
5380
5611
  tokensDeleted?: number | null | undefined;
5381
- 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;
5382
- 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;
5383
- 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;
5612
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5613
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5614
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5384
5615
  componentsCreated?: number | null | undefined;
5385
5616
  componentsUpdated?: number | null | undefined;
5386
5617
  componentsDeleted?: number | null | undefined;
@@ -5442,9 +5673,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5442
5673
  tokensCreated: number;
5443
5674
  tokensUpdated: number;
5444
5675
  tokensDeleted: number;
5445
- 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>>;
5446
- 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>>;
5447
- 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
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5677
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5678
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5448
5679
  componentsCreated: number;
5449
5680
  componentsUpdated: number;
5450
5681
  componentsDeleted: number;
@@ -5514,9 +5745,9 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5514
5745
  tokensCreated?: number | null | undefined;
5515
5746
  tokensUpdated?: number | null | undefined;
5516
5747
  tokensDeleted?: number | null | undefined;
5517
- 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;
5518
- 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;
5519
- 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;
5748
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5749
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5750
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5520
5751
  componentsCreated?: number | null | undefined;
5521
5752
  componentsUpdated?: number | null | undefined;
5522
5753
  componentsDeleted?: number | null | undefined;
@@ -5827,9 +6058,9 @@ declare const DTODataSourceResponse: z.ZodObject<{
5827
6058
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
5828
6059
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
5829
6060
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
5830
- 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>;
5831
- 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>;
5832
- 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>;
6061
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6062
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6063
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
5833
6064
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
5834
6065
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
5835
6066
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -5883,9 +6114,9 @@ declare const DTODataSourceResponse: z.ZodObject<{
5883
6114
  tokensCreated: number;
5884
6115
  tokensUpdated: number;
5885
6116
  tokensDeleted: number;
5886
- 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>>;
5887
- 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>>;
5888
- 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>>;
6117
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6118
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6119
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5889
6120
  componentsCreated: number;
5890
6121
  componentsUpdated: number;
5891
6122
  componentsDeleted: number;
@@ -5917,9 +6148,9 @@ declare const DTODataSourceResponse: z.ZodObject<{
5917
6148
  tokensCreated?: number | null | undefined;
5918
6149
  tokensUpdated?: number | null | undefined;
5919
6150
  tokensDeleted?: number | null | undefined;
5920
- 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;
5921
- 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;
5922
- 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;
6151
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6152
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6153
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
5923
6154
  componentsCreated?: number | null | undefined;
5924
6155
  componentsUpdated?: number | null | undefined;
5925
6156
  componentsDeleted?: number | null | undefined;
@@ -5993,9 +6224,9 @@ declare const DTODataSourceResponse: z.ZodObject<{
5993
6224
  tokensCreated: number;
5994
6225
  tokensUpdated: number;
5995
6226
  tokensDeleted: number;
5996
- 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>>;
5997
- 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>>;
5998
- 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>>;
6227
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6228
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6229
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
5999
6230
  componentsCreated: number;
6000
6231
  componentsUpdated: number;
6001
6232
  componentsDeleted: number;
@@ -6050,9 +6281,9 @@ declare const DTODataSourceResponse: z.ZodObject<{
6050
6281
  tokensCreated?: number | null | undefined;
6051
6282
  tokensUpdated?: number | null | undefined;
6052
6283
  tokensDeleted?: number | null | undefined;
6053
- 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;
6054
- 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;
6055
- 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;
6284
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6285
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6286
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6056
6287
  componentsCreated?: number | null | undefined;
6057
6288
  componentsUpdated?: number | null | undefined;
6058
6289
  componentsDeleted?: number | null | undefined;
@@ -6114,9 +6345,9 @@ declare const DTODataSourceResponse: z.ZodObject<{
6114
6345
  tokensCreated: number;
6115
6346
  tokensUpdated: number;
6116
6347
  tokensDeleted: number;
6117
- 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>>;
6118
- 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>>;
6119
- 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>>;
6348
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6349
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6350
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6120
6351
  componentsCreated: number;
6121
6352
  componentsUpdated: number;
6122
6353
  componentsDeleted: number;
@@ -6186,9 +6417,9 @@ declare const DTODataSourceResponse: z.ZodObject<{
6186
6417
  tokensCreated?: number | null | undefined;
6187
6418
  tokensUpdated?: number | null | undefined;
6188
6419
  tokensDeleted?: number | null | undefined;
6189
- 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;
6190
- 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;
6191
- 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;
6420
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6421
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6422
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6192
6423
  componentsCreated?: number | null | undefined;
6193
6424
  componentsUpdated?: number | null | undefined;
6194
6425
  componentsDeleted?: number | null | undefined;
@@ -6485,9 +6716,9 @@ declare const DTODataSourceResponse: z.ZodObject<{
6485
6716
  tokensCreated: number;
6486
6717
  tokensUpdated: number;
6487
6718
  tokensDeleted: number;
6488
- 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>>;
6489
- 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>>;
6490
- 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>>;
6719
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6720
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6721
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6491
6722
  componentsCreated: number;
6492
6723
  componentsUpdated: number;
6493
6724
  componentsDeleted: number;
@@ -6604,9 +6835,9 @@ declare const DTODataSourceResponse: z.ZodObject<{
6604
6835
  tokensCreated?: number | null | undefined;
6605
6836
  tokensUpdated?: number | null | undefined;
6606
6837
  tokensDeleted?: number | null | undefined;
6607
- 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;
6608
- 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;
6609
- 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;
6838
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6839
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6840
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6610
6841
  componentsCreated?: number | null | undefined;
6611
6842
  componentsUpdated?: number | null | undefined;
6612
6843
  componentsDeleted?: number | null | undefined;
@@ -6730,9 +6961,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6730
6961
  tokensCreated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
6731
6962
  tokensUpdated: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
6732
6963
  tokensDeleted: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
6733
- 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>;
6734
- 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>;
6735
- 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>;
6964
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6965
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6966
+ 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<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>, Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined>;
6736
6967
  sourceId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
6737
6968
  brandId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
6738
6969
  versionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -6786,9 +7017,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6786
7017
  tokensCreated: number;
6787
7018
  tokensUpdated: number;
6788
7019
  tokensDeleted: number;
6789
- 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>>;
6790
- 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>>;
6791
- 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>>;
7020
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7021
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7022
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6792
7023
  componentsCreated: number;
6793
7024
  componentsUpdated: number;
6794
7025
  componentsDeleted: number;
@@ -6820,9 +7051,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6820
7051
  tokensCreated?: number | null | undefined;
6821
7052
  tokensUpdated?: number | null | undefined;
6822
7053
  tokensDeleted?: number | null | undefined;
6823
- 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;
6824
- 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;
6825
- 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;
7054
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7055
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7056
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6826
7057
  componentsCreated?: number | null | undefined;
6827
7058
  componentsUpdated?: number | null | undefined;
6828
7059
  componentsDeleted?: number | null | undefined;
@@ -6896,9 +7127,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6896
7127
  tokensCreated: number;
6897
7128
  tokensUpdated: number;
6898
7129
  tokensDeleted: number;
6899
- 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>>;
6900
- 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>>;
6901
- 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>>;
7130
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7131
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7132
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
6902
7133
  componentsCreated: number;
6903
7134
  componentsUpdated: number;
6904
7135
  componentsDeleted: number;
@@ -6953,9 +7184,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
6953
7184
  tokensCreated?: number | null | undefined;
6954
7185
  tokensUpdated?: number | null | undefined;
6955
7186
  tokensDeleted?: number | null | undefined;
6956
- 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;
6957
- 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;
6958
- 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;
7187
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7188
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7189
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
6959
7190
  componentsCreated?: number | null | undefined;
6960
7191
  componentsUpdated?: number | null | undefined;
6961
7192
  componentsDeleted?: number | null | undefined;
@@ -7017,9 +7248,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
7017
7248
  tokensCreated: number;
7018
7249
  tokensUpdated: number;
7019
7250
  tokensDeleted: number;
7020
- 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>>;
7021
- 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>>;
7022
- 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>>;
7251
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7252
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7253
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7023
7254
  componentsCreated: number;
7024
7255
  componentsUpdated: number;
7025
7256
  componentsDeleted: number;
@@ -7089,9 +7320,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
7089
7320
  tokensCreated?: number | null | undefined;
7090
7321
  tokensUpdated?: number | null | undefined;
7091
7322
  tokensDeleted?: number | null | undefined;
7092
- 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;
7093
- 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;
7094
- 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;
7323
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7324
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7325
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7095
7326
  componentsCreated?: number | null | undefined;
7096
7327
  componentsUpdated?: number | null | undefined;
7097
7328
  componentsDeleted?: number | null | undefined;
@@ -7388,9 +7619,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
7388
7619
  tokensCreated: number;
7389
7620
  tokensUpdated: number;
7390
7621
  tokensDeleted: number;
7391
- 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>>;
7392
- 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>>;
7393
- 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>>;
7622
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7623
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7624
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
7394
7625
  componentsCreated: number;
7395
7626
  componentsUpdated: number;
7396
7627
  componentsDeleted: number;
@@ -7507,9 +7738,9 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
7507
7738
  tokensCreated?: number | null | undefined;
7508
7739
  tokensUpdated?: number | null | undefined;
7509
7740
  tokensDeleted?: number | null | undefined;
7510
- 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;
7511
- 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;
7512
- 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;
7741
+ tokensCreatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7742
+ tokensUpdatedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7743
+ tokensDeletedPerType?: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>> | null | undefined;
7513
7744
  componentsCreated?: number | null | undefined;
7514
7745
  componentsUpdated?: number | null | undefined;
7515
7746
  componentsDeleted?: number | null | undefined;
@@ -8371,17 +8602,6 @@ declare const DTODesignElementsDataDiffResponse: z.ZodObject<{
8371
8602
  }>;
8372
8603
  type DTODesignElementsDataDiffResponse = z.infer<typeof DTODesignElementsDataDiffResponse>;
8373
8604
 
8374
- declare const DTOExporterProperty: z.ZodAny;
8375
- type DTOExporterProperty = z.infer<typeof DTOExporterProperty>;
8376
- declare const DTOExporterPropertyListResponse: z.ZodObject<{
8377
- items: z.ZodArray<z.ZodAny, "many">;
8378
- }, "strip", z.ZodTypeAny, {
8379
- items: any[];
8380
- }, {
8381
- items: any[];
8382
- }>;
8383
- type DTOExporterPropertyListResponse = z.infer<typeof DTOExporterPropertyListResponse>;
8384
-
8385
8605
  declare const DimensionsVariableScopeSchema: z.ZodEnum<["CORNER_RADIUS", "WIDTH_HEIGHT", "GAP", "STROKE_FLOAT", "EFFECT_FLOAT", "OPACITY", "FONT_SIZE", "LINE_HEIGHT", "LETTER_SPACING", "PARAGRAPH_SPACING", "PARAGRAPH_INDENT", "FONT_WEIGHT"]>;
8386
8606
  declare const StringVariableScopeSchema: z.ZodEnum<["TEXT_CONTENT", "FONT_FAMILY", "FONT_STYLE"]>;
8387
8607
  type DimensionsVariableScopeType = z.infer<typeof DimensionsVariableScopeSchema>;
@@ -9681,14 +9901,14 @@ declare const DTODesignSystemVersionStats: z.ZodObject<{
9681
9901
  assets: z.ZodNumber;
9682
9902
  documentationPages: z.ZodNumber;
9683
9903
  }, "strip", z.ZodTypeAny, {
9904
+ designSystemComponents: number;
9684
9905
  tokens: number;
9685
9906
  assets: number;
9686
- designSystemComponents: number;
9687
9907
  documentationPages: number;
9688
9908
  }, {
9909
+ designSystemComponents: number;
9689
9910
  tokens: number;
9690
9911
  assets: number;
9691
- designSystemComponents: number;
9692
9912
  documentationPages: number;
9693
9913
  }>;
9694
9914
  type DTODesignSystemVersionStats = z.infer<typeof DTODesignSystemVersionStats>;
@@ -19028,7 +19248,7 @@ declare const DTODesignTokenGroup: z.ZodObject<{
19028
19248
  isRoot: boolean;
19029
19249
  childrenIds: string[];
19030
19250
  brandId: string;
19031
- 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";
19251
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19032
19252
  }, {
19033
19253
  id: string;
19034
19254
  persistentId: string;
@@ -19039,7 +19259,7 @@ declare const DTODesignTokenGroup: z.ZodObject<{
19039
19259
  isRoot: boolean;
19040
19260
  childrenIds: string[];
19041
19261
  brandId: string;
19042
- 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";
19262
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19043
19263
  }>;
19044
19264
  type DTODesignTokenGroup = z.infer<typeof DTODesignTokenGroup>;
19045
19265
  declare const DTODesignTokenGroupListResponse: z.ZodObject<{
@@ -19070,7 +19290,7 @@ declare const DTODesignTokenGroupListResponse: z.ZodObject<{
19070
19290
  isRoot: boolean;
19071
19291
  childrenIds: string[];
19072
19292
  brandId: string;
19073
- 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";
19293
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19074
19294
  }, {
19075
19295
  id: string;
19076
19296
  persistentId: string;
@@ -19081,7 +19301,7 @@ declare const DTODesignTokenGroupListResponse: z.ZodObject<{
19081
19301
  isRoot: boolean;
19082
19302
  childrenIds: string[];
19083
19303
  brandId: string;
19084
- 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";
19304
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19085
19305
  }>, "many">;
19086
19306
  }, "strip", z.ZodTypeAny, {
19087
19307
  groups: {
@@ -19094,7 +19314,7 @@ declare const DTODesignTokenGroupListResponse: z.ZodObject<{
19094
19314
  isRoot: boolean;
19095
19315
  childrenIds: string[];
19096
19316
  brandId: string;
19097
- 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";
19317
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19098
19318
  }[];
19099
19319
  }, {
19100
19320
  groups: {
@@ -19107,7 +19327,7 @@ declare const DTODesignTokenGroupListResponse: z.ZodObject<{
19107
19327
  isRoot: boolean;
19108
19328
  childrenIds: string[];
19109
19329
  brandId: string;
19110
- 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";
19330
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19111
19331
  }[];
19112
19332
  }>;
19113
19333
  type DTODesignTokenGroupListResponse = z.infer<typeof DTODesignTokenGroupListResponse>;
@@ -19139,7 +19359,7 @@ declare const DTODesignTokenGroupResponse: z.ZodObject<{
19139
19359
  isRoot: boolean;
19140
19360
  childrenIds: string[];
19141
19361
  brandId: string;
19142
- 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";
19362
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19143
19363
  }, {
19144
19364
  id: string;
19145
19365
  persistentId: string;
@@ -19150,7 +19370,7 @@ declare const DTODesignTokenGroupResponse: z.ZodObject<{
19150
19370
  isRoot: boolean;
19151
19371
  childrenIds: string[];
19152
19372
  brandId: string;
19153
- 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";
19373
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19154
19374
  }>;
19155
19375
  }, "strip", z.ZodTypeAny, {
19156
19376
  group: {
@@ -19163,7 +19383,7 @@ declare const DTODesignTokenGroupResponse: z.ZodObject<{
19163
19383
  isRoot: boolean;
19164
19384
  childrenIds: string[];
19165
19385
  brandId: string;
19166
- 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";
19386
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19167
19387
  };
19168
19388
  }, {
19169
19389
  group: {
@@ -19176,7 +19396,7 @@ declare const DTODesignTokenGroupResponse: z.ZodObject<{
19176
19396
  isRoot: boolean;
19177
19397
  childrenIds: string[];
19178
19398
  brandId: string;
19179
- 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";
19399
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
19180
19400
  };
19181
19401
  }>;
19182
19402
  type DTODesignTokenGroupResponse = z.infer<typeof DTODesignTokenGroupResponse>;
@@ -21454,7 +21674,7 @@ declare const DTODesignTokenGroupCreatePayload: z.ZodObject<{
21454
21674
  };
21455
21675
  childrenIds: string[];
21456
21676
  brandId: string;
21457
- 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";
21677
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
21458
21678
  parentId?: string | undefined;
21459
21679
  }, {
21460
21680
  persistentId: string;
@@ -21464,7 +21684,7 @@ declare const DTODesignTokenGroupCreatePayload: z.ZodObject<{
21464
21684
  };
21465
21685
  childrenIds: string[];
21466
21686
  brandId: string;
21467
- 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";
21687
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
21468
21688
  parentId?: string | undefined;
21469
21689
  }>;
21470
21690
  type DTODesignTokenGroupCreatePayload = z.infer<typeof DTODesignTokenGroupCreatePayload>;
@@ -21621,14 +21841,14 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
21621
21841
  variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
21622
21842
  }, "strip", z.ZodTypeAny, {
21623
21843
  id: string;
21624
- 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";
21844
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21625
21845
  name: string;
21626
21846
  options?: Record<string, any> | undefined;
21627
21847
  description?: string | undefined;
21628
21848
  variantOptions?: Record<string, Record<string, any>> | undefined;
21629
21849
  }, {
21630
21850
  id: string;
21631
- 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";
21851
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21632
21852
  name: string;
21633
21853
  options?: Record<string, any> | undefined;
21634
21854
  description?: string | undefined;
@@ -21724,7 +21944,7 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
21724
21944
  }, "strip", z.ZodTypeAny, {
21725
21945
  properties: {
21726
21946
  id: string;
21727
- 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";
21947
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21728
21948
  name: string;
21729
21949
  options?: Record<string, any> | undefined;
21730
21950
  description?: string | undefined;
@@ -21763,7 +21983,7 @@ declare const DTOPageBlockDefinitionItem: z.ZodObject<{
21763
21983
  }, {
21764
21984
  properties: {
21765
21985
  id: string;
21766
- 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";
21986
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21767
21987
  name: string;
21768
21988
  options?: Record<string, any> | undefined;
21769
21989
  description?: string | undefined;
@@ -21883,14 +22103,14 @@ declare const DTOPageBlockDefinitionProperty: z.ZodObject<{
21883
22103
  variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
21884
22104
  }, "strip", z.ZodTypeAny, {
21885
22105
  id: string;
21886
- 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";
22106
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21887
22107
  name: string;
21888
22108
  options?: Record<string, any> | undefined;
21889
22109
  description?: string | undefined;
21890
22110
  variantOptions?: Record<string, Record<string, any>> | undefined;
21891
22111
  }, {
21892
22112
  id: string;
21893
- 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";
22113
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21894
22114
  name: string;
21895
22115
  options?: Record<string, any> | undefined;
21896
22116
  description?: string | undefined;
@@ -21926,14 +22146,14 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
21926
22146
  variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
21927
22147
  }, "strip", z.ZodTypeAny, {
21928
22148
  id: string;
21929
- 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";
22149
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21930
22150
  name: string;
21931
22151
  options?: Record<string, any> | undefined;
21932
22152
  description?: string | undefined;
21933
22153
  variantOptions?: Record<string, Record<string, any>> | undefined;
21934
22154
  }, {
21935
22155
  id: string;
21936
- 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";
22156
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
21937
22157
  name: string;
21938
22158
  options?: Record<string, any> | undefined;
21939
22159
  description?: string | undefined;
@@ -22029,7 +22249,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
22029
22249
  }, "strip", z.ZodTypeAny, {
22030
22250
  properties: {
22031
22251
  id: string;
22032
- 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";
22252
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
22033
22253
  name: string;
22034
22254
  options?: Record<string, any> | undefined;
22035
22255
  description?: string | undefined;
@@ -22068,7 +22288,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
22068
22288
  }, {
22069
22289
  properties: {
22070
22290
  id: string;
22071
- 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";
22291
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
22072
22292
  name: string;
22073
22293
  options?: Record<string, any> | undefined;
22074
22294
  description?: string | undefined;
@@ -22202,7 +22422,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
22202
22422
  item: {
22203
22423
  properties: {
22204
22424
  id: string;
22205
- 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";
22425
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
22206
22426
  name: string;
22207
22427
  options?: Record<string, any> | undefined;
22208
22428
  description?: string | undefined;
@@ -22275,7 +22495,7 @@ declare const DTOPageBlockDefinition: z.ZodObject<{
22275
22495
  item: {
22276
22496
  properties: {
22277
22497
  id: string;
22278
- 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";
22498
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
22279
22499
  name: string;
22280
22500
  options?: Record<string, any> | undefined;
22281
22501
  description?: string | undefined;
@@ -24149,6 +24369,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24149
24369
  brandPersistentId: z.ZodOptional<z.ZodString>;
24150
24370
  themePersistentId: z.ZodOptional<z.ZodString>;
24151
24371
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
24372
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
24152
24373
  }, "strip", z.ZodTypeAny, {
24153
24374
  status: "InProgress" | "Failed" | "Success" | "Timeout";
24154
24375
  id: string;
@@ -24234,6 +24455,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24234
24455
  brandPersistentId?: string | undefined;
24235
24456
  themePersistentId?: string | undefined;
24236
24457
  themePersistentIds?: string[] | undefined;
24458
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24237
24459
  finishedAt?: Date | undefined;
24238
24460
  index?: number | undefined;
24239
24461
  estimatedExecutionTime?: number | undefined;
@@ -24359,6 +24581,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24359
24581
  brandPersistentId?: string | undefined;
24360
24582
  themePersistentId?: string | undefined;
24361
24583
  themePersistentIds?: string[] | undefined;
24584
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24362
24585
  finishedAt?: Date | undefined;
24363
24586
  index?: number | undefined;
24364
24587
  estimatedExecutionTime?: number | undefined;
@@ -24486,6 +24709,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24486
24709
  brandPersistentId?: string | undefined;
24487
24710
  themePersistentId?: string | undefined;
24488
24711
  themePersistentIds?: string[] | undefined;
24712
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24489
24713
  finishedAt?: Date | undefined;
24490
24714
  index?: number | undefined;
24491
24715
  estimatedExecutionTime?: number | undefined;
@@ -24613,6 +24837,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24613
24837
  brandPersistentId?: string | undefined;
24614
24838
  themePersistentId?: string | undefined;
24615
24839
  themePersistentIds?: string[] | undefined;
24840
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24616
24841
  finishedAt?: Date | undefined;
24617
24842
  index?: number | undefined;
24618
24843
  estimatedExecutionTime?: number | undefined;
@@ -24657,6 +24882,117 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24657
24882
  }>;
24658
24883
  type DTOPublishDocumentationResponse = z.infer<typeof DTOPublishDocumentationResponse>;
24659
24884
 
24885
+ declare const DTOFigmaComponentGroup: zod__default.ZodObject<{
24886
+ id: zod__default.ZodString;
24887
+ designSystemVersionId: zod__default.ZodString;
24888
+ persistentId: zod__default.ZodString;
24889
+ isRoot: zod__default.ZodBoolean;
24890
+ brandId: zod__default.ZodString;
24891
+ meta: zod__default.ZodObject<{
24892
+ name: zod__default.ZodString;
24893
+ description: zod__default.ZodOptional<zod__default.ZodString>;
24894
+ }, "strip", zod__default.ZodTypeAny, {
24895
+ name: string;
24896
+ description?: string | undefined;
24897
+ }, {
24898
+ name: string;
24899
+ description?: string | undefined;
24900
+ }>;
24901
+ childrenIds: zod__default.ZodArray<zod__default.ZodString, "many">;
24902
+ }, "strip", zod__default.ZodTypeAny, {
24903
+ id: string;
24904
+ persistentId: string;
24905
+ meta: {
24906
+ name: string;
24907
+ description?: string | undefined;
24908
+ };
24909
+ designSystemVersionId: string;
24910
+ isRoot: boolean;
24911
+ childrenIds: string[];
24912
+ brandId: string;
24913
+ }, {
24914
+ id: string;
24915
+ persistentId: string;
24916
+ meta: {
24917
+ name: string;
24918
+ description?: string | undefined;
24919
+ };
24920
+ designSystemVersionId: string;
24921
+ isRoot: boolean;
24922
+ childrenIds: string[];
24923
+ brandId: string;
24924
+ }>;
24925
+ type DTOFigmaComponentGroup = zod__default.infer<typeof DTOFigmaComponentGroup>;
24926
+ declare const DTOFigmaComponentGroupListResponse: zod__default.ZodObject<{
24927
+ groups: zod__default.ZodArray<zod__default.ZodObject<{
24928
+ id: zod__default.ZodString;
24929
+ designSystemVersionId: zod__default.ZodString;
24930
+ persistentId: zod__default.ZodString;
24931
+ isRoot: zod__default.ZodBoolean;
24932
+ brandId: zod__default.ZodString;
24933
+ meta: zod__default.ZodObject<{
24934
+ name: zod__default.ZodString;
24935
+ description: zod__default.ZodOptional<zod__default.ZodString>;
24936
+ }, "strip", zod__default.ZodTypeAny, {
24937
+ name: string;
24938
+ description?: string | undefined;
24939
+ }, {
24940
+ name: string;
24941
+ description?: string | undefined;
24942
+ }>;
24943
+ childrenIds: zod__default.ZodArray<zod__default.ZodString, "many">;
24944
+ }, "strip", zod__default.ZodTypeAny, {
24945
+ id: string;
24946
+ persistentId: string;
24947
+ meta: {
24948
+ name: string;
24949
+ description?: string | undefined;
24950
+ };
24951
+ designSystemVersionId: string;
24952
+ isRoot: boolean;
24953
+ childrenIds: string[];
24954
+ brandId: string;
24955
+ }, {
24956
+ id: string;
24957
+ persistentId: string;
24958
+ meta: {
24959
+ name: string;
24960
+ description?: string | undefined;
24961
+ };
24962
+ designSystemVersionId: string;
24963
+ isRoot: boolean;
24964
+ childrenIds: string[];
24965
+ brandId: string;
24966
+ }>, "many">;
24967
+ }, "strip", zod__default.ZodTypeAny, {
24968
+ groups: {
24969
+ id: string;
24970
+ persistentId: string;
24971
+ meta: {
24972
+ name: string;
24973
+ description?: string | undefined;
24974
+ };
24975
+ designSystemVersionId: string;
24976
+ isRoot: boolean;
24977
+ childrenIds: string[];
24978
+ brandId: string;
24979
+ }[];
24980
+ }, {
24981
+ groups: {
24982
+ id: string;
24983
+ persistentId: string;
24984
+ meta: {
24985
+ name: string;
24986
+ description?: string | undefined;
24987
+ };
24988
+ designSystemVersionId: string;
24989
+ isRoot: boolean;
24990
+ childrenIds: string[];
24991
+ brandId: string;
24992
+ }[];
24993
+ }>;
24994
+ type DTOFigmaComponentGroupListResponse = zod__default.infer<typeof DTOFigmaComponentGroupListResponse>;
24995
+
24660
24996
  declare const DTOFigmaComponentBooleanProperty: z.ZodObject<z.objectUtil.extendShape<{
24661
24997
  id: z.ZodString;
24662
24998
  name: z.ZodString;
@@ -36156,7 +36492,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
36156
36492
  persistentId: string;
36157
36493
  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";
36158
36494
  url?: string | null | undefined;
36159
- 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;
36495
+ tokenType?: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
36160
36496
  asset?: {
36161
36497
  type: "image" | "figmaFrame";
36162
36498
  id?: string | null | undefined;
@@ -36748,7 +37084,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
36748
37084
  persistentId: string;
36749
37085
  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";
36750
37086
  url?: string | null | undefined;
36751
- 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;
37087
+ tokenType?: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
36752
37088
  asset?: {
36753
37089
  type: "image" | "figmaFrame";
36754
37090
  id?: string | null | undefined;
@@ -37564,7 +37900,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
37564
37900
  persistentId: string;
37565
37901
  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";
37566
37902
  url?: string | null | undefined;
37567
- 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;
37903
+ tokenType?: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
37568
37904
  asset?: {
37569
37905
  type: "image" | "figmaFrame";
37570
37906
  id?: string | null | undefined;
@@ -37809,7 +38145,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
37809
38145
  persistentId: string;
37810
38146
  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";
37811
38147
  url?: string | null | undefined;
37812
- 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;
38148
+ tokenType?: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
37813
38149
  asset?: {
37814
38150
  type: "image" | "figmaFrame";
37815
38151
  id?: string | null | undefined;
@@ -38172,7 +38508,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
38172
38508
  persistentId: string;
38173
38509
  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";
38174
38510
  url?: string | null | undefined;
38175
- 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;
38511
+ tokenType?: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
38176
38512
  asset?: {
38177
38513
  type: "image" | "figmaFrame";
38178
38514
  id?: string | null | undefined;
@@ -38417,7 +38753,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<z.objectUtil.extendShape<Omit<
38417
38753
  persistentId: string;
38418
38754
  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";
38419
38755
  url?: string | null | undefined;
38420
- 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;
38756
+ tokenType?: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | null | undefined;
38421
38757
  asset?: {
38422
38758
  type: "image" | "figmaFrame";
38423
38759
  id?: string | null | undefined;
@@ -40833,6 +41169,149 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
40833
41169
  }>;
40834
41170
  type DTOFigmaNodeRenderActionInput = z.infer<typeof DTOFigmaNodeRenderActionInput>;
40835
41171
 
41172
+ declare const DTOFrameNodeStructure: z.ZodObject<{
41173
+ id: z.ZodString;
41174
+ persistentId: z.ZodString;
41175
+ designSystemVersionId: z.ZodString;
41176
+ origin: z.ZodObject<{
41177
+ sourceId: z.ZodString;
41178
+ fileId: z.ZodOptional<z.ZodString>;
41179
+ }, "strip", z.ZodTypeAny, {
41180
+ sourceId: string;
41181
+ fileId?: string | undefined;
41182
+ }, {
41183
+ sourceId: string;
41184
+ fileId?: string | undefined;
41185
+ }>;
41186
+ assetsInFile: z.ZodObject<{
41187
+ frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
41188
+ components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
41189
+ componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
41190
+ }, "strip", z.ZodTypeAny, {
41191
+ components: number;
41192
+ componentSets: number;
41193
+ frames: number;
41194
+ }, {
41195
+ components?: number | null | undefined;
41196
+ componentSets?: number | null | undefined;
41197
+ frames?: number | null | undefined;
41198
+ }>;
41199
+ }, "strip", z.ZodTypeAny, {
41200
+ id: string;
41201
+ persistentId: string;
41202
+ designSystemVersionId: string;
41203
+ origin: {
41204
+ sourceId: string;
41205
+ fileId?: string | undefined;
41206
+ };
41207
+ assetsInFile: {
41208
+ components: number;
41209
+ componentSets: number;
41210
+ frames: number;
41211
+ };
41212
+ }, {
41213
+ id: string;
41214
+ persistentId: string;
41215
+ designSystemVersionId: string;
41216
+ origin: {
41217
+ sourceId: string;
41218
+ fileId?: string | undefined;
41219
+ };
41220
+ assetsInFile: {
41221
+ components?: number | null | undefined;
41222
+ componentSets?: number | null | undefined;
41223
+ frames?: number | null | undefined;
41224
+ };
41225
+ }>;
41226
+ type DTOFrameNodeStructure = z.infer<typeof DTOFrameNodeStructure>;
41227
+ declare const DTOFrameNodeStructureListResponse: z.ZodObject<{
41228
+ structures: z.ZodArray<z.ZodObject<{
41229
+ id: z.ZodString;
41230
+ persistentId: z.ZodString;
41231
+ designSystemVersionId: z.ZodString;
41232
+ origin: z.ZodObject<{
41233
+ sourceId: z.ZodString;
41234
+ fileId: z.ZodOptional<z.ZodString>;
41235
+ }, "strip", z.ZodTypeAny, {
41236
+ sourceId: string;
41237
+ fileId?: string | undefined;
41238
+ }, {
41239
+ sourceId: string;
41240
+ fileId?: string | undefined;
41241
+ }>;
41242
+ assetsInFile: z.ZodObject<{
41243
+ frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
41244
+ components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
41245
+ componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
41246
+ }, "strip", z.ZodTypeAny, {
41247
+ components: number;
41248
+ componentSets: number;
41249
+ frames: number;
41250
+ }, {
41251
+ components?: number | null | undefined;
41252
+ componentSets?: number | null | undefined;
41253
+ frames?: number | null | undefined;
41254
+ }>;
41255
+ }, "strip", z.ZodTypeAny, {
41256
+ id: string;
41257
+ persistentId: string;
41258
+ designSystemVersionId: string;
41259
+ origin: {
41260
+ sourceId: string;
41261
+ fileId?: string | undefined;
41262
+ };
41263
+ assetsInFile: {
41264
+ components: number;
41265
+ componentSets: number;
41266
+ frames: number;
41267
+ };
41268
+ }, {
41269
+ id: string;
41270
+ persistentId: string;
41271
+ designSystemVersionId: string;
41272
+ origin: {
41273
+ sourceId: string;
41274
+ fileId?: string | undefined;
41275
+ };
41276
+ assetsInFile: {
41277
+ components?: number | null | undefined;
41278
+ componentSets?: number | null | undefined;
41279
+ frames?: number | null | undefined;
41280
+ };
41281
+ }>, "many">;
41282
+ }, "strip", z.ZodTypeAny, {
41283
+ structures: {
41284
+ id: string;
41285
+ persistentId: string;
41286
+ designSystemVersionId: string;
41287
+ origin: {
41288
+ sourceId: string;
41289
+ fileId?: string | undefined;
41290
+ };
41291
+ assetsInFile: {
41292
+ components: number;
41293
+ componentSets: number;
41294
+ frames: number;
41295
+ };
41296
+ }[];
41297
+ }, {
41298
+ structures: {
41299
+ id: string;
41300
+ persistentId: string;
41301
+ designSystemVersionId: string;
41302
+ origin: {
41303
+ sourceId: string;
41304
+ fileId?: string | undefined;
41305
+ };
41306
+ assetsInFile: {
41307
+ components?: number | null | undefined;
41308
+ componentSets?: number | null | undefined;
41309
+ frames?: number | null | undefined;
41310
+ };
41311
+ }[];
41312
+ }>;
41313
+ type DTOFrameNodeStructureListResponse = z.infer<typeof DTOFrameNodeStructureListResponse>;
41314
+
40836
41315
  declare const DTOElementPropertyDefinitionOption: z.ZodObject<{
40837
41316
  id: z.ZodString;
40838
41317
  name: z.ZodString;
@@ -40903,7 +41382,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
40903
41382
  isImmutable: z.ZodBoolean;
40904
41383
  immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
40905
41384
  }, "strip", z.ZodTypeAny, {
40906
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41385
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
40907
41386
  id: string;
40908
41387
  persistentId: string;
40909
41388
  meta: {
@@ -40924,7 +41403,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
40924
41403
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
40925
41404
  immutablePropertyType?: "Collection" | undefined;
40926
41405
  }, {
40927
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41406
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
40928
41407
  id: string;
40929
41408
  persistentId: string;
40930
41409
  meta: {
@@ -40993,7 +41472,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40993
41472
  isImmutable: z.ZodBoolean;
40994
41473
  immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
40995
41474
  }, "strip", z.ZodTypeAny, {
40996
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41475
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
40997
41476
  id: string;
40998
41477
  persistentId: string;
40999
41478
  meta: {
@@ -41014,7 +41493,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
41014
41493
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
41015
41494
  immutablePropertyType?: "Collection" | undefined;
41016
41495
  }, {
41017
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41496
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
41018
41497
  id: string;
41019
41498
  persistentId: string;
41020
41499
  meta: {
@@ -41037,7 +41516,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
41037
41516
  }>, "many">;
41038
41517
  }, "strip", z.ZodTypeAny, {
41039
41518
  definitions: {
41040
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41519
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
41041
41520
  id: string;
41042
41521
  persistentId: string;
41043
41522
  meta: {
@@ -41060,7 +41539,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
41060
41539
  }[];
41061
41540
  }, {
41062
41541
  definitions: {
41063
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41542
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
41064
41543
  id: string;
41065
41544
  persistentId: string;
41066
41545
  meta: {
@@ -41130,7 +41609,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
41130
41609
  isImmutable: z.ZodBoolean;
41131
41610
  immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
41132
41611
  }, "strip", z.ZodTypeAny, {
41133
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41612
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
41134
41613
  id: string;
41135
41614
  persistentId: string;
41136
41615
  meta: {
@@ -41151,7 +41630,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
41151
41630
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
41152
41631
  immutablePropertyType?: "Collection" | undefined;
41153
41632
  }, {
41154
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41633
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
41155
41634
  id: string;
41156
41635
  persistentId: string;
41157
41636
  meta: {
@@ -41174,7 +41653,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
41174
41653
  }>;
41175
41654
  }, "strip", z.ZodTypeAny, {
41176
41655
  definition: {
41177
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41656
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
41178
41657
  id: string;
41179
41658
  persistentId: string;
41180
41659
  meta: {
@@ -41197,7 +41676,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
41197
41676
  };
41198
41677
  }, {
41199
41678
  definition: {
41200
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41679
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
41201
41680
  id: string;
41202
41681
  persistentId: string;
41203
41682
  meta: {
@@ -41263,7 +41742,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
41263
41742
  linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
41264
41743
  columnWidth: z.ZodOptional<z.ZodNumber>;
41265
41744
  }, "strip", z.ZodTypeAny, {
41266
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41745
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
41267
41746
  persistentId: string;
41268
41747
  meta: {
41269
41748
  name: string;
@@ -41281,7 +41760,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
41281
41760
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
41282
41761
  columnWidth?: number | undefined;
41283
41762
  }, {
41284
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41763
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
41285
41764
  persistentId: string;
41286
41765
  meta: {
41287
41766
  name: string;
@@ -43925,6 +44404,550 @@ type DTOElementsGetQueryParsed = z.output<typeof DTOElementsGetQuerySchema>;
43925
44404
  declare const DTOElementsGetTypeFilter: z.ZodEnum<["FigmaNode"]>;
43926
44405
  type DTOElementsGetTypeFilter = z.infer<typeof DTOElementsGetTypeFilter>;
43927
44406
 
44407
+ declare const DTOExporterPropertyDefinitionValue: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>;
44408
+ type DTOExporterPropertyDefinitionValue = z.infer<typeof DTOExporterPropertyDefinitionValue>;
44409
+ declare const DTOExporterPropertyType: z.ZodEnum<["Enum", "Boolean", "String", "Number", "Array", "Object"]>;
44410
+ type DTOExporterPropertyType = z.infer<typeof DTOExporterPropertyType>;
44411
+ declare const DTOExporterPropertyDefinitionEnum: z.ZodObject<z.objectUtil.extendShape<{
44412
+ key: z.ZodString;
44413
+ title: z.ZodString;
44414
+ description: z.ZodString;
44415
+ }, {
44416
+ type: z.ZodLiteral<"Enum">;
44417
+ options: z.ZodArray<z.ZodString, "many">;
44418
+ default: z.ZodString;
44419
+ }>, "strip", z.ZodTypeAny, {
44420
+ options: string[];
44421
+ type: "Enum";
44422
+ description: string;
44423
+ title: string;
44424
+ key: string;
44425
+ default: string;
44426
+ }, {
44427
+ options: string[];
44428
+ type: "Enum";
44429
+ description: string;
44430
+ title: string;
44431
+ key: string;
44432
+ default: string;
44433
+ }>;
44434
+ type DTOExporterPropertyDefinitionEnum = z.infer<typeof DTOExporterPropertyDefinitionEnum>;
44435
+ declare const DTOExporterPropertyDefinitionBoolean: z.ZodObject<z.objectUtil.extendShape<{
44436
+ key: z.ZodString;
44437
+ title: z.ZodString;
44438
+ description: z.ZodString;
44439
+ }, {
44440
+ type: z.ZodLiteral<"Boolean">;
44441
+ default: z.ZodBoolean;
44442
+ }>, "strip", z.ZodTypeAny, {
44443
+ type: "Boolean";
44444
+ description: string;
44445
+ title: string;
44446
+ key: string;
44447
+ default: boolean;
44448
+ }, {
44449
+ type: "Boolean";
44450
+ description: string;
44451
+ title: string;
44452
+ key: string;
44453
+ default: boolean;
44454
+ }>;
44455
+ type DTOExporterPropertyDefinitionBoolean = z.infer<typeof DTOExporterPropertyDefinitionBoolean>;
44456
+ declare const DTOExporterPropertyDefinitionString: z.ZodObject<z.objectUtil.extendShape<{
44457
+ key: z.ZodString;
44458
+ title: z.ZodString;
44459
+ description: z.ZodString;
44460
+ }, {
44461
+ type: z.ZodLiteral<"String">;
44462
+ default: z.ZodString;
44463
+ }>, "strip", z.ZodTypeAny, {
44464
+ type: "String";
44465
+ description: string;
44466
+ title: string;
44467
+ key: string;
44468
+ default: string;
44469
+ }, {
44470
+ type: "String";
44471
+ description: string;
44472
+ title: string;
44473
+ key: string;
44474
+ default: string;
44475
+ }>;
44476
+ type DTOExporterPropertyDefinitionString = z.infer<typeof DTOExporterPropertyDefinitionString>;
44477
+ declare const DTOExporterPropertyDefinitionNumber: z.ZodObject<z.objectUtil.extendShape<{
44478
+ key: z.ZodString;
44479
+ title: z.ZodString;
44480
+ description: z.ZodString;
44481
+ }, {
44482
+ type: z.ZodLiteral<"Number">;
44483
+ default: z.ZodNumber;
44484
+ }>, "strip", z.ZodTypeAny, {
44485
+ type: "Number";
44486
+ description: string;
44487
+ title: string;
44488
+ key: string;
44489
+ default: number;
44490
+ }, {
44491
+ type: "Number";
44492
+ description: string;
44493
+ title: string;
44494
+ key: string;
44495
+ default: number;
44496
+ }>;
44497
+ type DTOExporterPropertyDefinitionNumber = z.infer<typeof DTOExporterPropertyDefinitionNumber>;
44498
+ declare const DTOExporterPropertyDefinitionArray: z.ZodObject<z.objectUtil.extendShape<{
44499
+ key: z.ZodString;
44500
+ title: z.ZodString;
44501
+ description: z.ZodString;
44502
+ }, {
44503
+ type: z.ZodLiteral<"Array">;
44504
+ default: z.ZodArray<z.ZodString, "many">;
44505
+ }>, "strip", z.ZodTypeAny, {
44506
+ type: "Array";
44507
+ description: string;
44508
+ title: string;
44509
+ key: string;
44510
+ default: string[];
44511
+ }, {
44512
+ type: "Array";
44513
+ description: string;
44514
+ title: string;
44515
+ key: string;
44516
+ default: string[];
44517
+ }>;
44518
+ type DTOExporterPropertyDefinitionArray = z.infer<typeof DTOExporterPropertyDefinitionArray>;
44519
+ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.extendShape<{
44520
+ key: z.ZodString;
44521
+ title: z.ZodString;
44522
+ description: z.ZodString;
44523
+ }, {
44524
+ type: z.ZodLiteral<"Object">;
44525
+ default: z.ZodRecord<z.ZodString, z.ZodString>;
44526
+ allowedKeys: z.ZodOptional<z.ZodObject<{
44527
+ options: z.ZodArray<z.ZodString, "many">;
44528
+ }, "strip", z.ZodTypeAny, {
44529
+ options: string[];
44530
+ }, {
44531
+ options: string[];
44532
+ }>>;
44533
+ allowedValues: z.ZodOptional<z.ZodObject<{
44534
+ options: z.ZodArray<z.ZodString, "many">;
44535
+ }, "strip", z.ZodTypeAny, {
44536
+ options: string[];
44537
+ }, {
44538
+ options: string[];
44539
+ }>>;
44540
+ }>, "strip", z.ZodTypeAny, {
44541
+ type: "Object";
44542
+ description: string;
44543
+ title: string;
44544
+ key: string;
44545
+ default: Record<string, string>;
44546
+ allowedKeys?: {
44547
+ options: string[];
44548
+ } | undefined;
44549
+ allowedValues?: {
44550
+ options: string[];
44551
+ } | undefined;
44552
+ }, {
44553
+ type: "Object";
44554
+ description: string;
44555
+ title: string;
44556
+ key: string;
44557
+ default: Record<string, string>;
44558
+ allowedKeys?: {
44559
+ options: string[];
44560
+ } | undefined;
44561
+ allowedValues?: {
44562
+ options: string[];
44563
+ } | undefined;
44564
+ }>;
44565
+ type DTOExporterPropertyDefinitionObject = z.infer<typeof DTOExporterPropertyDefinitionObject>;
44566
+ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
44567
+ key: z.ZodString;
44568
+ title: z.ZodString;
44569
+ description: z.ZodString;
44570
+ }, {
44571
+ type: z.ZodLiteral<"Enum">;
44572
+ options: z.ZodArray<z.ZodString, "many">;
44573
+ default: z.ZodString;
44574
+ }>, "strip", z.ZodTypeAny, {
44575
+ options: string[];
44576
+ type: "Enum";
44577
+ description: string;
44578
+ title: string;
44579
+ key: string;
44580
+ default: string;
44581
+ }, {
44582
+ options: string[];
44583
+ type: "Enum";
44584
+ description: string;
44585
+ title: string;
44586
+ key: string;
44587
+ default: string;
44588
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44589
+ key: z.ZodString;
44590
+ title: z.ZodString;
44591
+ description: z.ZodString;
44592
+ }, {
44593
+ type: z.ZodLiteral<"Boolean">;
44594
+ default: z.ZodBoolean;
44595
+ }>, "strip", z.ZodTypeAny, {
44596
+ type: "Boolean";
44597
+ description: string;
44598
+ title: string;
44599
+ key: string;
44600
+ default: boolean;
44601
+ }, {
44602
+ type: "Boolean";
44603
+ description: string;
44604
+ title: string;
44605
+ key: string;
44606
+ default: boolean;
44607
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44608
+ key: z.ZodString;
44609
+ title: z.ZodString;
44610
+ description: z.ZodString;
44611
+ }, {
44612
+ type: z.ZodLiteral<"String">;
44613
+ default: z.ZodString;
44614
+ }>, "strip", z.ZodTypeAny, {
44615
+ type: "String";
44616
+ description: string;
44617
+ title: string;
44618
+ key: string;
44619
+ default: string;
44620
+ }, {
44621
+ type: "String";
44622
+ description: string;
44623
+ title: string;
44624
+ key: string;
44625
+ default: string;
44626
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44627
+ key: z.ZodString;
44628
+ title: z.ZodString;
44629
+ description: z.ZodString;
44630
+ }, {
44631
+ type: z.ZodLiteral<"Number">;
44632
+ default: z.ZodNumber;
44633
+ }>, "strip", z.ZodTypeAny, {
44634
+ type: "Number";
44635
+ description: string;
44636
+ title: string;
44637
+ key: string;
44638
+ default: number;
44639
+ }, {
44640
+ type: "Number";
44641
+ description: string;
44642
+ title: string;
44643
+ key: string;
44644
+ default: number;
44645
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44646
+ key: z.ZodString;
44647
+ title: z.ZodString;
44648
+ description: z.ZodString;
44649
+ }, {
44650
+ type: z.ZodLiteral<"Array">;
44651
+ default: z.ZodArray<z.ZodString, "many">;
44652
+ }>, "strip", z.ZodTypeAny, {
44653
+ type: "Array";
44654
+ description: string;
44655
+ title: string;
44656
+ key: string;
44657
+ default: string[];
44658
+ }, {
44659
+ type: "Array";
44660
+ description: string;
44661
+ title: string;
44662
+ key: string;
44663
+ default: string[];
44664
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44665
+ key: z.ZodString;
44666
+ title: z.ZodString;
44667
+ description: z.ZodString;
44668
+ }, {
44669
+ type: z.ZodLiteral<"Object">;
44670
+ default: z.ZodRecord<z.ZodString, z.ZodString>;
44671
+ allowedKeys: z.ZodOptional<z.ZodObject<{
44672
+ options: z.ZodArray<z.ZodString, "many">;
44673
+ }, "strip", z.ZodTypeAny, {
44674
+ options: string[];
44675
+ }, {
44676
+ options: string[];
44677
+ }>>;
44678
+ allowedValues: z.ZodOptional<z.ZodObject<{
44679
+ options: z.ZodArray<z.ZodString, "many">;
44680
+ }, "strip", z.ZodTypeAny, {
44681
+ options: string[];
44682
+ }, {
44683
+ options: string[];
44684
+ }>>;
44685
+ }>, "strip", z.ZodTypeAny, {
44686
+ type: "Object";
44687
+ description: string;
44688
+ title: string;
44689
+ key: string;
44690
+ default: Record<string, string>;
44691
+ allowedKeys?: {
44692
+ options: string[];
44693
+ } | undefined;
44694
+ allowedValues?: {
44695
+ options: string[];
44696
+ } | undefined;
44697
+ }, {
44698
+ type: "Object";
44699
+ description: string;
44700
+ title: string;
44701
+ key: string;
44702
+ default: Record<string, string>;
44703
+ allowedKeys?: {
44704
+ options: string[];
44705
+ } | undefined;
44706
+ allowedValues?: {
44707
+ options: string[];
44708
+ } | undefined;
44709
+ }>]>;
44710
+ type DTOExporterPropertyDefinition = z.infer<typeof DTOExporterPropertyDefinition>;
44711
+ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
44712
+ properties: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
44713
+ key: z.ZodString;
44714
+ title: z.ZodString;
44715
+ description: z.ZodString;
44716
+ }, {
44717
+ type: z.ZodLiteral<"Enum">;
44718
+ options: z.ZodArray<z.ZodString, "many">;
44719
+ default: z.ZodString;
44720
+ }>, "strip", z.ZodTypeAny, {
44721
+ options: string[];
44722
+ type: "Enum";
44723
+ description: string;
44724
+ title: string;
44725
+ key: string;
44726
+ default: string;
44727
+ }, {
44728
+ options: string[];
44729
+ type: "Enum";
44730
+ description: string;
44731
+ title: string;
44732
+ key: string;
44733
+ default: string;
44734
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44735
+ key: z.ZodString;
44736
+ title: z.ZodString;
44737
+ description: z.ZodString;
44738
+ }, {
44739
+ type: z.ZodLiteral<"Boolean">;
44740
+ default: z.ZodBoolean;
44741
+ }>, "strip", z.ZodTypeAny, {
44742
+ type: "Boolean";
44743
+ description: string;
44744
+ title: string;
44745
+ key: string;
44746
+ default: boolean;
44747
+ }, {
44748
+ type: "Boolean";
44749
+ description: string;
44750
+ title: string;
44751
+ key: string;
44752
+ default: boolean;
44753
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44754
+ key: z.ZodString;
44755
+ title: z.ZodString;
44756
+ description: z.ZodString;
44757
+ }, {
44758
+ type: z.ZodLiteral<"String">;
44759
+ default: z.ZodString;
44760
+ }>, "strip", z.ZodTypeAny, {
44761
+ type: "String";
44762
+ description: string;
44763
+ title: string;
44764
+ key: string;
44765
+ default: string;
44766
+ }, {
44767
+ type: "String";
44768
+ description: string;
44769
+ title: string;
44770
+ key: string;
44771
+ default: string;
44772
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44773
+ key: z.ZodString;
44774
+ title: z.ZodString;
44775
+ description: z.ZodString;
44776
+ }, {
44777
+ type: z.ZodLiteral<"Number">;
44778
+ default: z.ZodNumber;
44779
+ }>, "strip", z.ZodTypeAny, {
44780
+ type: "Number";
44781
+ description: string;
44782
+ title: string;
44783
+ key: string;
44784
+ default: number;
44785
+ }, {
44786
+ type: "Number";
44787
+ description: string;
44788
+ title: string;
44789
+ key: string;
44790
+ default: number;
44791
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44792
+ key: z.ZodString;
44793
+ title: z.ZodString;
44794
+ description: z.ZodString;
44795
+ }, {
44796
+ type: z.ZodLiteral<"Array">;
44797
+ default: z.ZodArray<z.ZodString, "many">;
44798
+ }>, "strip", z.ZodTypeAny, {
44799
+ type: "Array";
44800
+ description: string;
44801
+ title: string;
44802
+ key: string;
44803
+ default: string[];
44804
+ }, {
44805
+ type: "Array";
44806
+ description: string;
44807
+ title: string;
44808
+ key: string;
44809
+ default: string[];
44810
+ }>, z.ZodObject<z.objectUtil.extendShape<{
44811
+ key: z.ZodString;
44812
+ title: z.ZodString;
44813
+ description: z.ZodString;
44814
+ }, {
44815
+ type: z.ZodLiteral<"Object">;
44816
+ default: z.ZodRecord<z.ZodString, z.ZodString>;
44817
+ allowedKeys: z.ZodOptional<z.ZodObject<{
44818
+ options: z.ZodArray<z.ZodString, "many">;
44819
+ }, "strip", z.ZodTypeAny, {
44820
+ options: string[];
44821
+ }, {
44822
+ options: string[];
44823
+ }>>;
44824
+ allowedValues: z.ZodOptional<z.ZodObject<{
44825
+ options: z.ZodArray<z.ZodString, "many">;
44826
+ }, "strip", z.ZodTypeAny, {
44827
+ options: string[];
44828
+ }, {
44829
+ options: string[];
44830
+ }>>;
44831
+ }>, "strip", z.ZodTypeAny, {
44832
+ type: "Object";
44833
+ description: string;
44834
+ title: string;
44835
+ key: string;
44836
+ default: Record<string, string>;
44837
+ allowedKeys?: {
44838
+ options: string[];
44839
+ } | undefined;
44840
+ allowedValues?: {
44841
+ options: string[];
44842
+ } | undefined;
44843
+ }, {
44844
+ type: "Object";
44845
+ description: string;
44846
+ title: string;
44847
+ key: string;
44848
+ default: Record<string, string>;
44849
+ allowedKeys?: {
44850
+ options: string[];
44851
+ } | undefined;
44852
+ allowedValues?: {
44853
+ options: string[];
44854
+ } | undefined;
44855
+ }>]>, "many">;
44856
+ }, "strip", z.ZodTypeAny, {
44857
+ properties: ({
44858
+ options: string[];
44859
+ type: "Enum";
44860
+ description: string;
44861
+ title: string;
44862
+ key: string;
44863
+ default: string;
44864
+ } | {
44865
+ type: "Boolean";
44866
+ description: string;
44867
+ title: string;
44868
+ key: string;
44869
+ default: boolean;
44870
+ } | {
44871
+ type: "String";
44872
+ description: string;
44873
+ title: string;
44874
+ key: string;
44875
+ default: string;
44876
+ } | {
44877
+ type: "Number";
44878
+ description: string;
44879
+ title: string;
44880
+ key: string;
44881
+ default: number;
44882
+ } | {
44883
+ type: "Array";
44884
+ description: string;
44885
+ title: string;
44886
+ key: string;
44887
+ default: string[];
44888
+ } | {
44889
+ type: "Object";
44890
+ description: string;
44891
+ title: string;
44892
+ key: string;
44893
+ default: Record<string, string>;
44894
+ allowedKeys?: {
44895
+ options: string[];
44896
+ } | undefined;
44897
+ allowedValues?: {
44898
+ options: string[];
44899
+ } | undefined;
44900
+ })[];
44901
+ }, {
44902
+ properties: ({
44903
+ options: string[];
44904
+ type: "Enum";
44905
+ description: string;
44906
+ title: string;
44907
+ key: string;
44908
+ default: string;
44909
+ } | {
44910
+ type: "Boolean";
44911
+ description: string;
44912
+ title: string;
44913
+ key: string;
44914
+ default: boolean;
44915
+ } | {
44916
+ type: "String";
44917
+ description: string;
44918
+ title: string;
44919
+ key: string;
44920
+ default: string;
44921
+ } | {
44922
+ type: "Number";
44923
+ description: string;
44924
+ title: string;
44925
+ key: string;
44926
+ default: number;
44927
+ } | {
44928
+ type: "Array";
44929
+ description: string;
44930
+ title: string;
44931
+ key: string;
44932
+ default: string[];
44933
+ } | {
44934
+ type: "Object";
44935
+ description: string;
44936
+ title: string;
44937
+ key: string;
44938
+ default: Record<string, string>;
44939
+ allowedKeys?: {
44940
+ options: string[];
44941
+ } | undefined;
44942
+ allowedValues?: {
44943
+ options: string[];
44944
+ } | undefined;
44945
+ })[];
44946
+ }>;
44947
+ type DTOExporterPropertyDefinitionsResponse = z.infer<typeof DTOExporterPropertyDefinitionsResponse>;
44948
+ declare const DTOExporterPropertyDefinitionValueMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>;
44949
+ type DTOExporterPropertyDefinitionValueMap = z.infer<typeof DTOExporterPropertyDefinitionValueMap>;
44950
+
43928
44951
  declare const DTOExporterListQuery: z.ZodObject<{
43929
44952
  limit: z.ZodOptional<z.ZodNumber>;
43930
44953
  }, "strip", z.ZodTypeAny, {
@@ -43978,6 +45001,150 @@ declare const DTOExporter: z.ZodObject<{
43978
45001
  inputType?: "code" | "plain" | undefined;
43979
45002
  isMultiline?: boolean | null | undefined;
43980
45003
  }>, "many">;
45004
+ properties: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
45005
+ key: z.ZodString;
45006
+ title: z.ZodString;
45007
+ description: z.ZodString;
45008
+ }, {
45009
+ type: z.ZodLiteral<"Enum">;
45010
+ options: z.ZodArray<z.ZodString, "many">;
45011
+ default: z.ZodString;
45012
+ }>, "strip", z.ZodTypeAny, {
45013
+ options: string[];
45014
+ type: "Enum";
45015
+ description: string;
45016
+ title: string;
45017
+ key: string;
45018
+ default: string;
45019
+ }, {
45020
+ options: string[];
45021
+ type: "Enum";
45022
+ description: string;
45023
+ title: string;
45024
+ key: string;
45025
+ default: string;
45026
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45027
+ key: z.ZodString;
45028
+ title: z.ZodString;
45029
+ description: z.ZodString;
45030
+ }, {
45031
+ type: z.ZodLiteral<"Boolean">;
45032
+ default: z.ZodBoolean;
45033
+ }>, "strip", z.ZodTypeAny, {
45034
+ type: "Boolean";
45035
+ description: string;
45036
+ title: string;
45037
+ key: string;
45038
+ default: boolean;
45039
+ }, {
45040
+ type: "Boolean";
45041
+ description: string;
45042
+ title: string;
45043
+ key: string;
45044
+ default: boolean;
45045
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45046
+ key: z.ZodString;
45047
+ title: z.ZodString;
45048
+ description: z.ZodString;
45049
+ }, {
45050
+ type: z.ZodLiteral<"String">;
45051
+ default: z.ZodString;
45052
+ }>, "strip", z.ZodTypeAny, {
45053
+ type: "String";
45054
+ description: string;
45055
+ title: string;
45056
+ key: string;
45057
+ default: string;
45058
+ }, {
45059
+ type: "String";
45060
+ description: string;
45061
+ title: string;
45062
+ key: string;
45063
+ default: string;
45064
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45065
+ key: z.ZodString;
45066
+ title: z.ZodString;
45067
+ description: z.ZodString;
45068
+ }, {
45069
+ type: z.ZodLiteral<"Number">;
45070
+ default: z.ZodNumber;
45071
+ }>, "strip", z.ZodTypeAny, {
45072
+ type: "Number";
45073
+ description: string;
45074
+ title: string;
45075
+ key: string;
45076
+ default: number;
45077
+ }, {
45078
+ type: "Number";
45079
+ description: string;
45080
+ title: string;
45081
+ key: string;
45082
+ default: number;
45083
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45084
+ key: z.ZodString;
45085
+ title: z.ZodString;
45086
+ description: z.ZodString;
45087
+ }, {
45088
+ type: z.ZodLiteral<"Array">;
45089
+ default: z.ZodArray<z.ZodString, "many">;
45090
+ }>, "strip", z.ZodTypeAny, {
45091
+ type: "Array";
45092
+ description: string;
45093
+ title: string;
45094
+ key: string;
45095
+ default: string[];
45096
+ }, {
45097
+ type: "Array";
45098
+ description: string;
45099
+ title: string;
45100
+ key: string;
45101
+ default: string[];
45102
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45103
+ key: z.ZodString;
45104
+ title: z.ZodString;
45105
+ description: z.ZodString;
45106
+ }, {
45107
+ type: z.ZodLiteral<"Object">;
45108
+ default: z.ZodRecord<z.ZodString, z.ZodString>;
45109
+ allowedKeys: z.ZodOptional<z.ZodObject<{
45110
+ options: z.ZodArray<z.ZodString, "many">;
45111
+ }, "strip", z.ZodTypeAny, {
45112
+ options: string[];
45113
+ }, {
45114
+ options: string[];
45115
+ }>>;
45116
+ allowedValues: z.ZodOptional<z.ZodObject<{
45117
+ options: z.ZodArray<z.ZodString, "many">;
45118
+ }, "strip", z.ZodTypeAny, {
45119
+ options: string[];
45120
+ }, {
45121
+ options: string[];
45122
+ }>>;
45123
+ }>, "strip", z.ZodTypeAny, {
45124
+ type: "Object";
45125
+ description: string;
45126
+ title: string;
45127
+ key: string;
45128
+ default: Record<string, string>;
45129
+ allowedKeys?: {
45130
+ options: string[];
45131
+ } | undefined;
45132
+ allowedValues?: {
45133
+ options: string[];
45134
+ } | undefined;
45135
+ }, {
45136
+ type: "Object";
45137
+ description: string;
45138
+ title: string;
45139
+ key: string;
45140
+ default: Record<string, string>;
45141
+ allowedKeys?: {
45142
+ options: string[];
45143
+ } | undefined;
45144
+ allowedValues?: {
45145
+ options: string[];
45146
+ } | undefined;
45147
+ }>]>, "many">>;
43981
45148
  customBlocks: z.ZodArray<z.ZodObject<{
43982
45149
  title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
43983
45150
  key: z.ZodString;
@@ -44145,6 +45312,50 @@ declare const DTOExporter: z.ZodObject<{
44145
45312
  }[]>;
44146
45313
  usesBrands: boolean;
44147
45314
  usesThemes: boolean;
45315
+ properties?: ({
45316
+ options: string[];
45317
+ type: "Enum";
45318
+ description: string;
45319
+ title: string;
45320
+ key: string;
45321
+ default: string;
45322
+ } | {
45323
+ type: "Boolean";
45324
+ description: string;
45325
+ title: string;
45326
+ key: string;
45327
+ default: boolean;
45328
+ } | {
45329
+ type: "String";
45330
+ description: string;
45331
+ title: string;
45332
+ key: string;
45333
+ default: string;
45334
+ } | {
45335
+ type: "Number";
45336
+ description: string;
45337
+ title: string;
45338
+ key: string;
45339
+ default: number;
45340
+ } | {
45341
+ type: "Array";
45342
+ description: string;
45343
+ title: string;
45344
+ key: string;
45345
+ default: string[];
45346
+ } | {
45347
+ type: "Object";
45348
+ description: string;
45349
+ title: string;
45350
+ key: string;
45351
+ default: Record<string, string>;
45352
+ allowedKeys?: {
45353
+ options: string[];
45354
+ } | undefined;
45355
+ allowedValues?: {
45356
+ options: string[];
45357
+ } | undefined;
45358
+ })[] | undefined;
44148
45359
  iconURL?: string | undefined;
44149
45360
  gitUrl?: string | undefined;
44150
45361
  gitBranch?: string | undefined;
@@ -44194,6 +45405,50 @@ declare const DTOExporter: z.ZodObject<{
44194
45405
  }[]>;
44195
45406
  usesBrands: boolean;
44196
45407
  usesThemes: boolean;
45408
+ properties?: ({
45409
+ options: string[];
45410
+ type: "Enum";
45411
+ description: string;
45412
+ title: string;
45413
+ key: string;
45414
+ default: string;
45415
+ } | {
45416
+ type: "Boolean";
45417
+ description: string;
45418
+ title: string;
45419
+ key: string;
45420
+ default: boolean;
45421
+ } | {
45422
+ type: "String";
45423
+ description: string;
45424
+ title: string;
45425
+ key: string;
45426
+ default: string;
45427
+ } | {
45428
+ type: "Number";
45429
+ description: string;
45430
+ title: string;
45431
+ key: string;
45432
+ default: number;
45433
+ } | {
45434
+ type: "Array";
45435
+ description: string;
45436
+ title: string;
45437
+ key: string;
45438
+ default: string[];
45439
+ } | {
45440
+ type: "Object";
45441
+ description: string;
45442
+ title: string;
45443
+ key: string;
45444
+ default: Record<string, string>;
45445
+ allowedKeys?: {
45446
+ options: string[];
45447
+ } | undefined;
45448
+ allowedValues?: {
45449
+ options: string[];
45450
+ } | undefined;
45451
+ })[] | undefined;
44197
45452
  iconURL?: string | undefined;
44198
45453
  gitUrl?: string | null | undefined;
44199
45454
  gitBranch?: string | null | undefined;
@@ -44254,6 +45509,150 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44254
45509
  inputType?: "code" | "plain" | undefined;
44255
45510
  isMultiline?: boolean | null | undefined;
44256
45511
  }>, "many">;
45512
+ properties: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
45513
+ key: z.ZodString;
45514
+ title: z.ZodString;
45515
+ description: z.ZodString;
45516
+ }, {
45517
+ type: z.ZodLiteral<"Enum">;
45518
+ options: z.ZodArray<z.ZodString, "many">;
45519
+ default: z.ZodString;
45520
+ }>, "strip", z.ZodTypeAny, {
45521
+ options: string[];
45522
+ type: "Enum";
45523
+ description: string;
45524
+ title: string;
45525
+ key: string;
45526
+ default: string;
45527
+ }, {
45528
+ options: string[];
45529
+ type: "Enum";
45530
+ description: string;
45531
+ title: string;
45532
+ key: string;
45533
+ default: string;
45534
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45535
+ key: z.ZodString;
45536
+ title: z.ZodString;
45537
+ description: z.ZodString;
45538
+ }, {
45539
+ type: z.ZodLiteral<"Boolean">;
45540
+ default: z.ZodBoolean;
45541
+ }>, "strip", z.ZodTypeAny, {
45542
+ type: "Boolean";
45543
+ description: string;
45544
+ title: string;
45545
+ key: string;
45546
+ default: boolean;
45547
+ }, {
45548
+ type: "Boolean";
45549
+ description: string;
45550
+ title: string;
45551
+ key: string;
45552
+ default: boolean;
45553
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45554
+ key: z.ZodString;
45555
+ title: z.ZodString;
45556
+ description: z.ZodString;
45557
+ }, {
45558
+ type: z.ZodLiteral<"String">;
45559
+ default: z.ZodString;
45560
+ }>, "strip", z.ZodTypeAny, {
45561
+ type: "String";
45562
+ description: string;
45563
+ title: string;
45564
+ key: string;
45565
+ default: string;
45566
+ }, {
45567
+ type: "String";
45568
+ description: string;
45569
+ title: string;
45570
+ key: string;
45571
+ default: string;
45572
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45573
+ key: z.ZodString;
45574
+ title: z.ZodString;
45575
+ description: z.ZodString;
45576
+ }, {
45577
+ type: z.ZodLiteral<"Number">;
45578
+ default: z.ZodNumber;
45579
+ }>, "strip", z.ZodTypeAny, {
45580
+ type: "Number";
45581
+ description: string;
45582
+ title: string;
45583
+ key: string;
45584
+ default: number;
45585
+ }, {
45586
+ type: "Number";
45587
+ description: string;
45588
+ title: string;
45589
+ key: string;
45590
+ default: number;
45591
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45592
+ key: z.ZodString;
45593
+ title: z.ZodString;
45594
+ description: z.ZodString;
45595
+ }, {
45596
+ type: z.ZodLiteral<"Array">;
45597
+ default: z.ZodArray<z.ZodString, "many">;
45598
+ }>, "strip", z.ZodTypeAny, {
45599
+ type: "Array";
45600
+ description: string;
45601
+ title: string;
45602
+ key: string;
45603
+ default: string[];
45604
+ }, {
45605
+ type: "Array";
45606
+ description: string;
45607
+ title: string;
45608
+ key: string;
45609
+ default: string[];
45610
+ }>, z.ZodObject<z.objectUtil.extendShape<{
45611
+ key: z.ZodString;
45612
+ title: z.ZodString;
45613
+ description: z.ZodString;
45614
+ }, {
45615
+ type: z.ZodLiteral<"Object">;
45616
+ default: z.ZodRecord<z.ZodString, z.ZodString>;
45617
+ allowedKeys: z.ZodOptional<z.ZodObject<{
45618
+ options: z.ZodArray<z.ZodString, "many">;
45619
+ }, "strip", z.ZodTypeAny, {
45620
+ options: string[];
45621
+ }, {
45622
+ options: string[];
45623
+ }>>;
45624
+ allowedValues: z.ZodOptional<z.ZodObject<{
45625
+ options: z.ZodArray<z.ZodString, "many">;
45626
+ }, "strip", z.ZodTypeAny, {
45627
+ options: string[];
45628
+ }, {
45629
+ options: string[];
45630
+ }>>;
45631
+ }>, "strip", z.ZodTypeAny, {
45632
+ type: "Object";
45633
+ description: string;
45634
+ title: string;
45635
+ key: string;
45636
+ default: Record<string, string>;
45637
+ allowedKeys?: {
45638
+ options: string[];
45639
+ } | undefined;
45640
+ allowedValues?: {
45641
+ options: string[];
45642
+ } | undefined;
45643
+ }, {
45644
+ type: "Object";
45645
+ description: string;
45646
+ title: string;
45647
+ key: string;
45648
+ default: Record<string, string>;
45649
+ allowedKeys?: {
45650
+ options: string[];
45651
+ } | undefined;
45652
+ allowedValues?: {
45653
+ options: string[];
45654
+ } | undefined;
45655
+ }>]>, "many">>;
44257
45656
  customBlocks: z.ZodArray<z.ZodObject<{
44258
45657
  title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
44259
45658
  key: z.ZodString;
@@ -44421,6 +45820,50 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44421
45820
  }[]>;
44422
45821
  usesBrands: boolean;
44423
45822
  usesThemes: boolean;
45823
+ properties?: ({
45824
+ options: string[];
45825
+ type: "Enum";
45826
+ description: string;
45827
+ title: string;
45828
+ key: string;
45829
+ default: string;
45830
+ } | {
45831
+ type: "Boolean";
45832
+ description: string;
45833
+ title: string;
45834
+ key: string;
45835
+ default: boolean;
45836
+ } | {
45837
+ type: "String";
45838
+ description: string;
45839
+ title: string;
45840
+ key: string;
45841
+ default: string;
45842
+ } | {
45843
+ type: "Number";
45844
+ description: string;
45845
+ title: string;
45846
+ key: string;
45847
+ default: number;
45848
+ } | {
45849
+ type: "Array";
45850
+ description: string;
45851
+ title: string;
45852
+ key: string;
45853
+ default: string[];
45854
+ } | {
45855
+ type: "Object";
45856
+ description: string;
45857
+ title: string;
45858
+ key: string;
45859
+ default: Record<string, string>;
45860
+ allowedKeys?: {
45861
+ options: string[];
45862
+ } | undefined;
45863
+ allowedValues?: {
45864
+ options: string[];
45865
+ } | undefined;
45866
+ })[] | undefined;
44424
45867
  iconURL?: string | undefined;
44425
45868
  gitUrl?: string | undefined;
44426
45869
  gitBranch?: string | undefined;
@@ -44470,6 +45913,50 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44470
45913
  }[]>;
44471
45914
  usesBrands: boolean;
44472
45915
  usesThemes: boolean;
45916
+ properties?: ({
45917
+ options: string[];
45918
+ type: "Enum";
45919
+ description: string;
45920
+ title: string;
45921
+ key: string;
45922
+ default: string;
45923
+ } | {
45924
+ type: "Boolean";
45925
+ description: string;
45926
+ title: string;
45927
+ key: string;
45928
+ default: boolean;
45929
+ } | {
45930
+ type: "String";
45931
+ description: string;
45932
+ title: string;
45933
+ key: string;
45934
+ default: string;
45935
+ } | {
45936
+ type: "Number";
45937
+ description: string;
45938
+ title: string;
45939
+ key: string;
45940
+ default: number;
45941
+ } | {
45942
+ type: "Array";
45943
+ description: string;
45944
+ title: string;
45945
+ key: string;
45946
+ default: string[];
45947
+ } | {
45948
+ type: "Object";
45949
+ description: string;
45950
+ title: string;
45951
+ key: string;
45952
+ default: Record<string, string>;
45953
+ allowedKeys?: {
45954
+ options: string[];
45955
+ } | undefined;
45956
+ allowedValues?: {
45957
+ options: string[];
45958
+ } | undefined;
45959
+ })[] | undefined;
44473
45960
  iconURL?: string | undefined;
44474
45961
  gitUrl?: string | null | undefined;
44475
45962
  gitBranch?: string | null | undefined;
@@ -44539,6 +46026,50 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44539
46026
  }[]>;
44540
46027
  usesBrands: boolean;
44541
46028
  usesThemes: boolean;
46029
+ properties?: ({
46030
+ options: string[];
46031
+ type: "Enum";
46032
+ description: string;
46033
+ title: string;
46034
+ key: string;
46035
+ default: string;
46036
+ } | {
46037
+ type: "Boolean";
46038
+ description: string;
46039
+ title: string;
46040
+ key: string;
46041
+ default: boolean;
46042
+ } | {
46043
+ type: "String";
46044
+ description: string;
46045
+ title: string;
46046
+ key: string;
46047
+ default: string;
46048
+ } | {
46049
+ type: "Number";
46050
+ description: string;
46051
+ title: string;
46052
+ key: string;
46053
+ default: number;
46054
+ } | {
46055
+ type: "Array";
46056
+ description: string;
46057
+ title: string;
46058
+ key: string;
46059
+ default: string[];
46060
+ } | {
46061
+ type: "Object";
46062
+ description: string;
46063
+ title: string;
46064
+ key: string;
46065
+ default: Record<string, string>;
46066
+ allowedKeys?: {
46067
+ options: string[];
46068
+ } | undefined;
46069
+ allowedValues?: {
46070
+ options: string[];
46071
+ } | undefined;
46072
+ })[] | undefined;
44542
46073
  iconURL?: string | undefined;
44543
46074
  gitUrl?: string | undefined;
44544
46075
  gitBranch?: string | undefined;
@@ -44595,6 +46126,50 @@ declare const DTOExporterCreateOutput: z.ZodObject<{
44595
46126
  }[]>;
44596
46127
  usesBrands: boolean;
44597
46128
  usesThemes: boolean;
46129
+ properties?: ({
46130
+ options: string[];
46131
+ type: "Enum";
46132
+ description: string;
46133
+ title: string;
46134
+ key: string;
46135
+ default: string;
46136
+ } | {
46137
+ type: "Boolean";
46138
+ description: string;
46139
+ title: string;
46140
+ key: string;
46141
+ default: boolean;
46142
+ } | {
46143
+ type: "String";
46144
+ description: string;
46145
+ title: string;
46146
+ key: string;
46147
+ default: string;
46148
+ } | {
46149
+ type: "Number";
46150
+ description: string;
46151
+ title: string;
46152
+ key: string;
46153
+ default: number;
46154
+ } | {
46155
+ type: "Array";
46156
+ description: string;
46157
+ title: string;
46158
+ key: string;
46159
+ default: string[];
46160
+ } | {
46161
+ type: "Object";
46162
+ description: string;
46163
+ title: string;
46164
+ key: string;
46165
+ default: Record<string, string>;
46166
+ allowedKeys?: {
46167
+ options: string[];
46168
+ } | undefined;
46169
+ allowedValues?: {
46170
+ options: string[];
46171
+ } | undefined;
46172
+ })[] | undefined;
44598
46173
  iconURL?: string | undefined;
44599
46174
  gitUrl?: string | null | undefined;
44600
46175
  gitBranch?: string | null | undefined;
@@ -44642,6 +46217,150 @@ declare const DTOExporterListResponse: z.ZodObject<{
44642
46217
  inputType?: "code" | "plain" | undefined;
44643
46218
  isMultiline?: boolean | null | undefined;
44644
46219
  }>, "many">;
46220
+ properties: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
46221
+ key: z.ZodString;
46222
+ title: z.ZodString;
46223
+ description: z.ZodString;
46224
+ }, {
46225
+ type: z.ZodLiteral<"Enum">;
46226
+ options: z.ZodArray<z.ZodString, "many">;
46227
+ default: z.ZodString;
46228
+ }>, "strip", z.ZodTypeAny, {
46229
+ options: string[];
46230
+ type: "Enum";
46231
+ description: string;
46232
+ title: string;
46233
+ key: string;
46234
+ default: string;
46235
+ }, {
46236
+ options: string[];
46237
+ type: "Enum";
46238
+ description: string;
46239
+ title: string;
46240
+ key: string;
46241
+ default: string;
46242
+ }>, z.ZodObject<z.objectUtil.extendShape<{
46243
+ key: z.ZodString;
46244
+ title: z.ZodString;
46245
+ description: z.ZodString;
46246
+ }, {
46247
+ type: z.ZodLiteral<"Boolean">;
46248
+ default: z.ZodBoolean;
46249
+ }>, "strip", z.ZodTypeAny, {
46250
+ type: "Boolean";
46251
+ description: string;
46252
+ title: string;
46253
+ key: string;
46254
+ default: boolean;
46255
+ }, {
46256
+ type: "Boolean";
46257
+ description: string;
46258
+ title: string;
46259
+ key: string;
46260
+ default: boolean;
46261
+ }>, z.ZodObject<z.objectUtil.extendShape<{
46262
+ key: z.ZodString;
46263
+ title: z.ZodString;
46264
+ description: z.ZodString;
46265
+ }, {
46266
+ type: z.ZodLiteral<"String">;
46267
+ default: z.ZodString;
46268
+ }>, "strip", z.ZodTypeAny, {
46269
+ type: "String";
46270
+ description: string;
46271
+ title: string;
46272
+ key: string;
46273
+ default: string;
46274
+ }, {
46275
+ type: "String";
46276
+ description: string;
46277
+ title: string;
46278
+ key: string;
46279
+ default: string;
46280
+ }>, z.ZodObject<z.objectUtil.extendShape<{
46281
+ key: z.ZodString;
46282
+ title: z.ZodString;
46283
+ description: z.ZodString;
46284
+ }, {
46285
+ type: z.ZodLiteral<"Number">;
46286
+ default: z.ZodNumber;
46287
+ }>, "strip", z.ZodTypeAny, {
46288
+ type: "Number";
46289
+ description: string;
46290
+ title: string;
46291
+ key: string;
46292
+ default: number;
46293
+ }, {
46294
+ type: "Number";
46295
+ description: string;
46296
+ title: string;
46297
+ key: string;
46298
+ default: number;
46299
+ }>, z.ZodObject<z.objectUtil.extendShape<{
46300
+ key: z.ZodString;
46301
+ title: z.ZodString;
46302
+ description: z.ZodString;
46303
+ }, {
46304
+ type: z.ZodLiteral<"Array">;
46305
+ default: z.ZodArray<z.ZodString, "many">;
46306
+ }>, "strip", z.ZodTypeAny, {
46307
+ type: "Array";
46308
+ description: string;
46309
+ title: string;
46310
+ key: string;
46311
+ default: string[];
46312
+ }, {
46313
+ type: "Array";
46314
+ description: string;
46315
+ title: string;
46316
+ key: string;
46317
+ default: string[];
46318
+ }>, z.ZodObject<z.objectUtil.extendShape<{
46319
+ key: z.ZodString;
46320
+ title: z.ZodString;
46321
+ description: z.ZodString;
46322
+ }, {
46323
+ type: z.ZodLiteral<"Object">;
46324
+ default: z.ZodRecord<z.ZodString, z.ZodString>;
46325
+ allowedKeys: z.ZodOptional<z.ZodObject<{
46326
+ options: z.ZodArray<z.ZodString, "many">;
46327
+ }, "strip", z.ZodTypeAny, {
46328
+ options: string[];
46329
+ }, {
46330
+ options: string[];
46331
+ }>>;
46332
+ allowedValues: z.ZodOptional<z.ZodObject<{
46333
+ options: z.ZodArray<z.ZodString, "many">;
46334
+ }, "strip", z.ZodTypeAny, {
46335
+ options: string[];
46336
+ }, {
46337
+ options: string[];
46338
+ }>>;
46339
+ }>, "strip", z.ZodTypeAny, {
46340
+ type: "Object";
46341
+ description: string;
46342
+ title: string;
46343
+ key: string;
46344
+ default: Record<string, string>;
46345
+ allowedKeys?: {
46346
+ options: string[];
46347
+ } | undefined;
46348
+ allowedValues?: {
46349
+ options: string[];
46350
+ } | undefined;
46351
+ }, {
46352
+ type: "Object";
46353
+ description: string;
46354
+ title: string;
46355
+ key: string;
46356
+ default: Record<string, string>;
46357
+ allowedKeys?: {
46358
+ options: string[];
46359
+ } | undefined;
46360
+ allowedValues?: {
46361
+ options: string[];
46362
+ } | undefined;
46363
+ }>]>, "many">>;
44645
46364
  customBlocks: z.ZodArray<z.ZodObject<{
44646
46365
  title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
44647
46366
  key: z.ZodString;
@@ -44809,6 +46528,50 @@ declare const DTOExporterListResponse: z.ZodObject<{
44809
46528
  }[]>;
44810
46529
  usesBrands: boolean;
44811
46530
  usesThemes: boolean;
46531
+ properties?: ({
46532
+ options: string[];
46533
+ type: "Enum";
46534
+ description: string;
46535
+ title: string;
46536
+ key: string;
46537
+ default: string;
46538
+ } | {
46539
+ type: "Boolean";
46540
+ description: string;
46541
+ title: string;
46542
+ key: string;
46543
+ default: boolean;
46544
+ } | {
46545
+ type: "String";
46546
+ description: string;
46547
+ title: string;
46548
+ key: string;
46549
+ default: string;
46550
+ } | {
46551
+ type: "Number";
46552
+ description: string;
46553
+ title: string;
46554
+ key: string;
46555
+ default: number;
46556
+ } | {
46557
+ type: "Array";
46558
+ description: string;
46559
+ title: string;
46560
+ key: string;
46561
+ default: string[];
46562
+ } | {
46563
+ type: "Object";
46564
+ description: string;
46565
+ title: string;
46566
+ key: string;
46567
+ default: Record<string, string>;
46568
+ allowedKeys?: {
46569
+ options: string[];
46570
+ } | undefined;
46571
+ allowedValues?: {
46572
+ options: string[];
46573
+ } | undefined;
46574
+ })[] | undefined;
44812
46575
  iconURL?: string | undefined;
44813
46576
  gitUrl?: string | undefined;
44814
46577
  gitBranch?: string | undefined;
@@ -44858,6 +46621,50 @@ declare const DTOExporterListResponse: z.ZodObject<{
44858
46621
  }[]>;
44859
46622
  usesBrands: boolean;
44860
46623
  usesThemes: boolean;
46624
+ properties?: ({
46625
+ options: string[];
46626
+ type: "Enum";
46627
+ description: string;
46628
+ title: string;
46629
+ key: string;
46630
+ default: string;
46631
+ } | {
46632
+ type: "Boolean";
46633
+ description: string;
46634
+ title: string;
46635
+ key: string;
46636
+ default: boolean;
46637
+ } | {
46638
+ type: "String";
46639
+ description: string;
46640
+ title: string;
46641
+ key: string;
46642
+ default: string;
46643
+ } | {
46644
+ type: "Number";
46645
+ description: string;
46646
+ title: string;
46647
+ key: string;
46648
+ default: number;
46649
+ } | {
46650
+ type: "Array";
46651
+ description: string;
46652
+ title: string;
46653
+ key: string;
46654
+ default: string[];
46655
+ } | {
46656
+ type: "Object";
46657
+ description: string;
46658
+ title: string;
46659
+ key: string;
46660
+ default: Record<string, string>;
46661
+ allowedKeys?: {
46662
+ options: string[];
46663
+ } | undefined;
46664
+ allowedValues?: {
46665
+ options: string[];
46666
+ } | undefined;
46667
+ })[] | undefined;
44861
46668
  iconURL?: string | undefined;
44862
46669
  gitUrl?: string | null | undefined;
44863
46670
  gitBranch?: string | null | undefined;
@@ -44927,6 +46734,50 @@ declare const DTOExporterListResponse: z.ZodObject<{
44927
46734
  }[]>;
44928
46735
  usesBrands: boolean;
44929
46736
  usesThemes: boolean;
46737
+ properties?: ({
46738
+ options: string[];
46739
+ type: "Enum";
46740
+ description: string;
46741
+ title: string;
46742
+ key: string;
46743
+ default: string;
46744
+ } | {
46745
+ type: "Boolean";
46746
+ description: string;
46747
+ title: string;
46748
+ key: string;
46749
+ default: boolean;
46750
+ } | {
46751
+ type: "String";
46752
+ description: string;
46753
+ title: string;
46754
+ key: string;
46755
+ default: string;
46756
+ } | {
46757
+ type: "Number";
46758
+ description: string;
46759
+ title: string;
46760
+ key: string;
46761
+ default: number;
46762
+ } | {
46763
+ type: "Array";
46764
+ description: string;
46765
+ title: string;
46766
+ key: string;
46767
+ default: string[];
46768
+ } | {
46769
+ type: "Object";
46770
+ description: string;
46771
+ title: string;
46772
+ key: string;
46773
+ default: Record<string, string>;
46774
+ allowedKeys?: {
46775
+ options: string[];
46776
+ } | undefined;
46777
+ allowedValues?: {
46778
+ options: string[];
46779
+ } | undefined;
46780
+ })[] | undefined;
44930
46781
  iconURL?: string | undefined;
44931
46782
  gitUrl?: string | undefined;
44932
46783
  gitBranch?: string | undefined;
@@ -44983,6 +46834,50 @@ declare const DTOExporterListResponse: z.ZodObject<{
44983
46834
  }[]>;
44984
46835
  usesBrands: boolean;
44985
46836
  usesThemes: boolean;
46837
+ properties?: ({
46838
+ options: string[];
46839
+ type: "Enum";
46840
+ description: string;
46841
+ title: string;
46842
+ key: string;
46843
+ default: string;
46844
+ } | {
46845
+ type: "Boolean";
46846
+ description: string;
46847
+ title: string;
46848
+ key: string;
46849
+ default: boolean;
46850
+ } | {
46851
+ type: "String";
46852
+ description: string;
46853
+ title: string;
46854
+ key: string;
46855
+ default: string;
46856
+ } | {
46857
+ type: "Number";
46858
+ description: string;
46859
+ title: string;
46860
+ key: string;
46861
+ default: number;
46862
+ } | {
46863
+ type: "Array";
46864
+ description: string;
46865
+ title: string;
46866
+ key: string;
46867
+ default: string[];
46868
+ } | {
46869
+ type: "Object";
46870
+ description: string;
46871
+ title: string;
46872
+ key: string;
46873
+ default: Record<string, string>;
46874
+ allowedKeys?: {
46875
+ options: string[];
46876
+ } | undefined;
46877
+ allowedValues?: {
46878
+ options: string[];
46879
+ } | undefined;
46880
+ })[] | undefined;
44986
46881
  iconURL?: string | undefined;
44987
46882
  gitUrl?: string | null | undefined;
44988
46883
  gitBranch?: string | null | undefined;
@@ -46121,6 +48016,7 @@ declare const DTOExportJob: z.ZodObject<{
46121
48016
  brandPersistentId: z.ZodOptional<z.ZodString>;
46122
48017
  themePersistentId: z.ZodOptional<z.ZodString>;
46123
48018
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
48019
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
46124
48020
  }, "strip", z.ZodTypeAny, {
46125
48021
  status: "InProgress" | "Failed" | "Success" | "Timeout";
46126
48022
  id: string;
@@ -46206,6 +48102,7 @@ declare const DTOExportJob: z.ZodObject<{
46206
48102
  brandPersistentId?: string | undefined;
46207
48103
  themePersistentId?: string | undefined;
46208
48104
  themePersistentIds?: string[] | undefined;
48105
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
46209
48106
  finishedAt?: Date | undefined;
46210
48107
  index?: number | undefined;
46211
48108
  estimatedExecutionTime?: number | undefined;
@@ -46331,6 +48228,7 @@ declare const DTOExportJob: z.ZodObject<{
46331
48228
  brandPersistentId?: string | undefined;
46332
48229
  themePersistentId?: string | undefined;
46333
48230
  themePersistentIds?: string[] | undefined;
48231
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
46334
48232
  finishedAt?: Date | undefined;
46335
48233
  index?: number | undefined;
46336
48234
  estimatedExecutionTime?: number | undefined;
@@ -46914,6 +48812,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
46914
48812
  brandPersistentId: z.ZodOptional<z.ZodString>;
46915
48813
  themePersistentId: z.ZodOptional<z.ZodString>;
46916
48814
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
48815
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
46917
48816
  }, "strip", z.ZodTypeAny, {
46918
48817
  status: "InProgress" | "Failed" | "Success" | "Timeout";
46919
48818
  id: string;
@@ -46999,6 +48898,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
46999
48898
  brandPersistentId?: string | undefined;
47000
48899
  themePersistentId?: string | undefined;
47001
48900
  themePersistentIds?: string[] | undefined;
48901
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
47002
48902
  finishedAt?: Date | undefined;
47003
48903
  index?: number | undefined;
47004
48904
  estimatedExecutionTime?: number | undefined;
@@ -47124,6 +49024,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
47124
49024
  brandPersistentId?: string | undefined;
47125
49025
  themePersistentId?: string | undefined;
47126
49026
  themePersistentIds?: string[] | undefined;
49027
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
47127
49028
  finishedAt?: Date | undefined;
47128
49029
  index?: number | undefined;
47129
49030
  estimatedExecutionTime?: number | undefined;
@@ -47251,6 +49152,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
47251
49152
  brandPersistentId?: string | undefined;
47252
49153
  themePersistentId?: string | undefined;
47253
49154
  themePersistentIds?: string[] | undefined;
49155
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
47254
49156
  finishedAt?: Date | undefined;
47255
49157
  index?: number | undefined;
47256
49158
  estimatedExecutionTime?: number | undefined;
@@ -47378,6 +49280,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
47378
49280
  brandPersistentId?: string | undefined;
47379
49281
  themePersistentId?: string | undefined;
47380
49282
  themePersistentIds?: string[] | undefined;
49283
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
47381
49284
  finishedAt?: Date | undefined;
47382
49285
  index?: number | undefined;
47383
49286
  estimatedExecutionTime?: number | undefined;
@@ -47977,6 +49880,7 @@ declare const DTOPipeline: z.ZodObject<{
47977
49880
  brandPersistentId: z.ZodOptional<z.ZodString>;
47978
49881
  themePersistentId: z.ZodOptional<z.ZodString>;
47979
49882
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
49883
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
47980
49884
  }, "strip", z.ZodTypeAny, {
47981
49885
  status: "InProgress" | "Failed" | "Success" | "Timeout";
47982
49886
  id: string;
@@ -48062,6 +49966,7 @@ declare const DTOPipeline: z.ZodObject<{
48062
49966
  brandPersistentId?: string | undefined;
48063
49967
  themePersistentId?: string | undefined;
48064
49968
  themePersistentIds?: string[] | undefined;
49969
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48065
49970
  finishedAt?: Date | undefined;
48066
49971
  index?: number | undefined;
48067
49972
  estimatedExecutionTime?: number | undefined;
@@ -48187,6 +50092,7 @@ declare const DTOPipeline: z.ZodObject<{
48187
50092
  brandPersistentId?: string | undefined;
48188
50093
  themePersistentId?: string | undefined;
48189
50094
  themePersistentIds?: string[] | undefined;
50095
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48190
50096
  finishedAt?: Date | undefined;
48191
50097
  index?: number | undefined;
48192
50098
  estimatedExecutionTime?: number | undefined;
@@ -48410,6 +50316,7 @@ declare const DTOPipeline: z.ZodObject<{
48410
50316
  brandPersistentId: z.ZodOptional<z.ZodString>;
48411
50317
  themePersistentId: z.ZodOptional<z.ZodString>;
48412
50318
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
50319
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
48413
50320
  }, "strip", z.ZodTypeAny, {
48414
50321
  id: string;
48415
50322
  name: string;
@@ -48503,6 +50410,7 @@ declare const DTOPipeline: z.ZodObject<{
48503
50410
  brandPersistentId?: string | undefined;
48504
50411
  themePersistentId?: string | undefined;
48505
50412
  themePersistentIds?: string[] | undefined;
50413
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48506
50414
  finishedAt?: Date | undefined;
48507
50415
  index?: number | undefined;
48508
50416
  estimatedExecutionTime?: number | undefined;
@@ -48547,6 +50455,7 @@ declare const DTOPipeline: z.ZodObject<{
48547
50455
  brandPersistentId?: string | undefined;
48548
50456
  themePersistentId?: string | undefined;
48549
50457
  themePersistentIds?: string[] | undefined;
50458
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48550
50459
  webhookUrl?: string | undefined;
48551
50460
  destinationSnDocs?: {
48552
50461
  environment: "Live" | "Preview";
@@ -48699,6 +50608,7 @@ declare const DTOPipeline: z.ZodObject<{
48699
50608
  brandPersistentId?: string | undefined;
48700
50609
  themePersistentId?: string | undefined;
48701
50610
  themePersistentIds?: string[] | undefined;
50611
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48702
50612
  finishedAt?: Date | undefined;
48703
50613
  index?: number | undefined;
48704
50614
  estimatedExecutionTime?: number | undefined;
@@ -48743,6 +50653,7 @@ declare const DTOPipeline: z.ZodObject<{
48743
50653
  brandPersistentId?: string | undefined;
48744
50654
  themePersistentId?: string | undefined;
48745
50655
  themePersistentIds?: string[] | undefined;
50656
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48746
50657
  webhookUrl?: string | undefined;
48747
50658
  destinationSnDocs?: {
48748
50659
  environment: "Live" | "Preview";
@@ -49346,6 +51257,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
49346
51257
  brandPersistentId: z.ZodOptional<z.ZodString>;
49347
51258
  themePersistentId: z.ZodOptional<z.ZodString>;
49348
51259
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
51260
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
49349
51261
  }, "strip", z.ZodTypeAny, {
49350
51262
  status: "InProgress" | "Failed" | "Success" | "Timeout";
49351
51263
  id: string;
@@ -49431,6 +51343,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
49431
51343
  brandPersistentId?: string | undefined;
49432
51344
  themePersistentId?: string | undefined;
49433
51345
  themePersistentIds?: string[] | undefined;
51346
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49434
51347
  finishedAt?: Date | undefined;
49435
51348
  index?: number | undefined;
49436
51349
  estimatedExecutionTime?: number | undefined;
@@ -49556,6 +51469,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
49556
51469
  brandPersistentId?: string | undefined;
49557
51470
  themePersistentId?: string | undefined;
49558
51471
  themePersistentIds?: string[] | undefined;
51472
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49559
51473
  finishedAt?: Date | undefined;
49560
51474
  index?: number | undefined;
49561
51475
  estimatedExecutionTime?: number | undefined;
@@ -49779,6 +51693,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
49779
51693
  brandPersistentId: z.ZodOptional<z.ZodString>;
49780
51694
  themePersistentId: z.ZodOptional<z.ZodString>;
49781
51695
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
51696
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
49782
51697
  }, "strip", z.ZodTypeAny, {
49783
51698
  id: string;
49784
51699
  name: string;
@@ -49872,6 +51787,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
49872
51787
  brandPersistentId?: string | undefined;
49873
51788
  themePersistentId?: string | undefined;
49874
51789
  themePersistentIds?: string[] | undefined;
51790
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49875
51791
  finishedAt?: Date | undefined;
49876
51792
  index?: number | undefined;
49877
51793
  estimatedExecutionTime?: number | undefined;
@@ -49916,6 +51832,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
49916
51832
  brandPersistentId?: string | undefined;
49917
51833
  themePersistentId?: string | undefined;
49918
51834
  themePersistentIds?: string[] | undefined;
51835
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49919
51836
  webhookUrl?: string | undefined;
49920
51837
  destinationSnDocs?: {
49921
51838
  environment: "Live" | "Preview";
@@ -50068,6 +51985,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
50068
51985
  brandPersistentId?: string | undefined;
50069
51986
  themePersistentId?: string | undefined;
50070
51987
  themePersistentIds?: string[] | undefined;
51988
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50071
51989
  finishedAt?: Date | undefined;
50072
51990
  index?: number | undefined;
50073
51991
  estimatedExecutionTime?: number | undefined;
@@ -50112,6 +52030,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
50112
52030
  brandPersistentId?: string | undefined;
50113
52031
  themePersistentId?: string | undefined;
50114
52032
  themePersistentIds?: string[] | undefined;
52033
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50115
52034
  webhookUrl?: string | undefined;
50116
52035
  destinationSnDocs?: {
50117
52036
  environment: "Live" | "Preview";
@@ -50266,6 +52185,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
50266
52185
  brandPersistentId?: string | undefined;
50267
52186
  themePersistentId?: string | undefined;
50268
52187
  themePersistentIds?: string[] | undefined;
52188
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50269
52189
  finishedAt?: Date | undefined;
50270
52190
  index?: number | undefined;
50271
52191
  estimatedExecutionTime?: number | undefined;
@@ -50310,6 +52230,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
50310
52230
  brandPersistentId?: string | undefined;
50311
52231
  themePersistentId?: string | undefined;
50312
52232
  themePersistentIds?: string[] | undefined;
52233
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50313
52234
  webhookUrl?: string | undefined;
50314
52235
  destinationSnDocs?: {
50315
52236
  environment: "Live" | "Preview";
@@ -50464,6 +52385,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
50464
52385
  brandPersistentId?: string | undefined;
50465
52386
  themePersistentId?: string | undefined;
50466
52387
  themePersistentIds?: string[] | undefined;
52388
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50467
52389
  finishedAt?: Date | undefined;
50468
52390
  index?: number | undefined;
50469
52391
  estimatedExecutionTime?: number | undefined;
@@ -50508,6 +52430,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
50508
52430
  brandPersistentId?: string | undefined;
50509
52431
  themePersistentId?: string | undefined;
50510
52432
  themePersistentIds?: string[] | undefined;
52433
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50511
52434
  webhookUrl?: string | undefined;
50512
52435
  destinationSnDocs?: {
50513
52436
  environment: "Live" | "Preview";
@@ -51112,6 +53035,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51112
53035
  brandPersistentId: z.ZodOptional<z.ZodString>;
51113
53036
  themePersistentId: z.ZodOptional<z.ZodString>;
51114
53037
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
53038
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
51115
53039
  }, "strip", z.ZodTypeAny, {
51116
53040
  status: "InProgress" | "Failed" | "Success" | "Timeout";
51117
53041
  id: string;
@@ -51197,6 +53121,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51197
53121
  brandPersistentId?: string | undefined;
51198
53122
  themePersistentId?: string | undefined;
51199
53123
  themePersistentIds?: string[] | undefined;
53124
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51200
53125
  finishedAt?: Date | undefined;
51201
53126
  index?: number | undefined;
51202
53127
  estimatedExecutionTime?: number | undefined;
@@ -51322,6 +53247,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51322
53247
  brandPersistentId?: string | undefined;
51323
53248
  themePersistentId?: string | undefined;
51324
53249
  themePersistentIds?: string[] | undefined;
53250
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51325
53251
  finishedAt?: Date | undefined;
51326
53252
  index?: number | undefined;
51327
53253
  estimatedExecutionTime?: number | undefined;
@@ -51545,6 +53471,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51545
53471
  brandPersistentId: z.ZodOptional<z.ZodString>;
51546
53472
  themePersistentId: z.ZodOptional<z.ZodString>;
51547
53473
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
53474
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
51548
53475
  }, "strip", z.ZodTypeAny, {
51549
53476
  id: string;
51550
53477
  name: string;
@@ -51638,6 +53565,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51638
53565
  brandPersistentId?: string | undefined;
51639
53566
  themePersistentId?: string | undefined;
51640
53567
  themePersistentIds?: string[] | undefined;
53568
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51641
53569
  finishedAt?: Date | undefined;
51642
53570
  index?: number | undefined;
51643
53571
  estimatedExecutionTime?: number | undefined;
@@ -51682,6 +53610,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51682
53610
  brandPersistentId?: string | undefined;
51683
53611
  themePersistentId?: string | undefined;
51684
53612
  themePersistentIds?: string[] | undefined;
53613
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51685
53614
  webhookUrl?: string | undefined;
51686
53615
  destinationSnDocs?: {
51687
53616
  environment: "Live" | "Preview";
@@ -51834,6 +53763,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51834
53763
  brandPersistentId?: string | undefined;
51835
53764
  themePersistentId?: string | undefined;
51836
53765
  themePersistentIds?: string[] | undefined;
53766
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51837
53767
  finishedAt?: Date | undefined;
51838
53768
  index?: number | undefined;
51839
53769
  estimatedExecutionTime?: number | undefined;
@@ -51878,6 +53808,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
51878
53808
  brandPersistentId?: string | undefined;
51879
53809
  themePersistentId?: string | undefined;
51880
53810
  themePersistentIds?: string[] | undefined;
53811
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51881
53812
  webhookUrl?: string | undefined;
51882
53813
  destinationSnDocs?: {
51883
53814
  environment: "Live" | "Preview";
@@ -52032,6 +53963,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
52032
53963
  brandPersistentId?: string | undefined;
52033
53964
  themePersistentId?: string | undefined;
52034
53965
  themePersistentIds?: string[] | undefined;
53966
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52035
53967
  finishedAt?: Date | undefined;
52036
53968
  index?: number | undefined;
52037
53969
  estimatedExecutionTime?: number | undefined;
@@ -52076,6 +54008,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
52076
54008
  brandPersistentId?: string | undefined;
52077
54009
  themePersistentId?: string | undefined;
52078
54010
  themePersistentIds?: string[] | undefined;
54011
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52079
54012
  webhookUrl?: string | undefined;
52080
54013
  destinationSnDocs?: {
52081
54014
  environment: "Live" | "Preview";
@@ -52230,6 +54163,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
52230
54163
  brandPersistentId?: string | undefined;
52231
54164
  themePersistentId?: string | undefined;
52232
54165
  themePersistentIds?: string[] | undefined;
54166
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52233
54167
  finishedAt?: Date | undefined;
52234
54168
  index?: number | undefined;
52235
54169
  estimatedExecutionTime?: number | undefined;
@@ -52274,6 +54208,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
52274
54208
  brandPersistentId?: string | undefined;
52275
54209
  themePersistentId?: string | undefined;
52276
54210
  themePersistentIds?: string[] | undefined;
54211
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52277
54212
  webhookUrl?: string | undefined;
52278
54213
  destinationSnDocs?: {
52279
54214
  environment: "Live" | "Preview";
@@ -81748,7 +83683,7 @@ type RequestExecutorErrorType = "ServerError" | "ResponseParsingError";
81748
83683
  type RequestEexecutorServerErrorCode = SupernovaExceptionType | undefined;
81749
83684
  declare class RequestExecutorError extends Error {
81750
83685
  readonly type: RequestExecutorErrorType;
81751
- readonly errorCode: RequestEexecutorServerErrorCode;
83686
+ readonly errorCode: RequestEexecutorServerErrorCode | undefined;
81752
83687
  readonly serverErrorType: SupernovaExceptionType | undefined;
81753
83688
  static tryParseErrorCode(body: string): any;
81754
83689
  static tryParseServerErrorType(body: string): any;
@@ -81826,6 +83761,50 @@ declare class ExportersEndpoint {
81826
83761
  }[]>;
81827
83762
  usesBrands: boolean;
81828
83763
  usesThemes: boolean;
83764
+ properties?: ({
83765
+ options: string[];
83766
+ type: "Enum";
83767
+ description: string;
83768
+ title: string;
83769
+ key: string;
83770
+ default: string;
83771
+ } | {
83772
+ type: "Boolean";
83773
+ description: string;
83774
+ title: string;
83775
+ key: string;
83776
+ default: boolean;
83777
+ } | {
83778
+ type: "String";
83779
+ description: string;
83780
+ title: string;
83781
+ key: string;
83782
+ default: string;
83783
+ } | {
83784
+ type: "Number";
83785
+ description: string;
83786
+ title: string;
83787
+ key: string;
83788
+ default: number;
83789
+ } | {
83790
+ type: "Array";
83791
+ description: string;
83792
+ title: string;
83793
+ key: string;
83794
+ default: string[];
83795
+ } | {
83796
+ type: "Object";
83797
+ description: string;
83798
+ title: string;
83799
+ key: string;
83800
+ default: Record<string, string>;
83801
+ allowedKeys?: {
83802
+ options: string[];
83803
+ } | undefined;
83804
+ allowedValues?: {
83805
+ options: string[];
83806
+ } | undefined;
83807
+ })[] | undefined;
81829
83808
  iconURL?: string | undefined;
81830
83809
  gitUrl?: string | undefined;
81831
83810
  gitBranch?: string | undefined;
@@ -81834,33 +83813,6 @@ declare class ExportersEndpoint {
81834
83813
  }>;
81835
83814
  }
81836
83815
 
81837
- declare const DTOCreateBrandInput: z.ZodObject<{
81838
- persistentId: z.ZodString;
81839
- meta: z.ZodObject<{
81840
- name: z.ZodString;
81841
- description: z.ZodString;
81842
- }, "strip", z.ZodTypeAny, {
81843
- description: string;
81844
- name: string;
81845
- }, {
81846
- description: string;
81847
- name: string;
81848
- }>;
81849
- }, "strip", z.ZodTypeAny, {
81850
- persistentId: string;
81851
- meta: {
81852
- description: string;
81853
- name: string;
81854
- };
81855
- }, {
81856
- persistentId: string;
81857
- meta: {
81858
- description: string;
81859
- name: string;
81860
- };
81861
- }>;
81862
- type DTOCreateBrandInput = z.infer<typeof DTOCreateBrandInput>;
81863
-
81864
83816
  declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<Omit<{
81865
83817
  id: z.ZodOptional<z.ZodString>;
81866
83818
  workspaceId: z.ZodOptional<z.ZodString>;
@@ -82080,14 +84032,14 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82080
84032
  variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
82081
84033
  }, "strip", z.ZodTypeAny, {
82082
84034
  id: string;
82083
- 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";
84035
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82084
84036
  name: string;
82085
84037
  options?: Record<string, any> | undefined;
82086
84038
  description?: string | undefined;
82087
84039
  variantOptions?: Record<string, Record<string, any>> | undefined;
82088
84040
  }, {
82089
84041
  id: string;
82090
- 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";
84042
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82091
84043
  name: string;
82092
84044
  options?: Record<string, any> | undefined;
82093
84045
  description?: string | undefined;
@@ -82183,7 +84135,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82183
84135
  }, "strip", z.ZodTypeAny, {
82184
84136
  properties: {
82185
84137
  id: string;
82186
- 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";
84138
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82187
84139
  name: string;
82188
84140
  options?: Record<string, any> | undefined;
82189
84141
  description?: string | undefined;
@@ -82222,7 +84174,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82222
84174
  }, {
82223
84175
  properties: {
82224
84176
  id: string;
82225
- 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";
84177
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82226
84178
  name: string;
82227
84179
  options?: Record<string, any> | undefined;
82228
84180
  description?: string | undefined;
@@ -82356,7 +84308,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82356
84308
  item: {
82357
84309
  properties: {
82358
84310
  id: string;
82359
- 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";
84311
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82360
84312
  name: string;
82361
84313
  options?: Record<string, any> | undefined;
82362
84314
  description?: string | undefined;
@@ -82429,7 +84381,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82429
84381
  item: {
82430
84382
  properties: {
82431
84383
  id: string;
82432
- 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";
84384
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82433
84385
  name: string;
82434
84386
  options?: Record<string, any> | undefined;
82435
84387
  description?: string | undefined;
@@ -82504,7 +84456,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82504
84456
  item: {
82505
84457
  properties: {
82506
84458
  id: string;
82507
- 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";
84459
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82508
84460
  name: string;
82509
84461
  options?: Record<string, any> | undefined;
82510
84462
  description?: string | undefined;
@@ -82579,7 +84531,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
82579
84531
  item: {
82580
84532
  properties: {
82581
84533
  id: string;
82582
- 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";
84534
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
82583
84535
  name: string;
82584
84536
  options?: Record<string, any> | undefined;
82585
84537
  description?: string | undefined;
@@ -82666,6 +84618,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
82666
84618
  brandPersistentId: z.ZodOptional<z.ZodString>;
82667
84619
  themePersistentId: z.ZodOptional<z.ZodString>;
82668
84620
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
84621
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
82669
84622
  destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
82670
84623
  gitQuery: z.ZodObject<{
82671
84624
  organization: z.ZodOptional<z.ZodString>;
@@ -83057,6 +85010,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
83057
85010
  brandPersistentId?: string | undefined;
83058
85011
  themePersistentId?: string | undefined;
83059
85012
  themePersistentIds?: string[] | undefined;
85013
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
83060
85014
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
83061
85015
  }, {
83062
85016
  name: string;
@@ -83135,6 +85089,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
83135
85089
  brandPersistentId?: string | undefined;
83136
85090
  themePersistentId?: string | undefined;
83137
85091
  themePersistentIds?: string[] | undefined;
85092
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
83138
85093
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
83139
85094
  }>;
83140
85095
  type DTOPipelineCreateBody = z.infer<typeof DTOPipelineCreateBody>;
@@ -83147,6 +85102,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
83147
85102
  brandPersistentId: z.ZodOptional<z.ZodString>;
83148
85103
  themePersistentId: z.ZodOptional<z.ZodString>;
83149
85104
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
85105
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
83150
85106
  destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
83151
85107
  gitQuery: z.ZodObject<{
83152
85108
  organization: z.ZodOptional<z.ZodString>;
@@ -83541,6 +85497,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
83541
85497
  brandPersistentId?: string | undefined;
83542
85498
  themePersistentId?: string | undefined;
83543
85499
  themePersistentIds?: string[] | undefined;
85500
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
83544
85501
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
83545
85502
  }, {
83546
85503
  id: string;
@@ -83620,6 +85577,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
83620
85577
  brandPersistentId?: string | undefined;
83621
85578
  themePersistentId?: string | undefined;
83622
85579
  themePersistentIds?: string[] | undefined;
85580
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
83623
85581
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
83624
85582
  }>;
83625
85583
  type DTOPipelineUpdateBody = z.infer<typeof DTOPipelineUpdateBody>;
@@ -84421,6 +86379,7 @@ declare class PipelinesEndpoint {
84421
86379
  brandPersistentId?: string | undefined;
84422
86380
  themePersistentId?: string | undefined;
84423
86381
  themePersistentIds?: string[] | undefined;
86382
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
84424
86383
  finishedAt?: Date | undefined;
84425
86384
  index?: number | undefined;
84426
86385
  estimatedExecutionTime?: number | undefined;
@@ -84465,6 +86424,7 @@ declare class PipelinesEndpoint {
84465
86424
  brandPersistentId?: string | undefined;
84466
86425
  themePersistentId?: string | undefined;
84467
86426
  themePersistentIds?: string[] | undefined;
86427
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
84468
86428
  webhookUrl?: string | undefined;
84469
86429
  destinationSnDocs?: {
84470
86430
  environment: "Live" | "Preview";
@@ -84620,6 +86580,7 @@ declare class PipelinesEndpoint {
84620
86580
  brandPersistentId?: string | undefined;
84621
86581
  themePersistentId?: string | undefined;
84622
86582
  themePersistentIds?: string[] | undefined;
86583
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
84623
86584
  finishedAt?: Date | undefined;
84624
86585
  index?: number | undefined;
84625
86586
  estimatedExecutionTime?: number | undefined;
@@ -84664,6 +86625,7 @@ declare class PipelinesEndpoint {
84664
86625
  brandPersistentId?: string | undefined;
84665
86626
  themePersistentId?: string | undefined;
84666
86627
  themePersistentIds?: string[] | undefined;
86628
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
84667
86629
  webhookUrl?: string | undefined;
84668
86630
  destinationSnDocs?: {
84669
86631
  environment: "Live" | "Preview";
@@ -84811,6 +86773,7 @@ declare class PipelinesEndpoint {
84811
86773
  brandPersistentId?: string | undefined;
84812
86774
  themePersistentId?: string | undefined;
84813
86775
  themePersistentIds?: string[] | undefined;
86776
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
84814
86777
  finishedAt?: Date | undefined;
84815
86778
  index?: number | undefined;
84816
86779
  estimatedExecutionTime?: number | undefined;
@@ -84887,7 +86850,7 @@ declare class BrandsEndpoint {
84887
86850
  designSystemVersionId: string;
84888
86851
  }[];
84889
86852
  }>;
84890
- create(designSystemId: string, versionId: string, body: DTOCreateBrandInput): Promise<{
86853
+ create(designSystemId: string, versionId: string, body: DTOBrandCreatePayload): Promise<{
84891
86854
  brand: {
84892
86855
  id: string;
84893
86856
  persistentId: string;
@@ -84898,12 +86861,18 @@ declare class BrandsEndpoint {
84898
86861
  designSystemVersionId: string;
84899
86862
  };
84900
86863
  }>;
84901
- }
84902
-
84903
- declare class DesignSystemComponentEndpoint {
84904
- private readonly requestExecutor;
84905
- constructor(requestExecutor: RequestExecutor);
84906
- create(dsId: string, vId: string, body: DTODesignSystemComponentCreateInput): Promise<any>;
86864
+ update(dsId: string, vId: string, brandId: string, body: DTOBrandUpdatePayload): Promise<{
86865
+ brand: {
86866
+ id: string;
86867
+ persistentId: string;
86868
+ meta: {
86869
+ name: string;
86870
+ description?: string | undefined;
86871
+ };
86872
+ designSystemVersionId: string;
86873
+ };
86874
+ }>;
86875
+ delete(dsId: string, vId: string, brandId: string): Promise<any>;
84907
86876
  }
84908
86877
 
84909
86878
  declare class DocumentationEndpoint {
@@ -84961,6 +86930,39 @@ declare class DocumentationEndpoint {
84961
86930
  }>;
84962
86931
  }
84963
86932
 
86933
+ declare class DesignSystemComponentEndpoint {
86934
+ private readonly requestExecutor;
86935
+ constructor(requestExecutor: RequestExecutor);
86936
+ list(dsId: string, vId: string): Promise<{
86937
+ designSystemComponents: {
86938
+ id: string;
86939
+ persistentId: string;
86940
+ meta: {
86941
+ name: string;
86942
+ description?: string | undefined;
86943
+ };
86944
+ designSystemVersionId: string;
86945
+ createdAt: Date;
86946
+ updatedAt: Date;
86947
+ brandId: string;
86948
+ }[];
86949
+ }>;
86950
+ create(dsId: string, vId: string, body: DTODesignSystemComponentCreateInput): Promise<{
86951
+ designSystemComponent: {
86952
+ id: string;
86953
+ persistentId: string;
86954
+ meta: {
86955
+ name: string;
86956
+ description?: string | undefined;
86957
+ };
86958
+ designSystemVersionId: string;
86959
+ createdAt: Date;
86960
+ updatedAt: Date;
86961
+ brandId: string;
86962
+ };
86963
+ }>;
86964
+ }
86965
+
84964
86966
  declare class ElementsActionEndpoint {
84965
86967
  private readonly requestExecutor;
84966
86968
  constructor(requestExecutor: RequestExecutor);
@@ -85588,6 +87590,246 @@ declare class ElementsActionEndpoint {
85588
87590
  };
85589
87591
  }[];
85590
87592
  }>;
87593
+ renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderInput[]): Promise<{
87594
+ type: "DocumentationGroupCreate";
87595
+ output: {
87596
+ success: true;
87597
+ };
87598
+ } | {
87599
+ type: "DocumentationTabCreate";
87600
+ output: {
87601
+ success: true;
87602
+ };
87603
+ } | {
87604
+ type: "DocumentationGroupUpdate";
87605
+ output: {
87606
+ success: true;
87607
+ };
87608
+ } | {
87609
+ type: "DocumentationGroupMove";
87610
+ output: {
87611
+ success: true;
87612
+ };
87613
+ } | {
87614
+ type: "DocumentationGroupDuplicate";
87615
+ output: {
87616
+ success: true;
87617
+ };
87618
+ } | {
87619
+ type: "DocumentationGroupDelete";
87620
+ output: {
87621
+ success: true;
87622
+ };
87623
+ } | {
87624
+ type: "DocumentationTabGroupDelete";
87625
+ output: {
87626
+ success: true;
87627
+ };
87628
+ } | {
87629
+ type: "DocumentationPageCreate";
87630
+ output: {
87631
+ success: true;
87632
+ };
87633
+ } | {
87634
+ type: "DocumentationPageUpdate";
87635
+ output: {
87636
+ success: true;
87637
+ };
87638
+ } | {
87639
+ type: "DocumentationPageMove";
87640
+ output: {
87641
+ success: true;
87642
+ };
87643
+ } | {
87644
+ type: "DocumentationPageDuplicate";
87645
+ output: {
87646
+ success: true;
87647
+ };
87648
+ } | {
87649
+ type: "DocumentationPageDelete";
87650
+ output: {
87651
+ success: true;
87652
+ };
87653
+ } | {
87654
+ type: "DocumentationPageRestore";
87655
+ output: {
87656
+ success: true;
87657
+ };
87658
+ } | {
87659
+ type: "DocumentationGroupRestore";
87660
+ output: {
87661
+ success: true;
87662
+ };
87663
+ } | {
87664
+ type: "DocumentationPageApprovalStateChange";
87665
+ output: {
87666
+ success: true;
87667
+ };
87668
+ } | {
87669
+ type: "FigmaNodeRender";
87670
+ figmaNodes: {
87671
+ id: string;
87672
+ persistentId: string;
87673
+ meta: {
87674
+ name: string;
87675
+ description?: string | undefined;
87676
+ };
87677
+ designSystemVersionId: string;
87678
+ createdAt: Date;
87679
+ updatedAt: Date;
87680
+ data: {
87681
+ figmaNodeId: string;
87682
+ isValid: boolean;
87683
+ assetId: string;
87684
+ assetUrl: string;
87685
+ assetFormat: "Png" | "Svg";
87686
+ assetScale: number;
87687
+ assetWidth?: number | undefined;
87688
+ assetHeight?: number | undefined;
87689
+ };
87690
+ origin: {
87691
+ sourceId: string;
87692
+ fileId?: string | undefined;
87693
+ parentName?: string | undefined;
87694
+ };
87695
+ }[];
87696
+ }>;
87697
+ private action;
87698
+ }
87699
+
87700
+ declare class ElementsEndpoint {
87701
+ private readonly requestExecutor;
87702
+ constructor(requestExecutor: RequestExecutor);
87703
+ getElements(dsId: string, vId: string, query: DTOElementsGetQueryParsed): Promise<{
87704
+ figmaNodes?: {
87705
+ id: string;
87706
+ persistentId: string;
87707
+ meta: {
87708
+ name: string;
87709
+ description?: string | undefined;
87710
+ };
87711
+ designSystemVersionId: string;
87712
+ createdAt: Date;
87713
+ updatedAt: Date;
87714
+ data: {
87715
+ figmaNodeId: string;
87716
+ isValid: boolean;
87717
+ assetId: string;
87718
+ assetUrl: string;
87719
+ assetFormat: "Png" | "Svg";
87720
+ assetScale: number;
87721
+ assetWidth?: number | undefined;
87722
+ assetHeight?: number | undefined;
87723
+ };
87724
+ origin: {
87725
+ sourceId: string;
87726
+ fileId?: string | undefined;
87727
+ parentName?: string | undefined;
87728
+ };
87729
+ }[] | undefined;
87730
+ }>;
87731
+ }
87732
+
87733
+ declare class FigmaComponentGroupsEndpoint {
87734
+ private readonly requestExecutor;
87735
+ constructor(requestExecutor: RequestExecutor);
87736
+ list(dsId: string, vId: string): Promise<{
87737
+ groups: {
87738
+ id: string;
87739
+ persistentId: string;
87740
+ meta: {
87741
+ name: string;
87742
+ description?: string | undefined;
87743
+ };
87744
+ designSystemVersionId: string;
87745
+ isRoot: boolean;
87746
+ childrenIds: string[];
87747
+ brandId: string;
87748
+ }[];
87749
+ }>;
87750
+ }
87751
+
87752
+ declare class FigmaComponentsEndpoint {
87753
+ private readonly requestExecutor;
87754
+ constructor(requestExecutor: RequestExecutor);
87755
+ list(dsId: string, vId: string): Promise<{
87756
+ components: {
87757
+ id: string;
87758
+ persistentId: string;
87759
+ meta: {
87760
+ name: string;
87761
+ description?: string | undefined;
87762
+ };
87763
+ designSystemVersionId: string;
87764
+ createdAt: Date;
87765
+ updatedAt: Date;
87766
+ brandId: string;
87767
+ exportProperties: {
87768
+ isAsset: boolean;
87769
+ };
87770
+ thumbnailUrl?: string | undefined;
87771
+ svgUrl?: string | undefined;
87772
+ originComponent?: {
87773
+ id: string;
87774
+ name: string;
87775
+ sourceId: string;
87776
+ width?: number | undefined;
87777
+ height?: number | undefined;
87778
+ nodeId?: string | undefined;
87779
+ } | undefined;
87780
+ parentComponentPersistentId?: string | undefined;
87781
+ childrenPersistentIds?: string[] | undefined;
87782
+ componentPropertyDefinitions?: Record<string, {
87783
+ id: string;
87784
+ type: "Boolean";
87785
+ name: string;
87786
+ defaultValue: boolean;
87787
+ } | {
87788
+ id: string;
87789
+ type: "InstanceSwap";
87790
+ name: string;
87791
+ defaultValue: string;
87792
+ defaultValuePreview?: {
87793
+ componentName: string;
87794
+ isRemote: boolean;
87795
+ componentSetName?: string | undefined;
87796
+ } | undefined;
87797
+ } | {
87798
+ id: string;
87799
+ type: "Text";
87800
+ name: string;
87801
+ defaultValue: string;
87802
+ } | {
87803
+ id: string;
87804
+ options: string[];
87805
+ type: "Variant";
87806
+ name: string;
87807
+ defaultValue: string;
87808
+ }> | undefined;
87809
+ variantPropertyValues?: Record<string, string> | undefined;
87810
+ }[];
87811
+ }>;
87812
+ }
87813
+
87814
+ declare class FigmaFrameStructuresEndpoint {
87815
+ private readonly requestExecutor;
87816
+ constructor(requestExecutor: RequestExecutor);
87817
+ list(dsId: string, vId: string): Promise<{
87818
+ structures: {
87819
+ id: string;
87820
+ persistentId: string;
87821
+ designSystemVersionId: string;
87822
+ origin: {
87823
+ sourceId: string;
87824
+ fileId?: string | undefined;
87825
+ };
87826
+ assetsInFile: {
87827
+ components: number;
87828
+ componentSets: number;
87829
+ frames: number;
87830
+ };
87831
+ }[];
87832
+ }>;
85591
87833
  }
85592
87834
 
85593
87835
  declare class ImportJobsEndpoint {
@@ -85618,7 +87860,7 @@ declare class ElementPropertyDefinitionsEndpoint {
85618
87860
  constructor(requestExecutor: RequestExecutor);
85619
87861
  list(designSystemId: string, versionId: string): Promise<{
85620
87862
  definitions: {
85621
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
87863
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
85622
87864
  id: string;
85623
87865
  persistentId: string;
85624
87866
  meta: {
@@ -85642,7 +87884,7 @@ declare class ElementPropertyDefinitionsEndpoint {
85642
87884
  }>;
85643
87885
  create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
85644
87886
  definition: {
85645
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
87887
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
85646
87888
  id: string;
85647
87889
  persistentId: string;
85648
87890
  meta: {
@@ -85666,7 +87908,7 @@ declare class ElementPropertyDefinitionsEndpoint {
85666
87908
  }>;
85667
87909
  update(designSystemId: string, versionId: string, defId: string, body: DTOElementPropertyDefinitionUpdatePayload): Promise<{
85668
87910
  definition: {
85669
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
87911
+ type: "Boolean" | "Number" | "Text" | "Select" | "Generic" | "Link" | "URL";
85670
87912
  id: string;
85671
87913
  persistentId: string;
85672
87914
  meta: {
@@ -85720,9 +87962,9 @@ declare class VersionStatsEndpoint {
85720
87962
  private readonly requestExecutor;
85721
87963
  constructor(requestExecutor: RequestExecutor);
85722
87964
  get(dsId: string, vId: string, query?: DTODesignSystemVersionStatsQuery): Promise<{
87965
+ designSystemComponents: number;
85723
87966
  tokens: number;
85724
87967
  assets: number;
85725
- designSystemComponents: number;
85726
87968
  documentationPages: number;
85727
87969
  }>;
85728
87970
  }
@@ -86917,7 +89159,7 @@ declare class TokenGroupsEndpoint {
86917
89159
  isRoot: boolean;
86918
89160
  childrenIds: string[];
86919
89161
  brandId: string;
86920
- 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";
89162
+ tokenType: "String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font";
86921
89163
  };
86922
89164
  }>;
86923
89165
  list(dsId: string, versionId: string): Promise<DTODesignTokenGroupListResponse>;
@@ -87317,10 +89559,14 @@ declare class DesignSystemVersionsEndpoint {
87317
89559
  readonly importJobs: ImportJobsEndpoint;
87318
89560
  readonly tokens: TokensEndpoint;
87319
89561
  readonly tokenGroups: TokenGroupsEndpoint;
89562
+ readonly figmaComponents: FigmaComponentsEndpoint;
89563
+ readonly figmaComponentGroups: FigmaComponentGroupsEndpoint;
89564
+ readonly figmaFrameStructures: FigmaFrameStructuresEndpoint;
87320
89565
  readonly stats: VersionStatsEndpoint;
87321
89566
  readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
87322
89567
  readonly elementPropertyValues: ElementPropertyValuesEndpoint;
87323
89568
  readonly elementsAction: ElementsActionEndpoint;
89569
+ readonly elements: ElementsEndpoint;
87324
89570
  readonly designSystemComponents: DesignSystemComponentEndpoint;
87325
89571
  readonly documentation: DocumentationEndpoint;
87326
89572
  constructor(requestExecutor: RequestExecutor);
@@ -87461,9 +89707,9 @@ declare class DesignSystemSourcesEndpoint {
87461
89707
  tokensCreated: number;
87462
89708
  tokensUpdated: number;
87463
89709
  tokensDeleted: number;
87464
- 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>>;
87465
- 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>>;
87466
- 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>>;
89710
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
89711
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
89712
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
87467
89713
  componentsCreated: number;
87468
89714
  componentsUpdated: number;
87469
89715
  componentsDeleted: number;
@@ -87577,9 +89823,9 @@ declare class DesignSystemSourcesEndpoint {
87577
89823
  tokensCreated: number;
87578
89824
  tokensUpdated: number;
87579
89825
  tokensDeleted: number;
87580
- 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>>;
87581
- 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>>;
87582
- 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>>;
89826
+ tokensCreatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
89827
+ tokensUpdatedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
89828
+ tokensDeletedPerType: Partial<Record<"String" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "Image" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Font" | "Text" | "Measure" | "Radius" | "GenericToken", number>>;
87583
89829
  componentsCreated: number;
87584
89830
  componentsUpdated: number;
87585
89831
  componentsDeleted: number;
@@ -89374,6 +91620,10 @@ declare class SupernovaApiClient {
89374
91620
 
89375
91621
  declare function generateHash(input: object | string, debug?: boolean): string;
89376
91622
 
91623
+ type CompatibleValue = number | string | boolean | undefined;
91624
+ type QueryObject = Record<string, CompatibleValue | CompatibleValue[]>;
91625
+ declare function serializeQuery(query: QueryObject): URLSearchParams;
91626
+
89377
91627
  declare const DocumentationHierarchySettings: z.ZodObject<{
89378
91628
  routingVersion: z.ZodString;
89379
91629
  isDraftFeatureAdopted: z.ZodBoolean;
@@ -91781,7 +94031,7 @@ declare const BlockParsingUtils: {
91781
94031
  declare const BlockDefinitionUtils: {
91782
94032
  firstRichTextProperty(definition: PageBlockDefinition): {
91783
94033
  id: string;
91784
- 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";
94034
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91785
94035
  name: string;
91786
94036
  options?: Record<string, any> | undefined;
91787
94037
  description?: string | undefined;
@@ -91789,7 +94039,7 @@ declare const BlockDefinitionUtils: {
91789
94039
  } | undefined;
91790
94040
  firstMultiRichTextProperty(definition: PageBlockDefinition): {
91791
94041
  id: string;
91792
- 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";
94042
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91793
94043
  name: string;
91794
94044
  options?: Record<string, any> | undefined;
91795
94045
  description?: string | undefined;
@@ -91797,7 +94047,7 @@ declare const BlockDefinitionUtils: {
91797
94047
  } | undefined;
91798
94048
  firstTableProperty(definition: PageBlockDefinition): {
91799
94049
  id: string;
91800
- 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";
94050
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91801
94051
  name: string;
91802
94052
  options?: Record<string, any> | undefined;
91803
94053
  description?: string | undefined;
@@ -91805,7 +94055,7 @@ declare const BlockDefinitionUtils: {
91805
94055
  } | undefined;
91806
94056
  firstEmbedProperty(definition: PageBlockDefinition): {
91807
94057
  id: string;
91808
- 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";
94058
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91809
94059
  name: string;
91810
94060
  options?: Record<string, any> | undefined;
91811
94061
  description?: string | undefined;
@@ -91813,7 +94063,7 @@ declare const BlockDefinitionUtils: {
91813
94063
  } | undefined;
91814
94064
  richTextProperty(definition: PageBlockDefinition, propertyKey: string): {
91815
94065
  id: string;
91816
- 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";
94066
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91817
94067
  name: string;
91818
94068
  options?: Record<string, any> | undefined;
91819
94069
  description?: string | undefined;
@@ -91821,7 +94071,7 @@ declare const BlockDefinitionUtils: {
91821
94071
  };
91822
94072
  property(definition: PageBlockDefinition, propertyKey: string, expectedPropertyType?: PageBlockDefinitionPropertyType): {
91823
94073
  id: string;
91824
- 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";
94074
+ type: "Boolean" | "Number" | "Token" | "Component" | "Color" | "Image" | "Text" | "URL" | "FigmaComponent" | "FigmaNode" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
91825
94075
  name: string;
91826
94076
  options?: Record<string, any> | undefined;
91827
94077
  description?: string | undefined;
@@ -91925,4 +94175,4 @@ declare class FrontendVersionRoomYDoc {
91925
94175
 
91926
94176
  declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
91927
94177
 
91928
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, 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, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, 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, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, 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, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, 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, TokenGroupsEndpoint, 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 };
94178
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, 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, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, 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, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, 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, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, 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, TokenGroupsEndpoint, 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, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };