@supernova-studio/model 0.53.4 → 0.53.6
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 +267 -266
- package/dist/index.d.ts +267 -266
- package/dist/index.js +27 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -4
- package/src/dsm/elements/data/documentation-block-v1.ts +4 -4
- package/src/utils/common.ts +22 -0
package/dist/index.d.mts
CHANGED
|
@@ -29479,6 +29479,7 @@ declare function buildConstantEnum<Inferred extends ArrayElementType<Passed>[],
|
|
|
29479
29479
|
declare function promiseWithTimeout<T>(timeoutMs: number, promise: () => Promise<T>): Promise<T>;
|
|
29480
29480
|
declare function sleep(ms: number): Promise<void>;
|
|
29481
29481
|
declare function uniqueBy<K, V>(items: V[], prop: (v: V) => K): V[];
|
|
29482
|
+
declare function areShallowObjectsEqual<T extends object>(lhs: T | undefined, rhs: T | undefined): boolean;
|
|
29482
29483
|
type Pagination = {
|
|
29483
29484
|
skip?: number;
|
|
29484
29485
|
take?: number;
|
|
@@ -36581,7 +36582,7 @@ declare const PageBlockTilesLayout: z.ZodEnum<["C8", "C7", "C6", "C5", "C4", "C3
|
|
|
36581
36582
|
type PageBlockTilesLayout = z.infer<typeof PageBlockTilesLayout>;
|
|
36582
36583
|
declare const PageBlockTextSpanAttributeType: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
36583
36584
|
type PageBlockTextSpanAttributeType = z.infer<typeof PageBlockTextSpanAttributeType>;
|
|
36584
|
-
declare const PageBlockTypeV1: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell", "Guidelines"]>;
|
|
36585
|
+
declare const PageBlockTypeV1: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell", "Guidelines", "Guideline"]>;
|
|
36585
36586
|
type PageBlockTypeV1 = z.infer<typeof PageBlockTypeV1>;
|
|
36586
36587
|
declare const PageBlockTextSpanAttribute: z.ZodObject<{
|
|
36587
36588
|
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
|
|
@@ -37645,7 +37646,7 @@ declare const PageBlockCustomBlockPropertyImageValue: z.ZodObject<{
|
|
|
37645
37646
|
type PageBlockCustomBlockPropertyImageValue = z.infer<typeof PageBlockCustomBlockPropertyImageValue>;
|
|
37646
37647
|
declare const PageBlockBaseV1: z.ZodObject<{
|
|
37647
37648
|
persistentId: z.ZodString;
|
|
37648
|
-
type: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell", "Guidelines"]>;
|
|
37649
|
+
type: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell", "Guidelines", "Guideline"]>;
|
|
37649
37650
|
numberOfColumns: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
37650
37651
|
designObjectId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
37651
37652
|
designObjectIds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
|
|
@@ -38004,7 +38005,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38004
38005
|
title?: string | null | undefined;
|
|
38005
38006
|
} | null | undefined;
|
|
38006
38007
|
}[] | null | undefined>;
|
|
38007
|
-
|
|
38008
|
+
guideline: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
38008
38009
|
type: string;
|
|
38009
38010
|
description?: string | undefined;
|
|
38010
38011
|
asset?: {
|
|
@@ -38036,7 +38037,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38036
38037
|
imageAlt?: string | undefined;
|
|
38037
38038
|
imageCaption?: string | undefined;
|
|
38038
38039
|
imageAlignment?: NonNullable<"Center" | "Left" | "Stretch" | "Right"> | undefined;
|
|
38039
|
-
}
|
|
38040
|
+
}, z.ZodTypeDef, {
|
|
38040
38041
|
type: string;
|
|
38041
38042
|
description?: string | null | undefined;
|
|
38042
38043
|
asset?: {
|
|
@@ -38068,7 +38069,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38068
38069
|
imageAlt?: string | null | undefined;
|
|
38069
38070
|
imageCaption?: string | null | undefined;
|
|
38070
38071
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
38071
|
-
}
|
|
38072
|
+
}>>>, {
|
|
38072
38073
|
type: string;
|
|
38073
38074
|
description?: string | undefined;
|
|
38074
38075
|
asset?: {
|
|
@@ -38100,7 +38101,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38100
38101
|
imageAlt?: string | undefined;
|
|
38101
38102
|
imageCaption?: string | undefined;
|
|
38102
38103
|
imageAlignment?: NonNullable<"Center" | "Left" | "Stretch" | "Right"> | undefined;
|
|
38103
|
-
}
|
|
38104
|
+
} | undefined, {
|
|
38104
38105
|
type: string;
|
|
38105
38106
|
description?: string | null | undefined;
|
|
38106
38107
|
asset?: {
|
|
@@ -38132,7 +38133,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38132
38133
|
imageAlt?: string | null | undefined;
|
|
38133
38134
|
imageCaption?: string | null | undefined;
|
|
38134
38135
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
38135
|
-
}
|
|
38136
|
+
} | null | undefined>;
|
|
38136
38137
|
customBlockKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
38137
38138
|
customBlockProperties: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
38138
38139
|
key: string;
|
|
@@ -38413,7 +38414,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38413
38414
|
userMetadata: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
38414
38415
|
}, "strip", z.ZodTypeAny, {
|
|
38415
38416
|
persistentId: string;
|
|
38416
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
38417
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
38417
38418
|
url?: string | undefined;
|
|
38418
38419
|
tokenType?: NonNullable<"Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur"> | undefined;
|
|
38419
38420
|
asset?: {
|
|
@@ -38524,7 +38525,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38524
38525
|
title?: string | undefined;
|
|
38525
38526
|
} | undefined;
|
|
38526
38527
|
}[] | undefined;
|
|
38527
|
-
|
|
38528
|
+
guideline?: {
|
|
38528
38529
|
type: string;
|
|
38529
38530
|
description?: string | undefined;
|
|
38530
38531
|
asset?: {
|
|
@@ -38556,7 +38557,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38556
38557
|
imageAlt?: string | undefined;
|
|
38557
38558
|
imageCaption?: string | undefined;
|
|
38558
38559
|
imageAlignment?: NonNullable<"Center" | "Left" | "Stretch" | "Right"> | undefined;
|
|
38559
|
-
}
|
|
38560
|
+
} | undefined;
|
|
38560
38561
|
customBlockKey?: string | undefined;
|
|
38561
38562
|
customBlockProperties?: {
|
|
38562
38563
|
key: string;
|
|
@@ -38632,7 +38633,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38632
38633
|
userMetadata?: string | undefined;
|
|
38633
38634
|
}, {
|
|
38634
38635
|
persistentId: string;
|
|
38635
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
38636
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
38636
38637
|
url?: string | null | undefined;
|
|
38637
38638
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
38638
38639
|
asset?: {
|
|
@@ -38743,7 +38744,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38743
38744
|
title?: string | null | undefined;
|
|
38744
38745
|
} | null | undefined;
|
|
38745
38746
|
}[] | null | undefined;
|
|
38746
|
-
|
|
38747
|
+
guideline?: {
|
|
38747
38748
|
type: string;
|
|
38748
38749
|
description?: string | null | undefined;
|
|
38749
38750
|
asset?: {
|
|
@@ -38775,7 +38776,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38775
38776
|
imageAlt?: string | null | undefined;
|
|
38776
38777
|
imageCaption?: string | null | undefined;
|
|
38777
38778
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
38778
|
-
}
|
|
38779
|
+
} | null | undefined;
|
|
38779
38780
|
customBlockKey?: string | null | undefined;
|
|
38780
38781
|
customBlockProperties?: {
|
|
38781
38782
|
key: string;
|
|
@@ -42414,7 +42415,7 @@ type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
|
|
|
42414
42415
|
declare const DocumentationPageDataV1: z.ZodObject<{
|
|
42415
42416
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
42416
42417
|
persistentId: string;
|
|
42417
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
42418
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
42418
42419
|
url?: string | null | undefined;
|
|
42419
42420
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
42420
42421
|
asset?: {
|
|
@@ -42525,7 +42526,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
42525
42526
|
title?: string | null | undefined;
|
|
42526
42527
|
} | null | undefined;
|
|
42527
42528
|
}[] | null | undefined;
|
|
42528
|
-
|
|
42529
|
+
guideline?: {
|
|
42529
42530
|
type: string;
|
|
42530
42531
|
description?: string | null | undefined;
|
|
42531
42532
|
asset?: {
|
|
@@ -42557,7 +42558,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
42557
42558
|
imageAlt?: string | null | undefined;
|
|
42558
42559
|
imageCaption?: string | null | undefined;
|
|
42559
42560
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
42560
|
-
}
|
|
42561
|
+
} | null | undefined;
|
|
42561
42562
|
customBlockKey?: string | null | undefined;
|
|
42562
42563
|
customBlockProperties?: {
|
|
42563
42564
|
key: string;
|
|
@@ -42634,7 +42635,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
42634
42635
|
} & {
|
|
42635
42636
|
children: ({
|
|
42636
42637
|
persistentId: string;
|
|
42637
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
42638
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
42638
42639
|
url?: string | null | undefined;
|
|
42639
42640
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
42640
42641
|
asset?: {
|
|
@@ -42745,7 +42746,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
42745
42746
|
title?: string | null | undefined;
|
|
42746
42747
|
} | null | undefined;
|
|
42747
42748
|
}[] | null | undefined;
|
|
42748
|
-
|
|
42749
|
+
guideline?: {
|
|
42749
42750
|
type: string;
|
|
42750
42751
|
description?: string | null | undefined;
|
|
42751
42752
|
asset?: {
|
|
@@ -42777,7 +42778,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
42777
42778
|
imageAlt?: string | null | undefined;
|
|
42778
42779
|
imageCaption?: string | null | undefined;
|
|
42779
42780
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
42780
|
-
}
|
|
42781
|
+
} | null | undefined;
|
|
42781
42782
|
customBlockKey?: string | null | undefined;
|
|
42782
42783
|
customBlockProperties?: {
|
|
42783
42784
|
key: string;
|
|
@@ -43200,7 +43201,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43200
43201
|
}, {
|
|
43201
43202
|
blocks: ({
|
|
43202
43203
|
persistentId: string;
|
|
43203
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
43204
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
43204
43205
|
url?: string | null | undefined;
|
|
43205
43206
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
43206
43207
|
asset?: {
|
|
@@ -43311,7 +43312,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43311
43312
|
title?: string | null | undefined;
|
|
43312
43313
|
} | null | undefined;
|
|
43313
43314
|
}[] | null | undefined;
|
|
43314
|
-
|
|
43315
|
+
guideline?: {
|
|
43315
43316
|
type: string;
|
|
43316
43317
|
description?: string | null | undefined;
|
|
43317
43318
|
asset?: {
|
|
@@ -43343,7 +43344,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43343
43344
|
imageAlt?: string | null | undefined;
|
|
43344
43345
|
imageCaption?: string | null | undefined;
|
|
43345
43346
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
43346
|
-
}
|
|
43347
|
+
} | null | undefined;
|
|
43347
43348
|
customBlockKey?: string | null | undefined;
|
|
43348
43349
|
customBlockProperties?: {
|
|
43349
43350
|
key: string;
|
|
@@ -43420,7 +43421,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43420
43421
|
} & {
|
|
43421
43422
|
children: ({
|
|
43422
43423
|
persistentId: string;
|
|
43423
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
43424
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
43424
43425
|
url?: string | null | undefined;
|
|
43425
43426
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
43426
43427
|
asset?: {
|
|
@@ -43531,7 +43532,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43531
43532
|
title?: string | null | undefined;
|
|
43532
43533
|
} | null | undefined;
|
|
43533
43534
|
}[] | null | undefined;
|
|
43534
|
-
|
|
43535
|
+
guideline?: {
|
|
43535
43536
|
type: string;
|
|
43536
43537
|
description?: string | null | undefined;
|
|
43537
43538
|
asset?: {
|
|
@@ -43563,7 +43564,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43563
43564
|
imageAlt?: string | null | undefined;
|
|
43564
43565
|
imageCaption?: string | null | undefined;
|
|
43565
43566
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
43566
|
-
}
|
|
43567
|
+
} | null | undefined;
|
|
43567
43568
|
customBlockKey?: string | null | undefined;
|
|
43568
43569
|
customBlockProperties?: {
|
|
43569
43570
|
key: string;
|
|
@@ -50170,7 +50171,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50170
50171
|
data: z.ZodObject<{
|
|
50171
50172
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
50172
50173
|
persistentId: string;
|
|
50173
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
50174
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
50174
50175
|
url?: string | null | undefined;
|
|
50175
50176
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
50176
50177
|
asset?: {
|
|
@@ -50281,7 +50282,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50281
50282
|
title?: string | null | undefined;
|
|
50282
50283
|
} | null | undefined;
|
|
50283
50284
|
}[] | null | undefined;
|
|
50284
|
-
|
|
50285
|
+
guideline?: {
|
|
50285
50286
|
type: string;
|
|
50286
50287
|
description?: string | null | undefined;
|
|
50287
50288
|
asset?: {
|
|
@@ -50313,7 +50314,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50313
50314
|
imageAlt?: string | null | undefined;
|
|
50314
50315
|
imageCaption?: string | null | undefined;
|
|
50315
50316
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
50316
|
-
}
|
|
50317
|
+
} | null | undefined;
|
|
50317
50318
|
customBlockKey?: string | null | undefined;
|
|
50318
50319
|
customBlockProperties?: {
|
|
50319
50320
|
key: string;
|
|
@@ -50390,7 +50391,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50390
50391
|
} & {
|
|
50391
50392
|
children: ({
|
|
50392
50393
|
persistentId: string;
|
|
50393
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
50394
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
50394
50395
|
url?: string | null | undefined;
|
|
50395
50396
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
50396
50397
|
asset?: {
|
|
@@ -50501,7 +50502,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50501
50502
|
title?: string | null | undefined;
|
|
50502
50503
|
} | null | undefined;
|
|
50503
50504
|
}[] | null | undefined;
|
|
50504
|
-
|
|
50505
|
+
guideline?: {
|
|
50505
50506
|
type: string;
|
|
50506
50507
|
description?: string | null | undefined;
|
|
50507
50508
|
asset?: {
|
|
@@ -50533,7 +50534,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50533
50534
|
imageAlt?: string | null | undefined;
|
|
50534
50535
|
imageCaption?: string | null | undefined;
|
|
50535
50536
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
50536
|
-
}
|
|
50537
|
+
} | null | undefined;
|
|
50537
50538
|
customBlockKey?: string | null | undefined;
|
|
50538
50539
|
customBlockProperties?: {
|
|
50539
50540
|
key: string;
|
|
@@ -50956,7 +50957,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
50956
50957
|
}, {
|
|
50957
50958
|
blocks: ({
|
|
50958
50959
|
persistentId: string;
|
|
50959
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
50960
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
50960
50961
|
url?: string | null | undefined;
|
|
50961
50962
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
50962
50963
|
asset?: {
|
|
@@ -51067,7 +51068,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51067
51068
|
title?: string | null | undefined;
|
|
51068
51069
|
} | null | undefined;
|
|
51069
51070
|
}[] | null | undefined;
|
|
51070
|
-
|
|
51071
|
+
guideline?: {
|
|
51071
51072
|
type: string;
|
|
51072
51073
|
description?: string | null | undefined;
|
|
51073
51074
|
asset?: {
|
|
@@ -51099,7 +51100,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51099
51100
|
imageAlt?: string | null | undefined;
|
|
51100
51101
|
imageCaption?: string | null | undefined;
|
|
51101
51102
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
51102
|
-
}
|
|
51103
|
+
} | null | undefined;
|
|
51103
51104
|
customBlockKey?: string | null | undefined;
|
|
51104
51105
|
customBlockProperties?: {
|
|
51105
51106
|
key: string;
|
|
@@ -51176,7 +51177,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51176
51177
|
} & {
|
|
51177
51178
|
children: ({
|
|
51178
51179
|
persistentId: string;
|
|
51179
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
51180
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
51180
51181
|
url?: string | null | undefined;
|
|
51181
51182
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
51182
51183
|
asset?: {
|
|
@@ -51287,7 +51288,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51287
51288
|
title?: string | null | undefined;
|
|
51288
51289
|
} | null | undefined;
|
|
51289
51290
|
}[] | null | undefined;
|
|
51290
|
-
|
|
51291
|
+
guideline?: {
|
|
51291
51292
|
type: string;
|
|
51292
51293
|
description?: string | null | undefined;
|
|
51293
51294
|
asset?: {
|
|
@@ -51319,7 +51320,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51319
51320
|
imageAlt?: string | null | undefined;
|
|
51320
51321
|
imageCaption?: string | null | undefined;
|
|
51321
51322
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
51322
|
-
}
|
|
51323
|
+
} | null | undefined;
|
|
51323
51324
|
customBlockKey?: string | null | undefined;
|
|
51324
51325
|
customBlockProperties?: {
|
|
51325
51326
|
key: string;
|
|
@@ -51561,7 +51562,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51561
51562
|
data: {
|
|
51562
51563
|
blocks: ({
|
|
51563
51564
|
persistentId: string;
|
|
51564
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
51565
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
51565
51566
|
url?: string | null | undefined;
|
|
51566
51567
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
51567
51568
|
asset?: {
|
|
@@ -51672,7 +51673,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51672
51673
|
title?: string | null | undefined;
|
|
51673
51674
|
} | null | undefined;
|
|
51674
51675
|
}[] | null | undefined;
|
|
51675
|
-
|
|
51676
|
+
guideline?: {
|
|
51676
51677
|
type: string;
|
|
51677
51678
|
description?: string | null | undefined;
|
|
51678
51679
|
asset?: {
|
|
@@ -51704,7 +51705,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51704
51705
|
imageAlt?: string | null | undefined;
|
|
51705
51706
|
imageCaption?: string | null | undefined;
|
|
51706
51707
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
51707
|
-
}
|
|
51708
|
+
} | null | undefined;
|
|
51708
51709
|
customBlockKey?: string | null | undefined;
|
|
51709
51710
|
customBlockProperties?: {
|
|
51710
51711
|
key: string;
|
|
@@ -51781,7 +51782,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51781
51782
|
} & {
|
|
51782
51783
|
children: ({
|
|
51783
51784
|
persistentId: string;
|
|
51784
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
51785
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
51785
51786
|
url?: string | null | undefined;
|
|
51786
51787
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
51787
51788
|
asset?: {
|
|
@@ -51892,7 +51893,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51892
51893
|
title?: string | null | undefined;
|
|
51893
51894
|
} | null | undefined;
|
|
51894
51895
|
}[] | null | undefined;
|
|
51895
|
-
|
|
51896
|
+
guideline?: {
|
|
51896
51897
|
type: string;
|
|
51897
51898
|
description?: string | null | undefined;
|
|
51898
51899
|
asset?: {
|
|
@@ -51924,7 +51925,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51924
51925
|
imageAlt?: string | null | undefined;
|
|
51925
51926
|
imageCaption?: string | null | undefined;
|
|
51926
51927
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
51927
|
-
}
|
|
51928
|
+
} | null | undefined;
|
|
51928
51929
|
customBlockKey?: string | null | undefined;
|
|
51929
51930
|
customBlockProperties?: {
|
|
51930
51931
|
key: string;
|
|
@@ -53061,7 +53062,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53061
53062
|
}, {
|
|
53062
53063
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
53063
53064
|
persistentId: string;
|
|
53064
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
53065
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
53065
53066
|
url?: string | null | undefined;
|
|
53066
53067
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
53067
53068
|
asset?: {
|
|
@@ -53172,7 +53173,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53172
53173
|
title?: string | null | undefined;
|
|
53173
53174
|
} | null | undefined;
|
|
53174
53175
|
}[] | null | undefined;
|
|
53175
|
-
|
|
53176
|
+
guideline?: {
|
|
53176
53177
|
type: string;
|
|
53177
53178
|
description?: string | null | undefined;
|
|
53178
53179
|
asset?: {
|
|
@@ -53204,7 +53205,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53204
53205
|
imageAlt?: string | null | undefined;
|
|
53205
53206
|
imageCaption?: string | null | undefined;
|
|
53206
53207
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
53207
|
-
}
|
|
53208
|
+
} | null | undefined;
|
|
53208
53209
|
customBlockKey?: string | null | undefined;
|
|
53209
53210
|
customBlockProperties?: {
|
|
53210
53211
|
key: string;
|
|
@@ -53281,7 +53282,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53281
53282
|
} & {
|
|
53282
53283
|
children: ({
|
|
53283
53284
|
persistentId: string;
|
|
53284
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
53285
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
53285
53286
|
url?: string | null | undefined;
|
|
53286
53287
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
53287
53288
|
asset?: {
|
|
@@ -53392,7 +53393,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53392
53393
|
title?: string | null | undefined;
|
|
53393
53394
|
} | null | undefined;
|
|
53394
53395
|
}[] | null | undefined;
|
|
53395
|
-
|
|
53396
|
+
guideline?: {
|
|
53396
53397
|
type: string;
|
|
53397
53398
|
description?: string | null | undefined;
|
|
53398
53399
|
asset?: {
|
|
@@ -53424,7 +53425,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53424
53425
|
imageAlt?: string | null | undefined;
|
|
53425
53426
|
imageCaption?: string | null | undefined;
|
|
53426
53427
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
53427
|
-
}
|
|
53428
|
+
} | null | undefined;
|
|
53428
53429
|
customBlockKey?: string | null | undefined;
|
|
53429
53430
|
customBlockProperties?: {
|
|
53430
53431
|
key: string;
|
|
@@ -53569,7 +53570,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53569
53570
|
} | null | undefined;
|
|
53570
53571
|
oldBlocks?: ({
|
|
53571
53572
|
persistentId: string;
|
|
53572
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
53573
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
53573
53574
|
url?: string | null | undefined;
|
|
53574
53575
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
53575
53576
|
asset?: {
|
|
@@ -53680,7 +53681,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53680
53681
|
title?: string | null | undefined;
|
|
53681
53682
|
} | null | undefined;
|
|
53682
53683
|
}[] | null | undefined;
|
|
53683
|
-
|
|
53684
|
+
guideline?: {
|
|
53684
53685
|
type: string;
|
|
53685
53686
|
description?: string | null | undefined;
|
|
53686
53687
|
asset?: {
|
|
@@ -53712,7 +53713,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53712
53713
|
imageAlt?: string | null | undefined;
|
|
53713
53714
|
imageCaption?: string | null | undefined;
|
|
53714
53715
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
53715
|
-
}
|
|
53716
|
+
} | null | undefined;
|
|
53716
53717
|
customBlockKey?: string | null | undefined;
|
|
53717
53718
|
customBlockProperties?: {
|
|
53718
53719
|
key: string;
|
|
@@ -53789,7 +53790,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53789
53790
|
} & {
|
|
53790
53791
|
children: ({
|
|
53791
53792
|
persistentId: string;
|
|
53792
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
53793
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
53793
53794
|
url?: string | null | undefined;
|
|
53794
53795
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
53795
53796
|
asset?: {
|
|
@@ -53900,7 +53901,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53900
53901
|
title?: string | null | undefined;
|
|
53901
53902
|
} | null | undefined;
|
|
53902
53903
|
}[] | null | undefined;
|
|
53903
|
-
|
|
53904
|
+
guideline?: {
|
|
53904
53905
|
type: string;
|
|
53905
53906
|
description?: string | null | undefined;
|
|
53906
53907
|
asset?: {
|
|
@@ -53932,7 +53933,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53932
53933
|
imageAlt?: string | null | undefined;
|
|
53933
53934
|
imageCaption?: string | null | undefined;
|
|
53934
53935
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
53935
|
-
}
|
|
53936
|
+
} | null | undefined;
|
|
53936
53937
|
customBlockKey?: string | null | undefined;
|
|
53937
53938
|
customBlockProperties?: {
|
|
53938
53939
|
key: string;
|
|
@@ -54100,7 +54101,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54100
54101
|
} | null | undefined;
|
|
54101
54102
|
oldBlocks?: ({
|
|
54102
54103
|
persistentId: string;
|
|
54103
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
54104
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
54104
54105
|
url?: string | null | undefined;
|
|
54105
54106
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
54106
54107
|
asset?: {
|
|
@@ -54211,7 +54212,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54211
54212
|
title?: string | null | undefined;
|
|
54212
54213
|
} | null | undefined;
|
|
54213
54214
|
}[] | null | undefined;
|
|
54214
|
-
|
|
54215
|
+
guideline?: {
|
|
54215
54216
|
type: string;
|
|
54216
54217
|
description?: string | null | undefined;
|
|
54217
54218
|
asset?: {
|
|
@@ -54243,7 +54244,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54243
54244
|
imageAlt?: string | null | undefined;
|
|
54244
54245
|
imageCaption?: string | null | undefined;
|
|
54245
54246
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
54246
|
-
}
|
|
54247
|
+
} | null | undefined;
|
|
54247
54248
|
customBlockKey?: string | null | undefined;
|
|
54248
54249
|
customBlockProperties?: {
|
|
54249
54250
|
key: string;
|
|
@@ -54320,7 +54321,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54320
54321
|
} & {
|
|
54321
54322
|
children: ({
|
|
54322
54323
|
persistentId: string;
|
|
54323
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
54324
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
54324
54325
|
url?: string | null | undefined;
|
|
54325
54326
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
54326
54327
|
asset?: {
|
|
@@ -54431,7 +54432,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54431
54432
|
title?: string | null | undefined;
|
|
54432
54433
|
} | null | undefined;
|
|
54433
54434
|
}[] | null | undefined;
|
|
54434
|
-
|
|
54435
|
+
guideline?: {
|
|
54435
54436
|
type: string;
|
|
54436
54437
|
description?: string | null | undefined;
|
|
54437
54438
|
asset?: {
|
|
@@ -54463,7 +54464,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54463
54464
|
imageAlt?: string | null | undefined;
|
|
54464
54465
|
imageCaption?: string | null | undefined;
|
|
54465
54466
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
54466
|
-
}
|
|
54467
|
+
} | null | undefined;
|
|
54467
54468
|
customBlockKey?: string | null | undefined;
|
|
54468
54469
|
customBlockProperties?: {
|
|
54469
54470
|
key: string;
|
|
@@ -73004,7 +73005,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73004
73005
|
}, {
|
|
73005
73006
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
73006
73007
|
persistentId: string;
|
|
73007
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
73008
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
73008
73009
|
url?: string | null | undefined;
|
|
73009
73010
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
73010
73011
|
asset?: {
|
|
@@ -73115,7 +73116,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73115
73116
|
title?: string | null | undefined;
|
|
73116
73117
|
} | null | undefined;
|
|
73117
73118
|
}[] | null | undefined;
|
|
73118
|
-
|
|
73119
|
+
guideline?: {
|
|
73119
73120
|
type: string;
|
|
73120
73121
|
description?: string | null | undefined;
|
|
73121
73122
|
asset?: {
|
|
@@ -73147,7 +73148,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73147
73148
|
imageAlt?: string | null | undefined;
|
|
73148
73149
|
imageCaption?: string | null | undefined;
|
|
73149
73150
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
73150
|
-
}
|
|
73151
|
+
} | null | undefined;
|
|
73151
73152
|
customBlockKey?: string | null | undefined;
|
|
73152
73153
|
customBlockProperties?: {
|
|
73153
73154
|
key: string;
|
|
@@ -73224,7 +73225,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73224
73225
|
} & {
|
|
73225
73226
|
children: ({
|
|
73226
73227
|
persistentId: string;
|
|
73227
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
73228
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
73228
73229
|
url?: string | null | undefined;
|
|
73229
73230
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
73230
73231
|
asset?: {
|
|
@@ -73335,7 +73336,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73335
73336
|
title?: string | null | undefined;
|
|
73336
73337
|
} | null | undefined;
|
|
73337
73338
|
}[] | null | undefined;
|
|
73338
|
-
|
|
73339
|
+
guideline?: {
|
|
73339
73340
|
type: string;
|
|
73340
73341
|
description?: string | null | undefined;
|
|
73341
73342
|
asset?: {
|
|
@@ -73367,7 +73368,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73367
73368
|
imageAlt?: string | null | undefined;
|
|
73368
73369
|
imageCaption?: string | null | undefined;
|
|
73369
73370
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
73370
|
-
}
|
|
73371
|
+
} | null | undefined;
|
|
73371
73372
|
customBlockKey?: string | null | undefined;
|
|
73372
73373
|
customBlockProperties?: {
|
|
73373
73374
|
key: string;
|
|
@@ -73512,7 +73513,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73512
73513
|
} | null | undefined;
|
|
73513
73514
|
oldBlocks?: ({
|
|
73514
73515
|
persistentId: string;
|
|
73515
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
73516
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
73516
73517
|
url?: string | null | undefined;
|
|
73517
73518
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
73518
73519
|
asset?: {
|
|
@@ -73623,7 +73624,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73623
73624
|
title?: string | null | undefined;
|
|
73624
73625
|
} | null | undefined;
|
|
73625
73626
|
}[] | null | undefined;
|
|
73626
|
-
|
|
73627
|
+
guideline?: {
|
|
73627
73628
|
type: string;
|
|
73628
73629
|
description?: string | null | undefined;
|
|
73629
73630
|
asset?: {
|
|
@@ -73655,7 +73656,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73655
73656
|
imageAlt?: string | null | undefined;
|
|
73656
73657
|
imageCaption?: string | null | undefined;
|
|
73657
73658
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
73658
|
-
}
|
|
73659
|
+
} | null | undefined;
|
|
73659
73660
|
customBlockKey?: string | null | undefined;
|
|
73660
73661
|
customBlockProperties?: {
|
|
73661
73662
|
key: string;
|
|
@@ -73732,7 +73733,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73732
73733
|
} & {
|
|
73733
73734
|
children: ({
|
|
73734
73735
|
persistentId: string;
|
|
73735
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
73736
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
73736
73737
|
url?: string | null | undefined;
|
|
73737
73738
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
73738
73739
|
asset?: {
|
|
@@ -73843,7 +73844,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73843
73844
|
title?: string | null | undefined;
|
|
73844
73845
|
} | null | undefined;
|
|
73845
73846
|
}[] | null | undefined;
|
|
73846
|
-
|
|
73847
|
+
guideline?: {
|
|
73847
73848
|
type: string;
|
|
73848
73849
|
description?: string | null | undefined;
|
|
73849
73850
|
asset?: {
|
|
@@ -73875,7 +73876,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
73875
73876
|
imageAlt?: string | null | undefined;
|
|
73876
73877
|
imageCaption?: string | null | undefined;
|
|
73877
73878
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
73878
|
-
}
|
|
73879
|
+
} | null | undefined;
|
|
73879
73880
|
customBlockKey?: string | null | undefined;
|
|
73880
73881
|
customBlockProperties?: {
|
|
73881
73882
|
key: string;
|
|
@@ -74043,7 +74044,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74043
74044
|
} | null | undefined;
|
|
74044
74045
|
oldBlocks?: ({
|
|
74045
74046
|
persistentId: string;
|
|
74046
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
74047
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
74047
74048
|
url?: string | null | undefined;
|
|
74048
74049
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
74049
74050
|
asset?: {
|
|
@@ -74154,7 +74155,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74154
74155
|
title?: string | null | undefined;
|
|
74155
74156
|
} | null | undefined;
|
|
74156
74157
|
}[] | null | undefined;
|
|
74157
|
-
|
|
74158
|
+
guideline?: {
|
|
74158
74159
|
type: string;
|
|
74159
74160
|
description?: string | null | undefined;
|
|
74160
74161
|
asset?: {
|
|
@@ -74186,7 +74187,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74186
74187
|
imageAlt?: string | null | undefined;
|
|
74187
74188
|
imageCaption?: string | null | undefined;
|
|
74188
74189
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
74189
|
-
}
|
|
74190
|
+
} | null | undefined;
|
|
74190
74191
|
customBlockKey?: string | null | undefined;
|
|
74191
74192
|
customBlockProperties?: {
|
|
74192
74193
|
key: string;
|
|
@@ -74263,7 +74264,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74263
74264
|
} & {
|
|
74264
74265
|
children: ({
|
|
74265
74266
|
persistentId: string;
|
|
74266
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
74267
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
74267
74268
|
url?: string | null | undefined;
|
|
74268
74269
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
74269
74270
|
asset?: {
|
|
@@ -74374,7 +74375,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74374
74375
|
title?: string | null | undefined;
|
|
74375
74376
|
} | null | undefined;
|
|
74376
74377
|
}[] | null | undefined;
|
|
74377
|
-
|
|
74378
|
+
guideline?: {
|
|
74378
74379
|
type: string;
|
|
74379
74380
|
description?: string | null | undefined;
|
|
74380
74381
|
asset?: {
|
|
@@ -74406,7 +74407,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74406
74407
|
imageAlt?: string | null | undefined;
|
|
74407
74408
|
imageCaption?: string | null | undefined;
|
|
74408
74409
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
74409
|
-
}
|
|
74410
|
+
} | null | undefined;
|
|
74410
74411
|
customBlockKey?: string | null | undefined;
|
|
74411
74412
|
customBlockProperties?: {
|
|
74412
74413
|
key: string;
|
|
@@ -74603,7 +74604,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74603
74604
|
} | null | undefined;
|
|
74604
74605
|
oldBlocks?: ({
|
|
74605
74606
|
persistentId: string;
|
|
74606
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
74607
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
74607
74608
|
url?: string | null | undefined;
|
|
74608
74609
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
74609
74610
|
asset?: {
|
|
@@ -74714,7 +74715,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74714
74715
|
title?: string | null | undefined;
|
|
74715
74716
|
} | null | undefined;
|
|
74716
74717
|
}[] | null | undefined;
|
|
74717
|
-
|
|
74718
|
+
guideline?: {
|
|
74718
74719
|
type: string;
|
|
74719
74720
|
description?: string | null | undefined;
|
|
74720
74721
|
asset?: {
|
|
@@ -74746,7 +74747,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74746
74747
|
imageAlt?: string | null | undefined;
|
|
74747
74748
|
imageCaption?: string | null | undefined;
|
|
74748
74749
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
74749
|
-
}
|
|
74750
|
+
} | null | undefined;
|
|
74750
74751
|
customBlockKey?: string | null | undefined;
|
|
74751
74752
|
customBlockProperties?: {
|
|
74752
74753
|
key: string;
|
|
@@ -74823,7 +74824,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74823
74824
|
} & {
|
|
74824
74825
|
children: ({
|
|
74825
74826
|
persistentId: string;
|
|
74826
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
74827
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
74827
74828
|
url?: string | null | undefined;
|
|
74828
74829
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
74829
74830
|
asset?: {
|
|
@@ -74934,7 +74935,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74934
74935
|
title?: string | null | undefined;
|
|
74935
74936
|
} | null | undefined;
|
|
74936
74937
|
}[] | null | undefined;
|
|
74937
|
-
|
|
74938
|
+
guideline?: {
|
|
74938
74939
|
type: string;
|
|
74939
74940
|
description?: string | null | undefined;
|
|
74940
74941
|
asset?: {
|
|
@@ -74966,7 +74967,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74966
74967
|
imageAlt?: string | null | undefined;
|
|
74967
74968
|
imageCaption?: string | null | undefined;
|
|
74968
74969
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
74969
|
-
}
|
|
74970
|
+
} | null | undefined;
|
|
74970
74971
|
customBlockKey?: string | null | undefined;
|
|
74971
74972
|
customBlockProperties?: {
|
|
74972
74973
|
key: string;
|
|
@@ -136237,7 +136238,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136237
136238
|
}, {
|
|
136238
136239
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
136239
136240
|
persistentId: string;
|
|
136240
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
136241
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
136241
136242
|
url?: string | null | undefined;
|
|
136242
136243
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
136243
136244
|
asset?: {
|
|
@@ -136348,7 +136349,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136348
136349
|
title?: string | null | undefined;
|
|
136349
136350
|
} | null | undefined;
|
|
136350
136351
|
}[] | null | undefined;
|
|
136351
|
-
|
|
136352
|
+
guideline?: {
|
|
136352
136353
|
type: string;
|
|
136353
136354
|
description?: string | null | undefined;
|
|
136354
136355
|
asset?: {
|
|
@@ -136380,7 +136381,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136380
136381
|
imageAlt?: string | null | undefined;
|
|
136381
136382
|
imageCaption?: string | null | undefined;
|
|
136382
136383
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
136383
|
-
}
|
|
136384
|
+
} | null | undefined;
|
|
136384
136385
|
customBlockKey?: string | null | undefined;
|
|
136385
136386
|
customBlockProperties?: {
|
|
136386
136387
|
key: string;
|
|
@@ -136457,7 +136458,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136457
136458
|
} & {
|
|
136458
136459
|
children: ({
|
|
136459
136460
|
persistentId: string;
|
|
136460
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
136461
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
136461
136462
|
url?: string | null | undefined;
|
|
136462
136463
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
136463
136464
|
asset?: {
|
|
@@ -136568,7 +136569,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136568
136569
|
title?: string | null | undefined;
|
|
136569
136570
|
} | null | undefined;
|
|
136570
136571
|
}[] | null | undefined;
|
|
136571
|
-
|
|
136572
|
+
guideline?: {
|
|
136572
136573
|
type: string;
|
|
136573
136574
|
description?: string | null | undefined;
|
|
136574
136575
|
asset?: {
|
|
@@ -136600,7 +136601,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136600
136601
|
imageAlt?: string | null | undefined;
|
|
136601
136602
|
imageCaption?: string | null | undefined;
|
|
136602
136603
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
136603
|
-
}
|
|
136604
|
+
} | null | undefined;
|
|
136604
136605
|
customBlockKey?: string | null | undefined;
|
|
136605
136606
|
customBlockProperties?: {
|
|
136606
136607
|
key: string;
|
|
@@ -136745,7 +136746,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136745
136746
|
} | null | undefined;
|
|
136746
136747
|
oldBlocks?: ({
|
|
136747
136748
|
persistentId: string;
|
|
136748
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
136749
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
136749
136750
|
url?: string | null | undefined;
|
|
136750
136751
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
136751
136752
|
asset?: {
|
|
@@ -136856,7 +136857,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136856
136857
|
title?: string | null | undefined;
|
|
136857
136858
|
} | null | undefined;
|
|
136858
136859
|
}[] | null | undefined;
|
|
136859
|
-
|
|
136860
|
+
guideline?: {
|
|
136860
136861
|
type: string;
|
|
136861
136862
|
description?: string | null | undefined;
|
|
136862
136863
|
asset?: {
|
|
@@ -136888,7 +136889,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136888
136889
|
imageAlt?: string | null | undefined;
|
|
136889
136890
|
imageCaption?: string | null | undefined;
|
|
136890
136891
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
136891
|
-
}
|
|
136892
|
+
} | null | undefined;
|
|
136892
136893
|
customBlockKey?: string | null | undefined;
|
|
136893
136894
|
customBlockProperties?: {
|
|
136894
136895
|
key: string;
|
|
@@ -136965,7 +136966,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
136965
136966
|
} & {
|
|
136966
136967
|
children: ({
|
|
136967
136968
|
persistentId: string;
|
|
136968
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
136969
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
136969
136970
|
url?: string | null | undefined;
|
|
136970
136971
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
136971
136972
|
asset?: {
|
|
@@ -137076,7 +137077,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137076
137077
|
title?: string | null | undefined;
|
|
137077
137078
|
} | null | undefined;
|
|
137078
137079
|
}[] | null | undefined;
|
|
137079
|
-
|
|
137080
|
+
guideline?: {
|
|
137080
137081
|
type: string;
|
|
137081
137082
|
description?: string | null | undefined;
|
|
137082
137083
|
asset?: {
|
|
@@ -137108,7 +137109,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137108
137109
|
imageAlt?: string | null | undefined;
|
|
137109
137110
|
imageCaption?: string | null | undefined;
|
|
137110
137111
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
137111
|
-
}
|
|
137112
|
+
} | null | undefined;
|
|
137112
137113
|
customBlockKey?: string | null | undefined;
|
|
137113
137114
|
customBlockProperties?: {
|
|
137114
137115
|
key: string;
|
|
@@ -137276,7 +137277,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137276
137277
|
} | null | undefined;
|
|
137277
137278
|
oldBlocks?: ({
|
|
137278
137279
|
persistentId: string;
|
|
137279
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
137280
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
137280
137281
|
url?: string | null | undefined;
|
|
137281
137282
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
137282
137283
|
asset?: {
|
|
@@ -137387,7 +137388,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137387
137388
|
title?: string | null | undefined;
|
|
137388
137389
|
} | null | undefined;
|
|
137389
137390
|
}[] | null | undefined;
|
|
137390
|
-
|
|
137391
|
+
guideline?: {
|
|
137391
137392
|
type: string;
|
|
137392
137393
|
description?: string | null | undefined;
|
|
137393
137394
|
asset?: {
|
|
@@ -137419,7 +137420,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137419
137420
|
imageAlt?: string | null | undefined;
|
|
137420
137421
|
imageCaption?: string | null | undefined;
|
|
137421
137422
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
137422
|
-
}
|
|
137423
|
+
} | null | undefined;
|
|
137423
137424
|
customBlockKey?: string | null | undefined;
|
|
137424
137425
|
customBlockProperties?: {
|
|
137425
137426
|
key: string;
|
|
@@ -137496,7 +137497,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137496
137497
|
} & {
|
|
137497
137498
|
children: ({
|
|
137498
137499
|
persistentId: string;
|
|
137499
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
137500
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
137500
137501
|
url?: string | null | undefined;
|
|
137501
137502
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
137502
137503
|
asset?: {
|
|
@@ -137607,7 +137608,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137607
137608
|
title?: string | null | undefined;
|
|
137608
137609
|
} | null | undefined;
|
|
137609
137610
|
}[] | null | undefined;
|
|
137610
|
-
|
|
137611
|
+
guideline?: {
|
|
137611
137612
|
type: string;
|
|
137612
137613
|
description?: string | null | undefined;
|
|
137613
137614
|
asset?: {
|
|
@@ -137639,7 +137640,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
137639
137640
|
imageAlt?: string | null | undefined;
|
|
137640
137641
|
imageCaption?: string | null | undefined;
|
|
137641
137642
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
137642
|
-
}
|
|
137643
|
+
} | null | undefined;
|
|
137643
137644
|
customBlockKey?: string | null | undefined;
|
|
137644
137645
|
customBlockProperties?: {
|
|
137645
137646
|
key: string;
|
|
@@ -138218,7 +138219,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138218
138219
|
}, {
|
|
138219
138220
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
138220
138221
|
persistentId: string;
|
|
138221
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
138222
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
138222
138223
|
url?: string | null | undefined;
|
|
138223
138224
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
138224
138225
|
asset?: {
|
|
@@ -138329,7 +138330,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138329
138330
|
title?: string | null | undefined;
|
|
138330
138331
|
} | null | undefined;
|
|
138331
138332
|
}[] | null | undefined;
|
|
138332
|
-
|
|
138333
|
+
guideline?: {
|
|
138333
138334
|
type: string;
|
|
138334
138335
|
description?: string | null | undefined;
|
|
138335
138336
|
asset?: {
|
|
@@ -138361,7 +138362,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138361
138362
|
imageAlt?: string | null | undefined;
|
|
138362
138363
|
imageCaption?: string | null | undefined;
|
|
138363
138364
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
138364
|
-
}
|
|
138365
|
+
} | null | undefined;
|
|
138365
138366
|
customBlockKey?: string | null | undefined;
|
|
138366
138367
|
customBlockProperties?: {
|
|
138367
138368
|
key: string;
|
|
@@ -138438,7 +138439,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138438
138439
|
} & {
|
|
138439
138440
|
children: ({
|
|
138440
138441
|
persistentId: string;
|
|
138441
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
138442
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
138442
138443
|
url?: string | null | undefined;
|
|
138443
138444
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
138444
138445
|
asset?: {
|
|
@@ -138549,7 +138550,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138549
138550
|
title?: string | null | undefined;
|
|
138550
138551
|
} | null | undefined;
|
|
138551
138552
|
}[] | null | undefined;
|
|
138552
|
-
|
|
138553
|
+
guideline?: {
|
|
138553
138554
|
type: string;
|
|
138554
138555
|
description?: string | null | undefined;
|
|
138555
138556
|
asset?: {
|
|
@@ -138581,7 +138582,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138581
138582
|
imageAlt?: string | null | undefined;
|
|
138582
138583
|
imageCaption?: string | null | undefined;
|
|
138583
138584
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
138584
|
-
}
|
|
138585
|
+
} | null | undefined;
|
|
138585
138586
|
customBlockKey?: string | null | undefined;
|
|
138586
138587
|
customBlockProperties?: {
|
|
138587
138588
|
key: string;
|
|
@@ -138726,7 +138727,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138726
138727
|
} | null | undefined;
|
|
138727
138728
|
oldBlocks?: ({
|
|
138728
138729
|
persistentId: string;
|
|
138729
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
138730
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
138730
138731
|
url?: string | null | undefined;
|
|
138731
138732
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
138732
138733
|
asset?: {
|
|
@@ -138837,7 +138838,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138837
138838
|
title?: string | null | undefined;
|
|
138838
138839
|
} | null | undefined;
|
|
138839
138840
|
}[] | null | undefined;
|
|
138840
|
-
|
|
138841
|
+
guideline?: {
|
|
138841
138842
|
type: string;
|
|
138842
138843
|
description?: string | null | undefined;
|
|
138843
138844
|
asset?: {
|
|
@@ -138869,7 +138870,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138869
138870
|
imageAlt?: string | null | undefined;
|
|
138870
138871
|
imageCaption?: string | null | undefined;
|
|
138871
138872
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
138872
|
-
}
|
|
138873
|
+
} | null | undefined;
|
|
138873
138874
|
customBlockKey?: string | null | undefined;
|
|
138874
138875
|
customBlockProperties?: {
|
|
138875
138876
|
key: string;
|
|
@@ -138946,7 +138947,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
138946
138947
|
} & {
|
|
138947
138948
|
children: ({
|
|
138948
138949
|
persistentId: string;
|
|
138949
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
138950
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
138950
138951
|
url?: string | null | undefined;
|
|
138951
138952
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
138952
138953
|
asset?: {
|
|
@@ -139057,7 +139058,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139057
139058
|
title?: string | null | undefined;
|
|
139058
139059
|
} | null | undefined;
|
|
139059
139060
|
}[] | null | undefined;
|
|
139060
|
-
|
|
139061
|
+
guideline?: {
|
|
139061
139062
|
type: string;
|
|
139062
139063
|
description?: string | null | undefined;
|
|
139063
139064
|
asset?: {
|
|
@@ -139089,7 +139090,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139089
139090
|
imageAlt?: string | null | undefined;
|
|
139090
139091
|
imageCaption?: string | null | undefined;
|
|
139091
139092
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
139092
|
-
}
|
|
139093
|
+
} | null | undefined;
|
|
139093
139094
|
customBlockKey?: string | null | undefined;
|
|
139094
139095
|
customBlockProperties?: {
|
|
139095
139096
|
key: string;
|
|
@@ -139257,7 +139258,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139257
139258
|
} | null | undefined;
|
|
139258
139259
|
oldBlocks?: ({
|
|
139259
139260
|
persistentId: string;
|
|
139260
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
139261
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
139261
139262
|
url?: string | null | undefined;
|
|
139262
139263
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
139263
139264
|
asset?: {
|
|
@@ -139368,7 +139369,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139368
139369
|
title?: string | null | undefined;
|
|
139369
139370
|
} | null | undefined;
|
|
139370
139371
|
}[] | null | undefined;
|
|
139371
|
-
|
|
139372
|
+
guideline?: {
|
|
139372
139373
|
type: string;
|
|
139373
139374
|
description?: string | null | undefined;
|
|
139374
139375
|
asset?: {
|
|
@@ -139400,7 +139401,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139400
139401
|
imageAlt?: string | null | undefined;
|
|
139401
139402
|
imageCaption?: string | null | undefined;
|
|
139402
139403
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
139403
|
-
}
|
|
139404
|
+
} | null | undefined;
|
|
139404
139405
|
customBlockKey?: string | null | undefined;
|
|
139405
139406
|
customBlockProperties?: {
|
|
139406
139407
|
key: string;
|
|
@@ -139477,7 +139478,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139477
139478
|
} & {
|
|
139478
139479
|
children: ({
|
|
139479
139480
|
persistentId: string;
|
|
139480
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
139481
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
139481
139482
|
url?: string | null | undefined;
|
|
139482
139483
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
139483
139484
|
asset?: {
|
|
@@ -139588,7 +139589,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139588
139589
|
title?: string | null | undefined;
|
|
139589
139590
|
} | null | undefined;
|
|
139590
139591
|
}[] | null | undefined;
|
|
139591
|
-
|
|
139592
|
+
guideline?: {
|
|
139592
139593
|
type: string;
|
|
139593
139594
|
description?: string | null | undefined;
|
|
139594
139595
|
asset?: {
|
|
@@ -139620,7 +139621,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139620
139621
|
imageAlt?: string | null | undefined;
|
|
139621
139622
|
imageCaption?: string | null | undefined;
|
|
139622
139623
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
139623
|
-
}
|
|
139624
|
+
} | null | undefined;
|
|
139624
139625
|
customBlockKey?: string | null | undefined;
|
|
139625
139626
|
customBlockProperties?: {
|
|
139626
139627
|
key: string;
|
|
@@ -139817,7 +139818,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139817
139818
|
} | null | undefined;
|
|
139818
139819
|
oldBlocks?: ({
|
|
139819
139820
|
persistentId: string;
|
|
139820
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
139821
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
139821
139822
|
url?: string | null | undefined;
|
|
139822
139823
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
139823
139824
|
asset?: {
|
|
@@ -139928,7 +139929,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139928
139929
|
title?: string | null | undefined;
|
|
139929
139930
|
} | null | undefined;
|
|
139930
139931
|
}[] | null | undefined;
|
|
139931
|
-
|
|
139932
|
+
guideline?: {
|
|
139932
139933
|
type: string;
|
|
139933
139934
|
description?: string | null | undefined;
|
|
139934
139935
|
asset?: {
|
|
@@ -139960,7 +139961,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
139960
139961
|
imageAlt?: string | null | undefined;
|
|
139961
139962
|
imageCaption?: string | null | undefined;
|
|
139962
139963
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
139963
|
-
}
|
|
139964
|
+
} | null | undefined;
|
|
139964
139965
|
customBlockKey?: string | null | undefined;
|
|
139965
139966
|
customBlockProperties?: {
|
|
139966
139967
|
key: string;
|
|
@@ -140037,7 +140038,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
140037
140038
|
} & {
|
|
140038
140039
|
children: ({
|
|
140039
140040
|
persistentId: string;
|
|
140040
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
140041
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
140041
140042
|
url?: string | null | undefined;
|
|
140042
140043
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
140043
140044
|
asset?: {
|
|
@@ -140148,7 +140149,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
140148
140149
|
title?: string | null | undefined;
|
|
140149
140150
|
} | null | undefined;
|
|
140150
140151
|
}[] | null | undefined;
|
|
140151
|
-
|
|
140152
|
+
guideline?: {
|
|
140152
140153
|
type: string;
|
|
140153
140154
|
description?: string | null | undefined;
|
|
140154
140155
|
asset?: {
|
|
@@ -140180,7 +140181,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
140180
140181
|
imageAlt?: string | null | undefined;
|
|
140181
140182
|
imageCaption?: string | null | undefined;
|
|
140182
140183
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
140183
|
-
}
|
|
140184
|
+
} | null | undefined;
|
|
140184
140185
|
customBlockKey?: string | null | undefined;
|
|
140185
140186
|
customBlockProperties?: {
|
|
140186
140187
|
key: string;
|
|
@@ -141120,7 +141121,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141120
141121
|
} | null | undefined;
|
|
141121
141122
|
oldBlocks?: ({
|
|
141122
141123
|
persistentId: string;
|
|
141123
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
141124
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
141124
141125
|
url?: string | null | undefined;
|
|
141125
141126
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
141126
141127
|
asset?: {
|
|
@@ -141231,7 +141232,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141231
141232
|
title?: string | null | undefined;
|
|
141232
141233
|
} | null | undefined;
|
|
141233
141234
|
}[] | null | undefined;
|
|
141234
|
-
|
|
141235
|
+
guideline?: {
|
|
141235
141236
|
type: string;
|
|
141236
141237
|
description?: string | null | undefined;
|
|
141237
141238
|
asset?: {
|
|
@@ -141263,7 +141264,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141263
141264
|
imageAlt?: string | null | undefined;
|
|
141264
141265
|
imageCaption?: string | null | undefined;
|
|
141265
141266
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
141266
|
-
}
|
|
141267
|
+
} | null | undefined;
|
|
141267
141268
|
customBlockKey?: string | null | undefined;
|
|
141268
141269
|
customBlockProperties?: {
|
|
141269
141270
|
key: string;
|
|
@@ -141340,7 +141341,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141340
141341
|
} & {
|
|
141341
141342
|
children: ({
|
|
141342
141343
|
persistentId: string;
|
|
141343
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
141344
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
141344
141345
|
url?: string | null | undefined;
|
|
141345
141346
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
141346
141347
|
asset?: {
|
|
@@ -141451,7 +141452,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141451
141452
|
title?: string | null | undefined;
|
|
141452
141453
|
} | null | undefined;
|
|
141453
141454
|
}[] | null | undefined;
|
|
141454
|
-
|
|
141455
|
+
guideline?: {
|
|
141455
141456
|
type: string;
|
|
141456
141457
|
description?: string | null | undefined;
|
|
141457
141458
|
asset?: {
|
|
@@ -141483,7 +141484,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141483
141484
|
imageAlt?: string | null | undefined;
|
|
141484
141485
|
imageCaption?: string | null | undefined;
|
|
141485
141486
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
141486
|
-
}
|
|
141487
|
+
} | null | undefined;
|
|
141487
141488
|
customBlockKey?: string | null | undefined;
|
|
141488
141489
|
customBlockProperties?: {
|
|
141489
141490
|
key: string;
|
|
@@ -141617,7 +141618,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141617
141618
|
} | null | undefined;
|
|
141618
141619
|
oldBlocks?: ({
|
|
141619
141620
|
persistentId: string;
|
|
141620
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
141621
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
141621
141622
|
url?: string | null | undefined;
|
|
141622
141623
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
141623
141624
|
asset?: {
|
|
@@ -141728,7 +141729,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141728
141729
|
title?: string | null | undefined;
|
|
141729
141730
|
} | null | undefined;
|
|
141730
141731
|
}[] | null | undefined;
|
|
141731
|
-
|
|
141732
|
+
guideline?: {
|
|
141732
141733
|
type: string;
|
|
141733
141734
|
description?: string | null | undefined;
|
|
141734
141735
|
asset?: {
|
|
@@ -141760,7 +141761,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141760
141761
|
imageAlt?: string | null | undefined;
|
|
141761
141762
|
imageCaption?: string | null | undefined;
|
|
141762
141763
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
141763
|
-
}
|
|
141764
|
+
} | null | undefined;
|
|
141764
141765
|
customBlockKey?: string | null | undefined;
|
|
141765
141766
|
customBlockProperties?: {
|
|
141766
141767
|
key: string;
|
|
@@ -141837,7 +141838,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141837
141838
|
} & {
|
|
141838
141839
|
children: ({
|
|
141839
141840
|
persistentId: string;
|
|
141840
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
141841
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
141841
141842
|
url?: string | null | undefined;
|
|
141842
141843
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
141843
141844
|
asset?: {
|
|
@@ -141948,7 +141949,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141948
141949
|
title?: string | null | undefined;
|
|
141949
141950
|
} | null | undefined;
|
|
141950
141951
|
}[] | null | undefined;
|
|
141951
|
-
|
|
141952
|
+
guideline?: {
|
|
141952
141953
|
type: string;
|
|
141953
141954
|
description?: string | null | undefined;
|
|
141954
141955
|
asset?: {
|
|
@@ -141980,7 +141981,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
141980
141981
|
imageAlt?: string | null | undefined;
|
|
141981
141982
|
imageCaption?: string | null | undefined;
|
|
141982
141983
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
141983
|
-
}
|
|
141984
|
+
} | null | undefined;
|
|
141984
141985
|
customBlockKey?: string | null | undefined;
|
|
141985
141986
|
customBlockProperties?: {
|
|
141986
141987
|
key: string;
|
|
@@ -142309,7 +142310,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142309
142310
|
}, {
|
|
142310
142311
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
142311
142312
|
persistentId: string;
|
|
142312
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
142313
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
142313
142314
|
url?: string | null | undefined;
|
|
142314
142315
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
142315
142316
|
asset?: {
|
|
@@ -142420,7 +142421,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142420
142421
|
title?: string | null | undefined;
|
|
142421
142422
|
} | null | undefined;
|
|
142422
142423
|
}[] | null | undefined;
|
|
142423
|
-
|
|
142424
|
+
guideline?: {
|
|
142424
142425
|
type: string;
|
|
142425
142426
|
description?: string | null | undefined;
|
|
142426
142427
|
asset?: {
|
|
@@ -142452,7 +142453,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142452
142453
|
imageAlt?: string | null | undefined;
|
|
142453
142454
|
imageCaption?: string | null | undefined;
|
|
142454
142455
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
142455
|
-
}
|
|
142456
|
+
} | null | undefined;
|
|
142456
142457
|
customBlockKey?: string | null | undefined;
|
|
142457
142458
|
customBlockProperties?: {
|
|
142458
142459
|
key: string;
|
|
@@ -142529,7 +142530,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142529
142530
|
} & {
|
|
142530
142531
|
children: ({
|
|
142531
142532
|
persistentId: string;
|
|
142532
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
142533
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
142533
142534
|
url?: string | null | undefined;
|
|
142534
142535
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
142535
142536
|
asset?: {
|
|
@@ -142640,7 +142641,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142640
142641
|
title?: string | null | undefined;
|
|
142641
142642
|
} | null | undefined;
|
|
142642
142643
|
}[] | null | undefined;
|
|
142643
|
-
|
|
142644
|
+
guideline?: {
|
|
142644
142645
|
type: string;
|
|
142645
142646
|
description?: string | null | undefined;
|
|
142646
142647
|
asset?: {
|
|
@@ -142672,7 +142673,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142672
142673
|
imageAlt?: string | null | undefined;
|
|
142673
142674
|
imageCaption?: string | null | undefined;
|
|
142674
142675
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
142675
|
-
}
|
|
142676
|
+
} | null | undefined;
|
|
142676
142677
|
customBlockKey?: string | null | undefined;
|
|
142677
142678
|
customBlockProperties?: {
|
|
142678
142679
|
key: string;
|
|
@@ -142817,7 +142818,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142817
142818
|
} | null | undefined;
|
|
142818
142819
|
oldBlocks?: ({
|
|
142819
142820
|
persistentId: string;
|
|
142820
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
142821
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
142821
142822
|
url?: string | null | undefined;
|
|
142822
142823
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
142823
142824
|
asset?: {
|
|
@@ -142928,7 +142929,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142928
142929
|
title?: string | null | undefined;
|
|
142929
142930
|
} | null | undefined;
|
|
142930
142931
|
}[] | null | undefined;
|
|
142931
|
-
|
|
142932
|
+
guideline?: {
|
|
142932
142933
|
type: string;
|
|
142933
142934
|
description?: string | null | undefined;
|
|
142934
142935
|
asset?: {
|
|
@@ -142960,7 +142961,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
142960
142961
|
imageAlt?: string | null | undefined;
|
|
142961
142962
|
imageCaption?: string | null | undefined;
|
|
142962
142963
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
142963
|
-
}
|
|
142964
|
+
} | null | undefined;
|
|
142964
142965
|
customBlockKey?: string | null | undefined;
|
|
142965
142966
|
customBlockProperties?: {
|
|
142966
142967
|
key: string;
|
|
@@ -143037,7 +143038,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143037
143038
|
} & {
|
|
143038
143039
|
children: ({
|
|
143039
143040
|
persistentId: string;
|
|
143040
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
143041
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
143041
143042
|
url?: string | null | undefined;
|
|
143042
143043
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
143043
143044
|
asset?: {
|
|
@@ -143148,7 +143149,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143148
143149
|
title?: string | null | undefined;
|
|
143149
143150
|
} | null | undefined;
|
|
143150
143151
|
}[] | null | undefined;
|
|
143151
|
-
|
|
143152
|
+
guideline?: {
|
|
143152
143153
|
type: string;
|
|
143153
143154
|
description?: string | null | undefined;
|
|
143154
143155
|
asset?: {
|
|
@@ -143180,7 +143181,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143180
143181
|
imageAlt?: string | null | undefined;
|
|
143181
143182
|
imageCaption?: string | null | undefined;
|
|
143182
143183
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
143183
|
-
}
|
|
143184
|
+
} | null | undefined;
|
|
143184
143185
|
customBlockKey?: string | null | undefined;
|
|
143185
143186
|
customBlockProperties?: {
|
|
143186
143187
|
key: string;
|
|
@@ -143348,7 +143349,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143348
143349
|
} | null | undefined;
|
|
143349
143350
|
oldBlocks?: ({
|
|
143350
143351
|
persistentId: string;
|
|
143351
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
143352
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
143352
143353
|
url?: string | null | undefined;
|
|
143353
143354
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
143354
143355
|
asset?: {
|
|
@@ -143459,7 +143460,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143459
143460
|
title?: string | null | undefined;
|
|
143460
143461
|
} | null | undefined;
|
|
143461
143462
|
}[] | null | undefined;
|
|
143462
|
-
|
|
143463
|
+
guideline?: {
|
|
143463
143464
|
type: string;
|
|
143464
143465
|
description?: string | null | undefined;
|
|
143465
143466
|
asset?: {
|
|
@@ -143491,7 +143492,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143491
143492
|
imageAlt?: string | null | undefined;
|
|
143492
143493
|
imageCaption?: string | null | undefined;
|
|
143493
143494
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
143494
|
-
}
|
|
143495
|
+
} | null | undefined;
|
|
143495
143496
|
customBlockKey?: string | null | undefined;
|
|
143496
143497
|
customBlockProperties?: {
|
|
143497
143498
|
key: string;
|
|
@@ -143568,7 +143569,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143568
143569
|
} & {
|
|
143569
143570
|
children: ({
|
|
143570
143571
|
persistentId: string;
|
|
143571
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
143572
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
143572
143573
|
url?: string | null | undefined;
|
|
143573
143574
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
143574
143575
|
asset?: {
|
|
@@ -143679,7 +143680,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143679
143680
|
title?: string | null | undefined;
|
|
143680
143681
|
} | null | undefined;
|
|
143681
143682
|
}[] | null | undefined;
|
|
143682
|
-
|
|
143683
|
+
guideline?: {
|
|
143683
143684
|
type: string;
|
|
143684
143685
|
description?: string | null | undefined;
|
|
143685
143686
|
asset?: {
|
|
@@ -143711,7 +143712,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
143711
143712
|
imageAlt?: string | null | undefined;
|
|
143712
143713
|
imageCaption?: string | null | undefined;
|
|
143713
143714
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
143714
|
-
}
|
|
143715
|
+
} | null | undefined;
|
|
143715
143716
|
customBlockKey?: string | null | undefined;
|
|
143716
143717
|
customBlockProperties?: {
|
|
143717
143718
|
key: string;
|
|
@@ -144292,7 +144293,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144292
144293
|
}, {
|
|
144293
144294
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
144294
144295
|
persistentId: string;
|
|
144295
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
144296
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
144296
144297
|
url?: string | null | undefined;
|
|
144297
144298
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
144298
144299
|
asset?: {
|
|
@@ -144403,7 +144404,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144403
144404
|
title?: string | null | undefined;
|
|
144404
144405
|
} | null | undefined;
|
|
144405
144406
|
}[] | null | undefined;
|
|
144406
|
-
|
|
144407
|
+
guideline?: {
|
|
144407
144408
|
type: string;
|
|
144408
144409
|
description?: string | null | undefined;
|
|
144409
144410
|
asset?: {
|
|
@@ -144435,7 +144436,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144435
144436
|
imageAlt?: string | null | undefined;
|
|
144436
144437
|
imageCaption?: string | null | undefined;
|
|
144437
144438
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
144438
|
-
}
|
|
144439
|
+
} | null | undefined;
|
|
144439
144440
|
customBlockKey?: string | null | undefined;
|
|
144440
144441
|
customBlockProperties?: {
|
|
144441
144442
|
key: string;
|
|
@@ -144512,7 +144513,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144512
144513
|
} & {
|
|
144513
144514
|
children: ({
|
|
144514
144515
|
persistentId: string;
|
|
144515
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
144516
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
144516
144517
|
url?: string | null | undefined;
|
|
144517
144518
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
144518
144519
|
asset?: {
|
|
@@ -144623,7 +144624,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144623
144624
|
title?: string | null | undefined;
|
|
144624
144625
|
} | null | undefined;
|
|
144625
144626
|
}[] | null | undefined;
|
|
144626
|
-
|
|
144627
|
+
guideline?: {
|
|
144627
144628
|
type: string;
|
|
144628
144629
|
description?: string | null | undefined;
|
|
144629
144630
|
asset?: {
|
|
@@ -144655,7 +144656,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144655
144656
|
imageAlt?: string | null | undefined;
|
|
144656
144657
|
imageCaption?: string | null | undefined;
|
|
144657
144658
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
144658
|
-
}
|
|
144659
|
+
} | null | undefined;
|
|
144659
144660
|
customBlockKey?: string | null | undefined;
|
|
144660
144661
|
customBlockProperties?: {
|
|
144661
144662
|
key: string;
|
|
@@ -144800,7 +144801,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144800
144801
|
} | null | undefined;
|
|
144801
144802
|
oldBlocks?: ({
|
|
144802
144803
|
persistentId: string;
|
|
144803
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
144804
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
144804
144805
|
url?: string | null | undefined;
|
|
144805
144806
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
144806
144807
|
asset?: {
|
|
@@ -144911,7 +144912,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144911
144912
|
title?: string | null | undefined;
|
|
144912
144913
|
} | null | undefined;
|
|
144913
144914
|
}[] | null | undefined;
|
|
144914
|
-
|
|
144915
|
+
guideline?: {
|
|
144915
144916
|
type: string;
|
|
144916
144917
|
description?: string | null | undefined;
|
|
144917
144918
|
asset?: {
|
|
@@ -144943,7 +144944,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
144943
144944
|
imageAlt?: string | null | undefined;
|
|
144944
144945
|
imageCaption?: string | null | undefined;
|
|
144945
144946
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
144946
|
-
}
|
|
144947
|
+
} | null | undefined;
|
|
144947
144948
|
customBlockKey?: string | null | undefined;
|
|
144948
144949
|
customBlockProperties?: {
|
|
144949
144950
|
key: string;
|
|
@@ -145020,7 +145021,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145020
145021
|
} & {
|
|
145021
145022
|
children: ({
|
|
145022
145023
|
persistentId: string;
|
|
145023
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
145024
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
145024
145025
|
url?: string | null | undefined;
|
|
145025
145026
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
145026
145027
|
asset?: {
|
|
@@ -145131,7 +145132,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145131
145132
|
title?: string | null | undefined;
|
|
145132
145133
|
} | null | undefined;
|
|
145133
145134
|
}[] | null | undefined;
|
|
145134
|
-
|
|
145135
|
+
guideline?: {
|
|
145135
145136
|
type: string;
|
|
145136
145137
|
description?: string | null | undefined;
|
|
145137
145138
|
asset?: {
|
|
@@ -145163,7 +145164,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145163
145164
|
imageAlt?: string | null | undefined;
|
|
145164
145165
|
imageCaption?: string | null | undefined;
|
|
145165
145166
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
145166
|
-
}
|
|
145167
|
+
} | null | undefined;
|
|
145167
145168
|
customBlockKey?: string | null | undefined;
|
|
145168
145169
|
customBlockProperties?: {
|
|
145169
145170
|
key: string;
|
|
@@ -145331,7 +145332,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145331
145332
|
} | null | undefined;
|
|
145332
145333
|
oldBlocks?: ({
|
|
145333
145334
|
persistentId: string;
|
|
145334
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
145335
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
145335
145336
|
url?: string | null | undefined;
|
|
145336
145337
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
145337
145338
|
asset?: {
|
|
@@ -145442,7 +145443,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145442
145443
|
title?: string | null | undefined;
|
|
145443
145444
|
} | null | undefined;
|
|
145444
145445
|
}[] | null | undefined;
|
|
145445
|
-
|
|
145446
|
+
guideline?: {
|
|
145446
145447
|
type: string;
|
|
145447
145448
|
description?: string | null | undefined;
|
|
145448
145449
|
asset?: {
|
|
@@ -145474,7 +145475,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145474
145475
|
imageAlt?: string | null | undefined;
|
|
145475
145476
|
imageCaption?: string | null | undefined;
|
|
145476
145477
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
145477
|
-
}
|
|
145478
|
+
} | null | undefined;
|
|
145478
145479
|
customBlockKey?: string | null | undefined;
|
|
145479
145480
|
customBlockProperties?: {
|
|
145480
145481
|
key: string;
|
|
@@ -145551,7 +145552,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145551
145552
|
} & {
|
|
145552
145553
|
children: ({
|
|
145553
145554
|
persistentId: string;
|
|
145554
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
145555
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
145555
145556
|
url?: string | null | undefined;
|
|
145556
145557
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
145557
145558
|
asset?: {
|
|
@@ -145662,7 +145663,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145662
145663
|
title?: string | null | undefined;
|
|
145663
145664
|
} | null | undefined;
|
|
145664
145665
|
}[] | null | undefined;
|
|
145665
|
-
|
|
145666
|
+
guideline?: {
|
|
145666
145667
|
type: string;
|
|
145667
145668
|
description?: string | null | undefined;
|
|
145668
145669
|
asset?: {
|
|
@@ -145694,7 +145695,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145694
145695
|
imageAlt?: string | null | undefined;
|
|
145695
145696
|
imageCaption?: string | null | undefined;
|
|
145696
145697
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
145697
|
-
}
|
|
145698
|
+
} | null | undefined;
|
|
145698
145699
|
customBlockKey?: string | null | undefined;
|
|
145699
145700
|
customBlockProperties?: {
|
|
145700
145701
|
key: string;
|
|
@@ -145891,7 +145892,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
145891
145892
|
} | null | undefined;
|
|
145892
145893
|
oldBlocks?: ({
|
|
145893
145894
|
persistentId: string;
|
|
145894
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
145895
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
145895
145896
|
url?: string | null | undefined;
|
|
145896
145897
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
145897
145898
|
asset?: {
|
|
@@ -146002,7 +146003,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
146002
146003
|
title?: string | null | undefined;
|
|
146003
146004
|
} | null | undefined;
|
|
146004
146005
|
}[] | null | undefined;
|
|
146005
|
-
|
|
146006
|
+
guideline?: {
|
|
146006
146007
|
type: string;
|
|
146007
146008
|
description?: string | null | undefined;
|
|
146008
146009
|
asset?: {
|
|
@@ -146034,7 +146035,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
146034
146035
|
imageAlt?: string | null | undefined;
|
|
146035
146036
|
imageCaption?: string | null | undefined;
|
|
146036
146037
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
146037
|
-
}
|
|
146038
|
+
} | null | undefined;
|
|
146038
146039
|
customBlockKey?: string | null | undefined;
|
|
146039
146040
|
customBlockProperties?: {
|
|
146040
146041
|
key: string;
|
|
@@ -146111,7 +146112,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
146111
146112
|
} & {
|
|
146112
146113
|
children: ({
|
|
146113
146114
|
persistentId: string;
|
|
146114
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
146115
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
146115
146116
|
url?: string | null | undefined;
|
|
146116
146117
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
146117
146118
|
asset?: {
|
|
@@ -146222,7 +146223,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
146222
146223
|
title?: string | null | undefined;
|
|
146223
146224
|
} | null | undefined;
|
|
146224
146225
|
}[] | null | undefined;
|
|
146225
|
-
|
|
146226
|
+
guideline?: {
|
|
146226
146227
|
type: string;
|
|
146227
146228
|
description?: string | null | undefined;
|
|
146228
146229
|
asset?: {
|
|
@@ -146254,7 +146255,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
146254
146255
|
imageAlt?: string | null | undefined;
|
|
146255
146256
|
imageCaption?: string | null | undefined;
|
|
146256
146257
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
146257
|
-
}
|
|
146258
|
+
} | null | undefined;
|
|
146258
146259
|
customBlockKey?: string | null | undefined;
|
|
146259
146260
|
customBlockProperties?: {
|
|
146260
146261
|
key: string;
|
|
@@ -147182,7 +147183,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147182
147183
|
} | null | undefined;
|
|
147183
147184
|
oldBlocks?: ({
|
|
147184
147185
|
persistentId: string;
|
|
147185
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
147186
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
147186
147187
|
url?: string | null | undefined;
|
|
147187
147188
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
147188
147189
|
asset?: {
|
|
@@ -147293,7 +147294,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147293
147294
|
title?: string | null | undefined;
|
|
147294
147295
|
} | null | undefined;
|
|
147295
147296
|
}[] | null | undefined;
|
|
147296
|
-
|
|
147297
|
+
guideline?: {
|
|
147297
147298
|
type: string;
|
|
147298
147299
|
description?: string | null | undefined;
|
|
147299
147300
|
asset?: {
|
|
@@ -147325,7 +147326,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147325
147326
|
imageAlt?: string | null | undefined;
|
|
147326
147327
|
imageCaption?: string | null | undefined;
|
|
147327
147328
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
147328
|
-
}
|
|
147329
|
+
} | null | undefined;
|
|
147329
147330
|
customBlockKey?: string | null | undefined;
|
|
147330
147331
|
customBlockProperties?: {
|
|
147331
147332
|
key: string;
|
|
@@ -147402,7 +147403,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147402
147403
|
} & {
|
|
147403
147404
|
children: ({
|
|
147404
147405
|
persistentId: string;
|
|
147405
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
147406
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
147406
147407
|
url?: string | null | undefined;
|
|
147407
147408
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
147408
147409
|
asset?: {
|
|
@@ -147513,7 +147514,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147513
147514
|
title?: string | null | undefined;
|
|
147514
147515
|
} | null | undefined;
|
|
147515
147516
|
}[] | null | undefined;
|
|
147516
|
-
|
|
147517
|
+
guideline?: {
|
|
147517
147518
|
type: string;
|
|
147518
147519
|
description?: string | null | undefined;
|
|
147519
147520
|
asset?: {
|
|
@@ -147545,7 +147546,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147545
147546
|
imageAlt?: string | null | undefined;
|
|
147546
147547
|
imageCaption?: string | null | undefined;
|
|
147547
147548
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
147548
|
-
}
|
|
147549
|
+
} | null | undefined;
|
|
147549
147550
|
customBlockKey?: string | null | undefined;
|
|
147550
147551
|
customBlockProperties?: {
|
|
147551
147552
|
key: string;
|
|
@@ -147679,7 +147680,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147679
147680
|
} | null | undefined;
|
|
147680
147681
|
oldBlocks?: ({
|
|
147681
147682
|
persistentId: string;
|
|
147682
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
147683
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
147683
147684
|
url?: string | null | undefined;
|
|
147684
147685
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
147685
147686
|
asset?: {
|
|
@@ -147790,7 +147791,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147790
147791
|
title?: string | null | undefined;
|
|
147791
147792
|
} | null | undefined;
|
|
147792
147793
|
}[] | null | undefined;
|
|
147793
|
-
|
|
147794
|
+
guideline?: {
|
|
147794
147795
|
type: string;
|
|
147795
147796
|
description?: string | null | undefined;
|
|
147796
147797
|
asset?: {
|
|
@@ -147822,7 +147823,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147822
147823
|
imageAlt?: string | null | undefined;
|
|
147823
147824
|
imageCaption?: string | null | undefined;
|
|
147824
147825
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
147825
|
-
}
|
|
147826
|
+
} | null | undefined;
|
|
147826
147827
|
customBlockKey?: string | null | undefined;
|
|
147827
147828
|
customBlockProperties?: {
|
|
147828
147829
|
key: string;
|
|
@@ -147899,7 +147900,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
147899
147900
|
} & {
|
|
147900
147901
|
children: ({
|
|
147901
147902
|
persistentId: string;
|
|
147902
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
147903
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
147903
147904
|
url?: string | null | undefined;
|
|
147904
147905
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
147905
147906
|
asset?: {
|
|
@@ -148010,7 +148011,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
148010
148011
|
title?: string | null | undefined;
|
|
148011
148012
|
} | null | undefined;
|
|
148012
148013
|
}[] | null | undefined;
|
|
148013
|
-
|
|
148014
|
+
guideline?: {
|
|
148014
148015
|
type: string;
|
|
148015
148016
|
description?: string | null | undefined;
|
|
148016
148017
|
asset?: {
|
|
@@ -148042,7 +148043,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
148042
148043
|
imageAlt?: string | null | undefined;
|
|
148043
148044
|
imageCaption?: string | null | undefined;
|
|
148044
148045
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
148045
|
-
}
|
|
148046
|
+
} | null | undefined;
|
|
148046
148047
|
customBlockKey?: string | null | undefined;
|
|
148047
148048
|
customBlockProperties?: {
|
|
148048
148049
|
key: string;
|
|
@@ -149554,7 +149555,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149554
149555
|
}, {
|
|
149555
149556
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
149556
149557
|
persistentId: string;
|
|
149557
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
149558
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
149558
149559
|
url?: string | null | undefined;
|
|
149559
149560
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
149560
149561
|
asset?: {
|
|
@@ -149665,7 +149666,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149665
149666
|
title?: string | null | undefined;
|
|
149666
149667
|
} | null | undefined;
|
|
149667
149668
|
}[] | null | undefined;
|
|
149668
|
-
|
|
149669
|
+
guideline?: {
|
|
149669
149670
|
type: string;
|
|
149670
149671
|
description?: string | null | undefined;
|
|
149671
149672
|
asset?: {
|
|
@@ -149697,7 +149698,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149697
149698
|
imageAlt?: string | null | undefined;
|
|
149698
149699
|
imageCaption?: string | null | undefined;
|
|
149699
149700
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
149700
|
-
}
|
|
149701
|
+
} | null | undefined;
|
|
149701
149702
|
customBlockKey?: string | null | undefined;
|
|
149702
149703
|
customBlockProperties?: {
|
|
149703
149704
|
key: string;
|
|
@@ -149774,7 +149775,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149774
149775
|
} & {
|
|
149775
149776
|
children: ({
|
|
149776
149777
|
persistentId: string;
|
|
149777
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
149778
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
149778
149779
|
url?: string | null | undefined;
|
|
149779
149780
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
149780
149781
|
asset?: {
|
|
@@ -149885,7 +149886,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149885
149886
|
title?: string | null | undefined;
|
|
149886
149887
|
} | null | undefined;
|
|
149887
149888
|
}[] | null | undefined;
|
|
149888
|
-
|
|
149889
|
+
guideline?: {
|
|
149889
149890
|
type: string;
|
|
149890
149891
|
description?: string | null | undefined;
|
|
149891
149892
|
asset?: {
|
|
@@ -149917,7 +149918,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
149917
149918
|
imageAlt?: string | null | undefined;
|
|
149918
149919
|
imageCaption?: string | null | undefined;
|
|
149919
149920
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
149920
|
-
}
|
|
149921
|
+
} | null | undefined;
|
|
149921
149922
|
customBlockKey?: string | null | undefined;
|
|
149922
149923
|
customBlockProperties?: {
|
|
149923
149924
|
key: string;
|
|
@@ -150062,7 +150063,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150062
150063
|
} | null | undefined;
|
|
150063
150064
|
oldBlocks?: ({
|
|
150064
150065
|
persistentId: string;
|
|
150065
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
150066
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
150066
150067
|
url?: string | null | undefined;
|
|
150067
150068
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
150068
150069
|
asset?: {
|
|
@@ -150173,7 +150174,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150173
150174
|
title?: string | null | undefined;
|
|
150174
150175
|
} | null | undefined;
|
|
150175
150176
|
}[] | null | undefined;
|
|
150176
|
-
|
|
150177
|
+
guideline?: {
|
|
150177
150178
|
type: string;
|
|
150178
150179
|
description?: string | null | undefined;
|
|
150179
150180
|
asset?: {
|
|
@@ -150205,7 +150206,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150205
150206
|
imageAlt?: string | null | undefined;
|
|
150206
150207
|
imageCaption?: string | null | undefined;
|
|
150207
150208
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
150208
|
-
}
|
|
150209
|
+
} | null | undefined;
|
|
150209
150210
|
customBlockKey?: string | null | undefined;
|
|
150210
150211
|
customBlockProperties?: {
|
|
150211
150212
|
key: string;
|
|
@@ -150282,7 +150283,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150282
150283
|
} & {
|
|
150283
150284
|
children: ({
|
|
150284
150285
|
persistentId: string;
|
|
150285
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
150286
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
150286
150287
|
url?: string | null | undefined;
|
|
150287
150288
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
150288
150289
|
asset?: {
|
|
@@ -150393,7 +150394,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150393
150394
|
title?: string | null | undefined;
|
|
150394
150395
|
} | null | undefined;
|
|
150395
150396
|
}[] | null | undefined;
|
|
150396
|
-
|
|
150397
|
+
guideline?: {
|
|
150397
150398
|
type: string;
|
|
150398
150399
|
description?: string | null | undefined;
|
|
150399
150400
|
asset?: {
|
|
@@ -150425,7 +150426,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150425
150426
|
imageAlt?: string | null | undefined;
|
|
150426
150427
|
imageCaption?: string | null | undefined;
|
|
150427
150428
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
150428
|
-
}
|
|
150429
|
+
} | null | undefined;
|
|
150429
150430
|
customBlockKey?: string | null | undefined;
|
|
150430
150431
|
customBlockProperties?: {
|
|
150431
150432
|
key: string;
|
|
@@ -150593,7 +150594,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150593
150594
|
} | null | undefined;
|
|
150594
150595
|
oldBlocks?: ({
|
|
150595
150596
|
persistentId: string;
|
|
150596
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
150597
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
150597
150598
|
url?: string | null | undefined;
|
|
150598
150599
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
150599
150600
|
asset?: {
|
|
@@ -150704,7 +150705,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150704
150705
|
title?: string | null | undefined;
|
|
150705
150706
|
} | null | undefined;
|
|
150706
150707
|
}[] | null | undefined;
|
|
150707
|
-
|
|
150708
|
+
guideline?: {
|
|
150708
150709
|
type: string;
|
|
150709
150710
|
description?: string | null | undefined;
|
|
150710
150711
|
asset?: {
|
|
@@ -150736,7 +150737,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150736
150737
|
imageAlt?: string | null | undefined;
|
|
150737
150738
|
imageCaption?: string | null | undefined;
|
|
150738
150739
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
150739
|
-
}
|
|
150740
|
+
} | null | undefined;
|
|
150740
150741
|
customBlockKey?: string | null | undefined;
|
|
150741
150742
|
customBlockProperties?: {
|
|
150742
150743
|
key: string;
|
|
@@ -150813,7 +150814,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150813
150814
|
} & {
|
|
150814
150815
|
children: ({
|
|
150815
150816
|
persistentId: string;
|
|
150816
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
150817
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
150817
150818
|
url?: string | null | undefined;
|
|
150818
150819
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
150819
150820
|
asset?: {
|
|
@@ -150924,7 +150925,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150924
150925
|
title?: string | null | undefined;
|
|
150925
150926
|
} | null | undefined;
|
|
150926
150927
|
}[] | null | undefined;
|
|
150927
|
-
|
|
150928
|
+
guideline?: {
|
|
150928
150929
|
type: string;
|
|
150929
150930
|
description?: string | null | undefined;
|
|
150930
150931
|
asset?: {
|
|
@@ -150956,7 +150957,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
150956
150957
|
imageAlt?: string | null | undefined;
|
|
150957
150958
|
imageCaption?: string | null | undefined;
|
|
150958
150959
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
150959
|
-
}
|
|
150960
|
+
} | null | undefined;
|
|
150960
150961
|
customBlockKey?: string | null | undefined;
|
|
150961
150962
|
customBlockProperties?: {
|
|
150962
150963
|
key: string;
|
|
@@ -151518,7 +151519,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
151518
151519
|
} | null | undefined;
|
|
151519
151520
|
oldBlocks?: ({
|
|
151520
151521
|
persistentId: string;
|
|
151521
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
151522
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
151522
151523
|
url?: string | null | undefined;
|
|
151523
151524
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
151524
151525
|
asset?: {
|
|
@@ -151629,7 +151630,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
151629
151630
|
title?: string | null | undefined;
|
|
151630
151631
|
} | null | undefined;
|
|
151631
151632
|
}[] | null | undefined;
|
|
151632
|
-
|
|
151633
|
+
guideline?: {
|
|
151633
151634
|
type: string;
|
|
151634
151635
|
description?: string | null | undefined;
|
|
151635
151636
|
asset?: {
|
|
@@ -151661,7 +151662,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
151661
151662
|
imageAlt?: string | null | undefined;
|
|
151662
151663
|
imageCaption?: string | null | undefined;
|
|
151663
151664
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
151664
|
-
}
|
|
151665
|
+
} | null | undefined;
|
|
151665
151666
|
customBlockKey?: string | null | undefined;
|
|
151666
151667
|
customBlockProperties?: {
|
|
151667
151668
|
key: string;
|
|
@@ -151738,7 +151739,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
151738
151739
|
} & {
|
|
151739
151740
|
children: ({
|
|
151740
151741
|
persistentId: string;
|
|
151741
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
151742
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
151742
151743
|
url?: string | null | undefined;
|
|
151743
151744
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
151744
151745
|
asset?: {
|
|
@@ -151849,7 +151850,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
151849
151850
|
title?: string | null | undefined;
|
|
151850
151851
|
} | null | undefined;
|
|
151851
151852
|
}[] | null | undefined;
|
|
151852
|
-
|
|
151853
|
+
guideline?: {
|
|
151853
151854
|
type: string;
|
|
151854
151855
|
description?: string | null | undefined;
|
|
151855
151856
|
asset?: {
|
|
@@ -151881,7 +151882,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
151881
151882
|
imageAlt?: string | null | undefined;
|
|
151882
151883
|
imageCaption?: string | null | undefined;
|
|
151883
151884
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
151884
|
-
}
|
|
151885
|
+
} | null | undefined;
|
|
151885
151886
|
customBlockKey?: string | null | undefined;
|
|
151886
151887
|
customBlockProperties?: {
|
|
151887
151888
|
key: string;
|
|
@@ -152179,7 +152180,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152179
152180
|
}, {
|
|
152180
152181
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
152181
152182
|
persistentId: string;
|
|
152182
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
152183
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
152183
152184
|
url?: string | null | undefined;
|
|
152184
152185
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
152185
152186
|
asset?: {
|
|
@@ -152290,7 +152291,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152290
152291
|
title?: string | null | undefined;
|
|
152291
152292
|
} | null | undefined;
|
|
152292
152293
|
}[] | null | undefined;
|
|
152293
|
-
|
|
152294
|
+
guideline?: {
|
|
152294
152295
|
type: string;
|
|
152295
152296
|
description?: string | null | undefined;
|
|
152296
152297
|
asset?: {
|
|
@@ -152322,7 +152323,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152322
152323
|
imageAlt?: string | null | undefined;
|
|
152323
152324
|
imageCaption?: string | null | undefined;
|
|
152324
152325
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
152325
|
-
}
|
|
152326
|
+
} | null | undefined;
|
|
152326
152327
|
customBlockKey?: string | null | undefined;
|
|
152327
152328
|
customBlockProperties?: {
|
|
152328
152329
|
key: string;
|
|
@@ -152399,7 +152400,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152399
152400
|
} & {
|
|
152400
152401
|
children: ({
|
|
152401
152402
|
persistentId: string;
|
|
152402
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
152403
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
152403
152404
|
url?: string | null | undefined;
|
|
152404
152405
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
152405
152406
|
asset?: {
|
|
@@ -152510,7 +152511,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152510
152511
|
title?: string | null | undefined;
|
|
152511
152512
|
} | null | undefined;
|
|
152512
152513
|
}[] | null | undefined;
|
|
152513
|
-
|
|
152514
|
+
guideline?: {
|
|
152514
152515
|
type: string;
|
|
152515
152516
|
description?: string | null | undefined;
|
|
152516
152517
|
asset?: {
|
|
@@ -152542,7 +152543,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152542
152543
|
imageAlt?: string | null | undefined;
|
|
152543
152544
|
imageCaption?: string | null | undefined;
|
|
152544
152545
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
152545
|
-
}
|
|
152546
|
+
} | null | undefined;
|
|
152546
152547
|
customBlockKey?: string | null | undefined;
|
|
152547
152548
|
customBlockProperties?: {
|
|
152548
152549
|
key: string;
|
|
@@ -152687,7 +152688,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152687
152688
|
} | null | undefined;
|
|
152688
152689
|
oldBlocks?: ({
|
|
152689
152690
|
persistentId: string;
|
|
152690
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
152691
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
152691
152692
|
url?: string | null | undefined;
|
|
152692
152693
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
152693
152694
|
asset?: {
|
|
@@ -152798,7 +152799,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152798
152799
|
title?: string | null | undefined;
|
|
152799
152800
|
} | null | undefined;
|
|
152800
152801
|
}[] | null | undefined;
|
|
152801
|
-
|
|
152802
|
+
guideline?: {
|
|
152802
152803
|
type: string;
|
|
152803
152804
|
description?: string | null | undefined;
|
|
152804
152805
|
asset?: {
|
|
@@ -152830,7 +152831,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152830
152831
|
imageAlt?: string | null | undefined;
|
|
152831
152832
|
imageCaption?: string | null | undefined;
|
|
152832
152833
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
152833
|
-
}
|
|
152834
|
+
} | null | undefined;
|
|
152834
152835
|
customBlockKey?: string | null | undefined;
|
|
152835
152836
|
customBlockProperties?: {
|
|
152836
152837
|
key: string;
|
|
@@ -152907,7 +152908,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
152907
152908
|
} & {
|
|
152908
152909
|
children: ({
|
|
152909
152910
|
persistentId: string;
|
|
152910
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
152911
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
152911
152912
|
url?: string | null | undefined;
|
|
152912
152913
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
152913
152914
|
asset?: {
|
|
@@ -153018,7 +153019,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153018
153019
|
title?: string | null | undefined;
|
|
153019
153020
|
} | null | undefined;
|
|
153020
153021
|
}[] | null | undefined;
|
|
153021
|
-
|
|
153022
|
+
guideline?: {
|
|
153022
153023
|
type: string;
|
|
153023
153024
|
description?: string | null | undefined;
|
|
153024
153025
|
asset?: {
|
|
@@ -153050,7 +153051,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153050
153051
|
imageAlt?: string | null | undefined;
|
|
153051
153052
|
imageCaption?: string | null | undefined;
|
|
153052
153053
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
153053
|
-
}
|
|
153054
|
+
} | null | undefined;
|
|
153054
153055
|
customBlockKey?: string | null | undefined;
|
|
153055
153056
|
customBlockProperties?: {
|
|
153056
153057
|
key: string;
|
|
@@ -153218,7 +153219,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153218
153219
|
} | null | undefined;
|
|
153219
153220
|
oldBlocks?: ({
|
|
153220
153221
|
persistentId: string;
|
|
153221
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
153222
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
153222
153223
|
url?: string | null | undefined;
|
|
153223
153224
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
153224
153225
|
asset?: {
|
|
@@ -153329,7 +153330,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153329
153330
|
title?: string | null | undefined;
|
|
153330
153331
|
} | null | undefined;
|
|
153331
153332
|
}[] | null | undefined;
|
|
153332
|
-
|
|
153333
|
+
guideline?: {
|
|
153333
153334
|
type: string;
|
|
153334
153335
|
description?: string | null | undefined;
|
|
153335
153336
|
asset?: {
|
|
@@ -153361,7 +153362,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153361
153362
|
imageAlt?: string | null | undefined;
|
|
153362
153363
|
imageCaption?: string | null | undefined;
|
|
153363
153364
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
153364
|
-
}
|
|
153365
|
+
} | null | undefined;
|
|
153365
153366
|
customBlockKey?: string | null | undefined;
|
|
153366
153367
|
customBlockProperties?: {
|
|
153367
153368
|
key: string;
|
|
@@ -153438,7 +153439,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153438
153439
|
} & {
|
|
153439
153440
|
children: ({
|
|
153440
153441
|
persistentId: string;
|
|
153441
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
153442
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
153442
153443
|
url?: string | null | undefined;
|
|
153443
153444
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
153444
153445
|
asset?: {
|
|
@@ -153549,7 +153550,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153549
153550
|
title?: string | null | undefined;
|
|
153550
153551
|
} | null | undefined;
|
|
153551
153552
|
}[] | null | undefined;
|
|
153552
|
-
|
|
153553
|
+
guideline?: {
|
|
153553
153554
|
type: string;
|
|
153554
153555
|
description?: string | null | undefined;
|
|
153555
153556
|
asset?: {
|
|
@@ -153581,7 +153582,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
153581
153582
|
imageAlt?: string | null | undefined;
|
|
153582
153583
|
imageCaption?: string | null | undefined;
|
|
153583
153584
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
153584
|
-
}
|
|
153585
|
+
} | null | undefined;
|
|
153585
153586
|
customBlockKey?: string | null | undefined;
|
|
153586
153587
|
customBlockProperties?: {
|
|
153587
153588
|
key: string;
|
|
@@ -155457,7 +155458,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
155457
155458
|
} | null | undefined;
|
|
155458
155459
|
oldBlocks?: ({
|
|
155459
155460
|
persistentId: string;
|
|
155460
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
155461
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
155461
155462
|
url?: string | null | undefined;
|
|
155462
155463
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
155463
155464
|
asset?: {
|
|
@@ -155568,7 +155569,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
155568
155569
|
title?: string | null | undefined;
|
|
155569
155570
|
} | null | undefined;
|
|
155570
155571
|
}[] | null | undefined;
|
|
155571
|
-
|
|
155572
|
+
guideline?: {
|
|
155572
155573
|
type: string;
|
|
155573
155574
|
description?: string | null | undefined;
|
|
155574
155575
|
asset?: {
|
|
@@ -155600,7 +155601,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
155600
155601
|
imageAlt?: string | null | undefined;
|
|
155601
155602
|
imageCaption?: string | null | undefined;
|
|
155602
155603
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
155603
|
-
}
|
|
155604
|
+
} | null | undefined;
|
|
155604
155605
|
customBlockKey?: string | null | undefined;
|
|
155605
155606
|
customBlockProperties?: {
|
|
155606
155607
|
key: string;
|
|
@@ -155677,7 +155678,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
155677
155678
|
} & {
|
|
155678
155679
|
children: ({
|
|
155679
155680
|
persistentId: string;
|
|
155680
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
155681
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
155681
155682
|
url?: string | null | undefined;
|
|
155682
155683
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
155683
155684
|
asset?: {
|
|
@@ -155788,7 +155789,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
155788
155789
|
title?: string | null | undefined;
|
|
155789
155790
|
} | null | undefined;
|
|
155790
155791
|
}[] | null | undefined;
|
|
155791
|
-
|
|
155792
|
+
guideline?: {
|
|
155792
155793
|
type: string;
|
|
155793
155794
|
description?: string | null | undefined;
|
|
155794
155795
|
asset?: {
|
|
@@ -155820,7 +155821,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
155820
155821
|
imageAlt?: string | null | undefined;
|
|
155821
155822
|
imageCaption?: string | null | undefined;
|
|
155822
155823
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
155823
|
-
}
|
|
155824
|
+
} | null | undefined;
|
|
155824
155825
|
customBlockKey?: string | null | undefined;
|
|
155825
155826
|
customBlockProperties?: {
|
|
155826
155827
|
key: string;
|
|
@@ -156280,7 +156281,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156280
156281
|
}, {
|
|
156281
156282
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
156282
156283
|
persistentId: string;
|
|
156283
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
156284
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
156284
156285
|
url?: string | null | undefined;
|
|
156285
156286
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
156286
156287
|
asset?: {
|
|
@@ -156391,7 +156392,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156391
156392
|
title?: string | null | undefined;
|
|
156392
156393
|
} | null | undefined;
|
|
156393
156394
|
}[] | null | undefined;
|
|
156394
|
-
|
|
156395
|
+
guideline?: {
|
|
156395
156396
|
type: string;
|
|
156396
156397
|
description?: string | null | undefined;
|
|
156397
156398
|
asset?: {
|
|
@@ -156423,7 +156424,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156423
156424
|
imageAlt?: string | null | undefined;
|
|
156424
156425
|
imageCaption?: string | null | undefined;
|
|
156425
156426
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
156426
|
-
}
|
|
156427
|
+
} | null | undefined;
|
|
156427
156428
|
customBlockKey?: string | null | undefined;
|
|
156428
156429
|
customBlockProperties?: {
|
|
156429
156430
|
key: string;
|
|
@@ -156500,7 +156501,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156500
156501
|
} & {
|
|
156501
156502
|
children: ({
|
|
156502
156503
|
persistentId: string;
|
|
156503
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
156504
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
156504
156505
|
url?: string | null | undefined;
|
|
156505
156506
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
156506
156507
|
asset?: {
|
|
@@ -156611,7 +156612,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156611
156612
|
title?: string | null | undefined;
|
|
156612
156613
|
} | null | undefined;
|
|
156613
156614
|
}[] | null | undefined;
|
|
156614
|
-
|
|
156615
|
+
guideline?: {
|
|
156615
156616
|
type: string;
|
|
156616
156617
|
description?: string | null | undefined;
|
|
156617
156618
|
asset?: {
|
|
@@ -156643,7 +156644,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156643
156644
|
imageAlt?: string | null | undefined;
|
|
156644
156645
|
imageCaption?: string | null | undefined;
|
|
156645
156646
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
156646
|
-
}
|
|
156647
|
+
} | null | undefined;
|
|
156647
156648
|
customBlockKey?: string | null | undefined;
|
|
156648
156649
|
customBlockProperties?: {
|
|
156649
156650
|
key: string;
|
|
@@ -156788,7 +156789,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156788
156789
|
} | null | undefined;
|
|
156789
156790
|
oldBlocks?: ({
|
|
156790
156791
|
persistentId: string;
|
|
156791
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
156792
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
156792
156793
|
url?: string | null | undefined;
|
|
156793
156794
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
156794
156795
|
asset?: {
|
|
@@ -156899,7 +156900,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156899
156900
|
title?: string | null | undefined;
|
|
156900
156901
|
} | null | undefined;
|
|
156901
156902
|
}[] | null | undefined;
|
|
156902
|
-
|
|
156903
|
+
guideline?: {
|
|
156903
156904
|
type: string;
|
|
156904
156905
|
description?: string | null | undefined;
|
|
156905
156906
|
asset?: {
|
|
@@ -156931,7 +156932,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
156931
156932
|
imageAlt?: string | null | undefined;
|
|
156932
156933
|
imageCaption?: string | null | undefined;
|
|
156933
156934
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
156934
|
-
}
|
|
156935
|
+
} | null | undefined;
|
|
156935
156936
|
customBlockKey?: string | null | undefined;
|
|
156936
156937
|
customBlockProperties?: {
|
|
156937
156938
|
key: string;
|
|
@@ -157008,7 +157009,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157008
157009
|
} & {
|
|
157009
157010
|
children: ({
|
|
157010
157011
|
persistentId: string;
|
|
157011
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
157012
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
157012
157013
|
url?: string | null | undefined;
|
|
157013
157014
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
157014
157015
|
asset?: {
|
|
@@ -157119,7 +157120,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157119
157120
|
title?: string | null | undefined;
|
|
157120
157121
|
} | null | undefined;
|
|
157121
157122
|
}[] | null | undefined;
|
|
157122
|
-
|
|
157123
|
+
guideline?: {
|
|
157123
157124
|
type: string;
|
|
157124
157125
|
description?: string | null | undefined;
|
|
157125
157126
|
asset?: {
|
|
@@ -157151,7 +157152,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157151
157152
|
imageAlt?: string | null | undefined;
|
|
157152
157153
|
imageCaption?: string | null | undefined;
|
|
157153
157154
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
157154
|
-
}
|
|
157155
|
+
} | null | undefined;
|
|
157155
157156
|
customBlockKey?: string | null | undefined;
|
|
157156
157157
|
customBlockProperties?: {
|
|
157157
157158
|
key: string;
|
|
@@ -157319,7 +157320,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157319
157320
|
} | null | undefined;
|
|
157320
157321
|
oldBlocks?: ({
|
|
157321
157322
|
persistentId: string;
|
|
157322
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
157323
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
157323
157324
|
url?: string | null | undefined;
|
|
157324
157325
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
157325
157326
|
asset?: {
|
|
@@ -157430,7 +157431,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157430
157431
|
title?: string | null | undefined;
|
|
157431
157432
|
} | null | undefined;
|
|
157432
157433
|
}[] | null | undefined;
|
|
157433
|
-
|
|
157434
|
+
guideline?: {
|
|
157434
157435
|
type: string;
|
|
157435
157436
|
description?: string | null | undefined;
|
|
157436
157437
|
asset?: {
|
|
@@ -157462,7 +157463,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157462
157463
|
imageAlt?: string | null | undefined;
|
|
157463
157464
|
imageCaption?: string | null | undefined;
|
|
157464
157465
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
157465
|
-
}
|
|
157466
|
+
} | null | undefined;
|
|
157466
157467
|
customBlockKey?: string | null | undefined;
|
|
157467
157468
|
customBlockProperties?: {
|
|
157468
157469
|
key: string;
|
|
@@ -157539,7 +157540,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157539
157540
|
} & {
|
|
157540
157541
|
children: ({
|
|
157541
157542
|
persistentId: string;
|
|
157542
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
157543
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
157543
157544
|
url?: string | null | undefined;
|
|
157544
157545
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
157545
157546
|
asset?: {
|
|
@@ -157650,7 +157651,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157650
157651
|
title?: string | null | undefined;
|
|
157651
157652
|
} | null | undefined;
|
|
157652
157653
|
}[] | null | undefined;
|
|
157653
|
-
|
|
157654
|
+
guideline?: {
|
|
157654
157655
|
type: string;
|
|
157655
157656
|
description?: string | null | undefined;
|
|
157656
157657
|
asset?: {
|
|
@@ -157682,7 +157683,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
157682
157683
|
imageAlt?: string | null | undefined;
|
|
157683
157684
|
imageCaption?: string | null | undefined;
|
|
157684
157685
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
157685
|
-
}
|
|
157686
|
+
} | null | undefined;
|
|
157686
157687
|
customBlockKey?: string | null | undefined;
|
|
157687
157688
|
customBlockProperties?: {
|
|
157688
157689
|
key: string;
|
|
@@ -159238,7 +159239,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
159238
159239
|
} | null | undefined;
|
|
159239
159240
|
oldBlocks?: ({
|
|
159240
159241
|
persistentId: string;
|
|
159241
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
159242
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
159242
159243
|
url?: string | null | undefined;
|
|
159243
159244
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
159244
159245
|
asset?: {
|
|
@@ -159349,7 +159350,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
159349
159350
|
title?: string | null | undefined;
|
|
159350
159351
|
} | null | undefined;
|
|
159351
159352
|
}[] | null | undefined;
|
|
159352
|
-
|
|
159353
|
+
guideline?: {
|
|
159353
159354
|
type: string;
|
|
159354
159355
|
description?: string | null | undefined;
|
|
159355
159356
|
asset?: {
|
|
@@ -159381,7 +159382,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
159381
159382
|
imageAlt?: string | null | undefined;
|
|
159382
159383
|
imageCaption?: string | null | undefined;
|
|
159383
159384
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
159384
|
-
}
|
|
159385
|
+
} | null | undefined;
|
|
159385
159386
|
customBlockKey?: string | null | undefined;
|
|
159386
159387
|
customBlockProperties?: {
|
|
159387
159388
|
key: string;
|
|
@@ -159458,7 +159459,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
159458
159459
|
} & {
|
|
159459
159460
|
children: ({
|
|
159460
159461
|
persistentId: string;
|
|
159461
|
-
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines";
|
|
159462
|
+
type: "Image" | "Text" | "Link" | "Token" | "Component" | "Theme" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
|
|
159462
159463
|
url?: string | null | undefined;
|
|
159463
159464
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
159464
159465
|
asset?: {
|
|
@@ -159569,7 +159570,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
159569
159570
|
title?: string | null | undefined;
|
|
159570
159571
|
} | null | undefined;
|
|
159571
159572
|
}[] | null | undefined;
|
|
159572
|
-
|
|
159573
|
+
guideline?: {
|
|
159573
159574
|
type: string;
|
|
159574
159575
|
description?: string | null | undefined;
|
|
159575
159576
|
asset?: {
|
|
@@ -159601,7 +159602,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
159601
159602
|
imageAlt?: string | null | undefined;
|
|
159602
159603
|
imageCaption?: string | null | undefined;
|
|
159603
159604
|
imageAlignment?: "Center" | "Left" | "Stretch" | "Right" | null | undefined;
|
|
159604
|
-
}
|
|
159605
|
+
} | null | undefined;
|
|
159605
159606
|
customBlockKey?: string | null | undefined;
|
|
159606
159607
|
customBlockProperties?: {
|
|
159607
159608
|
key: string;
|
|
@@ -166548,4 +166549,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
166548
166549
|
}>;
|
|
166549
166550
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
166550
166551
|
|
|
166551
|
-
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, 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, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, 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 CreateFigmaComponent, 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, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyType, 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 ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, 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, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, 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 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 UpdateFigmaComponent, 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, isImportedDesignToken, isImportedFigmaComponent, 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 };
|
|
166552
|
+
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, 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, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, 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 CreateFigmaComponent, 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, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyType, 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 ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, 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, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, 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 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 UpdateFigmaComponent, 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, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, 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 };
|