@supernova-studio/model 0.45.0 → 0.46.0

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
@@ -15709,9 +15709,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
15709
15709
 
15710
15710
  declare const DocumentationPageDataV2: z.ZodObject<{
15711
15711
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
15712
- isHidden: boolean;
15713
15712
  showSidebar: boolean;
15714
- isPrivate: boolean;
15715
15713
  header: {
15716
15714
  description: string;
15717
15715
  alignment: "Center" | "Left";
@@ -15739,10 +15737,10 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15739
15737
  } | null | undefined;
15740
15738
  minHeight?: number | null | undefined;
15741
15739
  };
15740
+ isPrivate?: boolean | undefined;
15741
+ isHidden?: boolean | undefined;
15742
15742
  }, z.ZodTypeDef, {
15743
- isHidden: boolean;
15744
15743
  showSidebar: boolean;
15745
- isPrivate: boolean;
15746
15744
  header: {
15747
15745
  description: string;
15748
15746
  alignment: "Center" | "Left";
@@ -15770,10 +15768,10 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15770
15768
  } | null | undefined;
15771
15769
  minHeight?: number | null | undefined;
15772
15770
  };
15771
+ isPrivate?: boolean | undefined;
15772
+ isHidden?: boolean | undefined;
15773
15773
  }>>>, {
15774
- isHidden: boolean;
15775
15774
  showSidebar: boolean;
15776
- isPrivate: boolean;
15777
15775
  header: {
15778
15776
  description: string;
15779
15777
  alignment: "Center" | "Left";
@@ -15801,10 +15799,10 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15801
15799
  } | null | undefined;
15802
15800
  minHeight?: number | null | undefined;
15803
15801
  };
15802
+ isPrivate?: boolean | undefined;
15803
+ isHidden?: boolean | undefined;
15804
15804
  } | undefined, {
15805
- isHidden: boolean;
15806
15805
  showSidebar: boolean;
15807
- isPrivate: boolean;
15808
15806
  header: {
15809
15807
  description: string;
15810
15808
  alignment: "Center" | "Left";
@@ -15832,12 +15830,12 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15832
15830
  } | null | undefined;
15833
15831
  minHeight?: number | null | undefined;
15834
15832
  };
15833
+ isPrivate?: boolean | undefined;
15834
+ isHidden?: boolean | undefined;
15835
15835
  } | null | undefined>;
15836
15836
  }, "strip", z.ZodTypeAny, {
15837
15837
  configuration?: {
15838
- isHidden: boolean;
15839
15838
  showSidebar: boolean;
15840
- isPrivate: boolean;
15841
15839
  header: {
15842
15840
  description: string;
15843
15841
  alignment: "Center" | "Left";
@@ -15865,12 +15863,12 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15865
15863
  } | null | undefined;
15866
15864
  minHeight?: number | null | undefined;
15867
15865
  };
15866
+ isPrivate?: boolean | undefined;
15867
+ isHidden?: boolean | undefined;
15868
15868
  } | undefined;
15869
15869
  }, {
15870
15870
  configuration?: {
15871
- isHidden: boolean;
15872
15871
  showSidebar: boolean;
15873
- isPrivate: boolean;
15874
15872
  header: {
15875
15873
  description: string;
15876
15874
  alignment: "Center" | "Left";
@@ -15898,6 +15896,8 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15898
15896
  } | null | undefined;
15899
15897
  minHeight?: number | null | undefined;
15900
15898
  };
15899
+ isPrivate?: boolean | undefined;
15900
+ isHidden?: boolean | undefined;
15901
15901
  } | null | undefined;
15902
15902
  }>;
15903
15903
 
@@ -17721,8 +17721,8 @@ declare const defaultDocumentationItemConfigurationV1: DocumentationItemConfigur
17721
17721
 
17722
17722
  declare const DocumentationItemConfigurationV2: z.ZodObject<{
17723
17723
  showSidebar: z.ZodBoolean;
17724
- isPrivate: z.ZodBoolean;
17725
- isHidden: z.ZodBoolean;
17724
+ isPrivate: z.ZodOptional<z.ZodBoolean>;
17725
+ isHidden: z.ZodOptional<z.ZodBoolean>;
17726
17726
  header: z.ZodObject<{
17727
17727
  description: z.ZodString;
17728
17728
  alignment: z.ZodEnum<["Left", "Center"]>;
@@ -17847,9 +17847,7 @@ declare const DocumentationItemConfigurationV2: z.ZodObject<{
17847
17847
  minHeight?: number | null | undefined;
17848
17848
  }>;
17849
17849
  }, "strip", z.ZodTypeAny, {
17850
- isHidden: boolean;
17851
17850
  showSidebar: boolean;
17852
- isPrivate: boolean;
17853
17851
  header: {
17854
17852
  description: string;
17855
17853
  alignment: "Center" | "Left";
@@ -17877,10 +17875,10 @@ declare const DocumentationItemConfigurationV2: z.ZodObject<{
17877
17875
  } | null | undefined;
17878
17876
  minHeight?: number | null | undefined;
17879
17877
  };
17878
+ isPrivate?: boolean | undefined;
17879
+ isHidden?: boolean | undefined;
17880
17880
  }, {
17881
- isHidden: boolean;
17882
17881
  showSidebar: boolean;
17883
- isPrivate: boolean;
17884
17882
  header: {
17885
17883
  description: string;
17886
17884
  alignment: "Center" | "Left";
@@ -17908,9 +17906,42 @@ declare const DocumentationItemConfigurationV2: z.ZodObject<{
17908
17906
  } | null | undefined;
17909
17907
  minHeight?: number | null | undefined;
17910
17908
  };
17909
+ isPrivate?: boolean | undefined;
17910
+ isHidden?: boolean | undefined;
17911
17911
  }>;
17912
17912
  type DocumentationItemConfigurationV2 = z.infer<typeof DocumentationItemConfigurationV2>;
17913
- declare const defaultDocumentationItemConfigurationV2: DocumentationItemConfigurationV2;
17913
+ declare const defaultDocumentationItemConfigurationV2: {
17914
+ readonly header: {
17915
+ description: string;
17916
+ alignment: "Center" | "Left";
17917
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
17918
+ showBackgroundOverlay: boolean;
17919
+ showCoverText: boolean;
17920
+ foregroundColor?: {
17921
+ value: string;
17922
+ referencedTokenId?: string | undefined;
17923
+ } | null | undefined;
17924
+ backgroundColor?: {
17925
+ value: string;
17926
+ referencedTokenId?: string | undefined;
17927
+ } | null | undefined;
17928
+ backgroundImageAsset?: {
17929
+ type: "Resource" | "FigmaNode";
17930
+ resource?: {
17931
+ url: string;
17932
+ resourceId: string;
17933
+ } | undefined;
17934
+ figmaNode?: {
17935
+ sourceId: string;
17936
+ frameReferenceId: string;
17937
+ } | undefined;
17938
+ } | null | undefined;
17939
+ minHeight?: number | null | undefined;
17940
+ };
17941
+ readonly isHidden: false;
17942
+ readonly isPrivate: false;
17943
+ readonly showSidebar: true;
17944
+ };
17914
17945
 
17915
17946
  declare const DurationUnit: z.ZodEnum<["Ms"]>;
17916
17947
  type DurationUnit = z.infer<typeof DurationUnit>;
@@ -19692,9 +19723,7 @@ type ElementGroupDataV1 = z.infer<typeof ElementGroupDataV1>;
19692
19723
  declare const ElementGroupDataV2: z.ZodObject<{
19693
19724
  behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
19694
19725
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
19695
- isHidden: boolean;
19696
19726
  showSidebar: boolean;
19697
- isPrivate: boolean;
19698
19727
  header: {
19699
19728
  description: string;
19700
19729
  alignment: "Center" | "Left";
@@ -19722,10 +19751,10 @@ declare const ElementGroupDataV2: z.ZodObject<{
19722
19751
  } | null | undefined;
19723
19752
  minHeight?: number | null | undefined;
19724
19753
  };
19754
+ isPrivate?: boolean | undefined;
19755
+ isHidden?: boolean | undefined;
19725
19756
  }, z.ZodTypeDef, {
19726
- isHidden: boolean;
19727
19757
  showSidebar: boolean;
19728
- isPrivate: boolean;
19729
19758
  header: {
19730
19759
  description: string;
19731
19760
  alignment: "Center" | "Left";
@@ -19753,10 +19782,10 @@ declare const ElementGroupDataV2: z.ZodObject<{
19753
19782
  } | null | undefined;
19754
19783
  minHeight?: number | null | undefined;
19755
19784
  };
19785
+ isPrivate?: boolean | undefined;
19786
+ isHidden?: boolean | undefined;
19756
19787
  }>>>, {
19757
- isHidden: boolean;
19758
19788
  showSidebar: boolean;
19759
- isPrivate: boolean;
19760
19789
  header: {
19761
19790
  description: string;
19762
19791
  alignment: "Center" | "Left";
@@ -19784,10 +19813,10 @@ declare const ElementGroupDataV2: z.ZodObject<{
19784
19813
  } | null | undefined;
19785
19814
  minHeight?: number | null | undefined;
19786
19815
  };
19816
+ isPrivate?: boolean | undefined;
19817
+ isHidden?: boolean | undefined;
19787
19818
  } | undefined, {
19788
- isHidden: boolean;
19789
19819
  showSidebar: boolean;
19790
- isPrivate: boolean;
19791
19820
  header: {
19792
19821
  description: string;
19793
19822
  alignment: "Center" | "Left";
@@ -19815,13 +19844,13 @@ declare const ElementGroupDataV2: z.ZodObject<{
19815
19844
  } | null | undefined;
19816
19845
  minHeight?: number | null | undefined;
19817
19846
  };
19847
+ isPrivate?: boolean | undefined;
19848
+ isHidden?: boolean | undefined;
19818
19849
  } | null | undefined>;
19819
19850
  }, "strip", z.ZodTypeAny, {
19820
19851
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
19821
19852
  configuration?: {
19822
- isHidden: boolean;
19823
19853
  showSidebar: boolean;
19824
- isPrivate: boolean;
19825
19854
  header: {
19826
19855
  description: string;
19827
19856
  alignment: "Center" | "Left";
@@ -19849,13 +19878,13 @@ declare const ElementGroupDataV2: z.ZodObject<{
19849
19878
  } | null | undefined;
19850
19879
  minHeight?: number | null | undefined;
19851
19880
  };
19881
+ isPrivate?: boolean | undefined;
19882
+ isHidden?: boolean | undefined;
19852
19883
  } | undefined;
19853
19884
  }, {
19854
19885
  behavior?: "Tabs" | "Group" | null | undefined;
19855
19886
  configuration?: {
19856
- isHidden: boolean;
19857
19887
  showSidebar: boolean;
19858
- isPrivate: boolean;
19859
19888
  header: {
19860
19889
  description: string;
19861
19890
  alignment: "Center" | "Left";
@@ -19883,6 +19912,8 @@ declare const ElementGroupDataV2: z.ZodObject<{
19883
19912
  } | null | undefined;
19884
19913
  minHeight?: number | null | undefined;
19885
19914
  };
19915
+ isPrivate?: boolean | undefined;
19916
+ isHidden?: boolean | undefined;
19886
19917
  } | null | undefined;
19887
19918
  }>;
19888
19919
  type ElementGroupDataV2 = z.infer<typeof ElementGroupDataV2>;
@@ -24737,9 +24768,7 @@ declare const DocumentationPageV2: z.ZodObject<{
24737
24768
  shortPersistentId: z.ZodString;
24738
24769
  data: z.ZodObject<{
24739
24770
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
24740
- isHidden: boolean;
24741
24771
  showSidebar: boolean;
24742
- isPrivate: boolean;
24743
24772
  header: {
24744
24773
  description: string;
24745
24774
  alignment: "Center" | "Left";
@@ -24767,10 +24796,10 @@ declare const DocumentationPageV2: z.ZodObject<{
24767
24796
  } | null | undefined;
24768
24797
  minHeight?: number | null | undefined;
24769
24798
  };
24799
+ isPrivate?: boolean | undefined;
24800
+ isHidden?: boolean | undefined;
24770
24801
  }, z.ZodTypeDef, {
24771
- isHidden: boolean;
24772
24802
  showSidebar: boolean;
24773
- isPrivate: boolean;
24774
24803
  header: {
24775
24804
  description: string;
24776
24805
  alignment: "Center" | "Left";
@@ -24798,10 +24827,10 @@ declare const DocumentationPageV2: z.ZodObject<{
24798
24827
  } | null | undefined;
24799
24828
  minHeight?: number | null | undefined;
24800
24829
  };
24830
+ isPrivate?: boolean | undefined;
24831
+ isHidden?: boolean | undefined;
24801
24832
  }>>>, {
24802
- isHidden: boolean;
24803
24833
  showSidebar: boolean;
24804
- isPrivate: boolean;
24805
24834
  header: {
24806
24835
  description: string;
24807
24836
  alignment: "Center" | "Left";
@@ -24829,10 +24858,10 @@ declare const DocumentationPageV2: z.ZodObject<{
24829
24858
  } | null | undefined;
24830
24859
  minHeight?: number | null | undefined;
24831
24860
  };
24861
+ isPrivate?: boolean | undefined;
24862
+ isHidden?: boolean | undefined;
24832
24863
  } | undefined, {
24833
- isHidden: boolean;
24834
24864
  showSidebar: boolean;
24835
- isPrivate: boolean;
24836
24865
  header: {
24837
24866
  description: string;
24838
24867
  alignment: "Center" | "Left";
@@ -24860,6 +24889,8 @@ declare const DocumentationPageV2: z.ZodObject<{
24860
24889
  } | null | undefined;
24861
24890
  minHeight?: number | null | undefined;
24862
24891
  };
24892
+ isPrivate?: boolean | undefined;
24893
+ isHidden?: boolean | undefined;
24863
24894
  } | null | undefined>;
24864
24895
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
24865
24896
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -25226,9 +25257,7 @@ declare const DocumentationPageV2: z.ZodObject<{
25226
25257
  }>, "many">>;
25227
25258
  }, "strip", z.ZodTypeAny, {
25228
25259
  configuration?: {
25229
- isHidden: boolean;
25230
25260
  showSidebar: boolean;
25231
- isPrivate: boolean;
25232
25261
  header: {
25233
25262
  description: string;
25234
25263
  alignment: "Center" | "Left";
@@ -25256,13 +25285,13 @@ declare const DocumentationPageV2: z.ZodObject<{
25256
25285
  } | null | undefined;
25257
25286
  minHeight?: number | null | undefined;
25258
25287
  };
25288
+ isPrivate?: boolean | undefined;
25289
+ isHidden?: boolean | undefined;
25259
25290
  } | undefined;
25260
25291
  oldBlocks?: PageBlockV1[] | undefined;
25261
25292
  }, {
25262
25293
  configuration?: {
25263
- isHidden: boolean;
25264
25294
  showSidebar: boolean;
25265
- isPrivate: boolean;
25266
25295
  header: {
25267
25296
  description: string;
25268
25297
  alignment: "Center" | "Left";
@@ -25290,6 +25319,8 @@ declare const DocumentationPageV2: z.ZodObject<{
25290
25319
  } | null | undefined;
25291
25320
  minHeight?: number | null | undefined;
25292
25321
  };
25322
+ isPrivate?: boolean | undefined;
25323
+ isHidden?: boolean | undefined;
25293
25324
  } | null | undefined;
25294
25325
  oldBlocks?: ({
25295
25326
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -25662,9 +25693,7 @@ declare const DocumentationPageV2: z.ZodObject<{
25662
25693
  persistentId: string;
25663
25694
  data: {
25664
25695
  configuration?: {
25665
- isHidden: boolean;
25666
25696
  showSidebar: boolean;
25667
- isPrivate: boolean;
25668
25697
  header: {
25669
25698
  description: string;
25670
25699
  alignment: "Center" | "Left";
@@ -25692,6 +25721,8 @@ declare const DocumentationPageV2: z.ZodObject<{
25692
25721
  } | null | undefined;
25693
25722
  minHeight?: number | null | undefined;
25694
25723
  };
25724
+ isPrivate?: boolean | undefined;
25725
+ isHidden?: boolean | undefined;
25695
25726
  } | undefined;
25696
25727
  oldBlocks?: PageBlockV1[] | undefined;
25697
25728
  };
@@ -25712,9 +25743,7 @@ declare const DocumentationPageV2: z.ZodObject<{
25712
25743
  persistentId: string;
25713
25744
  data: {
25714
25745
  configuration?: {
25715
- isHidden: boolean;
25716
25746
  showSidebar: boolean;
25717
- isPrivate: boolean;
25718
25747
  header: {
25719
25748
  description: string;
25720
25749
  alignment: "Center" | "Left";
@@ -25742,6 +25771,8 @@ declare const DocumentationPageV2: z.ZodObject<{
25742
25771
  } | null | undefined;
25743
25772
  minHeight?: number | null | undefined;
25744
25773
  };
25774
+ isPrivate?: boolean | undefined;
25775
+ isHidden?: boolean | undefined;
25745
25776
  } | null | undefined;
25746
25777
  oldBlocks?: ({
25747
25778
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -26556,9 +26587,7 @@ declare const ElementGroup: z.ZodObject<{
26556
26587
  data: z.ZodOptional<z.ZodObject<{
26557
26588
  behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
26558
26589
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
26559
- isHidden: boolean;
26560
26590
  showSidebar: boolean;
26561
- isPrivate: boolean;
26562
26591
  header: {
26563
26592
  description: string;
26564
26593
  alignment: "Center" | "Left";
@@ -26586,10 +26615,10 @@ declare const ElementGroup: z.ZodObject<{
26586
26615
  } | null | undefined;
26587
26616
  minHeight?: number | null | undefined;
26588
26617
  };
26618
+ isPrivate?: boolean | undefined;
26619
+ isHidden?: boolean | undefined;
26589
26620
  }, z.ZodTypeDef, {
26590
- isHidden: boolean;
26591
26621
  showSidebar: boolean;
26592
- isPrivate: boolean;
26593
26622
  header: {
26594
26623
  description: string;
26595
26624
  alignment: "Center" | "Left";
@@ -26617,10 +26646,10 @@ declare const ElementGroup: z.ZodObject<{
26617
26646
  } | null | undefined;
26618
26647
  minHeight?: number | null | undefined;
26619
26648
  };
26649
+ isPrivate?: boolean | undefined;
26650
+ isHidden?: boolean | undefined;
26620
26651
  }>>>, {
26621
- isHidden: boolean;
26622
26652
  showSidebar: boolean;
26623
- isPrivate: boolean;
26624
26653
  header: {
26625
26654
  description: string;
26626
26655
  alignment: "Center" | "Left";
@@ -26648,10 +26677,10 @@ declare const ElementGroup: z.ZodObject<{
26648
26677
  } | null | undefined;
26649
26678
  minHeight?: number | null | undefined;
26650
26679
  };
26680
+ isPrivate?: boolean | undefined;
26681
+ isHidden?: boolean | undefined;
26651
26682
  } | undefined, {
26652
- isHidden: boolean;
26653
26683
  showSidebar: boolean;
26654
- isPrivate: boolean;
26655
26684
  header: {
26656
26685
  description: string;
26657
26686
  alignment: "Center" | "Left";
@@ -26679,13 +26708,13 @@ declare const ElementGroup: z.ZodObject<{
26679
26708
  } | null | undefined;
26680
26709
  minHeight?: number | null | undefined;
26681
26710
  };
26711
+ isPrivate?: boolean | undefined;
26712
+ isHidden?: boolean | undefined;
26682
26713
  } | null | undefined>;
26683
26714
  }, "strip", z.ZodTypeAny, {
26684
26715
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
26685
26716
  configuration?: {
26686
- isHidden: boolean;
26687
26717
  showSidebar: boolean;
26688
- isPrivate: boolean;
26689
26718
  header: {
26690
26719
  description: string;
26691
26720
  alignment: "Center" | "Left";
@@ -26713,13 +26742,13 @@ declare const ElementGroup: z.ZodObject<{
26713
26742
  } | null | undefined;
26714
26743
  minHeight?: number | null | undefined;
26715
26744
  };
26745
+ isPrivate?: boolean | undefined;
26746
+ isHidden?: boolean | undefined;
26716
26747
  } | undefined;
26717
26748
  }, {
26718
26749
  behavior?: "Tabs" | "Group" | null | undefined;
26719
26750
  configuration?: {
26720
- isHidden: boolean;
26721
26751
  showSidebar: boolean;
26722
- isPrivate: boolean;
26723
26752
  header: {
26724
26753
  description: string;
26725
26754
  alignment: "Center" | "Left";
@@ -26747,6 +26776,8 @@ declare const ElementGroup: z.ZodObject<{
26747
26776
  } | null | undefined;
26748
26777
  minHeight?: number | null | undefined;
26749
26778
  };
26779
+ isPrivate?: boolean | undefined;
26780
+ isHidden?: boolean | undefined;
26750
26781
  } | null | undefined;
26751
26782
  }>>;
26752
26783
  }, "strip", z.ZodTypeAny, {
@@ -26769,9 +26800,7 @@ declare const ElementGroup: z.ZodObject<{
26769
26800
  data?: {
26770
26801
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
26771
26802
  configuration?: {
26772
- isHidden: boolean;
26773
26803
  showSidebar: boolean;
26774
- isPrivate: boolean;
26775
26804
  header: {
26776
26805
  description: string;
26777
26806
  alignment: "Center" | "Left";
@@ -26799,6 +26828,8 @@ declare const ElementGroup: z.ZodObject<{
26799
26828
  } | null | undefined;
26800
26829
  minHeight?: number | null | undefined;
26801
26830
  };
26831
+ isPrivate?: boolean | undefined;
26832
+ isHidden?: boolean | undefined;
26802
26833
  } | undefined;
26803
26834
  } | undefined;
26804
26835
  }, {
@@ -26821,9 +26852,7 @@ declare const ElementGroup: z.ZodObject<{
26821
26852
  data?: {
26822
26853
  behavior?: "Tabs" | "Group" | null | undefined;
26823
26854
  configuration?: {
26824
- isHidden: boolean;
26825
26855
  showSidebar: boolean;
26826
- isPrivate: boolean;
26827
26856
  header: {
26828
26857
  description: string;
26829
26858
  alignment: "Center" | "Left";
@@ -26851,6 +26880,8 @@ declare const ElementGroup: z.ZodObject<{
26851
26880
  } | null | undefined;
26852
26881
  minHeight?: number | null | undefined;
26853
26882
  };
26883
+ isPrivate?: boolean | undefined;
26884
+ isHidden?: boolean | undefined;
26854
26885
  } | null | undefined;
26855
26886
  } | undefined;
26856
26887
  }>;
@@ -26863,9 +26894,7 @@ declare const BrandedElementGroup: z.ZodObject<{
26863
26894
  data: z.ZodOptional<z.ZodObject<{
26864
26895
  behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
26865
26896
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
26866
- isHidden: boolean;
26867
26897
  showSidebar: boolean;
26868
- isPrivate: boolean;
26869
26898
  header: {
26870
26899
  description: string;
26871
26900
  alignment: "Center" | "Left";
@@ -26893,10 +26922,10 @@ declare const BrandedElementGroup: z.ZodObject<{
26893
26922
  } | null | undefined;
26894
26923
  minHeight?: number | null | undefined;
26895
26924
  };
26925
+ isPrivate?: boolean | undefined;
26926
+ isHidden?: boolean | undefined;
26896
26927
  }, z.ZodTypeDef, {
26897
- isHidden: boolean;
26898
26928
  showSidebar: boolean;
26899
- isPrivate: boolean;
26900
26929
  header: {
26901
26930
  description: string;
26902
26931
  alignment: "Center" | "Left";
@@ -26924,10 +26953,10 @@ declare const BrandedElementGroup: z.ZodObject<{
26924
26953
  } | null | undefined;
26925
26954
  minHeight?: number | null | undefined;
26926
26955
  };
26956
+ isPrivate?: boolean | undefined;
26957
+ isHidden?: boolean | undefined;
26927
26958
  }>>>, {
26928
- isHidden: boolean;
26929
26959
  showSidebar: boolean;
26930
- isPrivate: boolean;
26931
26960
  header: {
26932
26961
  description: string;
26933
26962
  alignment: "Center" | "Left";
@@ -26955,10 +26984,10 @@ declare const BrandedElementGroup: z.ZodObject<{
26955
26984
  } | null | undefined;
26956
26985
  minHeight?: number | null | undefined;
26957
26986
  };
26987
+ isPrivate?: boolean | undefined;
26988
+ isHidden?: boolean | undefined;
26958
26989
  } | undefined, {
26959
- isHidden: boolean;
26960
26990
  showSidebar: boolean;
26961
- isPrivate: boolean;
26962
26991
  header: {
26963
26992
  description: string;
26964
26993
  alignment: "Center" | "Left";
@@ -26986,13 +27015,13 @@ declare const BrandedElementGroup: z.ZodObject<{
26986
27015
  } | null | undefined;
26987
27016
  minHeight?: number | null | undefined;
26988
27017
  };
27018
+ isPrivate?: boolean | undefined;
27019
+ isHidden?: boolean | undefined;
26989
27020
  } | null | undefined>;
26990
27021
  }, "strip", z.ZodTypeAny, {
26991
27022
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
26992
27023
  configuration?: {
26993
- isHidden: boolean;
26994
27024
  showSidebar: boolean;
26995
- isPrivate: boolean;
26996
27025
  header: {
26997
27026
  description: string;
26998
27027
  alignment: "Center" | "Left";
@@ -27020,13 +27049,13 @@ declare const BrandedElementGroup: z.ZodObject<{
27020
27049
  } | null | undefined;
27021
27050
  minHeight?: number | null | undefined;
27022
27051
  };
27052
+ isPrivate?: boolean | undefined;
27053
+ isHidden?: boolean | undefined;
27023
27054
  } | undefined;
27024
27055
  }, {
27025
27056
  behavior?: "Tabs" | "Group" | null | undefined;
27026
27057
  configuration?: {
27027
- isHidden: boolean;
27028
27058
  showSidebar: boolean;
27029
- isPrivate: boolean;
27030
27059
  header: {
27031
27060
  description: string;
27032
27061
  alignment: "Center" | "Left";
@@ -27054,6 +27083,8 @@ declare const BrandedElementGroup: z.ZodObject<{
27054
27083
  } | null | undefined;
27055
27084
  minHeight?: number | null | undefined;
27056
27085
  };
27086
+ isPrivate?: boolean | undefined;
27087
+ isHidden?: boolean | undefined;
27057
27088
  } | null | undefined;
27058
27089
  }>>;
27059
27090
  designSystemVersionId: z.ZodString;
@@ -27090,9 +27121,7 @@ declare const BrandedElementGroup: z.ZodObject<{
27090
27121
  data?: {
27091
27122
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
27092
27123
  configuration?: {
27093
- isHidden: boolean;
27094
27124
  showSidebar: boolean;
27095
- isPrivate: boolean;
27096
27125
  header: {
27097
27126
  description: string;
27098
27127
  alignment: "Center" | "Left";
@@ -27120,6 +27149,8 @@ declare const BrandedElementGroup: z.ZodObject<{
27120
27149
  } | null | undefined;
27121
27150
  minHeight?: number | null | undefined;
27122
27151
  };
27152
+ isPrivate?: boolean | undefined;
27153
+ isHidden?: boolean | undefined;
27123
27154
  } | undefined;
27124
27155
  } | undefined;
27125
27156
  parentPersistentId?: string | undefined;
@@ -27142,9 +27173,7 @@ declare const BrandedElementGroup: z.ZodObject<{
27142
27173
  data?: {
27143
27174
  behavior?: "Tabs" | "Group" | null | undefined;
27144
27175
  configuration?: {
27145
- isHidden: boolean;
27146
27176
  showSidebar: boolean;
27147
- isPrivate: boolean;
27148
27177
  header: {
27149
27178
  description: string;
27150
27179
  alignment: "Center" | "Left";
@@ -27172,6 +27201,8 @@ declare const BrandedElementGroup: z.ZodObject<{
27172
27201
  } | null | undefined;
27173
27202
  minHeight?: number | null | undefined;
27174
27203
  };
27204
+ isPrivate?: boolean | undefined;
27205
+ isHidden?: boolean | undefined;
27175
27206
  } | null | undefined;
27176
27207
  } | undefined;
27177
27208
  parentPersistentId?: string | undefined;
@@ -94400,9 +94431,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94400
94431
  shortPersistentId: z.ZodString;
94401
94432
  data: z.ZodObject<{
94402
94433
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
94403
- isHidden: boolean;
94404
94434
  showSidebar: boolean;
94405
- isPrivate: boolean;
94406
94435
  header: {
94407
94436
  description: string;
94408
94437
  alignment: "Center" | "Left";
@@ -94430,10 +94459,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94430
94459
  } | null | undefined;
94431
94460
  minHeight?: number | null | undefined;
94432
94461
  };
94462
+ isPrivate?: boolean | undefined;
94463
+ isHidden?: boolean | undefined;
94433
94464
  }, z.ZodTypeDef, {
94434
- isHidden: boolean;
94435
94465
  showSidebar: boolean;
94436
- isPrivate: boolean;
94437
94466
  header: {
94438
94467
  description: string;
94439
94468
  alignment: "Center" | "Left";
@@ -94461,10 +94490,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94461
94490
  } | null | undefined;
94462
94491
  minHeight?: number | null | undefined;
94463
94492
  };
94493
+ isPrivate?: boolean | undefined;
94494
+ isHidden?: boolean | undefined;
94464
94495
  }>>>, {
94465
- isHidden: boolean;
94466
94496
  showSidebar: boolean;
94467
- isPrivate: boolean;
94468
94497
  header: {
94469
94498
  description: string;
94470
94499
  alignment: "Center" | "Left";
@@ -94492,10 +94521,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94492
94521
  } | null | undefined;
94493
94522
  minHeight?: number | null | undefined;
94494
94523
  };
94524
+ isPrivate?: boolean | undefined;
94525
+ isHidden?: boolean | undefined;
94495
94526
  } | undefined, {
94496
- isHidden: boolean;
94497
94527
  showSidebar: boolean;
94498
- isPrivate: boolean;
94499
94528
  header: {
94500
94529
  description: string;
94501
94530
  alignment: "Center" | "Left";
@@ -94523,6 +94552,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94523
94552
  } | null | undefined;
94524
94553
  minHeight?: number | null | undefined;
94525
94554
  };
94555
+ isPrivate?: boolean | undefined;
94556
+ isHidden?: boolean | undefined;
94526
94557
  } | null | undefined>;
94527
94558
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
94528
94559
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -94889,9 +94920,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94889
94920
  }>, "many">>;
94890
94921
  }, "strip", z.ZodTypeAny, {
94891
94922
  configuration?: {
94892
- isHidden: boolean;
94893
94923
  showSidebar: boolean;
94894
- isPrivate: boolean;
94895
94924
  header: {
94896
94925
  description: string;
94897
94926
  alignment: "Center" | "Left";
@@ -94919,13 +94948,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94919
94948
  } | null | undefined;
94920
94949
  minHeight?: number | null | undefined;
94921
94950
  };
94951
+ isPrivate?: boolean | undefined;
94952
+ isHidden?: boolean | undefined;
94922
94953
  } | undefined;
94923
94954
  oldBlocks?: PageBlockV1[] | undefined;
94924
94955
  }, {
94925
94956
  configuration?: {
94926
- isHidden: boolean;
94927
94957
  showSidebar: boolean;
94928
- isPrivate: boolean;
94929
94958
  header: {
94930
94959
  description: string;
94931
94960
  alignment: "Center" | "Left";
@@ -94953,6 +94982,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94953
94982
  } | null | undefined;
94954
94983
  minHeight?: number | null | undefined;
94955
94984
  };
94985
+ isPrivate?: boolean | undefined;
94986
+ isHidden?: boolean | undefined;
94956
94987
  } | null | undefined;
94957
94988
  oldBlocks?: ({
94958
94989
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -95325,9 +95356,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95325
95356
  persistentId: string;
95326
95357
  data: {
95327
95358
  configuration?: {
95328
- isHidden: boolean;
95329
95359
  showSidebar: boolean;
95330
- isPrivate: boolean;
95331
95360
  header: {
95332
95361
  description: string;
95333
95362
  alignment: "Center" | "Left";
@@ -95355,6 +95384,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95355
95384
  } | null | undefined;
95356
95385
  minHeight?: number | null | undefined;
95357
95386
  };
95387
+ isPrivate?: boolean | undefined;
95388
+ isHidden?: boolean | undefined;
95358
95389
  } | undefined;
95359
95390
  oldBlocks?: PageBlockV1[] | undefined;
95360
95391
  };
@@ -95375,9 +95406,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95375
95406
  persistentId: string;
95376
95407
  data: {
95377
95408
  configuration?: {
95378
- isHidden: boolean;
95379
95409
  showSidebar: boolean;
95380
- isPrivate: boolean;
95381
95410
  header: {
95382
95411
  description: string;
95383
95412
  alignment: "Center" | "Left";
@@ -95405,6 +95434,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95405
95434
  } | null | undefined;
95406
95435
  minHeight?: number | null | undefined;
95407
95436
  };
95437
+ isPrivate?: boolean | undefined;
95438
+ isHidden?: boolean | undefined;
95408
95439
  } | null | undefined;
95409
95440
  oldBlocks?: ({
95410
95441
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -95807,9 +95838,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95807
95838
  data: z.ZodOptional<z.ZodObject<{
95808
95839
  behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
95809
95840
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
95810
- isHidden: boolean;
95811
95841
  showSidebar: boolean;
95812
- isPrivate: boolean;
95813
95842
  header: {
95814
95843
  description: string;
95815
95844
  alignment: "Center" | "Left";
@@ -95837,10 +95866,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95837
95866
  } | null | undefined;
95838
95867
  minHeight?: number | null | undefined;
95839
95868
  };
95869
+ isPrivate?: boolean | undefined;
95870
+ isHidden?: boolean | undefined;
95840
95871
  }, z.ZodTypeDef, {
95841
- isHidden: boolean;
95842
95872
  showSidebar: boolean;
95843
- isPrivate: boolean;
95844
95873
  header: {
95845
95874
  description: string;
95846
95875
  alignment: "Center" | "Left";
@@ -95868,10 +95897,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95868
95897
  } | null | undefined;
95869
95898
  minHeight?: number | null | undefined;
95870
95899
  };
95900
+ isPrivate?: boolean | undefined;
95901
+ isHidden?: boolean | undefined;
95871
95902
  }>>>, {
95872
- isHidden: boolean;
95873
95903
  showSidebar: boolean;
95874
- isPrivate: boolean;
95875
95904
  header: {
95876
95905
  description: string;
95877
95906
  alignment: "Center" | "Left";
@@ -95899,10 +95928,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95899
95928
  } | null | undefined;
95900
95929
  minHeight?: number | null | undefined;
95901
95930
  };
95931
+ isPrivate?: boolean | undefined;
95932
+ isHidden?: boolean | undefined;
95902
95933
  } | undefined, {
95903
- isHidden: boolean;
95904
95934
  showSidebar: boolean;
95905
- isPrivate: boolean;
95906
95935
  header: {
95907
95936
  description: string;
95908
95937
  alignment: "Center" | "Left";
@@ -95930,13 +95959,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95930
95959
  } | null | undefined;
95931
95960
  minHeight?: number | null | undefined;
95932
95961
  };
95962
+ isPrivate?: boolean | undefined;
95963
+ isHidden?: boolean | undefined;
95933
95964
  } | null | undefined>;
95934
95965
  }, "strip", z.ZodTypeAny, {
95935
95966
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
95936
95967
  configuration?: {
95937
- isHidden: boolean;
95938
95968
  showSidebar: boolean;
95939
- isPrivate: boolean;
95940
95969
  header: {
95941
95970
  description: string;
95942
95971
  alignment: "Center" | "Left";
@@ -95964,13 +95993,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95964
95993
  } | null | undefined;
95965
95994
  minHeight?: number | null | undefined;
95966
95995
  };
95996
+ isPrivate?: boolean | undefined;
95997
+ isHidden?: boolean | undefined;
95967
95998
  } | undefined;
95968
95999
  }, {
95969
96000
  behavior?: "Tabs" | "Group" | null | undefined;
95970
96001
  configuration?: {
95971
- isHidden: boolean;
95972
96002
  showSidebar: boolean;
95973
- isPrivate: boolean;
95974
96003
  header: {
95975
96004
  description: string;
95976
96005
  alignment: "Center" | "Left";
@@ -95998,6 +96027,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95998
96027
  } | null | undefined;
95999
96028
  minHeight?: number | null | undefined;
96000
96029
  };
96030
+ isPrivate?: boolean | undefined;
96031
+ isHidden?: boolean | undefined;
96001
96032
  } | null | undefined;
96002
96033
  }>>;
96003
96034
  }, "strip", z.ZodTypeAny, {
@@ -96020,9 +96051,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96020
96051
  data?: {
96021
96052
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
96022
96053
  configuration?: {
96023
- isHidden: boolean;
96024
96054
  showSidebar: boolean;
96025
- isPrivate: boolean;
96026
96055
  header: {
96027
96056
  description: string;
96028
96057
  alignment: "Center" | "Left";
@@ -96050,6 +96079,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96050
96079
  } | null | undefined;
96051
96080
  minHeight?: number | null | undefined;
96052
96081
  };
96082
+ isPrivate?: boolean | undefined;
96083
+ isHidden?: boolean | undefined;
96053
96084
  } | undefined;
96054
96085
  } | undefined;
96055
96086
  }, {
@@ -96072,9 +96103,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96072
96103
  data?: {
96073
96104
  behavior?: "Tabs" | "Group" | null | undefined;
96074
96105
  configuration?: {
96075
- isHidden: boolean;
96076
96106
  showSidebar: boolean;
96077
- isPrivate: boolean;
96078
96107
  header: {
96079
96108
  description: string;
96080
96109
  alignment: "Center" | "Left";
@@ -96102,6 +96131,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96102
96131
  } | null | undefined;
96103
96132
  minHeight?: number | null | undefined;
96104
96133
  };
96134
+ isPrivate?: boolean | undefined;
96135
+ isHidden?: boolean | undefined;
96105
96136
  } | null | undefined;
96106
96137
  } | undefined;
96107
96138
  }>, "many">;
@@ -96133,9 +96164,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96133
96164
  data?: {
96134
96165
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
96135
96166
  configuration?: {
96136
- isHidden: boolean;
96137
96167
  showSidebar: boolean;
96138
- isPrivate: boolean;
96139
96168
  header: {
96140
96169
  description: string;
96141
96170
  alignment: "Center" | "Left";
@@ -96163,6 +96192,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96163
96192
  } | null | undefined;
96164
96193
  minHeight?: number | null | undefined;
96165
96194
  };
96195
+ isPrivate?: boolean | undefined;
96196
+ isHidden?: boolean | undefined;
96166
96197
  } | undefined;
96167
96198
  } | undefined;
96168
96199
  }[];
@@ -96173,9 +96204,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96173
96204
  persistentId: string;
96174
96205
  data: {
96175
96206
  configuration?: {
96176
- isHidden: boolean;
96177
96207
  showSidebar: boolean;
96178
- isPrivate: boolean;
96179
96208
  header: {
96180
96209
  description: string;
96181
96210
  alignment: "Center" | "Left";
@@ -96203,6 +96232,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96203
96232
  } | null | undefined;
96204
96233
  minHeight?: number | null | undefined;
96205
96234
  };
96235
+ isPrivate?: boolean | undefined;
96236
+ isHidden?: boolean | undefined;
96206
96237
  } | undefined;
96207
96238
  oldBlocks?: PageBlockV1[] | undefined;
96208
96239
  };
@@ -96241,9 +96272,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96241
96272
  data?: {
96242
96273
  behavior?: "Tabs" | "Group" | null | undefined;
96243
96274
  configuration?: {
96244
- isHidden: boolean;
96245
96275
  showSidebar: boolean;
96246
- isPrivate: boolean;
96247
96276
  header: {
96248
96277
  description: string;
96249
96278
  alignment: "Center" | "Left";
@@ -96271,6 +96300,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96271
96300
  } | null | undefined;
96272
96301
  minHeight?: number | null | undefined;
96273
96302
  };
96303
+ isPrivate?: boolean | undefined;
96304
+ isHidden?: boolean | undefined;
96274
96305
  } | null | undefined;
96275
96306
  } | undefined;
96276
96307
  }[];
@@ -96281,9 +96312,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96281
96312
  persistentId: string;
96282
96313
  data: {
96283
96314
  configuration?: {
96284
- isHidden: boolean;
96285
96315
  showSidebar: boolean;
96286
- isPrivate: boolean;
96287
96316
  header: {
96288
96317
  description: string;
96289
96318
  alignment: "Center" | "Left";
@@ -96311,6 +96340,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96311
96340
  } | null | undefined;
96312
96341
  minHeight?: number | null | undefined;
96313
96342
  };
96343
+ isPrivate?: boolean | undefined;
96344
+ isHidden?: boolean | undefined;
96314
96345
  } | null | undefined;
96315
96346
  oldBlocks?: ({
96316
96347
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -96716,9 +96747,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96716
96747
  shortPersistentId: z.ZodString;
96717
96748
  data: z.ZodObject<{
96718
96749
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
96719
- isHidden: boolean;
96720
96750
  showSidebar: boolean;
96721
- isPrivate: boolean;
96722
96751
  header: {
96723
96752
  description: string;
96724
96753
  alignment: "Center" | "Left";
@@ -96746,10 +96775,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96746
96775
  } | null | undefined;
96747
96776
  minHeight?: number | null | undefined;
96748
96777
  };
96778
+ isPrivate?: boolean | undefined;
96779
+ isHidden?: boolean | undefined;
96749
96780
  }, z.ZodTypeDef, {
96750
- isHidden: boolean;
96751
96781
  showSidebar: boolean;
96752
- isPrivate: boolean;
96753
96782
  header: {
96754
96783
  description: string;
96755
96784
  alignment: "Center" | "Left";
@@ -96777,10 +96806,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96777
96806
  } | null | undefined;
96778
96807
  minHeight?: number | null | undefined;
96779
96808
  };
96809
+ isPrivate?: boolean | undefined;
96810
+ isHidden?: boolean | undefined;
96780
96811
  }>>>, {
96781
- isHidden: boolean;
96782
96812
  showSidebar: boolean;
96783
- isPrivate: boolean;
96784
96813
  header: {
96785
96814
  description: string;
96786
96815
  alignment: "Center" | "Left";
@@ -96808,10 +96837,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96808
96837
  } | null | undefined;
96809
96838
  minHeight?: number | null | undefined;
96810
96839
  };
96840
+ isPrivate?: boolean | undefined;
96841
+ isHidden?: boolean | undefined;
96811
96842
  } | undefined, {
96812
- isHidden: boolean;
96813
96843
  showSidebar: boolean;
96814
- isPrivate: boolean;
96815
96844
  header: {
96816
96845
  description: string;
96817
96846
  alignment: "Center" | "Left";
@@ -96839,6 +96868,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96839
96868
  } | null | undefined;
96840
96869
  minHeight?: number | null | undefined;
96841
96870
  };
96871
+ isPrivate?: boolean | undefined;
96872
+ isHidden?: boolean | undefined;
96842
96873
  } | null | undefined>;
96843
96874
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
96844
96875
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -97205,9 +97236,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97205
97236
  }>, "many">>;
97206
97237
  }, "strip", z.ZodTypeAny, {
97207
97238
  configuration?: {
97208
- isHidden: boolean;
97209
97239
  showSidebar: boolean;
97210
- isPrivate: boolean;
97211
97240
  header: {
97212
97241
  description: string;
97213
97242
  alignment: "Center" | "Left";
@@ -97235,13 +97264,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97235
97264
  } | null | undefined;
97236
97265
  minHeight?: number | null | undefined;
97237
97266
  };
97267
+ isPrivate?: boolean | undefined;
97268
+ isHidden?: boolean | undefined;
97238
97269
  } | undefined;
97239
97270
  oldBlocks?: PageBlockV1[] | undefined;
97240
97271
  }, {
97241
97272
  configuration?: {
97242
- isHidden: boolean;
97243
97273
  showSidebar: boolean;
97244
- isPrivate: boolean;
97245
97274
  header: {
97246
97275
  description: string;
97247
97276
  alignment: "Center" | "Left";
@@ -97269,6 +97298,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97269
97298
  } | null | undefined;
97270
97299
  minHeight?: number | null | undefined;
97271
97300
  };
97301
+ isPrivate?: boolean | undefined;
97302
+ isHidden?: boolean | undefined;
97272
97303
  } | null | undefined;
97273
97304
  oldBlocks?: ({
97274
97305
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -97641,9 +97672,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97641
97672
  persistentId: string;
97642
97673
  data: {
97643
97674
  configuration?: {
97644
- isHidden: boolean;
97645
97675
  showSidebar: boolean;
97646
- isPrivate: boolean;
97647
97676
  header: {
97648
97677
  description: string;
97649
97678
  alignment: "Center" | "Left";
@@ -97671,6 +97700,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97671
97700
  } | null | undefined;
97672
97701
  minHeight?: number | null | undefined;
97673
97702
  };
97703
+ isPrivate?: boolean | undefined;
97704
+ isHidden?: boolean | undefined;
97674
97705
  } | undefined;
97675
97706
  oldBlocks?: PageBlockV1[] | undefined;
97676
97707
  };
@@ -97691,9 +97722,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97691
97722
  persistentId: string;
97692
97723
  data: {
97693
97724
  configuration?: {
97694
- isHidden: boolean;
97695
97725
  showSidebar: boolean;
97696
- isPrivate: boolean;
97697
97726
  header: {
97698
97727
  description: string;
97699
97728
  alignment: "Center" | "Left";
@@ -97721,6 +97750,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97721
97750
  } | null | undefined;
97722
97751
  minHeight?: number | null | undefined;
97723
97752
  };
97753
+ isPrivate?: boolean | undefined;
97754
+ isHidden?: boolean | undefined;
97724
97755
  } | null | undefined;
97725
97756
  oldBlocks?: ({
97726
97757
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -98123,9 +98154,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98123
98154
  data: z.ZodOptional<z.ZodObject<{
98124
98155
  behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
98125
98156
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
98126
- isHidden: boolean;
98127
98157
  showSidebar: boolean;
98128
- isPrivate: boolean;
98129
98158
  header: {
98130
98159
  description: string;
98131
98160
  alignment: "Center" | "Left";
@@ -98153,10 +98182,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98153
98182
  } | null | undefined;
98154
98183
  minHeight?: number | null | undefined;
98155
98184
  };
98185
+ isPrivate?: boolean | undefined;
98186
+ isHidden?: boolean | undefined;
98156
98187
  }, z.ZodTypeDef, {
98157
- isHidden: boolean;
98158
98188
  showSidebar: boolean;
98159
- isPrivate: boolean;
98160
98189
  header: {
98161
98190
  description: string;
98162
98191
  alignment: "Center" | "Left";
@@ -98184,10 +98213,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98184
98213
  } | null | undefined;
98185
98214
  minHeight?: number | null | undefined;
98186
98215
  };
98216
+ isPrivate?: boolean | undefined;
98217
+ isHidden?: boolean | undefined;
98187
98218
  }>>>, {
98188
- isHidden: boolean;
98189
98219
  showSidebar: boolean;
98190
- isPrivate: boolean;
98191
98220
  header: {
98192
98221
  description: string;
98193
98222
  alignment: "Center" | "Left";
@@ -98215,10 +98244,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98215
98244
  } | null | undefined;
98216
98245
  minHeight?: number | null | undefined;
98217
98246
  };
98247
+ isPrivate?: boolean | undefined;
98248
+ isHidden?: boolean | undefined;
98218
98249
  } | undefined, {
98219
- isHidden: boolean;
98220
98250
  showSidebar: boolean;
98221
- isPrivate: boolean;
98222
98251
  header: {
98223
98252
  description: string;
98224
98253
  alignment: "Center" | "Left";
@@ -98246,13 +98275,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98246
98275
  } | null | undefined;
98247
98276
  minHeight?: number | null | undefined;
98248
98277
  };
98278
+ isPrivate?: boolean | undefined;
98279
+ isHidden?: boolean | undefined;
98249
98280
  } | null | undefined>;
98250
98281
  }, "strip", z.ZodTypeAny, {
98251
98282
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
98252
98283
  configuration?: {
98253
- isHidden: boolean;
98254
98284
  showSidebar: boolean;
98255
- isPrivate: boolean;
98256
98285
  header: {
98257
98286
  description: string;
98258
98287
  alignment: "Center" | "Left";
@@ -98280,13 +98309,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98280
98309
  } | null | undefined;
98281
98310
  minHeight?: number | null | undefined;
98282
98311
  };
98312
+ isPrivate?: boolean | undefined;
98313
+ isHidden?: boolean | undefined;
98283
98314
  } | undefined;
98284
98315
  }, {
98285
98316
  behavior?: "Tabs" | "Group" | null | undefined;
98286
98317
  configuration?: {
98287
- isHidden: boolean;
98288
98318
  showSidebar: boolean;
98289
- isPrivate: boolean;
98290
98319
  header: {
98291
98320
  description: string;
98292
98321
  alignment: "Center" | "Left";
@@ -98314,6 +98343,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98314
98343
  } | null | undefined;
98315
98344
  minHeight?: number | null | undefined;
98316
98345
  };
98346
+ isPrivate?: boolean | undefined;
98347
+ isHidden?: boolean | undefined;
98317
98348
  } | null | undefined;
98318
98349
  }>>;
98319
98350
  }, "strip", z.ZodTypeAny, {
@@ -98336,9 +98367,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98336
98367
  data?: {
98337
98368
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
98338
98369
  configuration?: {
98339
- isHidden: boolean;
98340
98370
  showSidebar: boolean;
98341
- isPrivate: boolean;
98342
98371
  header: {
98343
98372
  description: string;
98344
98373
  alignment: "Center" | "Left";
@@ -98366,6 +98395,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98366
98395
  } | null | undefined;
98367
98396
  minHeight?: number | null | undefined;
98368
98397
  };
98398
+ isPrivate?: boolean | undefined;
98399
+ isHidden?: boolean | undefined;
98369
98400
  } | undefined;
98370
98401
  } | undefined;
98371
98402
  }, {
@@ -98388,9 +98419,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98388
98419
  data?: {
98389
98420
  behavior?: "Tabs" | "Group" | null | undefined;
98390
98421
  configuration?: {
98391
- isHidden: boolean;
98392
98422
  showSidebar: boolean;
98393
- isPrivate: boolean;
98394
98423
  header: {
98395
98424
  description: string;
98396
98425
  alignment: "Center" | "Left";
@@ -98418,6 +98447,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98418
98447
  } | null | undefined;
98419
98448
  minHeight?: number | null | undefined;
98420
98449
  };
98450
+ isPrivate?: boolean | undefined;
98451
+ isHidden?: boolean | undefined;
98421
98452
  } | null | undefined;
98422
98453
  } | undefined;
98423
98454
  }>, "many">;
@@ -98444,9 +98475,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98444
98475
  data?: {
98445
98476
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
98446
98477
  configuration?: {
98447
- isHidden: boolean;
98448
98478
  showSidebar: boolean;
98449
- isPrivate: boolean;
98450
98479
  header: {
98451
98480
  description: string;
98452
98481
  alignment: "Center" | "Left";
@@ -98474,6 +98503,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98474
98503
  } | null | undefined;
98475
98504
  minHeight?: number | null | undefined;
98476
98505
  };
98506
+ isPrivate?: boolean | undefined;
98507
+ isHidden?: boolean | undefined;
98477
98508
  } | undefined;
98478
98509
  } | undefined;
98479
98510
  }[];
@@ -98484,9 +98515,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98484
98515
  persistentId: string;
98485
98516
  data: {
98486
98517
  configuration?: {
98487
- isHidden: boolean;
98488
98518
  showSidebar: boolean;
98489
- isPrivate: boolean;
98490
98519
  header: {
98491
98520
  description: string;
98492
98521
  alignment: "Center" | "Left";
@@ -98514,6 +98543,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98514
98543
  } | null | undefined;
98515
98544
  minHeight?: number | null | undefined;
98516
98545
  };
98546
+ isPrivate?: boolean | undefined;
98547
+ isHidden?: boolean | undefined;
98517
98548
  } | undefined;
98518
98549
  oldBlocks?: PageBlockV1[] | undefined;
98519
98550
  };
@@ -98551,9 +98582,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98551
98582
  data?: {
98552
98583
  behavior?: "Tabs" | "Group" | null | undefined;
98553
98584
  configuration?: {
98554
- isHidden: boolean;
98555
98585
  showSidebar: boolean;
98556
- isPrivate: boolean;
98557
98586
  header: {
98558
98587
  description: string;
98559
98588
  alignment: "Center" | "Left";
@@ -98581,6 +98610,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98581
98610
  } | null | undefined;
98582
98611
  minHeight?: number | null | undefined;
98583
98612
  };
98613
+ isPrivate?: boolean | undefined;
98614
+ isHidden?: boolean | undefined;
98584
98615
  } | null | undefined;
98585
98616
  } | undefined;
98586
98617
  }[];
@@ -98591,9 +98622,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98591
98622
  persistentId: string;
98592
98623
  data: {
98593
98624
  configuration?: {
98594
- isHidden: boolean;
98595
98625
  showSidebar: boolean;
98596
- isPrivate: boolean;
98597
98626
  header: {
98598
98627
  description: string;
98599
98628
  alignment: "Center" | "Left";
@@ -98621,6 +98650,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98621
98650
  } | null | undefined;
98622
98651
  minHeight?: number | null | undefined;
98623
98652
  };
98653
+ isPrivate?: boolean | undefined;
98654
+ isHidden?: boolean | undefined;
98624
98655
  } | null | undefined;
98625
98656
  oldBlocks?: ({
98626
98657
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -99751,8 +99782,8 @@ declare const DocumentationPageRoomState: z.ZodObject<{
99751
99782
  }>]>, "many">;
99752
99783
  itemConfiguration: z.ZodObject<{
99753
99784
  showSidebar: z.ZodBoolean;
99754
- isPrivate: z.ZodBoolean;
99755
- isHidden: z.ZodBoolean;
99785
+ isPrivate: z.ZodOptional<z.ZodBoolean>;
99786
+ isHidden: z.ZodOptional<z.ZodBoolean>;
99756
99787
  header: z.ZodObject<{
99757
99788
  description: z.ZodString;
99758
99789
  alignment: z.ZodEnum<["Left", "Center"]>;
@@ -99877,9 +99908,7 @@ declare const DocumentationPageRoomState: z.ZodObject<{
99877
99908
  minHeight?: number | null | undefined;
99878
99909
  }>;
99879
99910
  }, "strip", z.ZodTypeAny, {
99880
- isHidden: boolean;
99881
99911
  showSidebar: boolean;
99882
- isPrivate: boolean;
99883
99912
  header: {
99884
99913
  description: string;
99885
99914
  alignment: "Center" | "Left";
@@ -99907,10 +99936,10 @@ declare const DocumentationPageRoomState: z.ZodObject<{
99907
99936
  } | null | undefined;
99908
99937
  minHeight?: number | null | undefined;
99909
99938
  };
99939
+ isPrivate?: boolean | undefined;
99940
+ isHidden?: boolean | undefined;
99910
99941
  }, {
99911
- isHidden: boolean;
99912
99942
  showSidebar: boolean;
99913
- isPrivate: boolean;
99914
99943
  header: {
99915
99944
  description: string;
99916
99945
  alignment: "Center" | "Left";
@@ -99938,6 +99967,8 @@ declare const DocumentationPageRoomState: z.ZodObject<{
99938
99967
  } | null | undefined;
99939
99968
  minHeight?: number | null | undefined;
99940
99969
  };
99970
+ isPrivate?: boolean | undefined;
99971
+ isHidden?: boolean | undefined;
99941
99972
  }>;
99942
99973
  }, "strip", z.ZodTypeAny, {
99943
99974
  pageItems: ({
@@ -100029,9 +100060,7 @@ declare const DocumentationPageRoomState: z.ZodObject<{
100029
100060
  variantId?: string | undefined;
100030
100061
  })[];
100031
100062
  itemConfiguration: {
100032
- isHidden: boolean;
100033
100063
  showSidebar: boolean;
100034
- isPrivate: boolean;
100035
100064
  header: {
100036
100065
  description: string;
100037
100066
  alignment: "Center" | "Left";
@@ -100059,6 +100088,8 @@ declare const DocumentationPageRoomState: z.ZodObject<{
100059
100088
  } | null | undefined;
100060
100089
  minHeight?: number | null | undefined;
100061
100090
  };
100091
+ isPrivate?: boolean | undefined;
100092
+ isHidden?: boolean | undefined;
100062
100093
  };
100063
100094
  }, {
100064
100095
  pageItems: ({
@@ -100150,9 +100181,7 @@ declare const DocumentationPageRoomState: z.ZodObject<{
100150
100181
  variantId?: string | undefined;
100151
100182
  })[];
100152
100183
  itemConfiguration: {
100153
- isHidden: boolean;
100154
100184
  showSidebar: boolean;
100155
- isPrivate: boolean;
100156
100185
  header: {
100157
100186
  description: string;
100158
100187
  alignment: "Center" | "Left";
@@ -100180,6 +100209,8 @@ declare const DocumentationPageRoomState: z.ZodObject<{
100180
100209
  } | null | undefined;
100181
100210
  minHeight?: number | null | undefined;
100182
100211
  };
100212
+ isPrivate?: boolean | undefined;
100213
+ isHidden?: boolean | undefined;
100183
100214
  };
100184
100215
  }>;
100185
100216
  type DocumentationPageRoomState = z.infer<typeof DocumentationPageRoomState>;
@@ -100207,9 +100238,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100207
100238
  shortPersistentId: z.ZodString;
100208
100239
  data: z.ZodObject<{
100209
100240
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
100210
- isHidden: boolean;
100211
100241
  showSidebar: boolean;
100212
- isPrivate: boolean;
100213
100242
  header: {
100214
100243
  description: string;
100215
100244
  alignment: "Center" | "Left";
@@ -100237,10 +100266,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100237
100266
  } | null | undefined;
100238
100267
  minHeight?: number | null | undefined;
100239
100268
  };
100269
+ isPrivate?: boolean | undefined;
100270
+ isHidden?: boolean | undefined;
100240
100271
  }, z.ZodTypeDef, {
100241
- isHidden: boolean;
100242
100272
  showSidebar: boolean;
100243
- isPrivate: boolean;
100244
100273
  header: {
100245
100274
  description: string;
100246
100275
  alignment: "Center" | "Left";
@@ -100268,10 +100297,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100268
100297
  } | null | undefined;
100269
100298
  minHeight?: number | null | undefined;
100270
100299
  };
100300
+ isPrivate?: boolean | undefined;
100301
+ isHidden?: boolean | undefined;
100271
100302
  }>>>, {
100272
- isHidden: boolean;
100273
100303
  showSidebar: boolean;
100274
- isPrivate: boolean;
100275
100304
  header: {
100276
100305
  description: string;
100277
100306
  alignment: "Center" | "Left";
@@ -100299,10 +100328,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100299
100328
  } | null | undefined;
100300
100329
  minHeight?: number | null | undefined;
100301
100330
  };
100331
+ isPrivate?: boolean | undefined;
100332
+ isHidden?: boolean | undefined;
100302
100333
  } | undefined, {
100303
- isHidden: boolean;
100304
100334
  showSidebar: boolean;
100305
- isPrivate: boolean;
100306
100335
  header: {
100307
100336
  description: string;
100308
100337
  alignment: "Center" | "Left";
@@ -100330,6 +100359,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100330
100359
  } | null | undefined;
100331
100360
  minHeight?: number | null | undefined;
100332
100361
  };
100362
+ isPrivate?: boolean | undefined;
100363
+ isHidden?: boolean | undefined;
100333
100364
  } | null | undefined>;
100334
100365
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
100335
100366
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -100696,9 +100727,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100696
100727
  }>, "many">>;
100697
100728
  }, "strip", z.ZodTypeAny, {
100698
100729
  configuration?: {
100699
- isHidden: boolean;
100700
100730
  showSidebar: boolean;
100701
- isPrivate: boolean;
100702
100731
  header: {
100703
100732
  description: string;
100704
100733
  alignment: "Center" | "Left";
@@ -100726,13 +100755,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100726
100755
  } | null | undefined;
100727
100756
  minHeight?: number | null | undefined;
100728
100757
  };
100758
+ isPrivate?: boolean | undefined;
100759
+ isHidden?: boolean | undefined;
100729
100760
  } | undefined;
100730
100761
  oldBlocks?: PageBlockV1[] | undefined;
100731
100762
  }, {
100732
100763
  configuration?: {
100733
- isHidden: boolean;
100734
100764
  showSidebar: boolean;
100735
- isPrivate: boolean;
100736
100765
  header: {
100737
100766
  description: string;
100738
100767
  alignment: "Center" | "Left";
@@ -100760,6 +100789,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100760
100789
  } | null | undefined;
100761
100790
  minHeight?: number | null | undefined;
100762
100791
  };
100792
+ isPrivate?: boolean | undefined;
100793
+ isHidden?: boolean | undefined;
100763
100794
  } | null | undefined;
100764
100795
  oldBlocks?: ({
100765
100796
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -101132,9 +101163,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101132
101163
  persistentId: string;
101133
101164
  data: {
101134
101165
  configuration?: {
101135
- isHidden: boolean;
101136
101166
  showSidebar: boolean;
101137
- isPrivate: boolean;
101138
101167
  header: {
101139
101168
  description: string;
101140
101169
  alignment: "Center" | "Left";
@@ -101162,6 +101191,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101162
101191
  } | null | undefined;
101163
101192
  minHeight?: number | null | undefined;
101164
101193
  };
101194
+ isPrivate?: boolean | undefined;
101195
+ isHidden?: boolean | undefined;
101165
101196
  } | undefined;
101166
101197
  oldBlocks?: PageBlockV1[] | undefined;
101167
101198
  };
@@ -101182,9 +101213,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101182
101213
  persistentId: string;
101183
101214
  data: {
101184
101215
  configuration?: {
101185
- isHidden: boolean;
101186
101216
  showSidebar: boolean;
101187
- isPrivate: boolean;
101188
101217
  header: {
101189
101218
  description: string;
101190
101219
  alignment: "Center" | "Left";
@@ -101212,6 +101241,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101212
101241
  } | null | undefined;
101213
101242
  minHeight?: number | null | undefined;
101214
101243
  };
101244
+ isPrivate?: boolean | undefined;
101245
+ isHidden?: boolean | undefined;
101215
101246
  } | null | undefined;
101216
101247
  oldBlocks?: ({
101217
101248
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -101614,9 +101645,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101614
101645
  data: z.ZodOptional<z.ZodObject<{
101615
101646
  behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
101616
101647
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
101617
- isHidden: boolean;
101618
101648
  showSidebar: boolean;
101619
- isPrivate: boolean;
101620
101649
  header: {
101621
101650
  description: string;
101622
101651
  alignment: "Center" | "Left";
@@ -101644,10 +101673,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101644
101673
  } | null | undefined;
101645
101674
  minHeight?: number | null | undefined;
101646
101675
  };
101676
+ isPrivate?: boolean | undefined;
101677
+ isHidden?: boolean | undefined;
101647
101678
  }, z.ZodTypeDef, {
101648
- isHidden: boolean;
101649
101679
  showSidebar: boolean;
101650
- isPrivate: boolean;
101651
101680
  header: {
101652
101681
  description: string;
101653
101682
  alignment: "Center" | "Left";
@@ -101675,10 +101704,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101675
101704
  } | null | undefined;
101676
101705
  minHeight?: number | null | undefined;
101677
101706
  };
101707
+ isPrivate?: boolean | undefined;
101708
+ isHidden?: boolean | undefined;
101678
101709
  }>>>, {
101679
- isHidden: boolean;
101680
101710
  showSidebar: boolean;
101681
- isPrivate: boolean;
101682
101711
  header: {
101683
101712
  description: string;
101684
101713
  alignment: "Center" | "Left";
@@ -101706,10 +101735,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101706
101735
  } | null | undefined;
101707
101736
  minHeight?: number | null | undefined;
101708
101737
  };
101738
+ isPrivate?: boolean | undefined;
101739
+ isHidden?: boolean | undefined;
101709
101740
  } | undefined, {
101710
- isHidden: boolean;
101711
101741
  showSidebar: boolean;
101712
- isPrivate: boolean;
101713
101742
  header: {
101714
101743
  description: string;
101715
101744
  alignment: "Center" | "Left";
@@ -101737,13 +101766,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101737
101766
  } | null | undefined;
101738
101767
  minHeight?: number | null | undefined;
101739
101768
  };
101769
+ isPrivate?: boolean | undefined;
101770
+ isHidden?: boolean | undefined;
101740
101771
  } | null | undefined>;
101741
101772
  }, "strip", z.ZodTypeAny, {
101742
101773
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
101743
101774
  configuration?: {
101744
- isHidden: boolean;
101745
101775
  showSidebar: boolean;
101746
- isPrivate: boolean;
101747
101776
  header: {
101748
101777
  description: string;
101749
101778
  alignment: "Center" | "Left";
@@ -101771,13 +101800,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101771
101800
  } | null | undefined;
101772
101801
  minHeight?: number | null | undefined;
101773
101802
  };
101803
+ isPrivate?: boolean | undefined;
101804
+ isHidden?: boolean | undefined;
101774
101805
  } | undefined;
101775
101806
  }, {
101776
101807
  behavior?: "Tabs" | "Group" | null | undefined;
101777
101808
  configuration?: {
101778
- isHidden: boolean;
101779
101809
  showSidebar: boolean;
101780
- isPrivate: boolean;
101781
101810
  header: {
101782
101811
  description: string;
101783
101812
  alignment: "Center" | "Left";
@@ -101805,6 +101834,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101805
101834
  } | null | undefined;
101806
101835
  minHeight?: number | null | undefined;
101807
101836
  };
101837
+ isPrivate?: boolean | undefined;
101838
+ isHidden?: boolean | undefined;
101808
101839
  } | null | undefined;
101809
101840
  }>>;
101810
101841
  }, "strip", z.ZodTypeAny, {
@@ -101827,9 +101858,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101827
101858
  data?: {
101828
101859
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
101829
101860
  configuration?: {
101830
- isHidden: boolean;
101831
101861
  showSidebar: boolean;
101832
- isPrivate: boolean;
101833
101862
  header: {
101834
101863
  description: string;
101835
101864
  alignment: "Center" | "Left";
@@ -101857,6 +101886,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101857
101886
  } | null | undefined;
101858
101887
  minHeight?: number | null | undefined;
101859
101888
  };
101889
+ isPrivate?: boolean | undefined;
101890
+ isHidden?: boolean | undefined;
101860
101891
  } | undefined;
101861
101892
  } | undefined;
101862
101893
  }, {
@@ -101879,9 +101910,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101879
101910
  data?: {
101880
101911
  behavior?: "Tabs" | "Group" | null | undefined;
101881
101912
  configuration?: {
101882
- isHidden: boolean;
101883
101913
  showSidebar: boolean;
101884
- isPrivate: boolean;
101885
101914
  header: {
101886
101915
  description: string;
101887
101916
  alignment: "Center" | "Left";
@@ -101909,6 +101938,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101909
101938
  } | null | undefined;
101910
101939
  minHeight?: number | null | undefined;
101911
101940
  };
101941
+ isPrivate?: boolean | undefined;
101942
+ isHidden?: boolean | undefined;
101912
101943
  } | null | undefined;
101913
101944
  } | undefined;
101914
101945
  }>;
@@ -101920,9 +101951,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101920
101951
  persistentId: string;
101921
101952
  data: {
101922
101953
  configuration?: {
101923
- isHidden: boolean;
101924
101954
  showSidebar: boolean;
101925
- isPrivate: boolean;
101926
101955
  header: {
101927
101956
  description: string;
101928
101957
  alignment: "Center" | "Left";
@@ -101950,6 +101979,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101950
101979
  } | null | undefined;
101951
101980
  minHeight?: number | null | undefined;
101952
101981
  };
101982
+ isPrivate?: boolean | undefined;
101983
+ isHidden?: boolean | undefined;
101953
101984
  } | undefined;
101954
101985
  oldBlocks?: PageBlockV1[] | undefined;
101955
101986
  };
@@ -101984,9 +102015,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101984
102015
  data?: {
101985
102016
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
101986
102017
  configuration?: {
101987
- isHidden: boolean;
101988
102018
  showSidebar: boolean;
101989
- isPrivate: boolean;
101990
102019
  header: {
101991
102020
  description: string;
101992
102021
  alignment: "Center" | "Left";
@@ -102014,6 +102043,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102014
102043
  } | null | undefined;
102015
102044
  minHeight?: number | null | undefined;
102016
102045
  };
102046
+ isPrivate?: boolean | undefined;
102047
+ isHidden?: boolean | undefined;
102017
102048
  } | undefined;
102018
102049
  } | undefined;
102019
102050
  };
@@ -102025,9 +102056,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102025
102056
  persistentId: string;
102026
102057
  data: {
102027
102058
  configuration?: {
102028
- isHidden: boolean;
102029
102059
  showSidebar: boolean;
102030
- isPrivate: boolean;
102031
102060
  header: {
102032
102061
  description: string;
102033
102062
  alignment: "Center" | "Left";
@@ -102055,6 +102084,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102055
102084
  } | null | undefined;
102056
102085
  minHeight?: number | null | undefined;
102057
102086
  };
102087
+ isPrivate?: boolean | undefined;
102088
+ isHidden?: boolean | undefined;
102058
102089
  } | null | undefined;
102059
102090
  oldBlocks?: ({
102060
102091
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -102451,9 +102482,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102451
102482
  data?: {
102452
102483
  behavior?: "Tabs" | "Group" | null | undefined;
102453
102484
  configuration?: {
102454
- isHidden: boolean;
102455
102485
  showSidebar: boolean;
102456
- isPrivate: boolean;
102457
102486
  header: {
102458
102487
  description: string;
102459
102488
  alignment: "Center" | "Left";
@@ -102481,6 +102510,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102481
102510
  } | null | undefined;
102482
102511
  minHeight?: number | null | undefined;
102483
102512
  };
102513
+ isPrivate?: boolean | undefined;
102514
+ isHidden?: boolean | undefined;
102484
102515
  } | null | undefined;
102485
102516
  } | undefined;
102486
102517
  };
@@ -102510,9 +102541,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102510
102541
  shortPersistentId: z.ZodString;
102511
102542
  data: z.ZodObject<{
102512
102543
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
102513
- isHidden: boolean;
102514
102544
  showSidebar: boolean;
102515
- isPrivate: boolean;
102516
102545
  header: {
102517
102546
  description: string;
102518
102547
  alignment: "Center" | "Left";
@@ -102540,10 +102569,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102540
102569
  } | null | undefined;
102541
102570
  minHeight?: number | null | undefined;
102542
102571
  };
102572
+ isPrivate?: boolean | undefined;
102573
+ isHidden?: boolean | undefined;
102543
102574
  }, z.ZodTypeDef, {
102544
- isHidden: boolean;
102545
102575
  showSidebar: boolean;
102546
- isPrivate: boolean;
102547
102576
  header: {
102548
102577
  description: string;
102549
102578
  alignment: "Center" | "Left";
@@ -102571,10 +102600,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102571
102600
  } | null | undefined;
102572
102601
  minHeight?: number | null | undefined;
102573
102602
  };
102603
+ isPrivate?: boolean | undefined;
102604
+ isHidden?: boolean | undefined;
102574
102605
  }>>>, {
102575
- isHidden: boolean;
102576
102606
  showSidebar: boolean;
102577
- isPrivate: boolean;
102578
102607
  header: {
102579
102608
  description: string;
102580
102609
  alignment: "Center" | "Left";
@@ -102602,10 +102631,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102602
102631
  } | null | undefined;
102603
102632
  minHeight?: number | null | undefined;
102604
102633
  };
102634
+ isPrivate?: boolean | undefined;
102635
+ isHidden?: boolean | undefined;
102605
102636
  } | undefined, {
102606
- isHidden: boolean;
102607
102637
  showSidebar: boolean;
102608
- isPrivate: boolean;
102609
102638
  header: {
102610
102639
  description: string;
102611
102640
  alignment: "Center" | "Left";
@@ -102633,6 +102662,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102633
102662
  } | null | undefined;
102634
102663
  minHeight?: number | null | undefined;
102635
102664
  };
102665
+ isPrivate?: boolean | undefined;
102666
+ isHidden?: boolean | undefined;
102636
102667
  } | null | undefined>;
102637
102668
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
102638
102669
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -102999,9 +103030,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102999
103030
  }>, "many">>;
103000
103031
  }, "strip", z.ZodTypeAny, {
103001
103032
  configuration?: {
103002
- isHidden: boolean;
103003
103033
  showSidebar: boolean;
103004
- isPrivate: boolean;
103005
103034
  header: {
103006
103035
  description: string;
103007
103036
  alignment: "Center" | "Left";
@@ -103029,13 +103058,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103029
103058
  } | null | undefined;
103030
103059
  minHeight?: number | null | undefined;
103031
103060
  };
103061
+ isPrivate?: boolean | undefined;
103062
+ isHidden?: boolean | undefined;
103032
103063
  } | undefined;
103033
103064
  oldBlocks?: PageBlockV1[] | undefined;
103034
103065
  }, {
103035
103066
  configuration?: {
103036
- isHidden: boolean;
103037
103067
  showSidebar: boolean;
103038
- isPrivate: boolean;
103039
103068
  header: {
103040
103069
  description: string;
103041
103070
  alignment: "Center" | "Left";
@@ -103063,6 +103092,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103063
103092
  } | null | undefined;
103064
103093
  minHeight?: number | null | undefined;
103065
103094
  };
103095
+ isPrivate?: boolean | undefined;
103096
+ isHidden?: boolean | undefined;
103066
103097
  } | null | undefined;
103067
103098
  oldBlocks?: ({
103068
103099
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -103435,9 +103466,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103435
103466
  persistentId: string;
103436
103467
  data: {
103437
103468
  configuration?: {
103438
- isHidden: boolean;
103439
103469
  showSidebar: boolean;
103440
- isPrivate: boolean;
103441
103470
  header: {
103442
103471
  description: string;
103443
103472
  alignment: "Center" | "Left";
@@ -103465,6 +103494,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103465
103494
  } | null | undefined;
103466
103495
  minHeight?: number | null | undefined;
103467
103496
  };
103497
+ isPrivate?: boolean | undefined;
103498
+ isHidden?: boolean | undefined;
103468
103499
  } | undefined;
103469
103500
  oldBlocks?: PageBlockV1[] | undefined;
103470
103501
  };
@@ -103485,9 +103516,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103485
103516
  persistentId: string;
103486
103517
  data: {
103487
103518
  configuration?: {
103488
- isHidden: boolean;
103489
103519
  showSidebar: boolean;
103490
- isPrivate: boolean;
103491
103520
  header: {
103492
103521
  description: string;
103493
103522
  alignment: "Center" | "Left";
@@ -103515,6 +103544,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103515
103544
  } | null | undefined;
103516
103545
  minHeight?: number | null | undefined;
103517
103546
  };
103547
+ isPrivate?: boolean | undefined;
103548
+ isHidden?: boolean | undefined;
103518
103549
  } | null | undefined;
103519
103550
  oldBlocks?: ({
103520
103551
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -103917,9 +103948,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103917
103948
  data: z.ZodOptional<z.ZodObject<{
103918
103949
  behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
103919
103950
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
103920
- isHidden: boolean;
103921
103951
  showSidebar: boolean;
103922
- isPrivate: boolean;
103923
103952
  header: {
103924
103953
  description: string;
103925
103954
  alignment: "Center" | "Left";
@@ -103947,10 +103976,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103947
103976
  } | null | undefined;
103948
103977
  minHeight?: number | null | undefined;
103949
103978
  };
103979
+ isPrivate?: boolean | undefined;
103980
+ isHidden?: boolean | undefined;
103950
103981
  }, z.ZodTypeDef, {
103951
- isHidden: boolean;
103952
103982
  showSidebar: boolean;
103953
- isPrivate: boolean;
103954
103983
  header: {
103955
103984
  description: string;
103956
103985
  alignment: "Center" | "Left";
@@ -103978,10 +104007,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103978
104007
  } | null | undefined;
103979
104008
  minHeight?: number | null | undefined;
103980
104009
  };
104010
+ isPrivate?: boolean | undefined;
104011
+ isHidden?: boolean | undefined;
103981
104012
  }>>>, {
103982
- isHidden: boolean;
103983
104013
  showSidebar: boolean;
103984
- isPrivate: boolean;
103985
104014
  header: {
103986
104015
  description: string;
103987
104016
  alignment: "Center" | "Left";
@@ -104009,10 +104038,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
104009
104038
  } | null | undefined;
104010
104039
  minHeight?: number | null | undefined;
104011
104040
  };
104041
+ isPrivate?: boolean | undefined;
104042
+ isHidden?: boolean | undefined;
104012
104043
  } | undefined, {
104013
- isHidden: boolean;
104014
104044
  showSidebar: boolean;
104015
- isPrivate: boolean;
104016
104045
  header: {
104017
104046
  description: string;
104018
104047
  alignment: "Center" | "Left";
@@ -104040,13 +104069,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
104040
104069
  } | null | undefined;
104041
104070
  minHeight?: number | null | undefined;
104042
104071
  };
104072
+ isPrivate?: boolean | undefined;
104073
+ isHidden?: boolean | undefined;
104043
104074
  } | null | undefined>;
104044
104075
  }, "strip", z.ZodTypeAny, {
104045
104076
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
104046
104077
  configuration?: {
104047
- isHidden: boolean;
104048
104078
  showSidebar: boolean;
104049
- isPrivate: boolean;
104050
104079
  header: {
104051
104080
  description: string;
104052
104081
  alignment: "Center" | "Left";
@@ -104074,13 +104103,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
104074
104103
  } | null | undefined;
104075
104104
  minHeight?: number | null | undefined;
104076
104105
  };
104106
+ isPrivate?: boolean | undefined;
104107
+ isHidden?: boolean | undefined;
104077
104108
  } | undefined;
104078
104109
  }, {
104079
104110
  behavior?: "Tabs" | "Group" | null | undefined;
104080
104111
  configuration?: {
104081
- isHidden: boolean;
104082
104112
  showSidebar: boolean;
104083
- isPrivate: boolean;
104084
104113
  header: {
104085
104114
  description: string;
104086
104115
  alignment: "Center" | "Left";
@@ -104108,6 +104137,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
104108
104137
  } | null | undefined;
104109
104138
  minHeight?: number | null | undefined;
104110
104139
  };
104140
+ isPrivate?: boolean | undefined;
104141
+ isHidden?: boolean | undefined;
104111
104142
  } | null | undefined;
104112
104143
  }>>;
104113
104144
  }, "strip", z.ZodTypeAny, {
@@ -104130,9 +104161,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
104130
104161
  data?: {
104131
104162
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
104132
104163
  configuration?: {
104133
- isHidden: boolean;
104134
104164
  showSidebar: boolean;
104135
- isPrivate: boolean;
104136
104165
  header: {
104137
104166
  description: string;
104138
104167
  alignment: "Center" | "Left";
@@ -104160,6 +104189,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
104160
104189
  } | null | undefined;
104161
104190
  minHeight?: number | null | undefined;
104162
104191
  };
104192
+ isPrivate?: boolean | undefined;
104193
+ isHidden?: boolean | undefined;
104163
104194
  } | undefined;
104164
104195
  } | undefined;
104165
104196
  }, {
@@ -104182,9 +104213,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
104182
104213
  data?: {
104183
104214
  behavior?: "Tabs" | "Group" | null | undefined;
104184
104215
  configuration?: {
104185
- isHidden: boolean;
104186
104216
  showSidebar: boolean;
104187
- isPrivate: boolean;
104188
104217
  header: {
104189
104218
  description: string;
104190
104219
  alignment: "Center" | "Left";
@@ -104212,6 +104241,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
104212
104241
  } | null | undefined;
104213
104242
  minHeight?: number | null | undefined;
104214
104243
  };
104244
+ isPrivate?: boolean | undefined;
104245
+ isHidden?: boolean | undefined;
104215
104246
  } | null | undefined;
104216
104247
  } | undefined;
104217
104248
  }>;
@@ -105362,9 +105393,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105362
105393
  persistentId: string;
105363
105394
  data: {
105364
105395
  configuration?: {
105365
- isHidden: boolean;
105366
105396
  showSidebar: boolean;
105367
- isPrivate: boolean;
105368
105397
  header: {
105369
105398
  description: string;
105370
105399
  alignment: "Center" | "Left";
@@ -105392,6 +105421,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105392
105421
  } | null | undefined;
105393
105422
  minHeight?: number | null | undefined;
105394
105423
  };
105424
+ isPrivate?: boolean | undefined;
105425
+ isHidden?: boolean | undefined;
105395
105426
  } | undefined;
105396
105427
  oldBlocks?: PageBlockV1[] | undefined;
105397
105428
  };
@@ -105514,9 +105545,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105514
105545
  data?: {
105515
105546
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
105516
105547
  configuration?: {
105517
- isHidden: boolean;
105518
105548
  showSidebar: boolean;
105519
- isPrivate: boolean;
105520
105549
  header: {
105521
105550
  description: string;
105522
105551
  alignment: "Center" | "Left";
@@ -105544,6 +105573,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105544
105573
  } | null | undefined;
105545
105574
  minHeight?: number | null | undefined;
105546
105575
  };
105576
+ isPrivate?: boolean | undefined;
105577
+ isHidden?: boolean | undefined;
105547
105578
  } | undefined;
105548
105579
  } | undefined;
105549
105580
  };
@@ -105627,9 +105658,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105627
105658
  persistentId: string;
105628
105659
  data: {
105629
105660
  configuration?: {
105630
- isHidden: boolean;
105631
105661
  showSidebar: boolean;
105632
- isPrivate: boolean;
105633
105662
  header: {
105634
105663
  description: string;
105635
105664
  alignment: "Center" | "Left";
@@ -105657,6 +105686,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105657
105686
  } | null | undefined;
105658
105687
  minHeight?: number | null | undefined;
105659
105688
  };
105689
+ isPrivate?: boolean | undefined;
105690
+ isHidden?: boolean | undefined;
105660
105691
  } | null | undefined;
105661
105692
  oldBlocks?: ({
105662
105693
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -106141,9 +106172,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
106141
106172
  data?: {
106142
106173
  behavior?: "Tabs" | "Group" | null | undefined;
106143
106174
  configuration?: {
106144
- isHidden: boolean;
106145
106175
  showSidebar: boolean;
106146
- isPrivate: boolean;
106147
106176
  header: {
106148
106177
  description: string;
106149
106178
  alignment: "Center" | "Left";
@@ -106171,6 +106200,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
106171
106200
  } | null | undefined;
106172
106201
  minHeight?: number | null | undefined;
106173
106202
  };
106203
+ isPrivate?: boolean | undefined;
106204
+ isHidden?: boolean | undefined;
106174
106205
  } | null | undefined;
106175
106206
  } | undefined;
106176
106207
  };
@@ -111338,6 +111369,7 @@ declare const PublishedDocPage: z.ZodObject<{
111338
111369
  pathV1: z.ZodString;
111339
111370
  pathV2: z.ZodString;
111340
111371
  storagePath: z.ZodString;
111372
+ fallbackPublicPath: z.ZodOptional<z.ZodString>;
111341
111373
  locale: z.ZodOptional<z.ZodString>;
111342
111374
  isPrivate: z.ZodBoolean;
111343
111375
  isHidden: z.ZodBoolean;
@@ -111354,6 +111386,7 @@ declare const PublishedDocPage: z.ZodObject<{
111354
111386
  pageShortPersistentId: string;
111355
111387
  pathV1: string;
111356
111388
  pathV2: string;
111389
+ fallbackPublicPath?: string | undefined;
111357
111390
  locale?: string | undefined;
111358
111391
  }, {
111359
111392
  id: string;
@@ -111366,6 +111399,7 @@ declare const PublishedDocPage: z.ZodObject<{
111366
111399
  pageShortPersistentId: string;
111367
111400
  pathV1: string;
111368
111401
  pathV2: string;
111402
+ fallbackPublicPath?: string | undefined;
111369
111403
  locale?: string | undefined;
111370
111404
  }>;
111371
111405
  type PublishedDocPage = z.infer<typeof PublishedDocPage>;
@@ -111526,7 +111560,7 @@ declare const ExternalOAuthRequest: z.ZodObject<{
111526
111560
  }>;
111527
111561
  type ExternalOAuthRequest = z.infer<typeof ExternalOAuthRequest>;
111528
111562
 
111529
- declare const IntegrationCredentialsType: z.ZodEnum<["OAuth2", "PAT"]>;
111563
+ declare const IntegrationCredentialsType: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
111530
111564
  type IntegrationCredentialsType = z.infer<typeof IntegrationCredentialsType>;
111531
111565
  declare const IntegrationCredentialsProfile: z.ZodObject<{
111532
111566
  id: z.ZodString;
@@ -111542,9 +111576,9 @@ declare const IntegrationCredentialsProfile: z.ZodObject<{
111542
111576
  avatarUrl?: string | undefined;
111543
111577
  }>;
111544
111578
  type IntegrationCredentialsProfile = z.infer<typeof IntegrationCredentialsProfile>;
111545
- declare const IntegrationCredentialsSchema: z.ZodObject<{
111579
+ declare const IntegrationCredentials: z.ZodObject<{
111546
111580
  id: z.ZodString;
111547
- type: z.ZodEnum<["OAuth2", "PAT"]>;
111581
+ type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
111548
111582
  integrationId: z.ZodString;
111549
111583
  accessToken: z.ZodString;
111550
111584
  userId: z.ZodString;
@@ -111563,10 +111597,11 @@ declare const IntegrationCredentialsSchema: z.ZodObject<{
111563
111597
  username?: string | undefined;
111564
111598
  avatarUrl?: string | undefined;
111565
111599
  }>>;
111600
+ customUrl: z.ZodOptional<z.ZodString>;
111566
111601
  }, "strip", z.ZodTypeAny, {
111567
111602
  id: string;
111568
111603
  createdAt: Date;
111569
- type: "OAuth2" | "PAT";
111604
+ type: "OAuth2" | "PAT" | "GithubApp";
111570
111605
  accessToken: string;
111571
111606
  userId: string;
111572
111607
  integrationId: string;
@@ -111576,10 +111611,11 @@ declare const IntegrationCredentialsSchema: z.ZodObject<{
111576
111611
  username?: string | undefined;
111577
111612
  avatarUrl?: string | undefined;
111578
111613
  } | undefined;
111614
+ customUrl?: string | undefined;
111579
111615
  }, {
111580
111616
  id: string;
111581
111617
  createdAt: Date;
111582
- type: "OAuth2" | "PAT";
111618
+ type: "OAuth2" | "PAT" | "GithubApp";
111583
111619
  accessToken: string;
111584
111620
  userId: string;
111585
111621
  integrationId: string;
@@ -111589,8 +111625,9 @@ declare const IntegrationCredentialsSchema: z.ZodObject<{
111589
111625
  username?: string | undefined;
111590
111626
  avatarUrl?: string | undefined;
111591
111627
  } | undefined;
111628
+ customUrl?: string | undefined;
111592
111629
  }>;
111593
- type IntegrationCredentials = z.infer<typeof IntegrationCredentialsSchema>;
111630
+ type IntegrationCredentials = z.infer<typeof IntegrationCredentials>;
111594
111631
  declare const IntegrationType: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
111595
111632
  type IntegrationType = z.infer<typeof IntegrationType>;
111596
111633
  declare const Integration: z.ZodObject<{
@@ -111600,7 +111637,7 @@ declare const Integration: z.ZodObject<{
111600
111637
  createdAt: z.ZodDate;
111601
111638
  integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
111602
111639
  id: z.ZodString;
111603
- type: z.ZodEnum<["OAuth2", "PAT"]>;
111640
+ type: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
111604
111641
  integrationId: z.ZodString;
111605
111642
  accessToken: z.ZodString;
111606
111643
  userId: z.ZodString;
@@ -111619,10 +111656,11 @@ declare const Integration: z.ZodObject<{
111619
111656
  username?: string | undefined;
111620
111657
  avatarUrl?: string | undefined;
111621
111658
  }>>;
111659
+ customUrl: z.ZodOptional<z.ZodString>;
111622
111660
  }, "strip", z.ZodTypeAny, {
111623
111661
  id: string;
111624
111662
  createdAt: Date;
111625
- type: "OAuth2" | "PAT";
111663
+ type: "OAuth2" | "PAT" | "GithubApp";
111626
111664
  accessToken: string;
111627
111665
  userId: string;
111628
111666
  integrationId: string;
@@ -111632,10 +111670,11 @@ declare const Integration: z.ZodObject<{
111632
111670
  username?: string | undefined;
111633
111671
  avatarUrl?: string | undefined;
111634
111672
  } | undefined;
111673
+ customUrl?: string | undefined;
111635
111674
  }, {
111636
111675
  id: string;
111637
111676
  createdAt: Date;
111638
- type: "OAuth2" | "PAT";
111677
+ type: "OAuth2" | "PAT" | "GithubApp";
111639
111678
  accessToken: string;
111640
111679
  userId: string;
111641
111680
  integrationId: string;
@@ -111645,6 +111684,7 @@ declare const Integration: z.ZodObject<{
111645
111684
  username?: string | undefined;
111646
111685
  avatarUrl?: string | undefined;
111647
111686
  } | undefined;
111687
+ customUrl?: string | undefined;
111648
111688
  }>, "many">>;
111649
111689
  }, "strip", z.ZodTypeAny, {
111650
111690
  id: string;
@@ -111654,7 +111694,7 @@ declare const Integration: z.ZodObject<{
111654
111694
  integrationCredentials?: {
111655
111695
  id: string;
111656
111696
  createdAt: Date;
111657
- type: "OAuth2" | "PAT";
111697
+ type: "OAuth2" | "PAT" | "GithubApp";
111658
111698
  accessToken: string;
111659
111699
  userId: string;
111660
111700
  integrationId: string;
@@ -111664,6 +111704,7 @@ declare const Integration: z.ZodObject<{
111664
111704
  username?: string | undefined;
111665
111705
  avatarUrl?: string | undefined;
111666
111706
  } | undefined;
111707
+ customUrl?: string | undefined;
111667
111708
  }[] | undefined;
111668
111709
  }, {
111669
111710
  id: string;
@@ -111673,7 +111714,7 @@ declare const Integration: z.ZodObject<{
111673
111714
  integrationCredentials?: {
111674
111715
  id: string;
111675
111716
  createdAt: Date;
111676
- type: "OAuth2" | "PAT";
111717
+ type: "OAuth2" | "PAT" | "GithubApp";
111677
111718
  accessToken: string;
111678
111719
  userId: string;
111679
111720
  integrationId: string;
@@ -111683,9 +111724,42 @@ declare const Integration: z.ZodObject<{
111683
111724
  username?: string | undefined;
111684
111725
  avatarUrl?: string | undefined;
111685
111726
  } | undefined;
111727
+ customUrl?: string | undefined;
111686
111728
  }[] | undefined;
111687
111729
  }>;
111688
111730
  type Integration = z.infer<typeof Integration>;
111731
+ declare const IntegrationTokenResponse: z.ZodEffects<z.ZodObject<{
111732
+ access_token: z.ZodString;
111733
+ refresh_token: z.ZodOptional<z.ZodString>;
111734
+ expires_in: z.ZodOptional<z.ZodNumber>;
111735
+ token_type: z.ZodOptional<z.ZodString>;
111736
+ custom_url: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
111737
+ }, "strip", z.ZodTypeAny, {
111738
+ access_token: string;
111739
+ refresh_token?: string | undefined;
111740
+ expires_in?: number | undefined;
111741
+ token_type?: string | undefined;
111742
+ custom_url?: string | undefined;
111743
+ }, {
111744
+ access_token: string;
111745
+ refresh_token?: string | undefined;
111746
+ expires_in?: number | undefined;
111747
+ token_type?: string | undefined;
111748
+ custom_url?: string | undefined;
111749
+ }>, {
111750
+ accessToken: string;
111751
+ refreshToken: string | undefined;
111752
+ expiresIn: number | undefined;
111753
+ tokenType: string | undefined;
111754
+ customUrl: string | undefined;
111755
+ }, {
111756
+ access_token: string;
111757
+ refresh_token?: string | undefined;
111758
+ expires_in?: number | undefined;
111759
+ token_type?: string | undefined;
111760
+ custom_url?: string | undefined;
111761
+ }>;
111762
+ type IntegrationTokenResponse = z.infer<typeof IntegrationTokenResponse>;
111689
111763
 
111690
111764
  declare const IntegrationTokenSchema: z.ZodObject<{
111691
111765
  id: z.ZodString;
@@ -116870,4 +116944,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
116870
116944
  }>;
116871
116945
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
116872
116946
 
116873
- export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, type IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsSchema, IntegrationCredentialsType, type IntegrationToken, IntegrationTokenSchema, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserTest, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
116947
+ export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, type IntegrationToken, IntegrationTokenResponse, IntegrationTokenSchema, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserTest, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };