@supernova-studio/model 0.47.23 → 0.47.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +327 -134
- package/dist/index.d.ts +327 -134
- package/dist/index.js +42 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +41 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
- package/src/dsm/documentation/block-definitions/definition.ts +1 -1
- package/src/dsm/documentation/block-definitions/item.ts +10 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +25 -0
- package/src/export/export-jobs.ts +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -3711,12 +3711,12 @@ type PageBlockDefinitionLayout = z.infer<typeof PageBlockDefinitionLayoutBase> &
|
|
|
3711
3711
|
|
|
3712
3712
|
declare const PageBlockCategory: z.ZodEnum<["Text", "Layout", "Media", "Embed", "Figma", "Code", "Guidelines", "Tokens", "Components", "Assets", "Data", "Other"]>;
|
|
3713
3713
|
type PageBlockCategory = z.infer<typeof PageBlockCategory>;
|
|
3714
|
-
declare const PageBlockBehaviorDataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode"]>;
|
|
3714
|
+
declare const PageBlockBehaviorDataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
3715
3715
|
type PageBlockBehaviorDataType = z.infer<typeof PageBlockBehaviorDataType>;
|
|
3716
3716
|
declare const PageBlockBehaviorSelectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
|
|
3717
3717
|
type PageBlockBehaviorSelectionType = z.infer<typeof PageBlockBehaviorSelectionType>;
|
|
3718
3718
|
declare const PageBlockDefinitionBehavior: z.ZodObject<{
|
|
3719
|
-
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode"]>;
|
|
3719
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
3720
3720
|
items: z.ZodOptional<z.ZodObject<{
|
|
3721
3721
|
numberOfItems: z.ZodNumber;
|
|
3722
3722
|
allowLinks: z.ZodBoolean;
|
|
@@ -3741,7 +3741,7 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
3741
3741
|
maxSelected: number;
|
|
3742
3742
|
}>>;
|
|
3743
3743
|
}, "strip", z.ZodTypeAny, {
|
|
3744
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
3744
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
3745
3745
|
items?: {
|
|
3746
3746
|
numberOfItems: number;
|
|
3747
3747
|
allowLinks: boolean;
|
|
@@ -3752,7 +3752,7 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
3752
3752
|
maxSelected: number;
|
|
3753
3753
|
} | undefined;
|
|
3754
3754
|
}, {
|
|
3755
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
3755
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
3756
3756
|
items?: {
|
|
3757
3757
|
numberOfItems: number;
|
|
3758
3758
|
allowLinks: boolean;
|
|
@@ -3787,20 +3787,20 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
3787
3787
|
properties: z.ZodArray<z.ZodObject<{
|
|
3788
3788
|
id: z.ZodString;
|
|
3789
3789
|
name: z.ZodString;
|
|
3790
|
-
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
|
|
3790
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
3791
3791
|
description: z.ZodOptional<z.ZodString>;
|
|
3792
3792
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3793
3793
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3794
3794
|
}, "strip", z.ZodTypeAny, {
|
|
3795
3795
|
id: string;
|
|
3796
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
3796
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
3797
3797
|
name: string;
|
|
3798
3798
|
options?: Record<string, any> | undefined;
|
|
3799
3799
|
description?: string | undefined;
|
|
3800
3800
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
3801
3801
|
}, {
|
|
3802
3802
|
id: string;
|
|
3803
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
3803
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
3804
3804
|
name: string;
|
|
3805
3805
|
options?: Record<string, any> | undefined;
|
|
3806
3806
|
description?: string | undefined;
|
|
@@ -3896,7 +3896,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
3896
3896
|
}, "strip", z.ZodTypeAny, {
|
|
3897
3897
|
properties: {
|
|
3898
3898
|
id: string;
|
|
3899
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
3899
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
3900
3900
|
name: string;
|
|
3901
3901
|
options?: Record<string, any> | undefined;
|
|
3902
3902
|
description?: string | undefined;
|
|
@@ -3935,7 +3935,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
3935
3935
|
}, {
|
|
3936
3936
|
properties: {
|
|
3937
3937
|
id: string;
|
|
3938
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
3938
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
3939
3939
|
name: string;
|
|
3940
3940
|
options?: Record<string, any> | undefined;
|
|
3941
3941
|
description?: string | undefined;
|
|
@@ -3973,7 +3973,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
3973
3973
|
} | undefined;
|
|
3974
3974
|
}>;
|
|
3975
3975
|
behavior: z.ZodObject<{
|
|
3976
|
-
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode"]>;
|
|
3976
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
3977
3977
|
items: z.ZodOptional<z.ZodObject<{
|
|
3978
3978
|
numberOfItems: z.ZodNumber;
|
|
3979
3979
|
allowLinks: z.ZodBoolean;
|
|
@@ -3998,7 +3998,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
3998
3998
|
maxSelected: number;
|
|
3999
3999
|
}>>;
|
|
4000
4000
|
}, "strip", z.ZodTypeAny, {
|
|
4001
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
4001
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
4002
4002
|
items?: {
|
|
4003
4003
|
numberOfItems: number;
|
|
4004
4004
|
allowLinks: boolean;
|
|
@@ -4009,7 +4009,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4009
4009
|
maxSelected: number;
|
|
4010
4010
|
} | undefined;
|
|
4011
4011
|
}, {
|
|
4012
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
4012
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
4013
4013
|
items?: {
|
|
4014
4014
|
numberOfItems: number;
|
|
4015
4015
|
allowLinks: boolean;
|
|
@@ -4065,7 +4065,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4065
4065
|
item: {
|
|
4066
4066
|
properties: {
|
|
4067
4067
|
id: string;
|
|
4068
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4068
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4069
4069
|
name: string;
|
|
4070
4070
|
options?: Record<string, any> | undefined;
|
|
4071
4071
|
description?: string | undefined;
|
|
@@ -4104,7 +4104,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4104
4104
|
};
|
|
4105
4105
|
category: "Other" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
4106
4106
|
behavior: {
|
|
4107
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
4107
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
4108
4108
|
items?: {
|
|
4109
4109
|
numberOfItems: number;
|
|
4110
4110
|
allowLinks: boolean;
|
|
@@ -4137,7 +4137,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4137
4137
|
item: {
|
|
4138
4138
|
properties: {
|
|
4139
4139
|
id: string;
|
|
4140
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4140
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4141
4141
|
name: string;
|
|
4142
4142
|
options?: Record<string, any> | undefined;
|
|
4143
4143
|
description?: string | undefined;
|
|
@@ -4176,7 +4176,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4176
4176
|
};
|
|
4177
4177
|
category: "Other" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
4178
4178
|
behavior: {
|
|
4179
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
4179
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
4180
4180
|
items?: {
|
|
4181
4181
|
numberOfItems: number;
|
|
4182
4182
|
allowLinks: boolean;
|
|
@@ -4206,7 +4206,8 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4206
4206
|
type PageBlockDefinition = z.infer<typeof PageBlockDefinition>;
|
|
4207
4207
|
|
|
4208
4208
|
declare const PageBlockDefinitionSingleSelectPropertyColor: z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>;
|
|
4209
|
-
declare const
|
|
4209
|
+
declare const IconSet: z.ZodEnum<["CheckCircle", "CrossCircle", "Alert"]>;
|
|
4210
|
+
declare const PageBlockDefinitionPropertyType: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
4210
4211
|
type PageBlockDefinitionPropertyType = z.infer<typeof PageBlockDefinitionPropertyType>;
|
|
4211
4212
|
declare const PageBlockDefinitionRichTextPropertyStyle: z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Quote", "Callout", "Default"]>;
|
|
4212
4213
|
type PageBlockDefinitionRichTextPropertyStyle = z.infer<typeof PageBlockDefinitionRichTextPropertyStyle>;
|
|
@@ -4229,18 +4230,21 @@ type PageBlockDefinitionImageWidth = z.infer<typeof PageBlockDefinitionImageWidt
|
|
|
4229
4230
|
declare const PageBlockDefinitionSelectChoice: z.ZodObject<{
|
|
4230
4231
|
value: z.ZodString;
|
|
4231
4232
|
name: z.ZodString;
|
|
4232
|
-
icon: z.ZodOptional<z.
|
|
4233
|
+
icon: z.ZodOptional<z.ZodEnum<["CheckCircle", "CrossCircle", "Alert"]>>;
|
|
4234
|
+
customIconUrl: z.ZodOptional<z.ZodString>;
|
|
4233
4235
|
color: z.ZodOptional<z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>>;
|
|
4234
4236
|
}, "strip", z.ZodTypeAny, {
|
|
4235
4237
|
value: string;
|
|
4236
4238
|
name: string;
|
|
4237
|
-
icon?:
|
|
4239
|
+
icon?: "CheckCircle" | "CrossCircle" | "Alert" | undefined;
|
|
4238
4240
|
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4241
|
+
customIconUrl?: string | undefined;
|
|
4239
4242
|
}, {
|
|
4240
4243
|
value: string;
|
|
4241
4244
|
name: string;
|
|
4242
|
-
icon?:
|
|
4245
|
+
icon?: "CheckCircle" | "CrossCircle" | "Alert" | undefined;
|
|
4243
4246
|
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4247
|
+
customIconUrl?: string | undefined;
|
|
4244
4248
|
}>;
|
|
4245
4249
|
type PageBlockDefinitionSelectChoice = z.infer<typeof PageBlockDefinitionSelectChoice>;
|
|
4246
4250
|
declare const PageBlockDefinitionUntypedPropertyOptions: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
@@ -4266,16 +4270,19 @@ declare const PageBlockDefinitionTextOptions: z.ZodObject<{
|
|
|
4266
4270
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4267
4271
|
textStyle: z.ZodOptional<z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Default", "DefaultBold", "DefaultSemibold", "Small", "SmallBold", "SmallSemibold", "Custom"]>>;
|
|
4268
4272
|
color: z.ZodOptional<z.ZodEnum<["Neutral", "NeutralFaded"]>>;
|
|
4273
|
+
allowLineBreaks: z.ZodOptional<z.ZodBoolean>;
|
|
4269
4274
|
}, "strip", z.ZodTypeAny, {
|
|
4270
4275
|
color?: "Neutral" | "NeutralFaded" | undefined;
|
|
4271
4276
|
placeholder?: string | undefined;
|
|
4272
4277
|
defaultValue?: string | undefined;
|
|
4273
4278
|
textStyle?: "Custom" | "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4279
|
+
allowLineBreaks?: boolean | undefined;
|
|
4274
4280
|
}, {
|
|
4275
4281
|
color?: "Neutral" | "NeutralFaded" | undefined;
|
|
4276
4282
|
placeholder?: string | undefined;
|
|
4277
4283
|
defaultValue?: string | undefined;
|
|
4278
4284
|
textStyle?: "Custom" | "Small" | "Title1" | "Title2" | "Title3" | "Title4" | "Title5" | "Default" | "DefaultBold" | "DefaultSemibold" | "SmallBold" | "SmallSemibold" | undefined;
|
|
4285
|
+
allowLineBreaks?: boolean | undefined;
|
|
4279
4286
|
}>;
|
|
4280
4287
|
type PageBlockDefinitionTextOptions = z.infer<typeof PageBlockDefinitionTextOptions>;
|
|
4281
4288
|
declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
|
|
@@ -4284,26 +4291,30 @@ declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
|
|
|
4284
4291
|
choices: z.ZodArray<z.ZodObject<{
|
|
4285
4292
|
value: z.ZodString;
|
|
4286
4293
|
name: z.ZodString;
|
|
4287
|
-
icon: z.ZodOptional<z.
|
|
4294
|
+
icon: z.ZodOptional<z.ZodEnum<["CheckCircle", "CrossCircle", "Alert"]>>;
|
|
4295
|
+
customIconUrl: z.ZodOptional<z.ZodString>;
|
|
4288
4296
|
color: z.ZodOptional<z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>>;
|
|
4289
4297
|
}, "strip", z.ZodTypeAny, {
|
|
4290
4298
|
value: string;
|
|
4291
4299
|
name: string;
|
|
4292
|
-
icon?:
|
|
4300
|
+
icon?: "CheckCircle" | "CrossCircle" | "Alert" | undefined;
|
|
4293
4301
|
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4302
|
+
customIconUrl?: string | undefined;
|
|
4294
4303
|
}, {
|
|
4295
4304
|
value: string;
|
|
4296
4305
|
name: string;
|
|
4297
|
-
icon?:
|
|
4306
|
+
icon?: "CheckCircle" | "CrossCircle" | "Alert" | undefined;
|
|
4298
4307
|
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4308
|
+
customIconUrl?: string | undefined;
|
|
4299
4309
|
}>, "many">;
|
|
4300
4310
|
}, "strip", z.ZodTypeAny, {
|
|
4301
4311
|
defaultChoice: string;
|
|
4302
4312
|
choices: {
|
|
4303
4313
|
value: string;
|
|
4304
4314
|
name: string;
|
|
4305
|
-
icon?:
|
|
4315
|
+
icon?: "CheckCircle" | "CrossCircle" | "Alert" | undefined;
|
|
4306
4316
|
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4317
|
+
customIconUrl?: string | undefined;
|
|
4307
4318
|
}[];
|
|
4308
4319
|
singleSelectStyle?: "Select" | "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
|
|
4309
4320
|
}, {
|
|
@@ -4311,8 +4322,9 @@ declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
|
|
|
4311
4322
|
choices: {
|
|
4312
4323
|
value: string;
|
|
4313
4324
|
name: string;
|
|
4314
|
-
icon?:
|
|
4325
|
+
icon?: "CheckCircle" | "CrossCircle" | "Alert" | undefined;
|
|
4315
4326
|
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4327
|
+
customIconUrl?: string | undefined;
|
|
4316
4328
|
}[];
|
|
4317
4329
|
singleSelectStyle?: "Select" | "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
|
|
4318
4330
|
}>;
|
|
@@ -4379,20 +4391,20 @@ type PageBlockDefinitionComponentOptions = z.infer<typeof PageBlockDefinitionCom
|
|
|
4379
4391
|
declare const PageBlockDefinitionProperty: z.ZodObject<{
|
|
4380
4392
|
id: z.ZodString;
|
|
4381
4393
|
name: z.ZodString;
|
|
4382
|
-
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
|
|
4394
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
4383
4395
|
description: z.ZodOptional<z.ZodString>;
|
|
4384
4396
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4385
4397
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4386
4398
|
}, "strip", z.ZodTypeAny, {
|
|
4387
4399
|
id: string;
|
|
4388
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4400
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4389
4401
|
name: string;
|
|
4390
4402
|
options?: Record<string, any> | undefined;
|
|
4391
4403
|
description?: string | undefined;
|
|
4392
4404
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4393
4405
|
}, {
|
|
4394
4406
|
id: string;
|
|
4395
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4407
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4396
4408
|
name: string;
|
|
4397
4409
|
options?: Record<string, any> | undefined;
|
|
4398
4410
|
description?: string | undefined;
|
|
@@ -4403,20 +4415,20 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
4403
4415
|
properties: z.ZodArray<z.ZodObject<{
|
|
4404
4416
|
id: z.ZodString;
|
|
4405
4417
|
name: z.ZodString;
|
|
4406
|
-
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
|
|
4418
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
4407
4419
|
description: z.ZodOptional<z.ZodString>;
|
|
4408
4420
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4409
4421
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4410
4422
|
}, "strip", z.ZodTypeAny, {
|
|
4411
4423
|
id: string;
|
|
4412
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4424
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4413
4425
|
name: string;
|
|
4414
4426
|
options?: Record<string, any> | undefined;
|
|
4415
4427
|
description?: string | undefined;
|
|
4416
4428
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
4417
4429
|
}, {
|
|
4418
4430
|
id: string;
|
|
4419
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4431
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4420
4432
|
name: string;
|
|
4421
4433
|
options?: Record<string, any> | undefined;
|
|
4422
4434
|
description?: string | undefined;
|
|
@@ -4512,7 +4524,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
4512
4524
|
}, "strip", z.ZodTypeAny, {
|
|
4513
4525
|
properties: {
|
|
4514
4526
|
id: string;
|
|
4515
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4527
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4516
4528
|
name: string;
|
|
4517
4529
|
options?: Record<string, any> | undefined;
|
|
4518
4530
|
description?: string | undefined;
|
|
@@ -4551,7 +4563,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
4551
4563
|
}, {
|
|
4552
4564
|
properties: {
|
|
4553
4565
|
id: string;
|
|
4554
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4566
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
4555
4567
|
name: string;
|
|
4556
4568
|
options?: Record<string, any> | undefined;
|
|
4557
4569
|
description?: string | undefined;
|
|
@@ -10621,6 +10633,38 @@ declare const PageBlockAssetEntityMeta: z.ZodObject<{
|
|
|
10621
10633
|
title?: string | undefined;
|
|
10622
10634
|
}>;
|
|
10623
10635
|
type PageBlockAssetEntityMeta = z.infer<typeof PageBlockAssetEntityMeta>;
|
|
10636
|
+
declare const PageBlockFigmaComponentEntityMeta: z.ZodObject<{
|
|
10637
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10638
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10639
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
10640
|
+
value: z.ZodString;
|
|
10641
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
10642
|
+
}, "strip", z.ZodTypeAny, {
|
|
10643
|
+
value: string;
|
|
10644
|
+
referencedTokenId?: string | undefined;
|
|
10645
|
+
}, {
|
|
10646
|
+
value: string;
|
|
10647
|
+
referencedTokenId?: string | undefined;
|
|
10648
|
+
}>>;
|
|
10649
|
+
selectedComponentProperties: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10650
|
+
}, "strip", z.ZodTypeAny, {
|
|
10651
|
+
description?: string | undefined;
|
|
10652
|
+
backgroundColor?: {
|
|
10653
|
+
value: string;
|
|
10654
|
+
referencedTokenId?: string | undefined;
|
|
10655
|
+
} | undefined;
|
|
10656
|
+
title?: string | undefined;
|
|
10657
|
+
selectedComponentProperties?: string[] | undefined;
|
|
10658
|
+
}, {
|
|
10659
|
+
description?: string | undefined;
|
|
10660
|
+
backgroundColor?: {
|
|
10661
|
+
value: string;
|
|
10662
|
+
referencedTokenId?: string | undefined;
|
|
10663
|
+
} | undefined;
|
|
10664
|
+
title?: string | undefined;
|
|
10665
|
+
selectedComponentProperties?: string[] | undefined;
|
|
10666
|
+
}>;
|
|
10667
|
+
type PageBlockFigmaComponentEntityMeta = z.infer<typeof PageBlockFigmaComponentEntityMeta>;
|
|
10624
10668
|
declare const PageBlockFigmaNodeEntityMeta: z.ZodObject<{
|
|
10625
10669
|
title: z.ZodOptional<z.ZodString>;
|
|
10626
10670
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -10890,6 +10934,125 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
10890
10934
|
} | undefined;
|
|
10891
10935
|
}>;
|
|
10892
10936
|
type PageBlockDataV2 = z.infer<typeof PageBlockDataV2>;
|
|
10937
|
+
declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
10938
|
+
showComponentName: z.ZodOptional<z.ZodBoolean>;
|
|
10939
|
+
showComponentDescription: z.ZodOptional<z.ZodBoolean>;
|
|
10940
|
+
showPropertyList: z.ZodOptional<z.ZodBoolean>;
|
|
10941
|
+
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
10942
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
10943
|
+
value: z.ZodString;
|
|
10944
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
10945
|
+
}, "strip", z.ZodTypeAny, {
|
|
10946
|
+
value: string;
|
|
10947
|
+
referencedTokenId?: string | undefined;
|
|
10948
|
+
}, {
|
|
10949
|
+
value: string;
|
|
10950
|
+
referencedTokenId?: string | undefined;
|
|
10951
|
+
}>>;
|
|
10952
|
+
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
10953
|
+
entityId: z.ZodString;
|
|
10954
|
+
entityType: z.ZodEnum<["FigmaComponent"]>;
|
|
10955
|
+
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
10956
|
+
title: z.ZodOptional<z.ZodString>;
|
|
10957
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10958
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
10959
|
+
value: z.ZodString;
|
|
10960
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
10961
|
+
}, "strip", z.ZodTypeAny, {
|
|
10962
|
+
value: string;
|
|
10963
|
+
referencedTokenId?: string | undefined;
|
|
10964
|
+
}, {
|
|
10965
|
+
value: string;
|
|
10966
|
+
referencedTokenId?: string | undefined;
|
|
10967
|
+
}>>;
|
|
10968
|
+
selectedComponentProperties: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10969
|
+
}, "strip", z.ZodTypeAny, {
|
|
10970
|
+
description?: string | undefined;
|
|
10971
|
+
backgroundColor?: {
|
|
10972
|
+
value: string;
|
|
10973
|
+
referencedTokenId?: string | undefined;
|
|
10974
|
+
} | undefined;
|
|
10975
|
+
title?: string | undefined;
|
|
10976
|
+
selectedComponentProperties?: string[] | undefined;
|
|
10977
|
+
}, {
|
|
10978
|
+
description?: string | undefined;
|
|
10979
|
+
backgroundColor?: {
|
|
10980
|
+
value: string;
|
|
10981
|
+
referencedTokenId?: string | undefined;
|
|
10982
|
+
} | undefined;
|
|
10983
|
+
title?: string | undefined;
|
|
10984
|
+
selectedComponentProperties?: string[] | undefined;
|
|
10985
|
+
}>>;
|
|
10986
|
+
}, "strip", z.ZodTypeAny, {
|
|
10987
|
+
entityId: string;
|
|
10988
|
+
entityType: "FigmaComponent";
|
|
10989
|
+
entityMeta?: {
|
|
10990
|
+
description?: string | undefined;
|
|
10991
|
+
backgroundColor?: {
|
|
10992
|
+
value: string;
|
|
10993
|
+
referencedTokenId?: string | undefined;
|
|
10994
|
+
} | undefined;
|
|
10995
|
+
title?: string | undefined;
|
|
10996
|
+
selectedComponentProperties?: string[] | undefined;
|
|
10997
|
+
} | undefined;
|
|
10998
|
+
}, {
|
|
10999
|
+
entityId: string;
|
|
11000
|
+
entityType: "FigmaComponent";
|
|
11001
|
+
entityMeta?: {
|
|
11002
|
+
description?: string | undefined;
|
|
11003
|
+
backgroundColor?: {
|
|
11004
|
+
value: string;
|
|
11005
|
+
referencedTokenId?: string | undefined;
|
|
11006
|
+
} | undefined;
|
|
11007
|
+
title?: string | undefined;
|
|
11008
|
+
selectedComponentProperties?: string[] | undefined;
|
|
11009
|
+
} | undefined;
|
|
11010
|
+
}>, "many">>;
|
|
11011
|
+
}, "strip", z.ZodTypeAny, {
|
|
11012
|
+
value: {
|
|
11013
|
+
entityId: string;
|
|
11014
|
+
entityType: "FigmaComponent";
|
|
11015
|
+
entityMeta?: {
|
|
11016
|
+
description?: string | undefined;
|
|
11017
|
+
backgroundColor?: {
|
|
11018
|
+
value: string;
|
|
11019
|
+
referencedTokenId?: string | undefined;
|
|
11020
|
+
} | undefined;
|
|
11021
|
+
title?: string | undefined;
|
|
11022
|
+
selectedComponentProperties?: string[] | undefined;
|
|
11023
|
+
} | undefined;
|
|
11024
|
+
}[];
|
|
11025
|
+
backgroundColor?: {
|
|
11026
|
+
value: string;
|
|
11027
|
+
referencedTokenId?: string | undefined;
|
|
11028
|
+
} | undefined;
|
|
11029
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
11030
|
+
showComponentName?: boolean | undefined;
|
|
11031
|
+
showComponentDescription?: boolean | undefined;
|
|
11032
|
+
showPropertyList?: boolean | undefined;
|
|
11033
|
+
}, {
|
|
11034
|
+
value?: {
|
|
11035
|
+
entityId: string;
|
|
11036
|
+
entityType: "FigmaComponent";
|
|
11037
|
+
entityMeta?: {
|
|
11038
|
+
description?: string | undefined;
|
|
11039
|
+
backgroundColor?: {
|
|
11040
|
+
value: string;
|
|
11041
|
+
referencedTokenId?: string | undefined;
|
|
11042
|
+
} | undefined;
|
|
11043
|
+
title?: string | undefined;
|
|
11044
|
+
selectedComponentProperties?: string[] | undefined;
|
|
11045
|
+
} | undefined;
|
|
11046
|
+
}[] | undefined;
|
|
11047
|
+
backgroundColor?: {
|
|
11048
|
+
value: string;
|
|
11049
|
+
referencedTokenId?: string | undefined;
|
|
11050
|
+
} | undefined;
|
|
11051
|
+
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
11052
|
+
showComponentName?: boolean | undefined;
|
|
11053
|
+
showComponentDescription?: boolean | undefined;
|
|
11054
|
+
showPropertyList?: boolean | undefined;
|
|
11055
|
+
}>;
|
|
10893
11056
|
declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
10894
11057
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10895
11058
|
showSearch: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -98587,57 +98750,72 @@ declare const ExportJobDocsDestinationResult: z.ZodObject<{
|
|
|
98587
98750
|
type ExportJobDocsDestinationResult = z.infer<typeof ExportJobDocsDestinationResult>;
|
|
98588
98751
|
declare const ExportJobResult: z.ZodObject<{
|
|
98589
98752
|
error: z.ZodOptional<z.ZodString>;
|
|
98590
|
-
s3: z.ZodOptional<z.
|
|
98591
|
-
bucket: z.ZodString;
|
|
98592
|
-
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
98593
|
-
path: z.ZodString;
|
|
98594
|
-
files: z.ZodArray<z.ZodString, "many">;
|
|
98595
|
-
}, "strip", z.ZodTypeAny, {
|
|
98753
|
+
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98596
98754
|
path: string;
|
|
98597
98755
|
files: string[];
|
|
98598
98756
|
bucket: string;
|
|
98599
98757
|
urlPrefix?: string | undefined;
|
|
98600
|
-
}, {
|
|
98758
|
+
}, z.ZodTypeDef, {
|
|
98601
98759
|
path: string;
|
|
98602
98760
|
files: string[];
|
|
98603
98761
|
bucket: string;
|
|
98604
98762
|
urlPrefix?: string | undefined;
|
|
98605
|
-
}
|
|
98606
|
-
|
|
98607
|
-
|
|
98608
|
-
|
|
98763
|
+
}>>>, {
|
|
98764
|
+
path: string;
|
|
98765
|
+
files: string[];
|
|
98766
|
+
bucket: string;
|
|
98767
|
+
urlPrefix?: string | undefined;
|
|
98768
|
+
} | undefined, {
|
|
98769
|
+
path: string;
|
|
98770
|
+
files: string[];
|
|
98771
|
+
bucket: string;
|
|
98772
|
+
urlPrefix?: string | undefined;
|
|
98773
|
+
} | null | undefined>;
|
|
98774
|
+
github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98609
98775
|
pullRequestUrl: string;
|
|
98610
|
-
}, {
|
|
98776
|
+
}, z.ZodTypeDef, {
|
|
98611
98777
|
pullRequestUrl: string;
|
|
98612
|
-
}
|
|
98613
|
-
azure: z.ZodOptional<z.ZodObject<{
|
|
98614
|
-
pullRequestUrl: z.ZodString;
|
|
98615
|
-
}, "strip", z.ZodTypeAny, {
|
|
98778
|
+
}>>>, {
|
|
98616
98779
|
pullRequestUrl: string;
|
|
98617
|
-
}, {
|
|
98780
|
+
} | undefined, {
|
|
98618
98781
|
pullRequestUrl: string;
|
|
98619
|
-
}
|
|
98620
|
-
|
|
98621
|
-
pullRequestUrl: z.ZodString;
|
|
98622
|
-
}, "strip", z.ZodTypeAny, {
|
|
98782
|
+
} | null | undefined>;
|
|
98783
|
+
azure: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98623
98784
|
pullRequestUrl: string;
|
|
98624
|
-
}, {
|
|
98785
|
+
}, z.ZodTypeDef, {
|
|
98625
98786
|
pullRequestUrl: string;
|
|
98626
|
-
}
|
|
98627
|
-
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
98628
|
-
pullRequestUrl: z.ZodString;
|
|
98629
|
-
}, "strip", z.ZodTypeAny, {
|
|
98787
|
+
}>>>, {
|
|
98630
98788
|
pullRequestUrl: string;
|
|
98631
|
-
}, {
|
|
98789
|
+
} | undefined, {
|
|
98632
98790
|
pullRequestUrl: string;
|
|
98633
|
-
}
|
|
98634
|
-
|
|
98635
|
-
|
|
98636
|
-
},
|
|
98791
|
+
} | null | undefined>;
|
|
98792
|
+
gitlab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98793
|
+
pullRequestUrl: string;
|
|
98794
|
+
}, z.ZodTypeDef, {
|
|
98795
|
+
pullRequestUrl: string;
|
|
98796
|
+
}>>>, {
|
|
98797
|
+
pullRequestUrl: string;
|
|
98798
|
+
} | undefined, {
|
|
98799
|
+
pullRequestUrl: string;
|
|
98800
|
+
} | null | undefined>;
|
|
98801
|
+
bitbucket: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98802
|
+
pullRequestUrl: string;
|
|
98803
|
+
}, z.ZodTypeDef, {
|
|
98804
|
+
pullRequestUrl: string;
|
|
98805
|
+
}>>>, {
|
|
98806
|
+
pullRequestUrl: string;
|
|
98807
|
+
} | undefined, {
|
|
98808
|
+
pullRequestUrl: string;
|
|
98809
|
+
} | null | undefined>;
|
|
98810
|
+
sndocs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98637
98811
|
url: string;
|
|
98638
|
-
}, {
|
|
98812
|
+
}, z.ZodTypeDef, {
|
|
98639
98813
|
url: string;
|
|
98640
|
-
}
|
|
98814
|
+
}>>>, {
|
|
98815
|
+
url: string;
|
|
98816
|
+
} | undefined, {
|
|
98817
|
+
url: string;
|
|
98818
|
+
} | null | undefined>;
|
|
98641
98819
|
}, "strip", z.ZodTypeAny, {
|
|
98642
98820
|
error?: string | undefined;
|
|
98643
98821
|
github?: {
|
|
@@ -98665,25 +98843,25 @@ declare const ExportJobResult: z.ZodObject<{
|
|
|
98665
98843
|
error?: string | undefined;
|
|
98666
98844
|
github?: {
|
|
98667
98845
|
pullRequestUrl: string;
|
|
98668
|
-
} | undefined;
|
|
98846
|
+
} | null | undefined;
|
|
98669
98847
|
azure?: {
|
|
98670
98848
|
pullRequestUrl: string;
|
|
98671
|
-
} | undefined;
|
|
98849
|
+
} | null | undefined;
|
|
98672
98850
|
gitlab?: {
|
|
98673
98851
|
pullRequestUrl: string;
|
|
98674
|
-
} | undefined;
|
|
98852
|
+
} | null | undefined;
|
|
98675
98853
|
bitbucket?: {
|
|
98676
98854
|
pullRequestUrl: string;
|
|
98677
|
-
} | undefined;
|
|
98855
|
+
} | null | undefined;
|
|
98678
98856
|
s3?: {
|
|
98679
98857
|
path: string;
|
|
98680
98858
|
files: string[];
|
|
98681
98859
|
bucket: string;
|
|
98682
98860
|
urlPrefix?: string | undefined;
|
|
98683
|
-
} | undefined;
|
|
98861
|
+
} | null | undefined;
|
|
98684
98862
|
sndocs?: {
|
|
98685
98863
|
url: string;
|
|
98686
|
-
} | undefined;
|
|
98864
|
+
} | null | undefined;
|
|
98687
98865
|
}>;
|
|
98688
98866
|
type ExportJobResult = z.infer<typeof ExportJobResult>;
|
|
98689
98867
|
declare const ExportJob: z.ZodObject<{
|
|
@@ -98816,57 +98994,72 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98816
98994
|
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
98817
98995
|
result: z.ZodOptional<z.ZodObject<{
|
|
98818
98996
|
error: z.ZodOptional<z.ZodString>;
|
|
98819
|
-
s3: z.ZodOptional<z.
|
|
98820
|
-
bucket: z.ZodString;
|
|
98821
|
-
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
98822
|
-
path: z.ZodString;
|
|
98823
|
-
files: z.ZodArray<z.ZodString, "many">;
|
|
98824
|
-
}, "strip", z.ZodTypeAny, {
|
|
98997
|
+
s3: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98825
98998
|
path: string;
|
|
98826
98999
|
files: string[];
|
|
98827
99000
|
bucket: string;
|
|
98828
99001
|
urlPrefix?: string | undefined;
|
|
98829
|
-
}, {
|
|
99002
|
+
}, z.ZodTypeDef, {
|
|
98830
99003
|
path: string;
|
|
98831
99004
|
files: string[];
|
|
98832
99005
|
bucket: string;
|
|
98833
99006
|
urlPrefix?: string | undefined;
|
|
98834
|
-
}
|
|
98835
|
-
|
|
98836
|
-
|
|
98837
|
-
|
|
99007
|
+
}>>>, {
|
|
99008
|
+
path: string;
|
|
99009
|
+
files: string[];
|
|
99010
|
+
bucket: string;
|
|
99011
|
+
urlPrefix?: string | undefined;
|
|
99012
|
+
} | undefined, {
|
|
99013
|
+
path: string;
|
|
99014
|
+
files: string[];
|
|
99015
|
+
bucket: string;
|
|
99016
|
+
urlPrefix?: string | undefined;
|
|
99017
|
+
} | null | undefined>;
|
|
99018
|
+
github: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98838
99019
|
pullRequestUrl: string;
|
|
98839
|
-
}, {
|
|
99020
|
+
}, z.ZodTypeDef, {
|
|
98840
99021
|
pullRequestUrl: string;
|
|
98841
|
-
}
|
|
98842
|
-
azure: z.ZodOptional<z.ZodObject<{
|
|
98843
|
-
pullRequestUrl: z.ZodString;
|
|
98844
|
-
}, "strip", z.ZodTypeAny, {
|
|
99022
|
+
}>>>, {
|
|
98845
99023
|
pullRequestUrl: string;
|
|
98846
|
-
}, {
|
|
99024
|
+
} | undefined, {
|
|
98847
99025
|
pullRequestUrl: string;
|
|
98848
|
-
}
|
|
98849
|
-
|
|
98850
|
-
pullRequestUrl: z.ZodString;
|
|
98851
|
-
}, "strip", z.ZodTypeAny, {
|
|
99026
|
+
} | null | undefined>;
|
|
99027
|
+
azure: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98852
99028
|
pullRequestUrl: string;
|
|
98853
|
-
}, {
|
|
99029
|
+
}, z.ZodTypeDef, {
|
|
98854
99030
|
pullRequestUrl: string;
|
|
98855
|
-
}
|
|
98856
|
-
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
98857
|
-
pullRequestUrl: z.ZodString;
|
|
98858
|
-
}, "strip", z.ZodTypeAny, {
|
|
99031
|
+
}>>>, {
|
|
98859
99032
|
pullRequestUrl: string;
|
|
98860
|
-
}, {
|
|
99033
|
+
} | undefined, {
|
|
98861
99034
|
pullRequestUrl: string;
|
|
98862
|
-
}
|
|
98863
|
-
|
|
98864
|
-
|
|
98865
|
-
},
|
|
99035
|
+
} | null | undefined>;
|
|
99036
|
+
gitlab: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
99037
|
+
pullRequestUrl: string;
|
|
99038
|
+
}, z.ZodTypeDef, {
|
|
99039
|
+
pullRequestUrl: string;
|
|
99040
|
+
}>>>, {
|
|
99041
|
+
pullRequestUrl: string;
|
|
99042
|
+
} | undefined, {
|
|
99043
|
+
pullRequestUrl: string;
|
|
99044
|
+
} | null | undefined>;
|
|
99045
|
+
bitbucket: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
99046
|
+
pullRequestUrl: string;
|
|
99047
|
+
}, z.ZodTypeDef, {
|
|
99048
|
+
pullRequestUrl: string;
|
|
99049
|
+
}>>>, {
|
|
99050
|
+
pullRequestUrl: string;
|
|
99051
|
+
} | undefined, {
|
|
99052
|
+
pullRequestUrl: string;
|
|
99053
|
+
} | null | undefined>;
|
|
99054
|
+
sndocs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98866
99055
|
url: string;
|
|
98867
|
-
}, {
|
|
99056
|
+
}, z.ZodTypeDef, {
|
|
98868
99057
|
url: string;
|
|
98869
|
-
}
|
|
99058
|
+
}>>>, {
|
|
99059
|
+
url: string;
|
|
99060
|
+
} | undefined, {
|
|
99061
|
+
url: string;
|
|
99062
|
+
} | null | undefined>;
|
|
98870
99063
|
}, "strip", z.ZodTypeAny, {
|
|
98871
99064
|
error?: string | undefined;
|
|
98872
99065
|
github?: {
|
|
@@ -98894,25 +99087,25 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98894
99087
|
error?: string | undefined;
|
|
98895
99088
|
github?: {
|
|
98896
99089
|
pullRequestUrl: string;
|
|
98897
|
-
} | undefined;
|
|
99090
|
+
} | null | undefined;
|
|
98898
99091
|
azure?: {
|
|
98899
99092
|
pullRequestUrl: string;
|
|
98900
|
-
} | undefined;
|
|
99093
|
+
} | null | undefined;
|
|
98901
99094
|
gitlab?: {
|
|
98902
99095
|
pullRequestUrl: string;
|
|
98903
|
-
} | undefined;
|
|
99096
|
+
} | null | undefined;
|
|
98904
99097
|
bitbucket?: {
|
|
98905
99098
|
pullRequestUrl: string;
|
|
98906
|
-
} | undefined;
|
|
99099
|
+
} | null | undefined;
|
|
98907
99100
|
s3?: {
|
|
98908
99101
|
path: string;
|
|
98909
99102
|
files: string[];
|
|
98910
99103
|
bucket: string;
|
|
98911
99104
|
urlPrefix?: string | undefined;
|
|
98912
|
-
} | undefined;
|
|
99105
|
+
} | null | undefined;
|
|
98913
99106
|
sndocs?: {
|
|
98914
99107
|
url: string;
|
|
98915
|
-
} | undefined;
|
|
99108
|
+
} | null | undefined;
|
|
98916
99109
|
}>>;
|
|
98917
99110
|
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
98918
99111
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -99057,25 +99250,25 @@ declare const ExportJob: z.ZodObject<{
|
|
|
99057
99250
|
error?: string | undefined;
|
|
99058
99251
|
github?: {
|
|
99059
99252
|
pullRequestUrl: string;
|
|
99060
|
-
} | undefined;
|
|
99253
|
+
} | null | undefined;
|
|
99061
99254
|
azure?: {
|
|
99062
99255
|
pullRequestUrl: string;
|
|
99063
|
-
} | undefined;
|
|
99256
|
+
} | null | undefined;
|
|
99064
99257
|
gitlab?: {
|
|
99065
99258
|
pullRequestUrl: string;
|
|
99066
|
-
} | undefined;
|
|
99259
|
+
} | null | undefined;
|
|
99067
99260
|
bitbucket?: {
|
|
99068
99261
|
pullRequestUrl: string;
|
|
99069
|
-
} | undefined;
|
|
99262
|
+
} | null | undefined;
|
|
99070
99263
|
s3?: {
|
|
99071
99264
|
path: string;
|
|
99072
99265
|
files: string[];
|
|
99073
99266
|
bucket: string;
|
|
99074
99267
|
urlPrefix?: string | undefined;
|
|
99075
|
-
} | undefined;
|
|
99268
|
+
} | null | undefined;
|
|
99076
99269
|
sndocs?: {
|
|
99077
99270
|
url: string;
|
|
99078
|
-
} | undefined;
|
|
99271
|
+
} | null | undefined;
|
|
99079
99272
|
} | undefined;
|
|
99080
99273
|
}>;
|
|
99081
99274
|
type ExportJob = z.infer<typeof ExportJob>;
|
|
@@ -111790,20 +111983,20 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
111790
111983
|
properties: z.ZodArray<z.ZodObject<{
|
|
111791
111984
|
id: z.ZodString;
|
|
111792
111985
|
name: z.ZodString;
|
|
111793
|
-
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
|
|
111986
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
111794
111987
|
description: z.ZodOptional<z.ZodString>;
|
|
111795
111988
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
111796
111989
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
111797
111990
|
}, "strip", z.ZodTypeAny, {
|
|
111798
111991
|
id: string;
|
|
111799
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
111992
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
111800
111993
|
name: string;
|
|
111801
111994
|
options?: Record<string, any> | undefined;
|
|
111802
111995
|
description?: string | undefined;
|
|
111803
111996
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
111804
111997
|
}, {
|
|
111805
111998
|
id: string;
|
|
111806
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
111999
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
111807
112000
|
name: string;
|
|
111808
112001
|
options?: Record<string, any> | undefined;
|
|
111809
112002
|
description?: string | undefined;
|
|
@@ -111899,7 +112092,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
111899
112092
|
}, "strip", z.ZodTypeAny, {
|
|
111900
112093
|
properties: {
|
|
111901
112094
|
id: string;
|
|
111902
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
112095
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
111903
112096
|
name: string;
|
|
111904
112097
|
options?: Record<string, any> | undefined;
|
|
111905
112098
|
description?: string | undefined;
|
|
@@ -111938,7 +112131,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
111938
112131
|
}, {
|
|
111939
112132
|
properties: {
|
|
111940
112133
|
id: string;
|
|
111941
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
112134
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
111942
112135
|
name: string;
|
|
111943
112136
|
options?: Record<string, any> | undefined;
|
|
111944
112137
|
description?: string | undefined;
|
|
@@ -111976,7 +112169,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
111976
112169
|
} | undefined;
|
|
111977
112170
|
}>;
|
|
111978
112171
|
behavior: z.ZodObject<{
|
|
111979
|
-
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode"]>;
|
|
112172
|
+
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
111980
112173
|
items: z.ZodOptional<z.ZodObject<{
|
|
111981
112174
|
numberOfItems: z.ZodNumber;
|
|
111982
112175
|
allowLinks: z.ZodBoolean;
|
|
@@ -112001,7 +112194,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
112001
112194
|
maxSelected: number;
|
|
112002
112195
|
}>>;
|
|
112003
112196
|
}, "strip", z.ZodTypeAny, {
|
|
112004
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
112197
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
112005
112198
|
items?: {
|
|
112006
112199
|
numberOfItems: number;
|
|
112007
112200
|
allowLinks: boolean;
|
|
@@ -112012,7 +112205,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
112012
112205
|
maxSelected: number;
|
|
112013
112206
|
} | undefined;
|
|
112014
112207
|
}, {
|
|
112015
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
112208
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
112016
112209
|
items?: {
|
|
112017
112210
|
numberOfItems: number;
|
|
112018
112211
|
allowLinks: boolean;
|
|
@@ -112068,7 +112261,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
112068
112261
|
item: {
|
|
112069
112262
|
properties: {
|
|
112070
112263
|
id: string;
|
|
112071
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
112264
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
112072
112265
|
name: string;
|
|
112073
112266
|
options?: Record<string, any> | undefined;
|
|
112074
112267
|
description?: string | undefined;
|
|
@@ -112107,7 +112300,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
112107
112300
|
};
|
|
112108
112301
|
category: "Other" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
112109
112302
|
behavior: {
|
|
112110
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
112303
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
112111
112304
|
items?: {
|
|
112112
112305
|
numberOfItems: number;
|
|
112113
112306
|
allowLinks: boolean;
|
|
@@ -112140,7 +112333,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
112140
112333
|
item: {
|
|
112141
112334
|
properties: {
|
|
112142
112335
|
id: string;
|
|
112143
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
112336
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
112144
112337
|
name: string;
|
|
112145
112338
|
options?: Record<string, any> | undefined;
|
|
112146
112339
|
description?: string | undefined;
|
|
@@ -112179,7 +112372,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
112179
112372
|
};
|
|
112180
112373
|
category: "Other" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
112181
112374
|
behavior: {
|
|
112182
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
112375
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
112183
112376
|
items?: {
|
|
112184
112377
|
numberOfItems: number;
|
|
112185
112378
|
allowLinks: boolean;
|
|
@@ -112406,7 +112599,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
112406
112599
|
item: {
|
|
112407
112600
|
properties: {
|
|
112408
112601
|
id: string;
|
|
112409
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
112602
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
112410
112603
|
name: string;
|
|
112411
112604
|
options?: Record<string, any> | undefined;
|
|
112412
112605
|
description?: string | undefined;
|
|
@@ -112445,7 +112638,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
112445
112638
|
};
|
|
112446
112639
|
category: "Other" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
112447
112640
|
behavior: {
|
|
112448
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
112641
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
112449
112642
|
items?: {
|
|
112450
112643
|
numberOfItems: number;
|
|
112451
112644
|
allowLinks: boolean;
|
|
@@ -113038,7 +113231,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
113038
113231
|
item: {
|
|
113039
113232
|
properties: {
|
|
113040
113233
|
id: string;
|
|
113041
|
-
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
113234
|
+
type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "FigmaComponent" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
113042
113235
|
name: string;
|
|
113043
113236
|
options?: Record<string, any> | undefined;
|
|
113044
113237
|
description?: string | undefined;
|
|
@@ -113077,7 +113270,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
113077
113270
|
};
|
|
113078
113271
|
category: "Other" | "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data";
|
|
113079
113272
|
behavior: {
|
|
113080
|
-
dataType: "Component" | "Token" | "FigmaNode" | "Asset" | "Item";
|
|
113273
|
+
dataType: "Component" | "Token" | "FigmaComponent" | "FigmaNode" | "Asset" | "Item";
|
|
113081
113274
|
items?: {
|
|
113082
113275
|
numberOfItems: number;
|
|
113083
113276
|
allowLinks: boolean;
|
|
@@ -118957,4 +119150,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118957
119150
|
}>;
|
|
118958
119151
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
118959
119152
|
|
|
118960
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, zodCreateInputOmit, zodUpdateInputOmit };
|
|
119153
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, zodCreateInputOmit, zodUpdateInputOmit };
|