@supernova-studio/model 0.52.6 → 0.52.8
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 +48 -26
- package/dist/index.d.ts +48 -26
- package/dist/index.js +14 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/documentation/block-definitions/item.ts +9 -0
- package/src/dsm/elements/data/documentation-block-v2.ts +5 -0
package/dist/index.d.mts
CHANGED
|
@@ -31552,20 +31552,20 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
31552
31552
|
properties: z.ZodArray<z.ZodObject<{
|
|
31553
31553
|
id: z.ZodString;
|
|
31554
31554
|
name: z.ZodString;
|
|
31555
|
-
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"]>;
|
|
31555
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
31556
31556
|
description: z.ZodOptional<z.ZodString>;
|
|
31557
31557
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
31558
31558
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
31559
31559
|
}, "strip", z.ZodTypeAny, {
|
|
31560
31560
|
id: string;
|
|
31561
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31561
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31562
31562
|
name: string;
|
|
31563
31563
|
options?: Record<string, any> | undefined;
|
|
31564
31564
|
description?: string | undefined;
|
|
31565
31565
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
31566
31566
|
}, {
|
|
31567
31567
|
id: string;
|
|
31568
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31568
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31569
31569
|
name: string;
|
|
31570
31570
|
options?: Record<string, any> | undefined;
|
|
31571
31571
|
description?: string | undefined;
|
|
@@ -31661,7 +31661,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
31661
31661
|
}, "strip", z.ZodTypeAny, {
|
|
31662
31662
|
properties: {
|
|
31663
31663
|
id: string;
|
|
31664
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31664
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31665
31665
|
name: string;
|
|
31666
31666
|
options?: Record<string, any> | undefined;
|
|
31667
31667
|
description?: string | undefined;
|
|
@@ -31700,7 +31700,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
31700
31700
|
}, {
|
|
31701
31701
|
properties: {
|
|
31702
31702
|
id: string;
|
|
31703
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31703
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31704
31704
|
name: string;
|
|
31705
31705
|
options?: Record<string, any> | undefined;
|
|
31706
31706
|
description?: string | undefined;
|
|
@@ -31834,7 +31834,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
31834
31834
|
item: {
|
|
31835
31835
|
properties: {
|
|
31836
31836
|
id: string;
|
|
31837
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31837
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31838
31838
|
name: string;
|
|
31839
31839
|
options?: Record<string, any> | undefined;
|
|
31840
31840
|
description?: string | undefined;
|
|
@@ -31907,7 +31907,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
31907
31907
|
item: {
|
|
31908
31908
|
properties: {
|
|
31909
31909
|
id: string;
|
|
31910
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31910
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
31911
31911
|
name: string;
|
|
31912
31912
|
options?: Record<string, any> | undefined;
|
|
31913
31913
|
description?: string | undefined;
|
|
@@ -31975,9 +31975,10 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
31975
31975
|
}>;
|
|
31976
31976
|
type PageBlockDefinition = z.infer<typeof PageBlockDefinition>;
|
|
31977
31977
|
|
|
31978
|
+
declare const PageBlockDefinitionRichTextEditorPropertyStyle: z.ZodEnum<["OL", "UL", "Bold", "Italic", "Link", "Strikethrough", "InlineCode"]>;
|
|
31978
31979
|
declare const PageBlockDefinitionSingleSelectPropertyColor: z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>;
|
|
31979
31980
|
declare const IconSet: z.ZodEnum<["CheckCircle", "CrossCircle", "Alert"]>;
|
|
31980
|
-
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"]>;
|
|
31981
|
+
declare const PageBlockDefinitionPropertyType: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
31981
31982
|
type PageBlockDefinitionPropertyType = z.infer<typeof PageBlockDefinitionPropertyType>;
|
|
31982
31983
|
declare const PageBlockDefinitionRichTextPropertyStyle: z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Quote", "Callout", "Default"]>;
|
|
31983
31984
|
type PageBlockDefinitionRichTextPropertyStyle = z.infer<typeof PageBlockDefinitionRichTextPropertyStyle>;
|
|
@@ -32035,6 +32036,17 @@ declare const PageBlockDefinitionMutiRichTextOptions: z.ZodObject<{
|
|
|
32035
32036
|
multiRichTextStyle?: "Default" | "OL" | "UL" | undefined;
|
|
32036
32037
|
}>;
|
|
32037
32038
|
type PageBlockDefinitionMutiRichTextOptions = z.infer<typeof PageBlockDefinitionMutiRichTextOptions>;
|
|
32039
|
+
declare const PageBlockDefinitionRichTextEditorOptions: z.ZodObject<{
|
|
32040
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
32041
|
+
allowedInlineStyles: z.ZodOptional<z.ZodArray<z.ZodEnum<["OL", "UL", "Bold", "Italic", "Link", "Strikethrough", "InlineCode"]>, "many">>;
|
|
32042
|
+
}, "strip", z.ZodTypeAny, {
|
|
32043
|
+
placeholder?: string | undefined;
|
|
32044
|
+
allowedInlineStyles?: ("Link" | "Bold" | "Italic" | "Strikethrough" | "OL" | "UL" | "InlineCode")[] | undefined;
|
|
32045
|
+
}, {
|
|
32046
|
+
placeholder?: string | undefined;
|
|
32047
|
+
allowedInlineStyles?: ("Link" | "Bold" | "Italic" | "Strikethrough" | "OL" | "UL" | "InlineCode")[] | undefined;
|
|
32048
|
+
}>;
|
|
32049
|
+
type PageBlockDefinitionRichTextEditorOptions = z.infer<typeof PageBlockDefinitionRichTextEditorOptions>;
|
|
32038
32050
|
declare const PageBlockDefinitionTextOptions: z.ZodObject<{
|
|
32039
32051
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
32040
32052
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
@@ -32161,20 +32173,20 @@ type PageBlockDefinitionComponentOptions = z.infer<typeof PageBlockDefinitionCom
|
|
|
32161
32173
|
declare const PageBlockDefinitionProperty: z.ZodObject<{
|
|
32162
32174
|
id: z.ZodString;
|
|
32163
32175
|
name: z.ZodString;
|
|
32164
|
-
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"]>;
|
|
32176
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
32165
32177
|
description: z.ZodOptional<z.ZodString>;
|
|
32166
32178
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
32167
32179
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
32168
32180
|
}, "strip", z.ZodTypeAny, {
|
|
32169
32181
|
id: string;
|
|
32170
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32182
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32171
32183
|
name: string;
|
|
32172
32184
|
options?: Record<string, any> | undefined;
|
|
32173
32185
|
description?: string | undefined;
|
|
32174
32186
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
32175
32187
|
}, {
|
|
32176
32188
|
id: string;
|
|
32177
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32189
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32178
32190
|
name: string;
|
|
32179
32191
|
options?: Record<string, any> | undefined;
|
|
32180
32192
|
description?: string | undefined;
|
|
@@ -32185,20 +32197,20 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
32185
32197
|
properties: z.ZodArray<z.ZodObject<{
|
|
32186
32198
|
id: z.ZodString;
|
|
32187
32199
|
name: z.ZodString;
|
|
32188
|
-
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"]>;
|
|
32200
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
32189
32201
|
description: z.ZodOptional<z.ZodString>;
|
|
32190
32202
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
32191
32203
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
32192
32204
|
}, "strip", z.ZodTypeAny, {
|
|
32193
32205
|
id: string;
|
|
32194
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32206
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32195
32207
|
name: string;
|
|
32196
32208
|
options?: Record<string, any> | undefined;
|
|
32197
32209
|
description?: string | undefined;
|
|
32198
32210
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
32199
32211
|
}, {
|
|
32200
32212
|
id: string;
|
|
32201
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32213
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32202
32214
|
name: string;
|
|
32203
32215
|
options?: Record<string, any> | undefined;
|
|
32204
32216
|
description?: string | undefined;
|
|
@@ -32294,7 +32306,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
32294
32306
|
}, "strip", z.ZodTypeAny, {
|
|
32295
32307
|
properties: {
|
|
32296
32308
|
id: string;
|
|
32297
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32309
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32298
32310
|
name: string;
|
|
32299
32311
|
options?: Record<string, any> | undefined;
|
|
32300
32312
|
description?: string | undefined;
|
|
@@ -32333,7 +32345,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
32333
32345
|
}, {
|
|
32334
32346
|
properties: {
|
|
32335
32347
|
id: string;
|
|
32336
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32348
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
32337
32349
|
name: string;
|
|
32338
32350
|
options?: Record<string, any> | undefined;
|
|
32339
32351
|
description?: string | undefined;
|
|
@@ -39292,6 +39304,13 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39292
39304
|
showComponentDescription?: boolean | undefined;
|
|
39293
39305
|
showPropertyList?: boolean | undefined;
|
|
39294
39306
|
}>;
|
|
39307
|
+
declare const PageBlockItemRichTextEditorValue: z.ZodObject<{
|
|
39308
|
+
value: z.ZodAny;
|
|
39309
|
+
}, "strip", z.ZodTypeAny, {
|
|
39310
|
+
value?: any;
|
|
39311
|
+
}, {
|
|
39312
|
+
value?: any;
|
|
39313
|
+
}>;
|
|
39295
39314
|
declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
39296
39315
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39297
39316
|
showSearch: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -39459,6 +39478,7 @@ declare const PageBlockItemColorValue: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
|
39459
39478
|
type PageBlockItemColorValue = z.infer<typeof PageBlockItemColorValue>;
|
|
39460
39479
|
declare const PageBlockItemComponentValue: z.ZodObject<{
|
|
39461
39480
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39481
|
+
selectedBrandId: z.ZodOptional<z.ZodString>;
|
|
39462
39482
|
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
39463
39483
|
entityId: z.ZodString;
|
|
39464
39484
|
entityType: z.ZodEnum<["Component", "ComponentGroup"]>;
|
|
@@ -39475,12 +39495,14 @@ declare const PageBlockItemComponentValue: z.ZodObject<{
|
|
|
39475
39495
|
entityType: "Component" | "ComponentGroup";
|
|
39476
39496
|
}[];
|
|
39477
39497
|
selectedPropertyIds?: string[] | undefined;
|
|
39498
|
+
selectedBrandId?: string | undefined;
|
|
39478
39499
|
}, {
|
|
39479
39500
|
value?: {
|
|
39480
39501
|
entityId: string;
|
|
39481
39502
|
entityType: "Component" | "ComponentGroup";
|
|
39482
39503
|
}[] | undefined;
|
|
39483
39504
|
selectedPropertyIds?: string[] | undefined;
|
|
39505
|
+
selectedBrandId?: string | undefined;
|
|
39484
39506
|
}>;
|
|
39485
39507
|
type PageBlockItemComponentValue = z.infer<typeof PageBlockItemComponentValue>;
|
|
39486
39508
|
declare const PageBlockItemComponentPropertyValue: z.ZodObject<{
|
|
@@ -153761,20 +153783,20 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153761
153783
|
properties: z.ZodArray<z.ZodObject<{
|
|
153762
153784
|
id: z.ZodString;
|
|
153763
153785
|
name: z.ZodString;
|
|
153764
|
-
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"]>;
|
|
153786
|
+
type: z.ZodEnum<["RichText", "MultiRichText", "RichTextEditor", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color", "FigmaComponent"]>;
|
|
153765
153787
|
description: z.ZodOptional<z.ZodString>;
|
|
153766
153788
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
153767
153789
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
153768
153790
|
}, "strip", z.ZodTypeAny, {
|
|
153769
153791
|
id: string;
|
|
153770
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
153792
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
153771
153793
|
name: string;
|
|
153772
153794
|
options?: Record<string, any> | undefined;
|
|
153773
153795
|
description?: string | undefined;
|
|
153774
153796
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
153775
153797
|
}, {
|
|
153776
153798
|
id: string;
|
|
153777
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
153799
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
153778
153800
|
name: string;
|
|
153779
153801
|
options?: Record<string, any> | undefined;
|
|
153780
153802
|
description?: string | undefined;
|
|
@@ -153870,7 +153892,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153870
153892
|
}, "strip", z.ZodTypeAny, {
|
|
153871
153893
|
properties: {
|
|
153872
153894
|
id: string;
|
|
153873
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
153895
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
153874
153896
|
name: string;
|
|
153875
153897
|
options?: Record<string, any> | undefined;
|
|
153876
153898
|
description?: string | undefined;
|
|
@@ -153909,7 +153931,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153909
153931
|
}, {
|
|
153910
153932
|
properties: {
|
|
153911
153933
|
id: string;
|
|
153912
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
153934
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
153913
153935
|
name: string;
|
|
153914
153936
|
options?: Record<string, any> | undefined;
|
|
153915
153937
|
description?: string | undefined;
|
|
@@ -154043,7 +154065,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
154043
154065
|
item: {
|
|
154044
154066
|
properties: {
|
|
154045
154067
|
id: string;
|
|
154046
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
154068
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
154047
154069
|
name: string;
|
|
154048
154070
|
options?: Record<string, any> | undefined;
|
|
154049
154071
|
description?: string | undefined;
|
|
@@ -154116,7 +154138,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
154116
154138
|
item: {
|
|
154117
154139
|
properties: {
|
|
154118
154140
|
id: string;
|
|
154119
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
154141
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
154120
154142
|
name: string;
|
|
154121
154143
|
options?: Record<string, any> | undefined;
|
|
154122
154144
|
description?: string | undefined;
|
|
@@ -154383,7 +154405,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
154383
154405
|
item: {
|
|
154384
154406
|
properties: {
|
|
154385
154407
|
id: string;
|
|
154386
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
154408
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
154387
154409
|
name: string;
|
|
154388
154410
|
options?: Record<string, any> | undefined;
|
|
154389
154411
|
description?: string | undefined;
|
|
@@ -155086,7 +155108,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
155086
155108
|
item: {
|
|
155087
155109
|
properties: {
|
|
155088
155110
|
id: string;
|
|
155089
|
-
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
155111
|
+
type: "Image" | "Text" | "Number" | "Boolean" | "URL" | "Token" | "Component" | "FigmaComponent" | "Color" | "Code" | "Divider" | "Table" | "Markdown" | "FigmaNode" | "Asset" | "RichText" | "MultiRichText" | "RichTextEditor" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
|
|
155090
155112
|
name: string;
|
|
155091
155113
|
options?: Record<string, any> | undefined;
|
|
155092
155114
|
description?: string | undefined;
|
|
@@ -165562,4 +165584,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
165562
165584
|
}>;
|
|
165563
165585
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
165564
165586
|
|
|
165565
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BaseComponent, 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, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, 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, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, 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, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, 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, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, 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, IntegrationCredentialsState, 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, PageBlockGuideline, 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, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, 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 UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, 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, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, 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, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
165587
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BaseComponent, 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, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, 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, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, 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, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, 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, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, 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, IntegrationCredentialsState, 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, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorValue, 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, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, 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 UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, 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, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, 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, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|