@supernova-studio/model 0.54.7 → 0.54.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -36699,7 +36699,7 @@ declare const PageBlockTilesLayout: z.ZodEnum<["C8", "C7", "C6", "C5", "C4", "C3
36699
36699
  type PageBlockTilesLayout = z.infer<typeof PageBlockTilesLayout>;
36700
36700
  declare const PageBlockTextSpanAttributeType: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
36701
36701
  type PageBlockTextSpanAttributeType = z.infer<typeof PageBlockTextSpanAttributeType>;
36702
- 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"]>;
36702
+ 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", "ComponentAssetGroup", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell", "Guidelines", "Guideline"]>;
36703
36703
  type PageBlockTypeV1 = z.infer<typeof PageBlockTypeV1>;
36704
36704
  declare const PageBlockTextSpanAttribute: z.ZodObject<{
36705
36705
  type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code", "Comment"]>;
@@ -37359,6 +37359,17 @@ declare const PageBlockTheme: z.ZodObject<{
37359
37359
  themeIds: string[];
37360
37360
  }>;
37361
37361
  type PageBlockTheme = z.infer<typeof PageBlockTheme>;
37362
+ declare const PageBlockSwatch: z.ZodObject<{
37363
+ id: z.ZodString;
37364
+ selectedThemeIds: z.ZodArray<z.ZodString, "many">;
37365
+ }, "strip", z.ZodTypeAny, {
37366
+ id: string;
37367
+ selectedThemeIds: string[];
37368
+ }, {
37369
+ id: string;
37370
+ selectedThemeIds: string[];
37371
+ }>;
37372
+ type PageBlockSwatch = z.infer<typeof PageBlockSwatch>;
37362
37373
  declare const PageBlockShortcut: z.ZodObject<{
37363
37374
  persistentId: z.ZodString;
37364
37375
  title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
@@ -37763,7 +37774,7 @@ declare const PageBlockCustomBlockPropertyImageValue: z.ZodObject<{
37763
37774
  type PageBlockCustomBlockPropertyImageValue = z.infer<typeof PageBlockCustomBlockPropertyImageValue>;
37764
37775
  declare const PageBlockBaseV1: z.ZodObject<{
37765
37776
  persistentId: z.ZodString;
37766
- 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"]>;
37777
+ 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", "ComponentAssetGroup", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell", "Guidelines", "Guideline"]>;
37767
37778
  numberOfColumns: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
37768
37779
  designObjectId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
37769
37780
  designObjectIds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
@@ -38527,11 +38538,24 @@ declare const PageBlockBaseV1: z.ZodObject<{
38527
38538
  type: "Override" | "Comparison";
38528
38539
  themeIds: string[];
38529
38540
  } | null | undefined>;
38541
+ swatches: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
38542
+ id: string;
38543
+ selectedThemeIds: string[];
38544
+ }[], z.ZodTypeDef, {
38545
+ id: string;
38546
+ selectedThemeIds: string[];
38547
+ }[]>>>, {
38548
+ id: string;
38549
+ selectedThemeIds: string[];
38550
+ }[] | undefined, {
38551
+ id: string;
38552
+ selectedThemeIds: string[];
38553
+ }[] | null | undefined>;
38530
38554
  blacklistedElementProperties: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
38531
38555
  userMetadata: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
38532
38556
  }, "strip", z.ZodTypeAny, {
38533
38557
  persistentId: string;
38534
- 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";
38558
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
38535
38559
  url?: string | undefined;
38536
38560
  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;
38537
38561
  asset?: {
@@ -38746,11 +38770,15 @@ declare const PageBlockBaseV1: z.ZodObject<{
38746
38770
  }[];
38747
38771
  } | undefined;
38748
38772
  columnId?: string | undefined;
38773
+ swatches?: {
38774
+ id: string;
38775
+ selectedThemeIds: string[];
38776
+ }[] | undefined;
38749
38777
  blacklistedElementProperties?: string[] | undefined;
38750
38778
  userMetadata?: string | undefined;
38751
38779
  }, {
38752
38780
  persistentId: string;
38753
- 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";
38781
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
38754
38782
  url?: string | null | undefined;
38755
38783
  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;
38756
38784
  asset?: {
@@ -38965,6 +38993,10 @@ declare const PageBlockBaseV1: z.ZodObject<{
38965
38993
  }[];
38966
38994
  } | null | undefined;
38967
38995
  columnId?: string | null | undefined;
38996
+ swatches?: {
38997
+ id: string;
38998
+ selectedThemeIds: string[];
38999
+ }[] | null | undefined;
38968
39000
  blacklistedElementProperties?: string[] | null | undefined;
38969
39001
  userMetadata?: string | null | undefined;
38970
39002
  }>;
@@ -39081,6 +39113,7 @@ declare const PageBlockAssetEntityMeta: z.ZodObject<{
39081
39113
  value: string;
39082
39114
  referencedTokenId?: string | undefined;
39083
39115
  }>>;
39116
+ showNestedGroups: z.ZodOptional<z.ZodBoolean>;
39084
39117
  }, "strip", z.ZodTypeAny, {
39085
39118
  description?: string | undefined;
39086
39119
  title?: string | undefined;
@@ -39088,6 +39121,7 @@ declare const PageBlockAssetEntityMeta: z.ZodObject<{
39088
39121
  value: string;
39089
39122
  referencedTokenId?: string | undefined;
39090
39123
  } | undefined;
39124
+ showNestedGroups?: boolean | undefined;
39091
39125
  }, {
39092
39126
  description?: string | undefined;
39093
39127
  title?: string | undefined;
@@ -39095,6 +39129,7 @@ declare const PageBlockAssetEntityMeta: z.ZodObject<{
39095
39129
  value: string;
39096
39130
  referencedTokenId?: string | undefined;
39097
39131
  } | undefined;
39132
+ showNestedGroups?: boolean | undefined;
39098
39133
  }>;
39099
39134
  type PageBlockAssetEntityMeta = z.infer<typeof PageBlockAssetEntityMeta>;
39100
39135
  declare const PageBlockFigmaComponentEntityMeta: z.ZodObject<{
@@ -39428,6 +39463,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
39428
39463
  value: string;
39429
39464
  referencedTokenId?: string | undefined;
39430
39465
  }>>;
39466
+ showNestedGroups: z.ZodOptional<z.ZodBoolean>;
39431
39467
  }, "strip", z.ZodTypeAny, {
39432
39468
  description?: string | undefined;
39433
39469
  title?: string | undefined;
@@ -39435,6 +39471,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
39435
39471
  value: string;
39436
39472
  referencedTokenId?: string | undefined;
39437
39473
  } | undefined;
39474
+ showNestedGroups?: boolean | undefined;
39438
39475
  }, {
39439
39476
  description?: string | undefined;
39440
39477
  title?: string | undefined;
@@ -39442,6 +39479,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
39442
39479
  value: string;
39443
39480
  referencedTokenId?: string | undefined;
39444
39481
  } | undefined;
39482
+ showNestedGroups?: boolean | undefined;
39445
39483
  }>>;
39446
39484
  }, "strip", z.ZodTypeAny, {
39447
39485
  entityId: string;
@@ -39453,6 +39491,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
39453
39491
  value: string;
39454
39492
  referencedTokenId?: string | undefined;
39455
39493
  } | undefined;
39494
+ showNestedGroups?: boolean | undefined;
39456
39495
  } | undefined;
39457
39496
  }, {
39458
39497
  entityId: string;
@@ -39464,6 +39503,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
39464
39503
  value: string;
39465
39504
  referencedTokenId?: string | undefined;
39466
39505
  } | undefined;
39506
+ showNestedGroups?: boolean | undefined;
39467
39507
  } | undefined;
39468
39508
  }>, "many">>;
39469
39509
  }, "strip", z.ZodTypeAny, {
@@ -39477,6 +39517,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
39477
39517
  value: string;
39478
39518
  referencedTokenId?: string | undefined;
39479
39519
  } | undefined;
39520
+ showNestedGroups?: boolean | undefined;
39480
39521
  } | undefined;
39481
39522
  }[];
39482
39523
  backgroundColor?: {
@@ -39497,6 +39538,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
39497
39538
  value: string;
39498
39539
  referencedTokenId?: string | undefined;
39499
39540
  } | undefined;
39541
+ showNestedGroups?: boolean | undefined;
39500
39542
  } | undefined;
39501
39543
  }[] | undefined;
39502
39544
  backgroundColor?: {
@@ -40281,12 +40323,12 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
40281
40323
  showNestedGroups?: boolean | undefined;
40282
40324
  } | undefined;
40283
40325
  }[];
40284
- selectedPropertyIds?: string[] | undefined;
40285
40326
  selectedThemeIds?: string[] | undefined;
40286
40327
  swatches?: {
40287
40328
  id: string;
40288
40329
  selectedThemeIds: string[];
40289
40330
  }[] | undefined;
40331
+ selectedPropertyIds?: string[] | undefined;
40290
40332
  themeDisplayMode?: "Override" | "Split" | undefined;
40291
40333
  }, {
40292
40334
  value?: {
@@ -40296,12 +40338,12 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
40296
40338
  showNestedGroups?: boolean | undefined;
40297
40339
  } | undefined;
40298
40340
  }[] | undefined;
40299
- selectedPropertyIds?: string[] | undefined;
40300
40341
  selectedThemeIds?: string[] | undefined;
40301
40342
  swatches?: {
40302
40343
  id: string;
40303
40344
  selectedThemeIds: string[];
40304
40345
  }[] | undefined;
40346
+ selectedPropertyIds?: string[] | undefined;
40305
40347
  themeDisplayMode?: "Override" | "Split" | undefined;
40306
40348
  }>;
40307
40349
  type PageBlockItemTokenValue = z.infer<typeof PageBlockItemTokenValue>;
@@ -40311,12 +40353,12 @@ declare const PageBlockItemTokenPropertyValue: z.ZodObject<{
40311
40353
  value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
40312
40354
  }, "strip", z.ZodTypeAny, {
40313
40355
  value: string[];
40314
- selectedPropertyIds?: string[] | undefined;
40315
40356
  selectedThemeIds?: string[] | undefined;
40357
+ selectedPropertyIds?: string[] | undefined;
40316
40358
  }, {
40317
40359
  value?: string[] | undefined;
40318
- selectedPropertyIds?: string[] | undefined;
40319
40360
  selectedThemeIds?: string[] | undefined;
40361
+ selectedPropertyIds?: string[] | undefined;
40320
40362
  }>;
40321
40363
  type PageBlockItemTokenPropertyValue = z.infer<typeof PageBlockItemTokenPropertyValue>;
40322
40364
  declare const PageBlockItemTokenTypeValue: z.ZodObject<{
@@ -42616,7 +42658,7 @@ type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
42616
42658
  declare const DocumentationPageDataV1: z.ZodObject<{
42617
42659
  blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
42618
42660
  persistentId: string;
42619
- 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";
42661
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
42620
42662
  url?: string | null | undefined;
42621
42663
  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;
42622
42664
  asset?: {
@@ -42831,12 +42873,16 @@ declare const DocumentationPageDataV1: z.ZodObject<{
42831
42873
  }[];
42832
42874
  } | null | undefined;
42833
42875
  columnId?: string | null | undefined;
42876
+ swatches?: {
42877
+ id: string;
42878
+ selectedThemeIds: string[];
42879
+ }[] | null | undefined;
42834
42880
  blacklistedElementProperties?: string[] | null | undefined;
42835
42881
  userMetadata?: string | null | undefined;
42836
42882
  } & {
42837
42883
  children: ({
42838
42884
  persistentId: string;
42839
- 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";
42885
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
42840
42886
  url?: string | null | undefined;
42841
42887
  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;
42842
42888
  asset?: {
@@ -43051,6 +43097,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
43051
43097
  }[];
43052
43098
  } | null | undefined;
43053
43099
  columnId?: string | null | undefined;
43100
+ swatches?: {
43101
+ id: string;
43102
+ selectedThemeIds: string[];
43103
+ }[] | null | undefined;
43054
43104
  blacklistedElementProperties?: string[] | null | undefined;
43055
43105
  userMetadata?: string | null | undefined;
43056
43106
  } & any)[] | null | undefined;
@@ -43402,7 +43452,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
43402
43452
  }, {
43403
43453
  blocks: ({
43404
43454
  persistentId: string;
43405
- 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";
43455
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
43406
43456
  url?: string | null | undefined;
43407
43457
  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;
43408
43458
  asset?: {
@@ -43617,12 +43667,16 @@ declare const DocumentationPageDataV1: z.ZodObject<{
43617
43667
  }[];
43618
43668
  } | null | undefined;
43619
43669
  columnId?: string | null | undefined;
43670
+ swatches?: {
43671
+ id: string;
43672
+ selectedThemeIds: string[];
43673
+ }[] | null | undefined;
43620
43674
  blacklistedElementProperties?: string[] | null | undefined;
43621
43675
  userMetadata?: string | null | undefined;
43622
43676
  } & {
43623
43677
  children: ({
43624
43678
  persistentId: string;
43625
- 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";
43679
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
43626
43680
  url?: string | null | undefined;
43627
43681
  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;
43628
43682
  asset?: {
@@ -43837,6 +43891,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
43837
43891
  }[];
43838
43892
  } | null | undefined;
43839
43893
  columnId?: string | null | undefined;
43894
+ swatches?: {
43895
+ id: string;
43896
+ selectedThemeIds: string[];
43897
+ }[] | null | undefined;
43840
43898
  blacklistedElementProperties?: string[] | null | undefined;
43841
43899
  userMetadata?: string | null | undefined;
43842
43900
  } & any)[] | null | undefined;
@@ -50505,7 +50563,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
50505
50563
  data: z.ZodObject<{
50506
50564
  blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
50507
50565
  persistentId: string;
50508
- 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";
50566
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
50509
50567
  url?: string | null | undefined;
50510
50568
  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;
50511
50569
  asset?: {
@@ -50720,12 +50778,16 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
50720
50778
  }[];
50721
50779
  } | null | undefined;
50722
50780
  columnId?: string | null | undefined;
50781
+ swatches?: {
50782
+ id: string;
50783
+ selectedThemeIds: string[];
50784
+ }[] | null | undefined;
50723
50785
  blacklistedElementProperties?: string[] | null | undefined;
50724
50786
  userMetadata?: string | null | undefined;
50725
50787
  } & {
50726
50788
  children: ({
50727
50789
  persistentId: string;
50728
- 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";
50790
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
50729
50791
  url?: string | null | undefined;
50730
50792
  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;
50731
50793
  asset?: {
@@ -50940,6 +51002,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
50940
51002
  }[];
50941
51003
  } | null | undefined;
50942
51004
  columnId?: string | null | undefined;
51005
+ swatches?: {
51006
+ id: string;
51007
+ selectedThemeIds: string[];
51008
+ }[] | null | undefined;
50943
51009
  blacklistedElementProperties?: string[] | null | undefined;
50944
51010
  userMetadata?: string | null | undefined;
50945
51011
  } & any)[] | null | undefined;
@@ -51291,7 +51357,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
51291
51357
  }, {
51292
51358
  blocks: ({
51293
51359
  persistentId: string;
51294
- 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";
51360
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
51295
51361
  url?: string | null | undefined;
51296
51362
  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;
51297
51363
  asset?: {
@@ -51506,12 +51572,16 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
51506
51572
  }[];
51507
51573
  } | null | undefined;
51508
51574
  columnId?: string | null | undefined;
51575
+ swatches?: {
51576
+ id: string;
51577
+ selectedThemeIds: string[];
51578
+ }[] | null | undefined;
51509
51579
  blacklistedElementProperties?: string[] | null | undefined;
51510
51580
  userMetadata?: string | null | undefined;
51511
51581
  } & {
51512
51582
  children: ({
51513
51583
  persistentId: string;
51514
- 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";
51584
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
51515
51585
  url?: string | null | undefined;
51516
51586
  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;
51517
51587
  asset?: {
@@ -51726,6 +51796,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
51726
51796
  }[];
51727
51797
  } | null | undefined;
51728
51798
  columnId?: string | null | undefined;
51799
+ swatches?: {
51800
+ id: string;
51801
+ selectedThemeIds: string[];
51802
+ }[] | null | undefined;
51729
51803
  blacklistedElementProperties?: string[] | null | undefined;
51730
51804
  userMetadata?: string | null | undefined;
51731
51805
  } & any)[] | null | undefined;
@@ -51896,7 +51970,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
51896
51970
  data: {
51897
51971
  blocks: ({
51898
51972
  persistentId: string;
51899
- 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";
51973
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
51900
51974
  url?: string | null | undefined;
51901
51975
  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;
51902
51976
  asset?: {
@@ -52111,12 +52185,16 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
52111
52185
  }[];
52112
52186
  } | null | undefined;
52113
52187
  columnId?: string | null | undefined;
52188
+ swatches?: {
52189
+ id: string;
52190
+ selectedThemeIds: string[];
52191
+ }[] | null | undefined;
52114
52192
  blacklistedElementProperties?: string[] | null | undefined;
52115
52193
  userMetadata?: string | null | undefined;
52116
52194
  } & {
52117
52195
  children: ({
52118
52196
  persistentId: string;
52119
- 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";
52197
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
52120
52198
  url?: string | null | undefined;
52121
52199
  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;
52122
52200
  asset?: {
@@ -52331,6 +52409,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
52331
52409
  }[];
52332
52410
  } | null | undefined;
52333
52411
  columnId?: string | null | undefined;
52412
+ swatches?: {
52413
+ id: string;
52414
+ selectedThemeIds: string[];
52415
+ }[] | null | undefined;
52334
52416
  blacklistedElementProperties?: string[] | null | undefined;
52335
52417
  userMetadata?: string | null | undefined;
52336
52418
  } & any)[] | null | undefined;
@@ -53396,7 +53478,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
53396
53478
  }, {
53397
53479
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
53398
53480
  persistentId: string;
53399
- 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";
53481
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
53400
53482
  url?: string | null | undefined;
53401
53483
  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;
53402
53484
  asset?: {
@@ -53611,12 +53693,16 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
53611
53693
  }[];
53612
53694
  } | null | undefined;
53613
53695
  columnId?: string | null | undefined;
53696
+ swatches?: {
53697
+ id: string;
53698
+ selectedThemeIds: string[];
53699
+ }[] | null | undefined;
53614
53700
  blacklistedElementProperties?: string[] | null | undefined;
53615
53701
  userMetadata?: string | null | undefined;
53616
53702
  } & {
53617
53703
  children: ({
53618
53704
  persistentId: string;
53619
- 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";
53705
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
53620
53706
  url?: string | null | undefined;
53621
53707
  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;
53622
53708
  asset?: {
@@ -53831,6 +53917,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
53831
53917
  }[];
53832
53918
  } | null | undefined;
53833
53919
  columnId?: string | null | undefined;
53920
+ swatches?: {
53921
+ id: string;
53922
+ selectedThemeIds: string[];
53923
+ }[] | null | undefined;
53834
53924
  blacklistedElementProperties?: string[] | null | undefined;
53835
53925
  userMetadata?: string | null | undefined;
53836
53926
  } & any)[] | null | undefined;
@@ -53904,7 +53994,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
53904
53994
  } | null | undefined;
53905
53995
  oldBlocks?: ({
53906
53996
  persistentId: string;
53907
- 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";
53997
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
53908
53998
  url?: string | null | undefined;
53909
53999
  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;
53910
54000
  asset?: {
@@ -54119,12 +54209,16 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
54119
54209
  }[];
54120
54210
  } | null | undefined;
54121
54211
  columnId?: string | null | undefined;
54212
+ swatches?: {
54213
+ id: string;
54214
+ selectedThemeIds: string[];
54215
+ }[] | null | undefined;
54122
54216
  blacklistedElementProperties?: string[] | null | undefined;
54123
54217
  userMetadata?: string | null | undefined;
54124
54218
  } & {
54125
54219
  children: ({
54126
54220
  persistentId: string;
54127
- 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";
54221
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
54128
54222
  url?: string | null | undefined;
54129
54223
  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;
54130
54224
  asset?: {
@@ -54339,6 +54433,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
54339
54433
  }[];
54340
54434
  } | null | undefined;
54341
54435
  columnId?: string | null | undefined;
54436
+ swatches?: {
54437
+ id: string;
54438
+ selectedThemeIds: string[];
54439
+ }[] | null | undefined;
54342
54440
  blacklistedElementProperties?: string[] | null | undefined;
54343
54441
  userMetadata?: string | null | undefined;
54344
54442
  } & any)[] | null | undefined;
@@ -54435,7 +54533,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
54435
54533
  } | null | undefined;
54436
54534
  oldBlocks?: ({
54437
54535
  persistentId: string;
54438
- 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";
54536
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
54439
54537
  url?: string | null | undefined;
54440
54538
  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;
54441
54539
  asset?: {
@@ -54650,12 +54748,16 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
54650
54748
  }[];
54651
54749
  } | null | undefined;
54652
54750
  columnId?: string | null | undefined;
54751
+ swatches?: {
54752
+ id: string;
54753
+ selectedThemeIds: string[];
54754
+ }[] | null | undefined;
54653
54755
  blacklistedElementProperties?: string[] | null | undefined;
54654
54756
  userMetadata?: string | null | undefined;
54655
54757
  } & {
54656
54758
  children: ({
54657
54759
  persistentId: string;
54658
- 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";
54760
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
54659
54761
  url?: string | null | undefined;
54660
54762
  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;
54661
54763
  asset?: {
@@ -54870,6 +54972,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
54870
54972
  }[];
54871
54973
  } | null | undefined;
54872
54974
  columnId?: string | null | undefined;
54975
+ swatches?: {
54976
+ id: string;
54977
+ selectedThemeIds: string[];
54978
+ }[] | null | undefined;
54873
54979
  blacklistedElementProperties?: string[] | null | undefined;
54874
54980
  userMetadata?: string | null | undefined;
54875
54981
  } & any)[] | null | undefined;
@@ -73518,7 +73624,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
73518
73624
  }, {
73519
73625
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
73520
73626
  persistentId: string;
73521
- 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";
73627
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
73522
73628
  url?: string | null | undefined;
73523
73629
  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;
73524
73630
  asset?: {
@@ -73733,12 +73839,16 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
73733
73839
  }[];
73734
73840
  } | null | undefined;
73735
73841
  columnId?: string | null | undefined;
73842
+ swatches?: {
73843
+ id: string;
73844
+ selectedThemeIds: string[];
73845
+ }[] | null | undefined;
73736
73846
  blacklistedElementProperties?: string[] | null | undefined;
73737
73847
  userMetadata?: string | null | undefined;
73738
73848
  } & {
73739
73849
  children: ({
73740
73850
  persistentId: string;
73741
- 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";
73851
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
73742
73852
  url?: string | null | undefined;
73743
73853
  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;
73744
73854
  asset?: {
@@ -73953,6 +74063,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
73953
74063
  }[];
73954
74064
  } | null | undefined;
73955
74065
  columnId?: string | null | undefined;
74066
+ swatches?: {
74067
+ id: string;
74068
+ selectedThemeIds: string[];
74069
+ }[] | null | undefined;
73956
74070
  blacklistedElementProperties?: string[] | null | undefined;
73957
74071
  userMetadata?: string | null | undefined;
73958
74072
  } & any)[] | null | undefined;
@@ -74026,7 +74140,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
74026
74140
  } | null | undefined;
74027
74141
  oldBlocks?: ({
74028
74142
  persistentId: string;
74029
- 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";
74143
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
74030
74144
  url?: string | null | undefined;
74031
74145
  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;
74032
74146
  asset?: {
@@ -74241,12 +74355,16 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
74241
74355
  }[];
74242
74356
  } | null | undefined;
74243
74357
  columnId?: string | null | undefined;
74358
+ swatches?: {
74359
+ id: string;
74360
+ selectedThemeIds: string[];
74361
+ }[] | null | undefined;
74244
74362
  blacklistedElementProperties?: string[] | null | undefined;
74245
74363
  userMetadata?: string | null | undefined;
74246
74364
  } & {
74247
74365
  children: ({
74248
74366
  persistentId: string;
74249
- 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";
74367
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
74250
74368
  url?: string | null | undefined;
74251
74369
  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;
74252
74370
  asset?: {
@@ -74461,6 +74579,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
74461
74579
  }[];
74462
74580
  } | null | undefined;
74463
74581
  columnId?: string | null | undefined;
74582
+ swatches?: {
74583
+ id: string;
74584
+ selectedThemeIds: string[];
74585
+ }[] | null | undefined;
74464
74586
  blacklistedElementProperties?: string[] | null | undefined;
74465
74587
  userMetadata?: string | null | undefined;
74466
74588
  } & any)[] | null | undefined;
@@ -74557,7 +74679,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
74557
74679
  } | null | undefined;
74558
74680
  oldBlocks?: ({
74559
74681
  persistentId: string;
74560
- 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";
74682
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
74561
74683
  url?: string | null | undefined;
74562
74684
  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;
74563
74685
  asset?: {
@@ -74772,12 +74894,16 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
74772
74894
  }[];
74773
74895
  } | null | undefined;
74774
74896
  columnId?: string | null | undefined;
74897
+ swatches?: {
74898
+ id: string;
74899
+ selectedThemeIds: string[];
74900
+ }[] | null | undefined;
74775
74901
  blacklistedElementProperties?: string[] | null | undefined;
74776
74902
  userMetadata?: string | null | undefined;
74777
74903
  } & {
74778
74904
  children: ({
74779
74905
  persistentId: string;
74780
- 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";
74906
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
74781
74907
  url?: string | null | undefined;
74782
74908
  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;
74783
74909
  asset?: {
@@ -74992,6 +75118,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
74992
75118
  }[];
74993
75119
  } | null | undefined;
74994
75120
  columnId?: string | null | undefined;
75121
+ swatches?: {
75122
+ id: string;
75123
+ selectedThemeIds: string[];
75124
+ }[] | null | undefined;
74995
75125
  blacklistedElementProperties?: string[] | null | undefined;
74996
75126
  userMetadata?: string | null | undefined;
74997
75127
  } & any)[] | null | undefined;
@@ -75117,7 +75247,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
75117
75247
  } | null | undefined;
75118
75248
  oldBlocks?: ({
75119
75249
  persistentId: string;
75120
- 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";
75250
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
75121
75251
  url?: string | null | undefined;
75122
75252
  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;
75123
75253
  asset?: {
@@ -75332,12 +75462,16 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
75332
75462
  }[];
75333
75463
  } | null | undefined;
75334
75464
  columnId?: string | null | undefined;
75465
+ swatches?: {
75466
+ id: string;
75467
+ selectedThemeIds: string[];
75468
+ }[] | null | undefined;
75335
75469
  blacklistedElementProperties?: string[] | null | undefined;
75336
75470
  userMetadata?: string | null | undefined;
75337
75471
  } & {
75338
75472
  children: ({
75339
75473
  persistentId: string;
75340
- 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";
75474
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
75341
75475
  url?: string | null | undefined;
75342
75476
  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;
75343
75477
  asset?: {
@@ -75552,6 +75686,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
75552
75686
  }[];
75553
75687
  } | null | undefined;
75554
75688
  columnId?: string | null | undefined;
75689
+ swatches?: {
75690
+ id: string;
75691
+ selectedThemeIds: string[];
75692
+ }[] | null | undefined;
75555
75693
  blacklistedElementProperties?: string[] | null | undefined;
75556
75694
  userMetadata?: string | null | undefined;
75557
75695
  } & any)[] | null | undefined;
@@ -135571,7 +135709,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
135571
135709
  }, {
135572
135710
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
135573
135711
  persistentId: string;
135574
- 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";
135712
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
135575
135713
  url?: string | null | undefined;
135576
135714
  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;
135577
135715
  asset?: {
@@ -135786,12 +135924,16 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
135786
135924
  }[];
135787
135925
  } | null | undefined;
135788
135926
  columnId?: string | null | undefined;
135927
+ swatches?: {
135928
+ id: string;
135929
+ selectedThemeIds: string[];
135930
+ }[] | null | undefined;
135789
135931
  blacklistedElementProperties?: string[] | null | undefined;
135790
135932
  userMetadata?: string | null | undefined;
135791
135933
  } & {
135792
135934
  children: ({
135793
135935
  persistentId: string;
135794
- 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";
135936
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
135795
135937
  url?: string | null | undefined;
135796
135938
  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;
135797
135939
  asset?: {
@@ -136006,6 +136148,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
136006
136148
  }[];
136007
136149
  } | null | undefined;
136008
136150
  columnId?: string | null | undefined;
136151
+ swatches?: {
136152
+ id: string;
136153
+ selectedThemeIds: string[];
136154
+ }[] | null | undefined;
136009
136155
  blacklistedElementProperties?: string[] | null | undefined;
136010
136156
  userMetadata?: string | null | undefined;
136011
136157
  } & any)[] | null | undefined;
@@ -136079,7 +136225,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
136079
136225
  } | null | undefined;
136080
136226
  oldBlocks?: ({
136081
136227
  persistentId: string;
136082
- 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";
136228
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
136083
136229
  url?: string | null | undefined;
136084
136230
  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;
136085
136231
  asset?: {
@@ -136294,12 +136440,16 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
136294
136440
  }[];
136295
136441
  } | null | undefined;
136296
136442
  columnId?: string | null | undefined;
136443
+ swatches?: {
136444
+ id: string;
136445
+ selectedThemeIds: string[];
136446
+ }[] | null | undefined;
136297
136447
  blacklistedElementProperties?: string[] | null | undefined;
136298
136448
  userMetadata?: string | null | undefined;
136299
136449
  } & {
136300
136450
  children: ({
136301
136451
  persistentId: string;
136302
- 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";
136452
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
136303
136453
  url?: string | null | undefined;
136304
136454
  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;
136305
136455
  asset?: {
@@ -136514,6 +136664,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
136514
136664
  }[];
136515
136665
  } | null | undefined;
136516
136666
  columnId?: string | null | undefined;
136667
+ swatches?: {
136668
+ id: string;
136669
+ selectedThemeIds: string[];
136670
+ }[] | null | undefined;
136517
136671
  blacklistedElementProperties?: string[] | null | undefined;
136518
136672
  userMetadata?: string | null | undefined;
136519
136673
  } & any)[] | null | undefined;
@@ -136610,7 +136764,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
136610
136764
  } | null | undefined;
136611
136765
  oldBlocks?: ({
136612
136766
  persistentId: string;
136613
- 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";
136767
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
136614
136768
  url?: string | null | undefined;
136615
136769
  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;
136616
136770
  asset?: {
@@ -136825,12 +136979,16 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
136825
136979
  }[];
136826
136980
  } | null | undefined;
136827
136981
  columnId?: string | null | undefined;
136982
+ swatches?: {
136983
+ id: string;
136984
+ selectedThemeIds: string[];
136985
+ }[] | null | undefined;
136828
136986
  blacklistedElementProperties?: string[] | null | undefined;
136829
136987
  userMetadata?: string | null | undefined;
136830
136988
  } & {
136831
136989
  children: ({
136832
136990
  persistentId: string;
136833
- 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";
136991
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
136834
136992
  url?: string | null | undefined;
136835
136993
  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;
136836
136994
  asset?: {
@@ -137045,6 +137203,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
137045
137203
  }[];
137046
137204
  } | null | undefined;
137047
137205
  columnId?: string | null | undefined;
137206
+ swatches?: {
137207
+ id: string;
137208
+ selectedThemeIds: string[];
137209
+ }[] | null | undefined;
137048
137210
  blacklistedElementProperties?: string[] | null | undefined;
137049
137211
  userMetadata?: string | null | undefined;
137050
137212
  } & any)[] | null | undefined;
@@ -137552,7 +137714,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
137552
137714
  }, {
137553
137715
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
137554
137716
  persistentId: string;
137555
- 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";
137717
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
137556
137718
  url?: string | null | undefined;
137557
137719
  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;
137558
137720
  asset?: {
@@ -137767,12 +137929,16 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
137767
137929
  }[];
137768
137930
  } | null | undefined;
137769
137931
  columnId?: string | null | undefined;
137932
+ swatches?: {
137933
+ id: string;
137934
+ selectedThemeIds: string[];
137935
+ }[] | null | undefined;
137770
137936
  blacklistedElementProperties?: string[] | null | undefined;
137771
137937
  userMetadata?: string | null | undefined;
137772
137938
  } & {
137773
137939
  children: ({
137774
137940
  persistentId: string;
137775
- 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";
137941
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
137776
137942
  url?: string | null | undefined;
137777
137943
  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;
137778
137944
  asset?: {
@@ -137987,6 +138153,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
137987
138153
  }[];
137988
138154
  } | null | undefined;
137989
138155
  columnId?: string | null | undefined;
138156
+ swatches?: {
138157
+ id: string;
138158
+ selectedThemeIds: string[];
138159
+ }[] | null | undefined;
137990
138160
  blacklistedElementProperties?: string[] | null | undefined;
137991
138161
  userMetadata?: string | null | undefined;
137992
138162
  } & any)[] | null | undefined;
@@ -138060,7 +138230,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
138060
138230
  } | null | undefined;
138061
138231
  oldBlocks?: ({
138062
138232
  persistentId: string;
138063
- 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";
138233
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
138064
138234
  url?: string | null | undefined;
138065
138235
  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;
138066
138236
  asset?: {
@@ -138275,12 +138445,16 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
138275
138445
  }[];
138276
138446
  } | null | undefined;
138277
138447
  columnId?: string | null | undefined;
138448
+ swatches?: {
138449
+ id: string;
138450
+ selectedThemeIds: string[];
138451
+ }[] | null | undefined;
138278
138452
  blacklistedElementProperties?: string[] | null | undefined;
138279
138453
  userMetadata?: string | null | undefined;
138280
138454
  } & {
138281
138455
  children: ({
138282
138456
  persistentId: string;
138283
- 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";
138457
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
138284
138458
  url?: string | null | undefined;
138285
138459
  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;
138286
138460
  asset?: {
@@ -138495,6 +138669,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
138495
138669
  }[];
138496
138670
  } | null | undefined;
138497
138671
  columnId?: string | null | undefined;
138672
+ swatches?: {
138673
+ id: string;
138674
+ selectedThemeIds: string[];
138675
+ }[] | null | undefined;
138498
138676
  blacklistedElementProperties?: string[] | null | undefined;
138499
138677
  userMetadata?: string | null | undefined;
138500
138678
  } & any)[] | null | undefined;
@@ -138591,7 +138769,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
138591
138769
  } | null | undefined;
138592
138770
  oldBlocks?: ({
138593
138771
  persistentId: string;
138594
- 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";
138772
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
138595
138773
  url?: string | null | undefined;
138596
138774
  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;
138597
138775
  asset?: {
@@ -138806,12 +138984,16 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
138806
138984
  }[];
138807
138985
  } | null | undefined;
138808
138986
  columnId?: string | null | undefined;
138987
+ swatches?: {
138988
+ id: string;
138989
+ selectedThemeIds: string[];
138990
+ }[] | null | undefined;
138809
138991
  blacklistedElementProperties?: string[] | null | undefined;
138810
138992
  userMetadata?: string | null | undefined;
138811
138993
  } & {
138812
138994
  children: ({
138813
138995
  persistentId: string;
138814
- 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";
138996
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
138815
138997
  url?: string | null | undefined;
138816
138998
  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;
138817
138999
  asset?: {
@@ -139026,6 +139208,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
139026
139208
  }[];
139027
139209
  } | null | undefined;
139028
139210
  columnId?: string | null | undefined;
139211
+ swatches?: {
139212
+ id: string;
139213
+ selectedThemeIds: string[];
139214
+ }[] | null | undefined;
139029
139215
  blacklistedElementProperties?: string[] | null | undefined;
139030
139216
  userMetadata?: string | null | undefined;
139031
139217
  } & any)[] | null | undefined;
@@ -139151,7 +139337,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
139151
139337
  } | null | undefined;
139152
139338
  oldBlocks?: ({
139153
139339
  persistentId: string;
139154
- 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";
139340
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
139155
139341
  url?: string | null | undefined;
139156
139342
  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;
139157
139343
  asset?: {
@@ -139366,12 +139552,16 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
139366
139552
  }[];
139367
139553
  } | null | undefined;
139368
139554
  columnId?: string | null | undefined;
139555
+ swatches?: {
139556
+ id: string;
139557
+ selectedThemeIds: string[];
139558
+ }[] | null | undefined;
139369
139559
  blacklistedElementProperties?: string[] | null | undefined;
139370
139560
  userMetadata?: string | null | undefined;
139371
139561
  } & {
139372
139562
  children: ({
139373
139563
  persistentId: string;
139374
- 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";
139564
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
139375
139565
  url?: string | null | undefined;
139376
139566
  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;
139377
139567
  asset?: {
@@ -139586,6 +139776,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
139586
139776
  }[];
139587
139777
  } | null | undefined;
139588
139778
  columnId?: string | null | undefined;
139779
+ swatches?: {
139780
+ id: string;
139781
+ selectedThemeIds: string[];
139782
+ }[] | null | undefined;
139589
139783
  blacklistedElementProperties?: string[] | null | undefined;
139590
139784
  userMetadata?: string | null | undefined;
139591
139785
  } & any)[] | null | undefined;
@@ -140454,7 +140648,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
140454
140648
  } | null | undefined;
140455
140649
  oldBlocks?: ({
140456
140650
  persistentId: string;
140457
- 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";
140651
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
140458
140652
  url?: string | null | undefined;
140459
140653
  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;
140460
140654
  asset?: {
@@ -140669,12 +140863,16 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
140669
140863
  }[];
140670
140864
  } | null | undefined;
140671
140865
  columnId?: string | null | undefined;
140866
+ swatches?: {
140867
+ id: string;
140868
+ selectedThemeIds: string[];
140869
+ }[] | null | undefined;
140672
140870
  blacklistedElementProperties?: string[] | null | undefined;
140673
140871
  userMetadata?: string | null | undefined;
140674
140872
  } & {
140675
140873
  children: ({
140676
140874
  persistentId: string;
140677
- 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";
140875
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
140678
140876
  url?: string | null | undefined;
140679
140877
  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;
140680
140878
  asset?: {
@@ -140889,6 +141087,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
140889
141087
  }[];
140890
141088
  } | null | undefined;
140891
141089
  columnId?: string | null | undefined;
141090
+ swatches?: {
141091
+ id: string;
141092
+ selectedThemeIds: string[];
141093
+ }[] | null | undefined;
140892
141094
  blacklistedElementProperties?: string[] | null | undefined;
140893
141095
  userMetadata?: string | null | undefined;
140894
141096
  } & any)[] | null | undefined;
@@ -140951,7 +141153,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
140951
141153
  } | null | undefined;
140952
141154
  oldBlocks?: ({
140953
141155
  persistentId: string;
140954
- 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";
141156
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
140955
141157
  url?: string | null | undefined;
140956
141158
  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;
140957
141159
  asset?: {
@@ -141166,12 +141368,16 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
141166
141368
  }[];
141167
141369
  } | null | undefined;
141168
141370
  columnId?: string | null | undefined;
141371
+ swatches?: {
141372
+ id: string;
141373
+ selectedThemeIds: string[];
141374
+ }[] | null | undefined;
141169
141375
  blacklistedElementProperties?: string[] | null | undefined;
141170
141376
  userMetadata?: string | null | undefined;
141171
141377
  } & {
141172
141378
  children: ({
141173
141379
  persistentId: string;
141174
- 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";
141380
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
141175
141381
  url?: string | null | undefined;
141176
141382
  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;
141177
141383
  asset?: {
@@ -141386,6 +141592,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
141386
141592
  }[];
141387
141593
  } | null | undefined;
141388
141594
  columnId?: string | null | undefined;
141595
+ swatches?: {
141596
+ id: string;
141597
+ selectedThemeIds: string[];
141598
+ }[] | null | undefined;
141389
141599
  blacklistedElementProperties?: string[] | null | undefined;
141390
141600
  userMetadata?: string | null | undefined;
141391
141601
  } & any)[] | null | undefined;
@@ -141643,7 +141853,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
141643
141853
  }, {
141644
141854
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
141645
141855
  persistentId: string;
141646
- 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";
141856
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
141647
141857
  url?: string | null | undefined;
141648
141858
  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;
141649
141859
  asset?: {
@@ -141858,12 +142068,16 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
141858
142068
  }[];
141859
142069
  } | null | undefined;
141860
142070
  columnId?: string | null | undefined;
142071
+ swatches?: {
142072
+ id: string;
142073
+ selectedThemeIds: string[];
142074
+ }[] | null | undefined;
141861
142075
  blacklistedElementProperties?: string[] | null | undefined;
141862
142076
  userMetadata?: string | null | undefined;
141863
142077
  } & {
141864
142078
  children: ({
141865
142079
  persistentId: string;
141866
- 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";
142080
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
141867
142081
  url?: string | null | undefined;
141868
142082
  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;
141869
142083
  asset?: {
@@ -142078,6 +142292,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
142078
142292
  }[];
142079
142293
  } | null | undefined;
142080
142294
  columnId?: string | null | undefined;
142295
+ swatches?: {
142296
+ id: string;
142297
+ selectedThemeIds: string[];
142298
+ }[] | null | undefined;
142081
142299
  blacklistedElementProperties?: string[] | null | undefined;
142082
142300
  userMetadata?: string | null | undefined;
142083
142301
  } & any)[] | null | undefined;
@@ -142151,7 +142369,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
142151
142369
  } | null | undefined;
142152
142370
  oldBlocks?: ({
142153
142371
  persistentId: string;
142154
- 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";
142372
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
142155
142373
  url?: string | null | undefined;
142156
142374
  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;
142157
142375
  asset?: {
@@ -142366,12 +142584,16 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
142366
142584
  }[];
142367
142585
  } | null | undefined;
142368
142586
  columnId?: string | null | undefined;
142587
+ swatches?: {
142588
+ id: string;
142589
+ selectedThemeIds: string[];
142590
+ }[] | null | undefined;
142369
142591
  blacklistedElementProperties?: string[] | null | undefined;
142370
142592
  userMetadata?: string | null | undefined;
142371
142593
  } & {
142372
142594
  children: ({
142373
142595
  persistentId: string;
142374
- 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";
142596
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
142375
142597
  url?: string | null | undefined;
142376
142598
  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;
142377
142599
  asset?: {
@@ -142586,6 +142808,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
142586
142808
  }[];
142587
142809
  } | null | undefined;
142588
142810
  columnId?: string | null | undefined;
142811
+ swatches?: {
142812
+ id: string;
142813
+ selectedThemeIds: string[];
142814
+ }[] | null | undefined;
142589
142815
  blacklistedElementProperties?: string[] | null | undefined;
142590
142816
  userMetadata?: string | null | undefined;
142591
142817
  } & any)[] | null | undefined;
@@ -142682,7 +142908,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
142682
142908
  } | null | undefined;
142683
142909
  oldBlocks?: ({
142684
142910
  persistentId: string;
142685
- 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";
142911
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
142686
142912
  url?: string | null | undefined;
142687
142913
  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;
142688
142914
  asset?: {
@@ -142897,12 +143123,16 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
142897
143123
  }[];
142898
143124
  } | null | undefined;
142899
143125
  columnId?: string | null | undefined;
143126
+ swatches?: {
143127
+ id: string;
143128
+ selectedThemeIds: string[];
143129
+ }[] | null | undefined;
142900
143130
  blacklistedElementProperties?: string[] | null | undefined;
142901
143131
  userMetadata?: string | null | undefined;
142902
143132
  } & {
142903
143133
  children: ({
142904
143134
  persistentId: string;
142905
- 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";
143135
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
142906
143136
  url?: string | null | undefined;
142907
143137
  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;
142908
143138
  asset?: {
@@ -143117,6 +143347,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
143117
143347
  }[];
143118
143348
  } | null | undefined;
143119
143349
  columnId?: string | null | undefined;
143350
+ swatches?: {
143351
+ id: string;
143352
+ selectedThemeIds: string[];
143353
+ }[] | null | undefined;
143120
143354
  blacklistedElementProperties?: string[] | null | undefined;
143121
143355
  userMetadata?: string | null | undefined;
143122
143356
  } & any)[] | null | undefined;
@@ -143626,7 +143860,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
143626
143860
  }, {
143627
143861
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
143628
143862
  persistentId: string;
143629
- 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";
143863
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
143630
143864
  url?: string | null | undefined;
143631
143865
  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;
143632
143866
  asset?: {
@@ -143841,12 +144075,16 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
143841
144075
  }[];
143842
144076
  } | null | undefined;
143843
144077
  columnId?: string | null | undefined;
144078
+ swatches?: {
144079
+ id: string;
144080
+ selectedThemeIds: string[];
144081
+ }[] | null | undefined;
143844
144082
  blacklistedElementProperties?: string[] | null | undefined;
143845
144083
  userMetadata?: string | null | undefined;
143846
144084
  } & {
143847
144085
  children: ({
143848
144086
  persistentId: string;
143849
- 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";
144087
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
143850
144088
  url?: string | null | undefined;
143851
144089
  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;
143852
144090
  asset?: {
@@ -144061,6 +144299,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
144061
144299
  }[];
144062
144300
  } | null | undefined;
144063
144301
  columnId?: string | null | undefined;
144302
+ swatches?: {
144303
+ id: string;
144304
+ selectedThemeIds: string[];
144305
+ }[] | null | undefined;
144064
144306
  blacklistedElementProperties?: string[] | null | undefined;
144065
144307
  userMetadata?: string | null | undefined;
144066
144308
  } & any)[] | null | undefined;
@@ -144134,7 +144376,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
144134
144376
  } | null | undefined;
144135
144377
  oldBlocks?: ({
144136
144378
  persistentId: string;
144137
- 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";
144379
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
144138
144380
  url?: string | null | undefined;
144139
144381
  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;
144140
144382
  asset?: {
@@ -144349,12 +144591,16 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
144349
144591
  }[];
144350
144592
  } | null | undefined;
144351
144593
  columnId?: string | null | undefined;
144594
+ swatches?: {
144595
+ id: string;
144596
+ selectedThemeIds: string[];
144597
+ }[] | null | undefined;
144352
144598
  blacklistedElementProperties?: string[] | null | undefined;
144353
144599
  userMetadata?: string | null | undefined;
144354
144600
  } & {
144355
144601
  children: ({
144356
144602
  persistentId: string;
144357
- 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";
144603
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
144358
144604
  url?: string | null | undefined;
144359
144605
  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;
144360
144606
  asset?: {
@@ -144569,6 +144815,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
144569
144815
  }[];
144570
144816
  } | null | undefined;
144571
144817
  columnId?: string | null | undefined;
144818
+ swatches?: {
144819
+ id: string;
144820
+ selectedThemeIds: string[];
144821
+ }[] | null | undefined;
144572
144822
  blacklistedElementProperties?: string[] | null | undefined;
144573
144823
  userMetadata?: string | null | undefined;
144574
144824
  } & any)[] | null | undefined;
@@ -144665,7 +144915,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
144665
144915
  } | null | undefined;
144666
144916
  oldBlocks?: ({
144667
144917
  persistentId: string;
144668
- 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";
144918
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
144669
144919
  url?: string | null | undefined;
144670
144920
  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;
144671
144921
  asset?: {
@@ -144880,12 +145130,16 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
144880
145130
  }[];
144881
145131
  } | null | undefined;
144882
145132
  columnId?: string | null | undefined;
145133
+ swatches?: {
145134
+ id: string;
145135
+ selectedThemeIds: string[];
145136
+ }[] | null | undefined;
144883
145137
  blacklistedElementProperties?: string[] | null | undefined;
144884
145138
  userMetadata?: string | null | undefined;
144885
145139
  } & {
144886
145140
  children: ({
144887
145141
  persistentId: string;
144888
- 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";
145142
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
144889
145143
  url?: string | null | undefined;
144890
145144
  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;
144891
145145
  asset?: {
@@ -145100,6 +145354,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
145100
145354
  }[];
145101
145355
  } | null | undefined;
145102
145356
  columnId?: string | null | undefined;
145357
+ swatches?: {
145358
+ id: string;
145359
+ selectedThemeIds: string[];
145360
+ }[] | null | undefined;
145103
145361
  blacklistedElementProperties?: string[] | null | undefined;
145104
145362
  userMetadata?: string | null | undefined;
145105
145363
  } & any)[] | null | undefined;
@@ -145225,7 +145483,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
145225
145483
  } | null | undefined;
145226
145484
  oldBlocks?: ({
145227
145485
  persistentId: string;
145228
- 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";
145486
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
145229
145487
  url?: string | null | undefined;
145230
145488
  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;
145231
145489
  asset?: {
@@ -145440,12 +145698,16 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
145440
145698
  }[];
145441
145699
  } | null | undefined;
145442
145700
  columnId?: string | null | undefined;
145701
+ swatches?: {
145702
+ id: string;
145703
+ selectedThemeIds: string[];
145704
+ }[] | null | undefined;
145443
145705
  blacklistedElementProperties?: string[] | null | undefined;
145444
145706
  userMetadata?: string | null | undefined;
145445
145707
  } & {
145446
145708
  children: ({
145447
145709
  persistentId: string;
145448
- 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";
145710
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
145449
145711
  url?: string | null | undefined;
145450
145712
  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;
145451
145713
  asset?: {
@@ -145660,6 +145922,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
145660
145922
  }[];
145661
145923
  } | null | undefined;
145662
145924
  columnId?: string | null | undefined;
145925
+ swatches?: {
145926
+ id: string;
145927
+ selectedThemeIds: string[];
145928
+ }[] | null | undefined;
145663
145929
  blacklistedElementProperties?: string[] | null | undefined;
145664
145930
  userMetadata?: string | null | undefined;
145665
145931
  } & any)[] | null | undefined;
@@ -146516,7 +146782,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
146516
146782
  } | null | undefined;
146517
146783
  oldBlocks?: ({
146518
146784
  persistentId: string;
146519
- 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";
146785
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
146520
146786
  url?: string | null | undefined;
146521
146787
  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;
146522
146788
  asset?: {
@@ -146731,12 +146997,16 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
146731
146997
  }[];
146732
146998
  } | null | undefined;
146733
146999
  columnId?: string | null | undefined;
147000
+ swatches?: {
147001
+ id: string;
147002
+ selectedThemeIds: string[];
147003
+ }[] | null | undefined;
146734
147004
  blacklistedElementProperties?: string[] | null | undefined;
146735
147005
  userMetadata?: string | null | undefined;
146736
147006
  } & {
146737
147007
  children: ({
146738
147008
  persistentId: string;
146739
- 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";
147009
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
146740
147010
  url?: string | null | undefined;
146741
147011
  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;
146742
147012
  asset?: {
@@ -146951,6 +147221,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
146951
147221
  }[];
146952
147222
  } | null | undefined;
146953
147223
  columnId?: string | null | undefined;
147224
+ swatches?: {
147225
+ id: string;
147226
+ selectedThemeIds: string[];
147227
+ }[] | null | undefined;
146954
147228
  blacklistedElementProperties?: string[] | null | undefined;
146955
147229
  userMetadata?: string | null | undefined;
146956
147230
  } & any)[] | null | undefined;
@@ -147013,7 +147287,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
147013
147287
  } | null | undefined;
147014
147288
  oldBlocks?: ({
147015
147289
  persistentId: string;
147016
- 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";
147290
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
147017
147291
  url?: string | null | undefined;
147018
147292
  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;
147019
147293
  asset?: {
@@ -147228,12 +147502,16 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
147228
147502
  }[];
147229
147503
  } | null | undefined;
147230
147504
  columnId?: string | null | undefined;
147505
+ swatches?: {
147506
+ id: string;
147507
+ selectedThemeIds: string[];
147508
+ }[] | null | undefined;
147231
147509
  blacklistedElementProperties?: string[] | null | undefined;
147232
147510
  userMetadata?: string | null | undefined;
147233
147511
  } & {
147234
147512
  children: ({
147235
147513
  persistentId: string;
147236
- 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";
147514
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
147237
147515
  url?: string | null | undefined;
147238
147516
  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;
147239
147517
  asset?: {
@@ -147448,6 +147726,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
147448
147726
  }[];
147449
147727
  } | null | undefined;
147450
147728
  columnId?: string | null | undefined;
147729
+ swatches?: {
147730
+ id: string;
147731
+ selectedThemeIds: string[];
147732
+ }[] | null | undefined;
147451
147733
  blacklistedElementProperties?: string[] | null | undefined;
147452
147734
  userMetadata?: string | null | undefined;
147453
147735
  } & any)[] | null | undefined;
@@ -148888,7 +149170,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
148888
149170
  }, {
148889
149171
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
148890
149172
  persistentId: string;
148891
- 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";
149173
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
148892
149174
  url?: string | null | undefined;
148893
149175
  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;
148894
149176
  asset?: {
@@ -149103,12 +149385,16 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
149103
149385
  }[];
149104
149386
  } | null | undefined;
149105
149387
  columnId?: string | null | undefined;
149388
+ swatches?: {
149389
+ id: string;
149390
+ selectedThemeIds: string[];
149391
+ }[] | null | undefined;
149106
149392
  blacklistedElementProperties?: string[] | null | undefined;
149107
149393
  userMetadata?: string | null | undefined;
149108
149394
  } & {
149109
149395
  children: ({
149110
149396
  persistentId: string;
149111
- 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";
149397
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
149112
149398
  url?: string | null | undefined;
149113
149399
  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;
149114
149400
  asset?: {
@@ -149323,6 +149609,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
149323
149609
  }[];
149324
149610
  } | null | undefined;
149325
149611
  columnId?: string | null | undefined;
149612
+ swatches?: {
149613
+ id: string;
149614
+ selectedThemeIds: string[];
149615
+ }[] | null | undefined;
149326
149616
  blacklistedElementProperties?: string[] | null | undefined;
149327
149617
  userMetadata?: string | null | undefined;
149328
149618
  } & any)[] | null | undefined;
@@ -149396,7 +149686,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
149396
149686
  } | null | undefined;
149397
149687
  oldBlocks?: ({
149398
149688
  persistentId: string;
149399
- 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";
149689
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
149400
149690
  url?: string | null | undefined;
149401
149691
  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;
149402
149692
  asset?: {
@@ -149611,12 +149901,16 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
149611
149901
  }[];
149612
149902
  } | null | undefined;
149613
149903
  columnId?: string | null | undefined;
149904
+ swatches?: {
149905
+ id: string;
149906
+ selectedThemeIds: string[];
149907
+ }[] | null | undefined;
149614
149908
  blacklistedElementProperties?: string[] | null | undefined;
149615
149909
  userMetadata?: string | null | undefined;
149616
149910
  } & {
149617
149911
  children: ({
149618
149912
  persistentId: string;
149619
- 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";
149913
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
149620
149914
  url?: string | null | undefined;
149621
149915
  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;
149622
149916
  asset?: {
@@ -149831,6 +150125,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
149831
150125
  }[];
149832
150126
  } | null | undefined;
149833
150127
  columnId?: string | null | undefined;
150128
+ swatches?: {
150129
+ id: string;
150130
+ selectedThemeIds: string[];
150131
+ }[] | null | undefined;
149834
150132
  blacklistedElementProperties?: string[] | null | undefined;
149835
150133
  userMetadata?: string | null | undefined;
149836
150134
  } & any)[] | null | undefined;
@@ -149927,7 +150225,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
149927
150225
  } | null | undefined;
149928
150226
  oldBlocks?: ({
149929
150227
  persistentId: string;
149930
- 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";
150228
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
149931
150229
  url?: string | null | undefined;
149932
150230
  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;
149933
150231
  asset?: {
@@ -150142,12 +150440,16 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
150142
150440
  }[];
150143
150441
  } | null | undefined;
150144
150442
  columnId?: string | null | undefined;
150443
+ swatches?: {
150444
+ id: string;
150445
+ selectedThemeIds: string[];
150446
+ }[] | null | undefined;
150145
150447
  blacklistedElementProperties?: string[] | null | undefined;
150146
150448
  userMetadata?: string | null | undefined;
150147
150449
  } & {
150148
150450
  children: ({
150149
150451
  persistentId: string;
150150
- 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";
150452
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
150151
150453
  url?: string | null | undefined;
150152
150454
  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;
150153
150455
  asset?: {
@@ -150362,6 +150664,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
150362
150664
  }[];
150363
150665
  } | null | undefined;
150364
150666
  columnId?: string | null | undefined;
150667
+ swatches?: {
150668
+ id: string;
150669
+ selectedThemeIds: string[];
150670
+ }[] | null | undefined;
150365
150671
  blacklistedElementProperties?: string[] | null | undefined;
150366
150672
  userMetadata?: string | null | undefined;
150367
150673
  } & any)[] | null | undefined;
@@ -150852,7 +151158,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
150852
151158
  } | null | undefined;
150853
151159
  oldBlocks?: ({
150854
151160
  persistentId: string;
150855
- 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";
151161
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
150856
151162
  url?: string | null | undefined;
150857
151163
  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;
150858
151164
  asset?: {
@@ -151067,12 +151373,16 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
151067
151373
  }[];
151068
151374
  } | null | undefined;
151069
151375
  columnId?: string | null | undefined;
151376
+ swatches?: {
151377
+ id: string;
151378
+ selectedThemeIds: string[];
151379
+ }[] | null | undefined;
151070
151380
  blacklistedElementProperties?: string[] | null | undefined;
151071
151381
  userMetadata?: string | null | undefined;
151072
151382
  } & {
151073
151383
  children: ({
151074
151384
  persistentId: string;
151075
- 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";
151385
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
151076
151386
  url?: string | null | undefined;
151077
151387
  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;
151078
151388
  asset?: {
@@ -151287,6 +151597,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
151287
151597
  }[];
151288
151598
  } | null | undefined;
151289
151599
  columnId?: string | null | undefined;
151600
+ swatches?: {
151601
+ id: string;
151602
+ selectedThemeIds: string[];
151603
+ }[] | null | undefined;
151290
151604
  blacklistedElementProperties?: string[] | null | undefined;
151291
151605
  userMetadata?: string | null | undefined;
151292
151606
  } & any)[] | null | undefined;
@@ -151513,7 +151827,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
151513
151827
  }, {
151514
151828
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
151515
151829
  persistentId: string;
151516
- 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";
151830
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
151517
151831
  url?: string | null | undefined;
151518
151832
  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;
151519
151833
  asset?: {
@@ -151728,12 +152042,16 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
151728
152042
  }[];
151729
152043
  } | null | undefined;
151730
152044
  columnId?: string | null | undefined;
152045
+ swatches?: {
152046
+ id: string;
152047
+ selectedThemeIds: string[];
152048
+ }[] | null | undefined;
151731
152049
  blacklistedElementProperties?: string[] | null | undefined;
151732
152050
  userMetadata?: string | null | undefined;
151733
152051
  } & {
151734
152052
  children: ({
151735
152053
  persistentId: string;
151736
- 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";
152054
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
151737
152055
  url?: string | null | undefined;
151738
152056
  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;
151739
152057
  asset?: {
@@ -151948,6 +152266,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
151948
152266
  }[];
151949
152267
  } | null | undefined;
151950
152268
  columnId?: string | null | undefined;
152269
+ swatches?: {
152270
+ id: string;
152271
+ selectedThemeIds: string[];
152272
+ }[] | null | undefined;
151951
152273
  blacklistedElementProperties?: string[] | null | undefined;
151952
152274
  userMetadata?: string | null | undefined;
151953
152275
  } & any)[] | null | undefined;
@@ -152021,7 +152343,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
152021
152343
  } | null | undefined;
152022
152344
  oldBlocks?: ({
152023
152345
  persistentId: string;
152024
- 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";
152346
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
152025
152347
  url?: string | null | undefined;
152026
152348
  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;
152027
152349
  asset?: {
@@ -152236,12 +152558,16 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
152236
152558
  }[];
152237
152559
  } | null | undefined;
152238
152560
  columnId?: string | null | undefined;
152561
+ swatches?: {
152562
+ id: string;
152563
+ selectedThemeIds: string[];
152564
+ }[] | null | undefined;
152239
152565
  blacklistedElementProperties?: string[] | null | undefined;
152240
152566
  userMetadata?: string | null | undefined;
152241
152567
  } & {
152242
152568
  children: ({
152243
152569
  persistentId: string;
152244
- 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";
152570
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
152245
152571
  url?: string | null | undefined;
152246
152572
  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;
152247
152573
  asset?: {
@@ -152456,6 +152782,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
152456
152782
  }[];
152457
152783
  } | null | undefined;
152458
152784
  columnId?: string | null | undefined;
152785
+ swatches?: {
152786
+ id: string;
152787
+ selectedThemeIds: string[];
152788
+ }[] | null | undefined;
152459
152789
  blacklistedElementProperties?: string[] | null | undefined;
152460
152790
  userMetadata?: string | null | undefined;
152461
152791
  } & any)[] | null | undefined;
@@ -152552,7 +152882,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
152552
152882
  } | null | undefined;
152553
152883
  oldBlocks?: ({
152554
152884
  persistentId: string;
152555
- 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";
152885
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
152556
152886
  url?: string | null | undefined;
152557
152887
  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;
152558
152888
  asset?: {
@@ -152767,12 +153097,16 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
152767
153097
  }[];
152768
153098
  } | null | undefined;
152769
153099
  columnId?: string | null | undefined;
153100
+ swatches?: {
153101
+ id: string;
153102
+ selectedThemeIds: string[];
153103
+ }[] | null | undefined;
152770
153104
  blacklistedElementProperties?: string[] | null | undefined;
152771
153105
  userMetadata?: string | null | undefined;
152772
153106
  } & {
152773
153107
  children: ({
152774
153108
  persistentId: string;
152775
- 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";
153109
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
152776
153110
  url?: string | null | undefined;
152777
153111
  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;
152778
153112
  asset?: {
@@ -152987,6 +153321,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
152987
153321
  }[];
152988
153322
  } | null | undefined;
152989
153323
  columnId?: string | null | undefined;
153324
+ swatches?: {
153325
+ id: string;
153326
+ selectedThemeIds: string[];
153327
+ }[] | null | undefined;
152990
153328
  blacklistedElementProperties?: string[] | null | undefined;
152991
153329
  userMetadata?: string | null | undefined;
152992
153330
  } & any)[] | null | undefined;
@@ -154791,7 +155129,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
154791
155129
  } | null | undefined;
154792
155130
  oldBlocks?: ({
154793
155131
  persistentId: string;
154794
- 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";
155132
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
154795
155133
  url?: string | null | undefined;
154796
155134
  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;
154797
155135
  asset?: {
@@ -155006,12 +155344,16 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
155006
155344
  }[];
155007
155345
  } | null | undefined;
155008
155346
  columnId?: string | null | undefined;
155347
+ swatches?: {
155348
+ id: string;
155349
+ selectedThemeIds: string[];
155350
+ }[] | null | undefined;
155009
155351
  blacklistedElementProperties?: string[] | null | undefined;
155010
155352
  userMetadata?: string | null | undefined;
155011
155353
  } & {
155012
155354
  children: ({
155013
155355
  persistentId: string;
155014
- 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";
155356
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
155015
155357
  url?: string | null | undefined;
155016
155358
  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;
155017
155359
  asset?: {
@@ -155226,6 +155568,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
155226
155568
  }[];
155227
155569
  } | null | undefined;
155228
155570
  columnId?: string | null | undefined;
155571
+ swatches?: {
155572
+ id: string;
155573
+ selectedThemeIds: string[];
155574
+ }[] | null | undefined;
155229
155575
  blacklistedElementProperties?: string[] | null | undefined;
155230
155576
  userMetadata?: string | null | undefined;
155231
155577
  } & any)[] | null | undefined;
@@ -155614,7 +155960,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
155614
155960
  }, {
155615
155961
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
155616
155962
  persistentId: string;
155617
- 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";
155963
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
155618
155964
  url?: string | null | undefined;
155619
155965
  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;
155620
155966
  asset?: {
@@ -155829,12 +156175,16 @@ declare const RestoredDocumentationPage: z.ZodObject<{
155829
156175
  }[];
155830
156176
  } | null | undefined;
155831
156177
  columnId?: string | null | undefined;
156178
+ swatches?: {
156179
+ id: string;
156180
+ selectedThemeIds: string[];
156181
+ }[] | null | undefined;
155832
156182
  blacklistedElementProperties?: string[] | null | undefined;
155833
156183
  userMetadata?: string | null | undefined;
155834
156184
  } & {
155835
156185
  children: ({
155836
156186
  persistentId: string;
155837
- 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";
156187
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
155838
156188
  url?: string | null | undefined;
155839
156189
  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;
155840
156190
  asset?: {
@@ -156049,6 +156399,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
156049
156399
  }[];
156050
156400
  } | null | undefined;
156051
156401
  columnId?: string | null | undefined;
156402
+ swatches?: {
156403
+ id: string;
156404
+ selectedThemeIds: string[];
156405
+ }[] | null | undefined;
156052
156406
  blacklistedElementProperties?: string[] | null | undefined;
156053
156407
  userMetadata?: string | null | undefined;
156054
156408
  } & any)[] | null | undefined;
@@ -156122,7 +156476,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
156122
156476
  } | null | undefined;
156123
156477
  oldBlocks?: ({
156124
156478
  persistentId: string;
156125
- 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";
156479
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
156126
156480
  url?: string | null | undefined;
156127
156481
  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;
156128
156482
  asset?: {
@@ -156337,12 +156691,16 @@ declare const RestoredDocumentationPage: z.ZodObject<{
156337
156691
  }[];
156338
156692
  } | null | undefined;
156339
156693
  columnId?: string | null | undefined;
156694
+ swatches?: {
156695
+ id: string;
156696
+ selectedThemeIds: string[];
156697
+ }[] | null | undefined;
156340
156698
  blacklistedElementProperties?: string[] | null | undefined;
156341
156699
  userMetadata?: string | null | undefined;
156342
156700
  } & {
156343
156701
  children: ({
156344
156702
  persistentId: string;
156345
- 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";
156703
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
156346
156704
  url?: string | null | undefined;
156347
156705
  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;
156348
156706
  asset?: {
@@ -156557,6 +156915,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
156557
156915
  }[];
156558
156916
  } | null | undefined;
156559
156917
  columnId?: string | null | undefined;
156918
+ swatches?: {
156919
+ id: string;
156920
+ selectedThemeIds: string[];
156921
+ }[] | null | undefined;
156560
156922
  blacklistedElementProperties?: string[] | null | undefined;
156561
156923
  userMetadata?: string | null | undefined;
156562
156924
  } & any)[] | null | undefined;
@@ -156653,7 +157015,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
156653
157015
  } | null | undefined;
156654
157016
  oldBlocks?: ({
156655
157017
  persistentId: string;
156656
- 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";
157018
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
156657
157019
  url?: string | null | undefined;
156658
157020
  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;
156659
157021
  asset?: {
@@ -156868,12 +157230,16 @@ declare const RestoredDocumentationPage: z.ZodObject<{
156868
157230
  }[];
156869
157231
  } | null | undefined;
156870
157232
  columnId?: string | null | undefined;
157233
+ swatches?: {
157234
+ id: string;
157235
+ selectedThemeIds: string[];
157236
+ }[] | null | undefined;
156871
157237
  blacklistedElementProperties?: string[] | null | undefined;
156872
157238
  userMetadata?: string | null | undefined;
156873
157239
  } & {
156874
157240
  children: ({
156875
157241
  persistentId: string;
156876
- 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";
157242
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
156877
157243
  url?: string | null | undefined;
156878
157244
  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;
156879
157245
  asset?: {
@@ -157088,6 +157454,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
157088
157454
  }[];
157089
157455
  } | null | undefined;
157090
157456
  columnId?: string | null | undefined;
157457
+ swatches?: {
157458
+ id: string;
157459
+ selectedThemeIds: string[];
157460
+ }[] | null | undefined;
157091
157461
  blacklistedElementProperties?: string[] | null | undefined;
157092
157462
  userMetadata?: string | null | undefined;
157093
157463
  } & any)[] | null | undefined;
@@ -158572,7 +158942,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
158572
158942
  } | null | undefined;
158573
158943
  oldBlocks?: ({
158574
158944
  persistentId: string;
158575
- 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";
158945
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
158576
158946
  url?: string | null | undefined;
158577
158947
  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;
158578
158948
  asset?: {
@@ -158787,12 +159157,16 @@ declare const RestoredDocumentationPage: z.ZodObject<{
158787
159157
  }[];
158788
159158
  } | null | undefined;
158789
159159
  columnId?: string | null | undefined;
159160
+ swatches?: {
159161
+ id: string;
159162
+ selectedThemeIds: string[];
159163
+ }[] | null | undefined;
158790
159164
  blacklistedElementProperties?: string[] | null | undefined;
158791
159165
  userMetadata?: string | null | undefined;
158792
159166
  } & {
158793
159167
  children: ({
158794
159168
  persistentId: string;
158795
- 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";
159169
+ 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" | "ComponentAssetGroup" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell" | "Guidelines" | "Guideline";
158796
159170
  url?: string | null | undefined;
158797
159171
  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;
158798
159172
  asset?: {
@@ -159007,6 +159381,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
159007
159381
  }[];
159008
159382
  } | null | undefined;
159009
159383
  columnId?: string | null | undefined;
159384
+ swatches?: {
159385
+ id: string;
159386
+ selectedThemeIds: string[];
159387
+ }[] | null | undefined;
159010
159388
  blacklistedElementProperties?: string[] | null | undefined;
159011
159389
  userMetadata?: string | null | undefined;
159012
159390
  } & any)[] | null | undefined;
@@ -165887,4 +166265,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
165887
166265
  }>;
165888
166266
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
165889
166267
 
165890
- 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, DesignSystemAccessMode, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemMembership, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, 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, FigmaComponentPropertyOrigin, 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, FontTokenData, FontValue, 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, PageBlockItemSwatch, 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 };
166268
+ 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, DesignSystemAccessMode, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemMembership, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, 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, FigmaComponentPropertyOrigin, 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, FontTokenData, FontValue, 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, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockSwatch, 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 };