@supernova-studio/model 0.17.0 → 0.18.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.mts CHANGED
@@ -9405,14 +9405,37 @@ declare const PageBlockItemEmbedValue: z.ZodObject<{
9405
9405
  value: z.ZodOptional<z.ZodString>;
9406
9406
  caption: z.ZodOptional<z.ZodString>;
9407
9407
  height: z.ZodOptional<z.ZodNumber>;
9408
+ openGraph: z.ZodOptional<z.ZodObject<{
9409
+ title: z.ZodOptional<z.ZodString>;
9410
+ description: z.ZodOptional<z.ZodString>;
9411
+ imageUrl: z.ZodOptional<z.ZodString>;
9412
+ }, "strip", z.ZodTypeAny, {
9413
+ title?: string | undefined;
9414
+ description?: string | undefined;
9415
+ imageUrl?: string | undefined;
9416
+ }, {
9417
+ title?: string | undefined;
9418
+ description?: string | undefined;
9419
+ imageUrl?: string | undefined;
9420
+ }>>;
9408
9421
  }, "strip", z.ZodTypeAny, {
9409
9422
  value?: string | undefined;
9410
9423
  caption?: string | undefined;
9411
9424
  height?: number | undefined;
9425
+ openGraph?: {
9426
+ title?: string | undefined;
9427
+ description?: string | undefined;
9428
+ imageUrl?: string | undefined;
9429
+ } | undefined;
9412
9430
  }, {
9413
9431
  value?: string | undefined;
9414
9432
  caption?: string | undefined;
9415
9433
  height?: number | undefined;
9434
+ openGraph?: {
9435
+ title?: string | undefined;
9436
+ description?: string | undefined;
9437
+ imageUrl?: string | undefined;
9438
+ } | undefined;
9416
9439
  }>;
9417
9440
  type PageBlockItemEmbedValue = z.infer<typeof PageBlockItemEmbedValue>;
9418
9441
  declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
@@ -25253,14 +25276,10 @@ type CreateElementGroup = OmitStrict<DbCreateInputOmit<ElementGroup>, "parentPer
25253
25276
  type UpdateElementGroup = DbUpdate<OmitStrict<ElementGroup, "brandPersistentId" | "childType" | "designSystemVersionId" | "parentPersistentId"> & {
25254
25277
  parentPersistentId: string;
25255
25278
  }>;
25256
- type DeleteElementGroup = {
25257
- id: ElementGroup["id"];
25258
- childType: ElementGroup["childType"];
25259
- };
25260
25279
  type ElementGroupsDiff = {
25261
25280
  toCreate: CreateElementGroup[];
25262
25281
  toUpdate: UpdateElementGroup[];
25263
- toDelete: DeleteElementGroup[];
25282
+ toDelete: ElementGroup["id"][];
25264
25283
  };
25265
25284
 
25266
25285
  declare const PageBlockV2: z.ZodObject<{
@@ -95546,8 +95565,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95546
95565
  } | null | undefined;
95547
95566
  } | undefined;
95548
95567
  }>, "many">;
95549
- deletedPagePersistentIds: z.ZodArray<z.ZodString, "many">;
95550
- deletedGroupPersistentIds: z.ZodArray<z.ZodString, "many">;
95551
95568
  }, "strip", z.ZodTypeAny, {
95552
95569
  groups: {
95553
95570
  id: string;
@@ -95736,8 +95753,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95736
95753
  slug?: string | undefined;
95737
95754
  userSlug?: string | undefined;
95738
95755
  }[];
95739
- deletedPagePersistentIds: string[];
95740
- deletedGroupPersistentIds: string[];
95741
95756
  }, {
95742
95757
  groups: {
95743
95758
  id: string;
@@ -95926,8 +95941,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95926
95941
  slug?: string | undefined;
95927
95942
  userSlug?: string | undefined;
95928
95943
  }[];
95929
- deletedPagePersistentIds: string[];
95930
- deletedGroupPersistentIds: string[];
95931
95944
  }>;
95932
95945
  type DesignSystemVersionRoomInitialState = z.infer<typeof DesignSystemVersionRoomInitialState>;
95933
95946
  declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
@@ -97240,8 +97253,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97240
97253
  slug?: string | undefined;
97241
97254
  userSlug?: string | undefined;
97242
97255
  }>, "many">;
97243
- deletedPagePersistentIds: z.ZodArray<z.ZodString, "many">;
97244
- deletedGroupPersistentIds: z.ZodArray<z.ZodString, "many">;
97256
+ deletedPageIds: z.ZodArray<z.ZodString, "many">;
97257
+ deletedGroupIds: z.ZodArray<z.ZodString, "many">;
97245
97258
  }, "strip", z.ZodTypeAny, {
97246
97259
  groups: {
97247
97260
  id: string;
@@ -97430,8 +97443,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97430
97443
  slug?: string | undefined;
97431
97444
  userSlug?: string | undefined;
97432
97445
  }[];
97433
- deletedPagePersistentIds: string[];
97434
- deletedGroupPersistentIds: string[];
97446
+ deletedPageIds: string[];
97447
+ deletedGroupIds: string[];
97435
97448
  }, {
97436
97449
  groups: {
97437
97450
  id: string;
@@ -97620,11 +97633,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97620
97633
  slug?: string | undefined;
97621
97634
  userSlug?: string | undefined;
97622
97635
  }[];
97623
- deletedPagePersistentIds: string[];
97624
- deletedGroupPersistentIds: string[];
97636
+ deletedPageIds: string[];
97637
+ deletedGroupIds: string[];
97625
97638
  }>;
97626
97639
  type DesignSystemVersionRoomUpdate = z.infer<typeof DesignSystemVersionRoomUpdate>;
97627
- declare function mergeDesignSystemVersionRoomUpdates(lhs: DesignSystemVersionRoomUpdate, rhs: DesignSystemVersionRoomUpdate): DesignSystemVersionRoomUpdate;
97628
97640
 
97629
97641
  declare const DocumentationPageRoom: z.ZodObject<{
97630
97642
  id: z.ZodString;
@@ -97651,6 +97663,4164 @@ declare const DocumentationPageRoom: z.ZodObject<{
97651
97663
  type DocumentationPageRoom = z.infer<typeof DocumentationPageRoom>;
97652
97664
  type CreateDocumentationPageRoom = DbCreateInputOmit<DocumentationPageRoom>;
97653
97665
  type UpdateDocumentationPageRoom = DbUpdate<DocumentationPageRoom>;
97666
+ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
97667
+ page: z.ZodObject<{
97668
+ id: z.ZodString;
97669
+ createdAt: z.ZodDate;
97670
+ updatedAt: z.ZodDate;
97671
+ persistentId: z.ZodString;
97672
+ designSystemVersionId: z.ZodString;
97673
+ parentPersistentId: z.ZodString;
97674
+ sortOrder: z.ZodNumber;
97675
+ meta: z.ZodObject<{
97676
+ name: z.ZodString;
97677
+ description: z.ZodOptional<z.ZodString>;
97678
+ }, "strip", z.ZodTypeAny, {
97679
+ name: string;
97680
+ description?: string | undefined;
97681
+ }, {
97682
+ name: string;
97683
+ description?: string | undefined;
97684
+ }>;
97685
+ slug: z.ZodOptional<z.ZodString>;
97686
+ userSlug: z.ZodOptional<z.ZodString>;
97687
+ shortPersistentId: z.ZodString;
97688
+ data: z.ZodObject<{
97689
+ configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
97690
+ showSidebar: boolean;
97691
+ header: {
97692
+ description: string;
97693
+ alignment: "Center" | "Left";
97694
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
97695
+ showBackgroundOverlay: boolean;
97696
+ showCoverText: boolean;
97697
+ foregroundColor?: {
97698
+ aliasTo?: string | undefined;
97699
+ value?: {
97700
+ opacity: {
97701
+ aliasTo?: string | undefined;
97702
+ value?: {
97703
+ unit: "Pixels" | "Raw";
97704
+ measure: number;
97705
+ } | undefined;
97706
+ };
97707
+ color: (string | {
97708
+ aliasTo?: string | undefined;
97709
+ }) & (string | {
97710
+ aliasTo?: string | undefined;
97711
+ } | undefined);
97712
+ } | undefined;
97713
+ } | null | undefined;
97714
+ backgroundColor?: {
97715
+ aliasTo?: string | undefined;
97716
+ value?: {
97717
+ opacity: {
97718
+ aliasTo?: string | undefined;
97719
+ value?: {
97720
+ unit: "Pixels" | "Raw";
97721
+ measure: number;
97722
+ } | undefined;
97723
+ };
97724
+ color: (string | {
97725
+ aliasTo?: string | undefined;
97726
+ }) & (string | {
97727
+ aliasTo?: string | undefined;
97728
+ } | undefined);
97729
+ } | undefined;
97730
+ } | null | undefined;
97731
+ backgroundImageAsset?: {
97732
+ id: string;
97733
+ type: "image";
97734
+ url?: string | undefined;
97735
+ } | {
97736
+ type: "figmaFrame";
97737
+ figmaFrame: {
97738
+ persistentId: string;
97739
+ sourceId: string;
97740
+ sourceFrameId: string;
97741
+ title?: string | undefined;
97742
+ description?: string | undefined;
97743
+ backgroundColor?: {
97744
+ value: string;
97745
+ } | undefined;
97746
+ origin?: {
97747
+ sourceFileName?: string | undefined;
97748
+ title?: string | undefined;
97749
+ previewUrl?: string | undefined;
97750
+ valid?: boolean | undefined;
97751
+ referenceId?: string | undefined;
97752
+ assetId?: string | undefined;
97753
+ assetScale?: number | undefined;
97754
+ width?: number | undefined;
97755
+ height?: number | undefined;
97756
+ } | undefined;
97757
+ };
97758
+ url?: string | undefined;
97759
+ } | null | undefined;
97760
+ minHeight?: number | null | undefined;
97761
+ };
97762
+ }, z.ZodTypeDef, {
97763
+ showSidebar: boolean;
97764
+ header: {
97765
+ description: string;
97766
+ alignment: "Center" | "Left";
97767
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
97768
+ showBackgroundOverlay: boolean;
97769
+ showCoverText: boolean;
97770
+ foregroundColor?: {
97771
+ aliasTo?: string | null | undefined;
97772
+ value?: {
97773
+ opacity: {
97774
+ aliasTo?: string | null | undefined;
97775
+ value?: {
97776
+ unit: "Pixels" | "Raw";
97777
+ measure: number;
97778
+ } | null | undefined;
97779
+ };
97780
+ color: (string | {
97781
+ aliasTo?: string | null | undefined;
97782
+ }) & (string | {
97783
+ aliasTo?: string | null | undefined;
97784
+ } | undefined);
97785
+ } | null | undefined;
97786
+ } | null | undefined;
97787
+ backgroundColor?: {
97788
+ aliasTo?: string | null | undefined;
97789
+ value?: {
97790
+ opacity: {
97791
+ aliasTo?: string | null | undefined;
97792
+ value?: {
97793
+ unit: "Pixels" | "Raw";
97794
+ measure: number;
97795
+ } | null | undefined;
97796
+ };
97797
+ color: (string | {
97798
+ aliasTo?: string | null | undefined;
97799
+ }) & (string | {
97800
+ aliasTo?: string | null | undefined;
97801
+ } | undefined);
97802
+ } | null | undefined;
97803
+ } | null | undefined;
97804
+ backgroundImageAsset?: {
97805
+ id: string;
97806
+ type: "image";
97807
+ url?: string | undefined;
97808
+ } | {
97809
+ type: "figmaFrame";
97810
+ figmaFrame: {
97811
+ persistentId: string;
97812
+ sourceId: string;
97813
+ sourceFrameId: string;
97814
+ title?: string | null | undefined;
97815
+ description?: string | null | undefined;
97816
+ backgroundColor?: {
97817
+ value: string;
97818
+ } | null | undefined;
97819
+ origin?: {
97820
+ sourceFileName?: string | null | undefined;
97821
+ title?: string | null | undefined;
97822
+ previewUrl?: string | null | undefined;
97823
+ valid?: boolean | null | undefined;
97824
+ referenceId?: string | null | undefined;
97825
+ assetId?: string | null | undefined;
97826
+ assetScale?: number | null | undefined;
97827
+ width?: number | null | undefined;
97828
+ height?: number | null | undefined;
97829
+ } | null | undefined;
97830
+ };
97831
+ url?: string | undefined;
97832
+ } | null | undefined;
97833
+ minHeight?: number | null | undefined;
97834
+ };
97835
+ }>>>, {
97836
+ showSidebar: boolean;
97837
+ header: {
97838
+ description: string;
97839
+ alignment: "Center" | "Left";
97840
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
97841
+ showBackgroundOverlay: boolean;
97842
+ showCoverText: boolean;
97843
+ foregroundColor?: {
97844
+ aliasTo?: string | undefined;
97845
+ value?: {
97846
+ opacity: {
97847
+ aliasTo?: string | undefined;
97848
+ value?: {
97849
+ unit: "Pixels" | "Raw";
97850
+ measure: number;
97851
+ } | undefined;
97852
+ };
97853
+ color: (string | {
97854
+ aliasTo?: string | undefined;
97855
+ }) & (string | {
97856
+ aliasTo?: string | undefined;
97857
+ } | undefined);
97858
+ } | undefined;
97859
+ } | null | undefined;
97860
+ backgroundColor?: {
97861
+ aliasTo?: string | undefined;
97862
+ value?: {
97863
+ opacity: {
97864
+ aliasTo?: string | undefined;
97865
+ value?: {
97866
+ unit: "Pixels" | "Raw";
97867
+ measure: number;
97868
+ } | undefined;
97869
+ };
97870
+ color: (string | {
97871
+ aliasTo?: string | undefined;
97872
+ }) & (string | {
97873
+ aliasTo?: string | undefined;
97874
+ } | undefined);
97875
+ } | undefined;
97876
+ } | null | undefined;
97877
+ backgroundImageAsset?: {
97878
+ id: string;
97879
+ type: "image";
97880
+ url?: string | undefined;
97881
+ } | {
97882
+ type: "figmaFrame";
97883
+ figmaFrame: {
97884
+ persistentId: string;
97885
+ sourceId: string;
97886
+ sourceFrameId: string;
97887
+ title?: string | undefined;
97888
+ description?: string | undefined;
97889
+ backgroundColor?: {
97890
+ value: string;
97891
+ } | undefined;
97892
+ origin?: {
97893
+ sourceFileName?: string | undefined;
97894
+ title?: string | undefined;
97895
+ previewUrl?: string | undefined;
97896
+ valid?: boolean | undefined;
97897
+ referenceId?: string | undefined;
97898
+ assetId?: string | undefined;
97899
+ assetScale?: number | undefined;
97900
+ width?: number | undefined;
97901
+ height?: number | undefined;
97902
+ } | undefined;
97903
+ };
97904
+ url?: string | undefined;
97905
+ } | null | undefined;
97906
+ minHeight?: number | null | undefined;
97907
+ };
97908
+ } | undefined, {
97909
+ showSidebar: boolean;
97910
+ header: {
97911
+ description: string;
97912
+ alignment: "Center" | "Left";
97913
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
97914
+ showBackgroundOverlay: boolean;
97915
+ showCoverText: boolean;
97916
+ foregroundColor?: {
97917
+ aliasTo?: string | null | undefined;
97918
+ value?: {
97919
+ opacity: {
97920
+ aliasTo?: string | null | undefined;
97921
+ value?: {
97922
+ unit: "Pixels" | "Raw";
97923
+ measure: number;
97924
+ } | null | undefined;
97925
+ };
97926
+ color: (string | {
97927
+ aliasTo?: string | null | undefined;
97928
+ }) & (string | {
97929
+ aliasTo?: string | null | undefined;
97930
+ } | undefined);
97931
+ } | null | undefined;
97932
+ } | null | undefined;
97933
+ backgroundColor?: {
97934
+ aliasTo?: string | null | undefined;
97935
+ value?: {
97936
+ opacity: {
97937
+ aliasTo?: string | null | undefined;
97938
+ value?: {
97939
+ unit: "Pixels" | "Raw";
97940
+ measure: number;
97941
+ } | null | undefined;
97942
+ };
97943
+ color: (string | {
97944
+ aliasTo?: string | null | undefined;
97945
+ }) & (string | {
97946
+ aliasTo?: string | null | undefined;
97947
+ } | undefined);
97948
+ } | null | undefined;
97949
+ } | null | undefined;
97950
+ backgroundImageAsset?: {
97951
+ id: string;
97952
+ type: "image";
97953
+ url?: string | undefined;
97954
+ } | {
97955
+ type: "figmaFrame";
97956
+ figmaFrame: {
97957
+ persistentId: string;
97958
+ sourceId: string;
97959
+ sourceFrameId: string;
97960
+ title?: string | null | undefined;
97961
+ description?: string | null | undefined;
97962
+ backgroundColor?: {
97963
+ value: string;
97964
+ } | null | undefined;
97965
+ origin?: {
97966
+ sourceFileName?: string | null | undefined;
97967
+ title?: string | null | undefined;
97968
+ previewUrl?: string | null | undefined;
97969
+ valid?: boolean | null | undefined;
97970
+ referenceId?: string | null | undefined;
97971
+ assetId?: string | null | undefined;
97972
+ assetScale?: number | null | undefined;
97973
+ width?: number | null | undefined;
97974
+ height?: number | null | undefined;
97975
+ } | null | undefined;
97976
+ };
97977
+ url?: string | undefined;
97978
+ } | null | undefined;
97979
+ minHeight?: number | null | undefined;
97980
+ };
97981
+ } | null | undefined>;
97982
+ }, "strip", z.ZodTypeAny, {
97983
+ configuration?: {
97984
+ showSidebar: boolean;
97985
+ header: {
97986
+ description: string;
97987
+ alignment: "Center" | "Left";
97988
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
97989
+ showBackgroundOverlay: boolean;
97990
+ showCoverText: boolean;
97991
+ foregroundColor?: {
97992
+ aliasTo?: string | undefined;
97993
+ value?: {
97994
+ opacity: {
97995
+ aliasTo?: string | undefined;
97996
+ value?: {
97997
+ unit: "Pixels" | "Raw";
97998
+ measure: number;
97999
+ } | undefined;
98000
+ };
98001
+ color: (string | {
98002
+ aliasTo?: string | undefined;
98003
+ }) & (string | {
98004
+ aliasTo?: string | undefined;
98005
+ } | undefined);
98006
+ } | undefined;
98007
+ } | null | undefined;
98008
+ backgroundColor?: {
98009
+ aliasTo?: string | undefined;
98010
+ value?: {
98011
+ opacity: {
98012
+ aliasTo?: string | undefined;
98013
+ value?: {
98014
+ unit: "Pixels" | "Raw";
98015
+ measure: number;
98016
+ } | undefined;
98017
+ };
98018
+ color: (string | {
98019
+ aliasTo?: string | undefined;
98020
+ }) & (string | {
98021
+ aliasTo?: string | undefined;
98022
+ } | undefined);
98023
+ } | undefined;
98024
+ } | null | undefined;
98025
+ backgroundImageAsset?: {
98026
+ id: string;
98027
+ type: "image";
98028
+ url?: string | undefined;
98029
+ } | {
98030
+ type: "figmaFrame";
98031
+ figmaFrame: {
98032
+ persistentId: string;
98033
+ sourceId: string;
98034
+ sourceFrameId: string;
98035
+ title?: string | undefined;
98036
+ description?: string | undefined;
98037
+ backgroundColor?: {
98038
+ value: string;
98039
+ } | undefined;
98040
+ origin?: {
98041
+ sourceFileName?: string | undefined;
98042
+ title?: string | undefined;
98043
+ previewUrl?: string | undefined;
98044
+ valid?: boolean | undefined;
98045
+ referenceId?: string | undefined;
98046
+ assetId?: string | undefined;
98047
+ assetScale?: number | undefined;
98048
+ width?: number | undefined;
98049
+ height?: number | undefined;
98050
+ } | undefined;
98051
+ };
98052
+ url?: string | undefined;
98053
+ } | null | undefined;
98054
+ minHeight?: number | null | undefined;
98055
+ };
98056
+ } | undefined;
98057
+ }, {
98058
+ configuration?: {
98059
+ showSidebar: boolean;
98060
+ header: {
98061
+ description: string;
98062
+ alignment: "Center" | "Left";
98063
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98064
+ showBackgroundOverlay: boolean;
98065
+ showCoverText: boolean;
98066
+ foregroundColor?: {
98067
+ aliasTo?: string | null | undefined;
98068
+ value?: {
98069
+ opacity: {
98070
+ aliasTo?: string | null | undefined;
98071
+ value?: {
98072
+ unit: "Pixels" | "Raw";
98073
+ measure: number;
98074
+ } | null | undefined;
98075
+ };
98076
+ color: (string | {
98077
+ aliasTo?: string | null | undefined;
98078
+ }) & (string | {
98079
+ aliasTo?: string | null | undefined;
98080
+ } | undefined);
98081
+ } | null | undefined;
98082
+ } | null | undefined;
98083
+ backgroundColor?: {
98084
+ aliasTo?: string | null | undefined;
98085
+ value?: {
98086
+ opacity: {
98087
+ aliasTo?: string | null | undefined;
98088
+ value?: {
98089
+ unit: "Pixels" | "Raw";
98090
+ measure: number;
98091
+ } | null | undefined;
98092
+ };
98093
+ color: (string | {
98094
+ aliasTo?: string | null | undefined;
98095
+ }) & (string | {
98096
+ aliasTo?: string | null | undefined;
98097
+ } | undefined);
98098
+ } | null | undefined;
98099
+ } | null | undefined;
98100
+ backgroundImageAsset?: {
98101
+ id: string;
98102
+ type: "image";
98103
+ url?: string | undefined;
98104
+ } | {
98105
+ type: "figmaFrame";
98106
+ figmaFrame: {
98107
+ persistentId: string;
98108
+ sourceId: string;
98109
+ sourceFrameId: string;
98110
+ title?: string | null | undefined;
98111
+ description?: string | null | undefined;
98112
+ backgroundColor?: {
98113
+ value: string;
98114
+ } | null | undefined;
98115
+ origin?: {
98116
+ sourceFileName?: string | null | undefined;
98117
+ title?: string | null | undefined;
98118
+ previewUrl?: string | null | undefined;
98119
+ valid?: boolean | null | undefined;
98120
+ referenceId?: string | null | undefined;
98121
+ assetId?: string | null | undefined;
98122
+ assetScale?: number | null | undefined;
98123
+ width?: number | null | undefined;
98124
+ height?: number | null | undefined;
98125
+ } | null | undefined;
98126
+ };
98127
+ url?: string | undefined;
98128
+ } | null | undefined;
98129
+ minHeight?: number | null | undefined;
98130
+ };
98131
+ } | null | undefined;
98132
+ }>;
98133
+ }, "strip", z.ZodTypeAny, {
98134
+ id: string;
98135
+ createdAt: Date;
98136
+ updatedAt: Date;
98137
+ persistentId: string;
98138
+ designSystemVersionId: string;
98139
+ data: {
98140
+ configuration?: {
98141
+ showSidebar: boolean;
98142
+ header: {
98143
+ description: string;
98144
+ alignment: "Center" | "Left";
98145
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98146
+ showBackgroundOverlay: boolean;
98147
+ showCoverText: boolean;
98148
+ foregroundColor?: {
98149
+ aliasTo?: string | undefined;
98150
+ value?: {
98151
+ opacity: {
98152
+ aliasTo?: string | undefined;
98153
+ value?: {
98154
+ unit: "Pixels" | "Raw";
98155
+ measure: number;
98156
+ } | undefined;
98157
+ };
98158
+ color: (string | {
98159
+ aliasTo?: string | undefined;
98160
+ }) & (string | {
98161
+ aliasTo?: string | undefined;
98162
+ } | undefined);
98163
+ } | undefined;
98164
+ } | null | undefined;
98165
+ backgroundColor?: {
98166
+ aliasTo?: string | undefined;
98167
+ value?: {
98168
+ opacity: {
98169
+ aliasTo?: string | undefined;
98170
+ value?: {
98171
+ unit: "Pixels" | "Raw";
98172
+ measure: number;
98173
+ } | undefined;
98174
+ };
98175
+ color: (string | {
98176
+ aliasTo?: string | undefined;
98177
+ }) & (string | {
98178
+ aliasTo?: string | undefined;
98179
+ } | undefined);
98180
+ } | undefined;
98181
+ } | null | undefined;
98182
+ backgroundImageAsset?: {
98183
+ id: string;
98184
+ type: "image";
98185
+ url?: string | undefined;
98186
+ } | {
98187
+ type: "figmaFrame";
98188
+ figmaFrame: {
98189
+ persistentId: string;
98190
+ sourceId: string;
98191
+ sourceFrameId: string;
98192
+ title?: string | undefined;
98193
+ description?: string | undefined;
98194
+ backgroundColor?: {
98195
+ value: string;
98196
+ } | undefined;
98197
+ origin?: {
98198
+ sourceFileName?: string | undefined;
98199
+ title?: string | undefined;
98200
+ previewUrl?: string | undefined;
98201
+ valid?: boolean | undefined;
98202
+ referenceId?: string | undefined;
98203
+ assetId?: string | undefined;
98204
+ assetScale?: number | undefined;
98205
+ width?: number | undefined;
98206
+ height?: number | undefined;
98207
+ } | undefined;
98208
+ };
98209
+ url?: string | undefined;
98210
+ } | null | undefined;
98211
+ minHeight?: number | null | undefined;
98212
+ };
98213
+ } | undefined;
98214
+ };
98215
+ parentPersistentId: string;
98216
+ shortPersistentId: string;
98217
+ sortOrder: number;
98218
+ meta: {
98219
+ name: string;
98220
+ description?: string | undefined;
98221
+ };
98222
+ slug?: string | undefined;
98223
+ userSlug?: string | undefined;
98224
+ }, {
98225
+ id: string;
98226
+ createdAt: Date;
98227
+ updatedAt: Date;
98228
+ persistentId: string;
98229
+ designSystemVersionId: string;
98230
+ data: {
98231
+ configuration?: {
98232
+ showSidebar: boolean;
98233
+ header: {
98234
+ description: string;
98235
+ alignment: "Center" | "Left";
98236
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98237
+ showBackgroundOverlay: boolean;
98238
+ showCoverText: boolean;
98239
+ foregroundColor?: {
98240
+ aliasTo?: string | null | undefined;
98241
+ value?: {
98242
+ opacity: {
98243
+ aliasTo?: string | null | undefined;
98244
+ value?: {
98245
+ unit: "Pixels" | "Raw";
98246
+ measure: number;
98247
+ } | null | undefined;
98248
+ };
98249
+ color: (string | {
98250
+ aliasTo?: string | null | undefined;
98251
+ }) & (string | {
98252
+ aliasTo?: string | null | undefined;
98253
+ } | undefined);
98254
+ } | null | undefined;
98255
+ } | null | undefined;
98256
+ backgroundColor?: {
98257
+ aliasTo?: string | null | undefined;
98258
+ value?: {
98259
+ opacity: {
98260
+ aliasTo?: string | null | undefined;
98261
+ value?: {
98262
+ unit: "Pixels" | "Raw";
98263
+ measure: number;
98264
+ } | null | undefined;
98265
+ };
98266
+ color: (string | {
98267
+ aliasTo?: string | null | undefined;
98268
+ }) & (string | {
98269
+ aliasTo?: string | null | undefined;
98270
+ } | undefined);
98271
+ } | null | undefined;
98272
+ } | null | undefined;
98273
+ backgroundImageAsset?: {
98274
+ id: string;
98275
+ type: "image";
98276
+ url?: string | undefined;
98277
+ } | {
98278
+ type: "figmaFrame";
98279
+ figmaFrame: {
98280
+ persistentId: string;
98281
+ sourceId: string;
98282
+ sourceFrameId: string;
98283
+ title?: string | null | undefined;
98284
+ description?: string | null | undefined;
98285
+ backgroundColor?: {
98286
+ value: string;
98287
+ } | null | undefined;
98288
+ origin?: {
98289
+ sourceFileName?: string | null | undefined;
98290
+ title?: string | null | undefined;
98291
+ previewUrl?: string | null | undefined;
98292
+ valid?: boolean | null | undefined;
98293
+ referenceId?: string | null | undefined;
98294
+ assetId?: string | null | undefined;
98295
+ assetScale?: number | null | undefined;
98296
+ width?: number | null | undefined;
98297
+ height?: number | null | undefined;
98298
+ } | null | undefined;
98299
+ };
98300
+ url?: string | undefined;
98301
+ } | null | undefined;
98302
+ minHeight?: number | null | undefined;
98303
+ };
98304
+ } | null | undefined;
98305
+ };
98306
+ parentPersistentId: string;
98307
+ shortPersistentId: string;
98308
+ sortOrder: number;
98309
+ meta: {
98310
+ name: string;
98311
+ description?: string | undefined;
98312
+ };
98313
+ slug?: string | undefined;
98314
+ userSlug?: string | undefined;
98315
+ }>;
98316
+ pageParent: z.ZodObject<{
98317
+ id: z.ZodString;
98318
+ createdAt: z.ZodDate;
98319
+ updatedAt: z.ZodDate;
98320
+ persistentId: z.ZodString;
98321
+ designSystemVersionId: z.ZodString;
98322
+ brandPersistentId: z.ZodOptional<z.ZodString>;
98323
+ parentPersistentId: z.ZodOptional<z.ZodString>;
98324
+ sortOrder: z.ZodNumber;
98325
+ meta: z.ZodObject<{
98326
+ name: z.ZodString;
98327
+ description: z.ZodOptional<z.ZodString>;
98328
+ }, "strip", z.ZodTypeAny, {
98329
+ name: string;
98330
+ description?: string | undefined;
98331
+ }, {
98332
+ name: string;
98333
+ description?: string | undefined;
98334
+ }>;
98335
+ slug: z.ZodOptional<z.ZodString>;
98336
+ userSlug: z.ZodOptional<z.ZodString>;
98337
+ shortPersistentId: z.ZodOptional<z.ZodString>;
98338
+ childType: z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
98339
+ data: z.ZodOptional<z.ZodObject<{
98340
+ 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>;
98341
+ configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
98342
+ showSidebar: boolean;
98343
+ header: {
98344
+ description: string;
98345
+ alignment: "Center" | "Left";
98346
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98347
+ showBackgroundOverlay: boolean;
98348
+ showCoverText: boolean;
98349
+ foregroundColor?: {
98350
+ aliasTo?: string | undefined;
98351
+ value?: {
98352
+ opacity: {
98353
+ aliasTo?: string | undefined;
98354
+ value?: {
98355
+ unit: "Pixels" | "Raw";
98356
+ measure: number;
98357
+ } | undefined;
98358
+ };
98359
+ color: (string | {
98360
+ aliasTo?: string | undefined;
98361
+ }) & (string | {
98362
+ aliasTo?: string | undefined;
98363
+ } | undefined);
98364
+ } | undefined;
98365
+ } | null | undefined;
98366
+ backgroundColor?: {
98367
+ aliasTo?: string | undefined;
98368
+ value?: {
98369
+ opacity: {
98370
+ aliasTo?: string | undefined;
98371
+ value?: {
98372
+ unit: "Pixels" | "Raw";
98373
+ measure: number;
98374
+ } | undefined;
98375
+ };
98376
+ color: (string | {
98377
+ aliasTo?: string | undefined;
98378
+ }) & (string | {
98379
+ aliasTo?: string | undefined;
98380
+ } | undefined);
98381
+ } | undefined;
98382
+ } | null | undefined;
98383
+ backgroundImageAsset?: {
98384
+ id: string;
98385
+ type: "image";
98386
+ url?: string | undefined;
98387
+ } | {
98388
+ type: "figmaFrame";
98389
+ figmaFrame: {
98390
+ persistentId: string;
98391
+ sourceId: string;
98392
+ sourceFrameId: string;
98393
+ title?: string | undefined;
98394
+ description?: string | undefined;
98395
+ backgroundColor?: {
98396
+ value: string;
98397
+ } | undefined;
98398
+ origin?: {
98399
+ sourceFileName?: string | undefined;
98400
+ title?: string | undefined;
98401
+ previewUrl?: string | undefined;
98402
+ valid?: boolean | undefined;
98403
+ referenceId?: string | undefined;
98404
+ assetId?: string | undefined;
98405
+ assetScale?: number | undefined;
98406
+ width?: number | undefined;
98407
+ height?: number | undefined;
98408
+ } | undefined;
98409
+ };
98410
+ url?: string | undefined;
98411
+ } | null | undefined;
98412
+ minHeight?: number | null | undefined;
98413
+ };
98414
+ }, z.ZodTypeDef, {
98415
+ showSidebar: boolean;
98416
+ header: {
98417
+ description: string;
98418
+ alignment: "Center" | "Left";
98419
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98420
+ showBackgroundOverlay: boolean;
98421
+ showCoverText: boolean;
98422
+ foregroundColor?: {
98423
+ aliasTo?: string | null | undefined;
98424
+ value?: {
98425
+ opacity: {
98426
+ aliasTo?: string | null | undefined;
98427
+ value?: {
98428
+ unit: "Pixels" | "Raw";
98429
+ measure: number;
98430
+ } | null | undefined;
98431
+ };
98432
+ color: (string | {
98433
+ aliasTo?: string | null | undefined;
98434
+ }) & (string | {
98435
+ aliasTo?: string | null | undefined;
98436
+ } | undefined);
98437
+ } | null | undefined;
98438
+ } | null | undefined;
98439
+ backgroundColor?: {
98440
+ aliasTo?: string | null | undefined;
98441
+ value?: {
98442
+ opacity: {
98443
+ aliasTo?: string | null | undefined;
98444
+ value?: {
98445
+ unit: "Pixels" | "Raw";
98446
+ measure: number;
98447
+ } | null | undefined;
98448
+ };
98449
+ color: (string | {
98450
+ aliasTo?: string | null | undefined;
98451
+ }) & (string | {
98452
+ aliasTo?: string | null | undefined;
98453
+ } | undefined);
98454
+ } | null | undefined;
98455
+ } | null | undefined;
98456
+ backgroundImageAsset?: {
98457
+ id: string;
98458
+ type: "image";
98459
+ url?: string | undefined;
98460
+ } | {
98461
+ type: "figmaFrame";
98462
+ figmaFrame: {
98463
+ persistentId: string;
98464
+ sourceId: string;
98465
+ sourceFrameId: string;
98466
+ title?: string | null | undefined;
98467
+ description?: string | null | undefined;
98468
+ backgroundColor?: {
98469
+ value: string;
98470
+ } | null | undefined;
98471
+ origin?: {
98472
+ sourceFileName?: string | null | undefined;
98473
+ title?: string | null | undefined;
98474
+ previewUrl?: string | null | undefined;
98475
+ valid?: boolean | null | undefined;
98476
+ referenceId?: string | null | undefined;
98477
+ assetId?: string | null | undefined;
98478
+ assetScale?: number | null | undefined;
98479
+ width?: number | null | undefined;
98480
+ height?: number | null | undefined;
98481
+ } | null | undefined;
98482
+ };
98483
+ url?: string | undefined;
98484
+ } | null | undefined;
98485
+ minHeight?: number | null | undefined;
98486
+ };
98487
+ }>>>, {
98488
+ showSidebar: boolean;
98489
+ header: {
98490
+ description: string;
98491
+ alignment: "Center" | "Left";
98492
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98493
+ showBackgroundOverlay: boolean;
98494
+ showCoverText: boolean;
98495
+ foregroundColor?: {
98496
+ aliasTo?: string | undefined;
98497
+ value?: {
98498
+ opacity: {
98499
+ aliasTo?: string | undefined;
98500
+ value?: {
98501
+ unit: "Pixels" | "Raw";
98502
+ measure: number;
98503
+ } | undefined;
98504
+ };
98505
+ color: (string | {
98506
+ aliasTo?: string | undefined;
98507
+ }) & (string | {
98508
+ aliasTo?: string | undefined;
98509
+ } | undefined);
98510
+ } | undefined;
98511
+ } | null | undefined;
98512
+ backgroundColor?: {
98513
+ aliasTo?: string | undefined;
98514
+ value?: {
98515
+ opacity: {
98516
+ aliasTo?: string | undefined;
98517
+ value?: {
98518
+ unit: "Pixels" | "Raw";
98519
+ measure: number;
98520
+ } | undefined;
98521
+ };
98522
+ color: (string | {
98523
+ aliasTo?: string | undefined;
98524
+ }) & (string | {
98525
+ aliasTo?: string | undefined;
98526
+ } | undefined);
98527
+ } | undefined;
98528
+ } | null | undefined;
98529
+ backgroundImageAsset?: {
98530
+ id: string;
98531
+ type: "image";
98532
+ url?: string | undefined;
98533
+ } | {
98534
+ type: "figmaFrame";
98535
+ figmaFrame: {
98536
+ persistentId: string;
98537
+ sourceId: string;
98538
+ sourceFrameId: string;
98539
+ title?: string | undefined;
98540
+ description?: string | undefined;
98541
+ backgroundColor?: {
98542
+ value: string;
98543
+ } | undefined;
98544
+ origin?: {
98545
+ sourceFileName?: string | undefined;
98546
+ title?: string | undefined;
98547
+ previewUrl?: string | undefined;
98548
+ valid?: boolean | undefined;
98549
+ referenceId?: string | undefined;
98550
+ assetId?: string | undefined;
98551
+ assetScale?: number | undefined;
98552
+ width?: number | undefined;
98553
+ height?: number | undefined;
98554
+ } | undefined;
98555
+ };
98556
+ url?: string | undefined;
98557
+ } | null | undefined;
98558
+ minHeight?: number | null | undefined;
98559
+ };
98560
+ } | undefined, {
98561
+ showSidebar: boolean;
98562
+ header: {
98563
+ description: string;
98564
+ alignment: "Center" | "Left";
98565
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98566
+ showBackgroundOverlay: boolean;
98567
+ showCoverText: boolean;
98568
+ foregroundColor?: {
98569
+ aliasTo?: string | null | undefined;
98570
+ value?: {
98571
+ opacity: {
98572
+ aliasTo?: string | null | undefined;
98573
+ value?: {
98574
+ unit: "Pixels" | "Raw";
98575
+ measure: number;
98576
+ } | null | undefined;
98577
+ };
98578
+ color: (string | {
98579
+ aliasTo?: string | null | undefined;
98580
+ }) & (string | {
98581
+ aliasTo?: string | null | undefined;
98582
+ } | undefined);
98583
+ } | null | undefined;
98584
+ } | null | undefined;
98585
+ backgroundColor?: {
98586
+ aliasTo?: string | null | undefined;
98587
+ value?: {
98588
+ opacity: {
98589
+ aliasTo?: string | null | undefined;
98590
+ value?: {
98591
+ unit: "Pixels" | "Raw";
98592
+ measure: number;
98593
+ } | null | undefined;
98594
+ };
98595
+ color: (string | {
98596
+ aliasTo?: string | null | undefined;
98597
+ }) & (string | {
98598
+ aliasTo?: string | null | undefined;
98599
+ } | undefined);
98600
+ } | null | undefined;
98601
+ } | null | undefined;
98602
+ backgroundImageAsset?: {
98603
+ id: string;
98604
+ type: "image";
98605
+ url?: string | undefined;
98606
+ } | {
98607
+ type: "figmaFrame";
98608
+ figmaFrame: {
98609
+ persistentId: string;
98610
+ sourceId: string;
98611
+ sourceFrameId: string;
98612
+ title?: string | null | undefined;
98613
+ description?: string | null | undefined;
98614
+ backgroundColor?: {
98615
+ value: string;
98616
+ } | null | undefined;
98617
+ origin?: {
98618
+ sourceFileName?: string | null | undefined;
98619
+ title?: string | null | undefined;
98620
+ previewUrl?: string | null | undefined;
98621
+ valid?: boolean | null | undefined;
98622
+ referenceId?: string | null | undefined;
98623
+ assetId?: string | null | undefined;
98624
+ assetScale?: number | null | undefined;
98625
+ width?: number | null | undefined;
98626
+ height?: number | null | undefined;
98627
+ } | null | undefined;
98628
+ };
98629
+ url?: string | undefined;
98630
+ } | null | undefined;
98631
+ minHeight?: number | null | undefined;
98632
+ };
98633
+ } | null | undefined>;
98634
+ }, "strip", z.ZodTypeAny, {
98635
+ behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
98636
+ configuration?: {
98637
+ showSidebar: boolean;
98638
+ header: {
98639
+ description: string;
98640
+ alignment: "Center" | "Left";
98641
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98642
+ showBackgroundOverlay: boolean;
98643
+ showCoverText: boolean;
98644
+ foregroundColor?: {
98645
+ aliasTo?: string | undefined;
98646
+ value?: {
98647
+ opacity: {
98648
+ aliasTo?: string | undefined;
98649
+ value?: {
98650
+ unit: "Pixels" | "Raw";
98651
+ measure: number;
98652
+ } | undefined;
98653
+ };
98654
+ color: (string | {
98655
+ aliasTo?: string | undefined;
98656
+ }) & (string | {
98657
+ aliasTo?: string | undefined;
98658
+ } | undefined);
98659
+ } | undefined;
98660
+ } | null | undefined;
98661
+ backgroundColor?: {
98662
+ aliasTo?: string | undefined;
98663
+ value?: {
98664
+ opacity: {
98665
+ aliasTo?: string | undefined;
98666
+ value?: {
98667
+ unit: "Pixels" | "Raw";
98668
+ measure: number;
98669
+ } | undefined;
98670
+ };
98671
+ color: (string | {
98672
+ aliasTo?: string | undefined;
98673
+ }) & (string | {
98674
+ aliasTo?: string | undefined;
98675
+ } | undefined);
98676
+ } | undefined;
98677
+ } | null | undefined;
98678
+ backgroundImageAsset?: {
98679
+ id: string;
98680
+ type: "image";
98681
+ url?: string | undefined;
98682
+ } | {
98683
+ type: "figmaFrame";
98684
+ figmaFrame: {
98685
+ persistentId: string;
98686
+ sourceId: string;
98687
+ sourceFrameId: string;
98688
+ title?: string | undefined;
98689
+ description?: string | undefined;
98690
+ backgroundColor?: {
98691
+ value: string;
98692
+ } | undefined;
98693
+ origin?: {
98694
+ sourceFileName?: string | undefined;
98695
+ title?: string | undefined;
98696
+ previewUrl?: string | undefined;
98697
+ valid?: boolean | undefined;
98698
+ referenceId?: string | undefined;
98699
+ assetId?: string | undefined;
98700
+ assetScale?: number | undefined;
98701
+ width?: number | undefined;
98702
+ height?: number | undefined;
98703
+ } | undefined;
98704
+ };
98705
+ url?: string | undefined;
98706
+ } | null | undefined;
98707
+ minHeight?: number | null | undefined;
98708
+ };
98709
+ } | undefined;
98710
+ }, {
98711
+ behavior?: "Tabs" | "Group" | null | undefined;
98712
+ configuration?: {
98713
+ showSidebar: boolean;
98714
+ header: {
98715
+ description: string;
98716
+ alignment: "Center" | "Left";
98717
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98718
+ showBackgroundOverlay: boolean;
98719
+ showCoverText: boolean;
98720
+ foregroundColor?: {
98721
+ aliasTo?: string | null | undefined;
98722
+ value?: {
98723
+ opacity: {
98724
+ aliasTo?: string | null | undefined;
98725
+ value?: {
98726
+ unit: "Pixels" | "Raw";
98727
+ measure: number;
98728
+ } | null | undefined;
98729
+ };
98730
+ color: (string | {
98731
+ aliasTo?: string | null | undefined;
98732
+ }) & (string | {
98733
+ aliasTo?: string | null | undefined;
98734
+ } | undefined);
98735
+ } | null | undefined;
98736
+ } | null | undefined;
98737
+ backgroundColor?: {
98738
+ aliasTo?: string | null | undefined;
98739
+ value?: {
98740
+ opacity: {
98741
+ aliasTo?: string | null | undefined;
98742
+ value?: {
98743
+ unit: "Pixels" | "Raw";
98744
+ measure: number;
98745
+ } | null | undefined;
98746
+ };
98747
+ color: (string | {
98748
+ aliasTo?: string | null | undefined;
98749
+ }) & (string | {
98750
+ aliasTo?: string | null | undefined;
98751
+ } | undefined);
98752
+ } | null | undefined;
98753
+ } | null | undefined;
98754
+ backgroundImageAsset?: {
98755
+ id: string;
98756
+ type: "image";
98757
+ url?: string | undefined;
98758
+ } | {
98759
+ type: "figmaFrame";
98760
+ figmaFrame: {
98761
+ persistentId: string;
98762
+ sourceId: string;
98763
+ sourceFrameId: string;
98764
+ title?: string | null | undefined;
98765
+ description?: string | null | undefined;
98766
+ backgroundColor?: {
98767
+ value: string;
98768
+ } | null | undefined;
98769
+ origin?: {
98770
+ sourceFileName?: string | null | undefined;
98771
+ title?: string | null | undefined;
98772
+ previewUrl?: string | null | undefined;
98773
+ valid?: boolean | null | undefined;
98774
+ referenceId?: string | null | undefined;
98775
+ assetId?: string | null | undefined;
98776
+ assetScale?: number | null | undefined;
98777
+ width?: number | null | undefined;
98778
+ height?: number | null | undefined;
98779
+ } | null | undefined;
98780
+ };
98781
+ url?: string | undefined;
98782
+ } | null | undefined;
98783
+ minHeight?: number | null | undefined;
98784
+ };
98785
+ } | null | undefined;
98786
+ }>>;
98787
+ }, "strip", z.ZodTypeAny, {
98788
+ id: string;
98789
+ createdAt: Date;
98790
+ updatedAt: Date;
98791
+ persistentId: string;
98792
+ designSystemVersionId: string;
98793
+ childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
98794
+ sortOrder: number;
98795
+ meta: {
98796
+ name: string;
98797
+ description?: string | undefined;
98798
+ };
98799
+ brandPersistentId?: string | undefined;
98800
+ parentPersistentId?: string | undefined;
98801
+ slug?: string | undefined;
98802
+ userSlug?: string | undefined;
98803
+ shortPersistentId?: string | undefined;
98804
+ data?: {
98805
+ behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
98806
+ configuration?: {
98807
+ showSidebar: boolean;
98808
+ header: {
98809
+ description: string;
98810
+ alignment: "Center" | "Left";
98811
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98812
+ showBackgroundOverlay: boolean;
98813
+ showCoverText: boolean;
98814
+ foregroundColor?: {
98815
+ aliasTo?: string | undefined;
98816
+ value?: {
98817
+ opacity: {
98818
+ aliasTo?: string | undefined;
98819
+ value?: {
98820
+ unit: "Pixels" | "Raw";
98821
+ measure: number;
98822
+ } | undefined;
98823
+ };
98824
+ color: (string | {
98825
+ aliasTo?: string | undefined;
98826
+ }) & (string | {
98827
+ aliasTo?: string | undefined;
98828
+ } | undefined);
98829
+ } | undefined;
98830
+ } | null | undefined;
98831
+ backgroundColor?: {
98832
+ aliasTo?: string | undefined;
98833
+ value?: {
98834
+ opacity: {
98835
+ aliasTo?: string | undefined;
98836
+ value?: {
98837
+ unit: "Pixels" | "Raw";
98838
+ measure: number;
98839
+ } | undefined;
98840
+ };
98841
+ color: (string | {
98842
+ aliasTo?: string | undefined;
98843
+ }) & (string | {
98844
+ aliasTo?: string | undefined;
98845
+ } | undefined);
98846
+ } | undefined;
98847
+ } | null | undefined;
98848
+ backgroundImageAsset?: {
98849
+ id: string;
98850
+ type: "image";
98851
+ url?: string | undefined;
98852
+ } | {
98853
+ type: "figmaFrame";
98854
+ figmaFrame: {
98855
+ persistentId: string;
98856
+ sourceId: string;
98857
+ sourceFrameId: string;
98858
+ title?: string | undefined;
98859
+ description?: string | undefined;
98860
+ backgroundColor?: {
98861
+ value: string;
98862
+ } | undefined;
98863
+ origin?: {
98864
+ sourceFileName?: string | undefined;
98865
+ title?: string | undefined;
98866
+ previewUrl?: string | undefined;
98867
+ valid?: boolean | undefined;
98868
+ referenceId?: string | undefined;
98869
+ assetId?: string | undefined;
98870
+ assetScale?: number | undefined;
98871
+ width?: number | undefined;
98872
+ height?: number | undefined;
98873
+ } | undefined;
98874
+ };
98875
+ url?: string | undefined;
98876
+ } | null | undefined;
98877
+ minHeight?: number | null | undefined;
98878
+ };
98879
+ } | undefined;
98880
+ } | undefined;
98881
+ }, {
98882
+ id: string;
98883
+ createdAt: Date;
98884
+ updatedAt: Date;
98885
+ persistentId: string;
98886
+ designSystemVersionId: string;
98887
+ childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
98888
+ sortOrder: number;
98889
+ meta: {
98890
+ name: string;
98891
+ description?: string | undefined;
98892
+ };
98893
+ brandPersistentId?: string | undefined;
98894
+ parentPersistentId?: string | undefined;
98895
+ slug?: string | undefined;
98896
+ userSlug?: string | undefined;
98897
+ shortPersistentId?: string | undefined;
98898
+ data?: {
98899
+ behavior?: "Tabs" | "Group" | null | undefined;
98900
+ configuration?: {
98901
+ showSidebar: boolean;
98902
+ header: {
98903
+ description: string;
98904
+ alignment: "Center" | "Left";
98905
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98906
+ showBackgroundOverlay: boolean;
98907
+ showCoverText: boolean;
98908
+ foregroundColor?: {
98909
+ aliasTo?: string | null | undefined;
98910
+ value?: {
98911
+ opacity: {
98912
+ aliasTo?: string | null | undefined;
98913
+ value?: {
98914
+ unit: "Pixels" | "Raw";
98915
+ measure: number;
98916
+ } | null | undefined;
98917
+ };
98918
+ color: (string | {
98919
+ aliasTo?: string | null | undefined;
98920
+ }) & (string | {
98921
+ aliasTo?: string | null | undefined;
98922
+ } | undefined);
98923
+ } | null | undefined;
98924
+ } | null | undefined;
98925
+ backgroundColor?: {
98926
+ aliasTo?: string | null | undefined;
98927
+ value?: {
98928
+ opacity: {
98929
+ aliasTo?: string | null | undefined;
98930
+ value?: {
98931
+ unit: "Pixels" | "Raw";
98932
+ measure: number;
98933
+ } | null | undefined;
98934
+ };
98935
+ color: (string | {
98936
+ aliasTo?: string | null | undefined;
98937
+ }) & (string | {
98938
+ aliasTo?: string | null | undefined;
98939
+ } | undefined);
98940
+ } | null | undefined;
98941
+ } | null | undefined;
98942
+ backgroundImageAsset?: {
98943
+ id: string;
98944
+ type: "image";
98945
+ url?: string | undefined;
98946
+ } | {
98947
+ type: "figmaFrame";
98948
+ figmaFrame: {
98949
+ persistentId: string;
98950
+ sourceId: string;
98951
+ sourceFrameId: string;
98952
+ title?: string | null | undefined;
98953
+ description?: string | null | undefined;
98954
+ backgroundColor?: {
98955
+ value: string;
98956
+ } | null | undefined;
98957
+ origin?: {
98958
+ sourceFileName?: string | null | undefined;
98959
+ title?: string | null | undefined;
98960
+ previewUrl?: string | null | undefined;
98961
+ valid?: boolean | null | undefined;
98962
+ referenceId?: string | null | undefined;
98963
+ assetId?: string | null | undefined;
98964
+ assetScale?: number | null | undefined;
98965
+ width?: number | null | undefined;
98966
+ height?: number | null | undefined;
98967
+ } | null | undefined;
98968
+ };
98969
+ url?: string | undefined;
98970
+ } | null | undefined;
98971
+ minHeight?: number | null | undefined;
98972
+ };
98973
+ } | null | undefined;
98974
+ } | undefined;
98975
+ }>;
98976
+ }, "strip", z.ZodTypeAny, {
98977
+ page: {
98978
+ id: string;
98979
+ createdAt: Date;
98980
+ updatedAt: Date;
98981
+ persistentId: string;
98982
+ designSystemVersionId: string;
98983
+ data: {
98984
+ configuration?: {
98985
+ showSidebar: boolean;
98986
+ header: {
98987
+ description: string;
98988
+ alignment: "Center" | "Left";
98989
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
98990
+ showBackgroundOverlay: boolean;
98991
+ showCoverText: boolean;
98992
+ foregroundColor?: {
98993
+ aliasTo?: string | undefined;
98994
+ value?: {
98995
+ opacity: {
98996
+ aliasTo?: string | undefined;
98997
+ value?: {
98998
+ unit: "Pixels" | "Raw";
98999
+ measure: number;
99000
+ } | undefined;
99001
+ };
99002
+ color: (string | {
99003
+ aliasTo?: string | undefined;
99004
+ }) & (string | {
99005
+ aliasTo?: string | undefined;
99006
+ } | undefined);
99007
+ } | undefined;
99008
+ } | null | undefined;
99009
+ backgroundColor?: {
99010
+ aliasTo?: string | undefined;
99011
+ value?: {
99012
+ opacity: {
99013
+ aliasTo?: string | undefined;
99014
+ value?: {
99015
+ unit: "Pixels" | "Raw";
99016
+ measure: number;
99017
+ } | undefined;
99018
+ };
99019
+ color: (string | {
99020
+ aliasTo?: string | undefined;
99021
+ }) & (string | {
99022
+ aliasTo?: string | undefined;
99023
+ } | undefined);
99024
+ } | undefined;
99025
+ } | null | undefined;
99026
+ backgroundImageAsset?: {
99027
+ id: string;
99028
+ type: "image";
99029
+ url?: string | undefined;
99030
+ } | {
99031
+ type: "figmaFrame";
99032
+ figmaFrame: {
99033
+ persistentId: string;
99034
+ sourceId: string;
99035
+ sourceFrameId: string;
99036
+ title?: string | undefined;
99037
+ description?: string | undefined;
99038
+ backgroundColor?: {
99039
+ value: string;
99040
+ } | undefined;
99041
+ origin?: {
99042
+ sourceFileName?: string | undefined;
99043
+ title?: string | undefined;
99044
+ previewUrl?: string | undefined;
99045
+ valid?: boolean | undefined;
99046
+ referenceId?: string | undefined;
99047
+ assetId?: string | undefined;
99048
+ assetScale?: number | undefined;
99049
+ width?: number | undefined;
99050
+ height?: number | undefined;
99051
+ } | undefined;
99052
+ };
99053
+ url?: string | undefined;
99054
+ } | null | undefined;
99055
+ minHeight?: number | null | undefined;
99056
+ };
99057
+ } | undefined;
99058
+ };
99059
+ parentPersistentId: string;
99060
+ shortPersistentId: string;
99061
+ sortOrder: number;
99062
+ meta: {
99063
+ name: string;
99064
+ description?: string | undefined;
99065
+ };
99066
+ slug?: string | undefined;
99067
+ userSlug?: string | undefined;
99068
+ };
99069
+ pageParent: {
99070
+ id: string;
99071
+ createdAt: Date;
99072
+ updatedAt: Date;
99073
+ persistentId: string;
99074
+ designSystemVersionId: string;
99075
+ childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
99076
+ sortOrder: number;
99077
+ meta: {
99078
+ name: string;
99079
+ description?: string | undefined;
99080
+ };
99081
+ brandPersistentId?: string | undefined;
99082
+ parentPersistentId?: string | undefined;
99083
+ slug?: string | undefined;
99084
+ userSlug?: string | undefined;
99085
+ shortPersistentId?: string | undefined;
99086
+ data?: {
99087
+ behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
99088
+ configuration?: {
99089
+ showSidebar: boolean;
99090
+ header: {
99091
+ description: string;
99092
+ alignment: "Center" | "Left";
99093
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99094
+ showBackgroundOverlay: boolean;
99095
+ showCoverText: boolean;
99096
+ foregroundColor?: {
99097
+ aliasTo?: string | undefined;
99098
+ value?: {
99099
+ opacity: {
99100
+ aliasTo?: string | undefined;
99101
+ value?: {
99102
+ unit: "Pixels" | "Raw";
99103
+ measure: number;
99104
+ } | undefined;
99105
+ };
99106
+ color: (string | {
99107
+ aliasTo?: string | undefined;
99108
+ }) & (string | {
99109
+ aliasTo?: string | undefined;
99110
+ } | undefined);
99111
+ } | undefined;
99112
+ } | null | undefined;
99113
+ backgroundColor?: {
99114
+ aliasTo?: string | undefined;
99115
+ value?: {
99116
+ opacity: {
99117
+ aliasTo?: string | undefined;
99118
+ value?: {
99119
+ unit: "Pixels" | "Raw";
99120
+ measure: number;
99121
+ } | undefined;
99122
+ };
99123
+ color: (string | {
99124
+ aliasTo?: string | undefined;
99125
+ }) & (string | {
99126
+ aliasTo?: string | undefined;
99127
+ } | undefined);
99128
+ } | undefined;
99129
+ } | null | undefined;
99130
+ backgroundImageAsset?: {
99131
+ id: string;
99132
+ type: "image";
99133
+ url?: string | undefined;
99134
+ } | {
99135
+ type: "figmaFrame";
99136
+ figmaFrame: {
99137
+ persistentId: string;
99138
+ sourceId: string;
99139
+ sourceFrameId: string;
99140
+ title?: string | undefined;
99141
+ description?: string | undefined;
99142
+ backgroundColor?: {
99143
+ value: string;
99144
+ } | undefined;
99145
+ origin?: {
99146
+ sourceFileName?: string | undefined;
99147
+ title?: string | undefined;
99148
+ previewUrl?: string | undefined;
99149
+ valid?: boolean | undefined;
99150
+ referenceId?: string | undefined;
99151
+ assetId?: string | undefined;
99152
+ assetScale?: number | undefined;
99153
+ width?: number | undefined;
99154
+ height?: number | undefined;
99155
+ } | undefined;
99156
+ };
99157
+ url?: string | undefined;
99158
+ } | null | undefined;
99159
+ minHeight?: number | null | undefined;
99160
+ };
99161
+ } | undefined;
99162
+ } | undefined;
99163
+ };
99164
+ }, {
99165
+ page: {
99166
+ id: string;
99167
+ createdAt: Date;
99168
+ updatedAt: Date;
99169
+ persistentId: string;
99170
+ designSystemVersionId: string;
99171
+ data: {
99172
+ configuration?: {
99173
+ showSidebar: boolean;
99174
+ header: {
99175
+ description: string;
99176
+ alignment: "Center" | "Left";
99177
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99178
+ showBackgroundOverlay: boolean;
99179
+ showCoverText: boolean;
99180
+ foregroundColor?: {
99181
+ aliasTo?: string | null | undefined;
99182
+ value?: {
99183
+ opacity: {
99184
+ aliasTo?: string | null | undefined;
99185
+ value?: {
99186
+ unit: "Pixels" | "Raw";
99187
+ measure: number;
99188
+ } | null | undefined;
99189
+ };
99190
+ color: (string | {
99191
+ aliasTo?: string | null | undefined;
99192
+ }) & (string | {
99193
+ aliasTo?: string | null | undefined;
99194
+ } | undefined);
99195
+ } | null | undefined;
99196
+ } | null | undefined;
99197
+ backgroundColor?: {
99198
+ aliasTo?: string | null | undefined;
99199
+ value?: {
99200
+ opacity: {
99201
+ aliasTo?: string | null | undefined;
99202
+ value?: {
99203
+ unit: "Pixels" | "Raw";
99204
+ measure: number;
99205
+ } | null | undefined;
99206
+ };
99207
+ color: (string | {
99208
+ aliasTo?: string | null | undefined;
99209
+ }) & (string | {
99210
+ aliasTo?: string | null | undefined;
99211
+ } | undefined);
99212
+ } | null | undefined;
99213
+ } | null | undefined;
99214
+ backgroundImageAsset?: {
99215
+ id: string;
99216
+ type: "image";
99217
+ url?: string | undefined;
99218
+ } | {
99219
+ type: "figmaFrame";
99220
+ figmaFrame: {
99221
+ persistentId: string;
99222
+ sourceId: string;
99223
+ sourceFrameId: string;
99224
+ title?: string | null | undefined;
99225
+ description?: string | null | undefined;
99226
+ backgroundColor?: {
99227
+ value: string;
99228
+ } | null | undefined;
99229
+ origin?: {
99230
+ sourceFileName?: string | null | undefined;
99231
+ title?: string | null | undefined;
99232
+ previewUrl?: string | null | undefined;
99233
+ valid?: boolean | null | undefined;
99234
+ referenceId?: string | null | undefined;
99235
+ assetId?: string | null | undefined;
99236
+ assetScale?: number | null | undefined;
99237
+ width?: number | null | undefined;
99238
+ height?: number | null | undefined;
99239
+ } | null | undefined;
99240
+ };
99241
+ url?: string | undefined;
99242
+ } | null | undefined;
99243
+ minHeight?: number | null | undefined;
99244
+ };
99245
+ } | null | undefined;
99246
+ };
99247
+ parentPersistentId: string;
99248
+ shortPersistentId: string;
99249
+ sortOrder: number;
99250
+ meta: {
99251
+ name: string;
99252
+ description?: string | undefined;
99253
+ };
99254
+ slug?: string | undefined;
99255
+ userSlug?: string | undefined;
99256
+ };
99257
+ pageParent: {
99258
+ id: string;
99259
+ createdAt: Date;
99260
+ updatedAt: Date;
99261
+ persistentId: string;
99262
+ designSystemVersionId: string;
99263
+ childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
99264
+ sortOrder: number;
99265
+ meta: {
99266
+ name: string;
99267
+ description?: string | undefined;
99268
+ };
99269
+ brandPersistentId?: string | undefined;
99270
+ parentPersistentId?: string | undefined;
99271
+ slug?: string | undefined;
99272
+ userSlug?: string | undefined;
99273
+ shortPersistentId?: string | undefined;
99274
+ data?: {
99275
+ behavior?: "Tabs" | "Group" | null | undefined;
99276
+ configuration?: {
99277
+ showSidebar: boolean;
99278
+ header: {
99279
+ description: string;
99280
+ alignment: "Center" | "Left";
99281
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99282
+ showBackgroundOverlay: boolean;
99283
+ showCoverText: boolean;
99284
+ foregroundColor?: {
99285
+ aliasTo?: string | null | undefined;
99286
+ value?: {
99287
+ opacity: {
99288
+ aliasTo?: string | null | undefined;
99289
+ value?: {
99290
+ unit: "Pixels" | "Raw";
99291
+ measure: number;
99292
+ } | null | undefined;
99293
+ };
99294
+ color: (string | {
99295
+ aliasTo?: string | null | undefined;
99296
+ }) & (string | {
99297
+ aliasTo?: string | null | undefined;
99298
+ } | undefined);
99299
+ } | null | undefined;
99300
+ } | null | undefined;
99301
+ backgroundColor?: {
99302
+ aliasTo?: string | null | undefined;
99303
+ value?: {
99304
+ opacity: {
99305
+ aliasTo?: string | null | undefined;
99306
+ value?: {
99307
+ unit: "Pixels" | "Raw";
99308
+ measure: number;
99309
+ } | null | undefined;
99310
+ };
99311
+ color: (string | {
99312
+ aliasTo?: string | null | undefined;
99313
+ }) & (string | {
99314
+ aliasTo?: string | null | undefined;
99315
+ } | undefined);
99316
+ } | null | undefined;
99317
+ } | null | undefined;
99318
+ backgroundImageAsset?: {
99319
+ id: string;
99320
+ type: "image";
99321
+ url?: string | undefined;
99322
+ } | {
99323
+ type: "figmaFrame";
99324
+ figmaFrame: {
99325
+ persistentId: string;
99326
+ sourceId: string;
99327
+ sourceFrameId: string;
99328
+ title?: string | null | undefined;
99329
+ description?: string | null | undefined;
99330
+ backgroundColor?: {
99331
+ value: string;
99332
+ } | null | undefined;
99333
+ origin?: {
99334
+ sourceFileName?: string | null | undefined;
99335
+ title?: string | null | undefined;
99336
+ previewUrl?: string | null | undefined;
99337
+ valid?: boolean | null | undefined;
99338
+ referenceId?: string | null | undefined;
99339
+ assetId?: string | null | undefined;
99340
+ assetScale?: number | null | undefined;
99341
+ width?: number | null | undefined;
99342
+ height?: number | null | undefined;
99343
+ } | null | undefined;
99344
+ };
99345
+ url?: string | undefined;
99346
+ } | null | undefined;
99347
+ minHeight?: number | null | undefined;
99348
+ };
99349
+ } | null | undefined;
99350
+ } | undefined;
99351
+ };
99352
+ }>;
99353
+ type DocumentationPageRoomRoomUpdate = z.infer<typeof DocumentationPageRoomRoomUpdate>;
99354
+ declare const DocumentationPageRoomInitialState: z.ZodObject<{
99355
+ page: z.ZodObject<{
99356
+ id: z.ZodString;
99357
+ createdAt: z.ZodDate;
99358
+ updatedAt: z.ZodDate;
99359
+ persistentId: z.ZodString;
99360
+ designSystemVersionId: z.ZodString;
99361
+ parentPersistentId: z.ZodString;
99362
+ sortOrder: z.ZodNumber;
99363
+ meta: z.ZodObject<{
99364
+ name: z.ZodString;
99365
+ description: z.ZodOptional<z.ZodString>;
99366
+ }, "strip", z.ZodTypeAny, {
99367
+ name: string;
99368
+ description?: string | undefined;
99369
+ }, {
99370
+ name: string;
99371
+ description?: string | undefined;
99372
+ }>;
99373
+ slug: z.ZodOptional<z.ZodString>;
99374
+ userSlug: z.ZodOptional<z.ZodString>;
99375
+ shortPersistentId: z.ZodString;
99376
+ data: z.ZodObject<{
99377
+ configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
99378
+ showSidebar: boolean;
99379
+ header: {
99380
+ description: string;
99381
+ alignment: "Center" | "Left";
99382
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99383
+ showBackgroundOverlay: boolean;
99384
+ showCoverText: boolean;
99385
+ foregroundColor?: {
99386
+ aliasTo?: string | undefined;
99387
+ value?: {
99388
+ opacity: {
99389
+ aliasTo?: string | undefined;
99390
+ value?: {
99391
+ unit: "Pixels" | "Raw";
99392
+ measure: number;
99393
+ } | undefined;
99394
+ };
99395
+ color: (string | {
99396
+ aliasTo?: string | undefined;
99397
+ }) & (string | {
99398
+ aliasTo?: string | undefined;
99399
+ } | undefined);
99400
+ } | undefined;
99401
+ } | null | undefined;
99402
+ backgroundColor?: {
99403
+ aliasTo?: string | undefined;
99404
+ value?: {
99405
+ opacity: {
99406
+ aliasTo?: string | undefined;
99407
+ value?: {
99408
+ unit: "Pixels" | "Raw";
99409
+ measure: number;
99410
+ } | undefined;
99411
+ };
99412
+ color: (string | {
99413
+ aliasTo?: string | undefined;
99414
+ }) & (string | {
99415
+ aliasTo?: string | undefined;
99416
+ } | undefined);
99417
+ } | undefined;
99418
+ } | null | undefined;
99419
+ backgroundImageAsset?: {
99420
+ id: string;
99421
+ type: "image";
99422
+ url?: string | undefined;
99423
+ } | {
99424
+ type: "figmaFrame";
99425
+ figmaFrame: {
99426
+ persistentId: string;
99427
+ sourceId: string;
99428
+ sourceFrameId: string;
99429
+ title?: string | undefined;
99430
+ description?: string | undefined;
99431
+ backgroundColor?: {
99432
+ value: string;
99433
+ } | undefined;
99434
+ origin?: {
99435
+ sourceFileName?: string | undefined;
99436
+ title?: string | undefined;
99437
+ previewUrl?: string | undefined;
99438
+ valid?: boolean | undefined;
99439
+ referenceId?: string | undefined;
99440
+ assetId?: string | undefined;
99441
+ assetScale?: number | undefined;
99442
+ width?: number | undefined;
99443
+ height?: number | undefined;
99444
+ } | undefined;
99445
+ };
99446
+ url?: string | undefined;
99447
+ } | null | undefined;
99448
+ minHeight?: number | null | undefined;
99449
+ };
99450
+ }, z.ZodTypeDef, {
99451
+ showSidebar: boolean;
99452
+ header: {
99453
+ description: string;
99454
+ alignment: "Center" | "Left";
99455
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99456
+ showBackgroundOverlay: boolean;
99457
+ showCoverText: boolean;
99458
+ foregroundColor?: {
99459
+ aliasTo?: string | null | undefined;
99460
+ value?: {
99461
+ opacity: {
99462
+ aliasTo?: string | null | undefined;
99463
+ value?: {
99464
+ unit: "Pixels" | "Raw";
99465
+ measure: number;
99466
+ } | null | undefined;
99467
+ };
99468
+ color: (string | {
99469
+ aliasTo?: string | null | undefined;
99470
+ }) & (string | {
99471
+ aliasTo?: string | null | undefined;
99472
+ } | undefined);
99473
+ } | null | undefined;
99474
+ } | null | undefined;
99475
+ backgroundColor?: {
99476
+ aliasTo?: string | null | undefined;
99477
+ value?: {
99478
+ opacity: {
99479
+ aliasTo?: string | null | undefined;
99480
+ value?: {
99481
+ unit: "Pixels" | "Raw";
99482
+ measure: number;
99483
+ } | null | undefined;
99484
+ };
99485
+ color: (string | {
99486
+ aliasTo?: string | null | undefined;
99487
+ }) & (string | {
99488
+ aliasTo?: string | null | undefined;
99489
+ } | undefined);
99490
+ } | null | undefined;
99491
+ } | null | undefined;
99492
+ backgroundImageAsset?: {
99493
+ id: string;
99494
+ type: "image";
99495
+ url?: string | undefined;
99496
+ } | {
99497
+ type: "figmaFrame";
99498
+ figmaFrame: {
99499
+ persistentId: string;
99500
+ sourceId: string;
99501
+ sourceFrameId: string;
99502
+ title?: string | null | undefined;
99503
+ description?: string | null | undefined;
99504
+ backgroundColor?: {
99505
+ value: string;
99506
+ } | null | undefined;
99507
+ origin?: {
99508
+ sourceFileName?: string | null | undefined;
99509
+ title?: string | null | undefined;
99510
+ previewUrl?: string | null | undefined;
99511
+ valid?: boolean | null | undefined;
99512
+ referenceId?: string | null | undefined;
99513
+ assetId?: string | null | undefined;
99514
+ assetScale?: number | null | undefined;
99515
+ width?: number | null | undefined;
99516
+ height?: number | null | undefined;
99517
+ } | null | undefined;
99518
+ };
99519
+ url?: string | undefined;
99520
+ } | null | undefined;
99521
+ minHeight?: number | null | undefined;
99522
+ };
99523
+ }>>>, {
99524
+ showSidebar: boolean;
99525
+ header: {
99526
+ description: string;
99527
+ alignment: "Center" | "Left";
99528
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99529
+ showBackgroundOverlay: boolean;
99530
+ showCoverText: boolean;
99531
+ foregroundColor?: {
99532
+ aliasTo?: string | undefined;
99533
+ value?: {
99534
+ opacity: {
99535
+ aliasTo?: string | undefined;
99536
+ value?: {
99537
+ unit: "Pixels" | "Raw";
99538
+ measure: number;
99539
+ } | undefined;
99540
+ };
99541
+ color: (string | {
99542
+ aliasTo?: string | undefined;
99543
+ }) & (string | {
99544
+ aliasTo?: string | undefined;
99545
+ } | undefined);
99546
+ } | undefined;
99547
+ } | null | undefined;
99548
+ backgroundColor?: {
99549
+ aliasTo?: string | undefined;
99550
+ value?: {
99551
+ opacity: {
99552
+ aliasTo?: string | undefined;
99553
+ value?: {
99554
+ unit: "Pixels" | "Raw";
99555
+ measure: number;
99556
+ } | undefined;
99557
+ };
99558
+ color: (string | {
99559
+ aliasTo?: string | undefined;
99560
+ }) & (string | {
99561
+ aliasTo?: string | undefined;
99562
+ } | undefined);
99563
+ } | undefined;
99564
+ } | null | undefined;
99565
+ backgroundImageAsset?: {
99566
+ id: string;
99567
+ type: "image";
99568
+ url?: string | undefined;
99569
+ } | {
99570
+ type: "figmaFrame";
99571
+ figmaFrame: {
99572
+ persistentId: string;
99573
+ sourceId: string;
99574
+ sourceFrameId: string;
99575
+ title?: string | undefined;
99576
+ description?: string | undefined;
99577
+ backgroundColor?: {
99578
+ value: string;
99579
+ } | undefined;
99580
+ origin?: {
99581
+ sourceFileName?: string | undefined;
99582
+ title?: string | undefined;
99583
+ previewUrl?: string | undefined;
99584
+ valid?: boolean | undefined;
99585
+ referenceId?: string | undefined;
99586
+ assetId?: string | undefined;
99587
+ assetScale?: number | undefined;
99588
+ width?: number | undefined;
99589
+ height?: number | undefined;
99590
+ } | undefined;
99591
+ };
99592
+ url?: string | undefined;
99593
+ } | null | undefined;
99594
+ minHeight?: number | null | undefined;
99595
+ };
99596
+ } | undefined, {
99597
+ showSidebar: boolean;
99598
+ header: {
99599
+ description: string;
99600
+ alignment: "Center" | "Left";
99601
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99602
+ showBackgroundOverlay: boolean;
99603
+ showCoverText: boolean;
99604
+ foregroundColor?: {
99605
+ aliasTo?: string | null | undefined;
99606
+ value?: {
99607
+ opacity: {
99608
+ aliasTo?: string | null | undefined;
99609
+ value?: {
99610
+ unit: "Pixels" | "Raw";
99611
+ measure: number;
99612
+ } | null | undefined;
99613
+ };
99614
+ color: (string | {
99615
+ aliasTo?: string | null | undefined;
99616
+ }) & (string | {
99617
+ aliasTo?: string | null | undefined;
99618
+ } | undefined);
99619
+ } | null | undefined;
99620
+ } | null | undefined;
99621
+ backgroundColor?: {
99622
+ aliasTo?: string | null | undefined;
99623
+ value?: {
99624
+ opacity: {
99625
+ aliasTo?: string | null | undefined;
99626
+ value?: {
99627
+ unit: "Pixels" | "Raw";
99628
+ measure: number;
99629
+ } | null | undefined;
99630
+ };
99631
+ color: (string | {
99632
+ aliasTo?: string | null | undefined;
99633
+ }) & (string | {
99634
+ aliasTo?: string | null | undefined;
99635
+ } | undefined);
99636
+ } | null | undefined;
99637
+ } | null | undefined;
99638
+ backgroundImageAsset?: {
99639
+ id: string;
99640
+ type: "image";
99641
+ url?: string | undefined;
99642
+ } | {
99643
+ type: "figmaFrame";
99644
+ figmaFrame: {
99645
+ persistentId: string;
99646
+ sourceId: string;
99647
+ sourceFrameId: string;
99648
+ title?: string | null | undefined;
99649
+ description?: string | null | undefined;
99650
+ backgroundColor?: {
99651
+ value: string;
99652
+ } | null | undefined;
99653
+ origin?: {
99654
+ sourceFileName?: string | null | undefined;
99655
+ title?: string | null | undefined;
99656
+ previewUrl?: string | null | undefined;
99657
+ valid?: boolean | null | undefined;
99658
+ referenceId?: string | null | undefined;
99659
+ assetId?: string | null | undefined;
99660
+ assetScale?: number | null | undefined;
99661
+ width?: number | null | undefined;
99662
+ height?: number | null | undefined;
99663
+ } | null | undefined;
99664
+ };
99665
+ url?: string | undefined;
99666
+ } | null | undefined;
99667
+ minHeight?: number | null | undefined;
99668
+ };
99669
+ } | null | undefined>;
99670
+ }, "strip", z.ZodTypeAny, {
99671
+ configuration?: {
99672
+ showSidebar: boolean;
99673
+ header: {
99674
+ description: string;
99675
+ alignment: "Center" | "Left";
99676
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99677
+ showBackgroundOverlay: boolean;
99678
+ showCoverText: boolean;
99679
+ foregroundColor?: {
99680
+ aliasTo?: string | undefined;
99681
+ value?: {
99682
+ opacity: {
99683
+ aliasTo?: string | undefined;
99684
+ value?: {
99685
+ unit: "Pixels" | "Raw";
99686
+ measure: number;
99687
+ } | undefined;
99688
+ };
99689
+ color: (string | {
99690
+ aliasTo?: string | undefined;
99691
+ }) & (string | {
99692
+ aliasTo?: string | undefined;
99693
+ } | undefined);
99694
+ } | undefined;
99695
+ } | null | undefined;
99696
+ backgroundColor?: {
99697
+ aliasTo?: string | undefined;
99698
+ value?: {
99699
+ opacity: {
99700
+ aliasTo?: string | undefined;
99701
+ value?: {
99702
+ unit: "Pixels" | "Raw";
99703
+ measure: number;
99704
+ } | undefined;
99705
+ };
99706
+ color: (string | {
99707
+ aliasTo?: string | undefined;
99708
+ }) & (string | {
99709
+ aliasTo?: string | undefined;
99710
+ } | undefined);
99711
+ } | undefined;
99712
+ } | null | undefined;
99713
+ backgroundImageAsset?: {
99714
+ id: string;
99715
+ type: "image";
99716
+ url?: string | undefined;
99717
+ } | {
99718
+ type: "figmaFrame";
99719
+ figmaFrame: {
99720
+ persistentId: string;
99721
+ sourceId: string;
99722
+ sourceFrameId: string;
99723
+ title?: string | undefined;
99724
+ description?: string | undefined;
99725
+ backgroundColor?: {
99726
+ value: string;
99727
+ } | undefined;
99728
+ origin?: {
99729
+ sourceFileName?: string | undefined;
99730
+ title?: string | undefined;
99731
+ previewUrl?: string | undefined;
99732
+ valid?: boolean | undefined;
99733
+ referenceId?: string | undefined;
99734
+ assetId?: string | undefined;
99735
+ assetScale?: number | undefined;
99736
+ width?: number | undefined;
99737
+ height?: number | undefined;
99738
+ } | undefined;
99739
+ };
99740
+ url?: string | undefined;
99741
+ } | null | undefined;
99742
+ minHeight?: number | null | undefined;
99743
+ };
99744
+ } | undefined;
99745
+ }, {
99746
+ configuration?: {
99747
+ showSidebar: boolean;
99748
+ header: {
99749
+ description: string;
99750
+ alignment: "Center" | "Left";
99751
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99752
+ showBackgroundOverlay: boolean;
99753
+ showCoverText: boolean;
99754
+ foregroundColor?: {
99755
+ aliasTo?: string | null | undefined;
99756
+ value?: {
99757
+ opacity: {
99758
+ aliasTo?: string | null | undefined;
99759
+ value?: {
99760
+ unit: "Pixels" | "Raw";
99761
+ measure: number;
99762
+ } | null | undefined;
99763
+ };
99764
+ color: (string | {
99765
+ aliasTo?: string | null | undefined;
99766
+ }) & (string | {
99767
+ aliasTo?: string | null | undefined;
99768
+ } | undefined);
99769
+ } | null | undefined;
99770
+ } | null | undefined;
99771
+ backgroundColor?: {
99772
+ aliasTo?: string | null | undefined;
99773
+ value?: {
99774
+ opacity: {
99775
+ aliasTo?: string | null | undefined;
99776
+ value?: {
99777
+ unit: "Pixels" | "Raw";
99778
+ measure: number;
99779
+ } | null | undefined;
99780
+ };
99781
+ color: (string | {
99782
+ aliasTo?: string | null | undefined;
99783
+ }) & (string | {
99784
+ aliasTo?: string | null | undefined;
99785
+ } | undefined);
99786
+ } | null | undefined;
99787
+ } | null | undefined;
99788
+ backgroundImageAsset?: {
99789
+ id: string;
99790
+ type: "image";
99791
+ url?: string | undefined;
99792
+ } | {
99793
+ type: "figmaFrame";
99794
+ figmaFrame: {
99795
+ persistentId: string;
99796
+ sourceId: string;
99797
+ sourceFrameId: string;
99798
+ title?: string | null | undefined;
99799
+ description?: string | null | undefined;
99800
+ backgroundColor?: {
99801
+ value: string;
99802
+ } | null | undefined;
99803
+ origin?: {
99804
+ sourceFileName?: string | null | undefined;
99805
+ title?: string | null | undefined;
99806
+ previewUrl?: string | null | undefined;
99807
+ valid?: boolean | null | undefined;
99808
+ referenceId?: string | null | undefined;
99809
+ assetId?: string | null | undefined;
99810
+ assetScale?: number | null | undefined;
99811
+ width?: number | null | undefined;
99812
+ height?: number | null | undefined;
99813
+ } | null | undefined;
99814
+ };
99815
+ url?: string | undefined;
99816
+ } | null | undefined;
99817
+ minHeight?: number | null | undefined;
99818
+ };
99819
+ } | null | undefined;
99820
+ }>;
99821
+ }, "strip", z.ZodTypeAny, {
99822
+ id: string;
99823
+ createdAt: Date;
99824
+ updatedAt: Date;
99825
+ persistentId: string;
99826
+ designSystemVersionId: string;
99827
+ data: {
99828
+ configuration?: {
99829
+ showSidebar: boolean;
99830
+ header: {
99831
+ description: string;
99832
+ alignment: "Center" | "Left";
99833
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99834
+ showBackgroundOverlay: boolean;
99835
+ showCoverText: boolean;
99836
+ foregroundColor?: {
99837
+ aliasTo?: string | undefined;
99838
+ value?: {
99839
+ opacity: {
99840
+ aliasTo?: string | undefined;
99841
+ value?: {
99842
+ unit: "Pixels" | "Raw";
99843
+ measure: number;
99844
+ } | undefined;
99845
+ };
99846
+ color: (string | {
99847
+ aliasTo?: string | undefined;
99848
+ }) & (string | {
99849
+ aliasTo?: string | undefined;
99850
+ } | undefined);
99851
+ } | undefined;
99852
+ } | null | undefined;
99853
+ backgroundColor?: {
99854
+ aliasTo?: string | undefined;
99855
+ value?: {
99856
+ opacity: {
99857
+ aliasTo?: string | undefined;
99858
+ value?: {
99859
+ unit: "Pixels" | "Raw";
99860
+ measure: number;
99861
+ } | undefined;
99862
+ };
99863
+ color: (string | {
99864
+ aliasTo?: string | undefined;
99865
+ }) & (string | {
99866
+ aliasTo?: string | undefined;
99867
+ } | undefined);
99868
+ } | undefined;
99869
+ } | null | undefined;
99870
+ backgroundImageAsset?: {
99871
+ id: string;
99872
+ type: "image";
99873
+ url?: string | undefined;
99874
+ } | {
99875
+ type: "figmaFrame";
99876
+ figmaFrame: {
99877
+ persistentId: string;
99878
+ sourceId: string;
99879
+ sourceFrameId: string;
99880
+ title?: string | undefined;
99881
+ description?: string | undefined;
99882
+ backgroundColor?: {
99883
+ value: string;
99884
+ } | undefined;
99885
+ origin?: {
99886
+ sourceFileName?: string | undefined;
99887
+ title?: string | undefined;
99888
+ previewUrl?: string | undefined;
99889
+ valid?: boolean | undefined;
99890
+ referenceId?: string | undefined;
99891
+ assetId?: string | undefined;
99892
+ assetScale?: number | undefined;
99893
+ width?: number | undefined;
99894
+ height?: number | undefined;
99895
+ } | undefined;
99896
+ };
99897
+ url?: string | undefined;
99898
+ } | null | undefined;
99899
+ minHeight?: number | null | undefined;
99900
+ };
99901
+ } | undefined;
99902
+ };
99903
+ parentPersistentId: string;
99904
+ shortPersistentId: string;
99905
+ sortOrder: number;
99906
+ meta: {
99907
+ name: string;
99908
+ description?: string | undefined;
99909
+ };
99910
+ slug?: string | undefined;
99911
+ userSlug?: string | undefined;
99912
+ }, {
99913
+ id: string;
99914
+ createdAt: Date;
99915
+ updatedAt: Date;
99916
+ persistentId: string;
99917
+ designSystemVersionId: string;
99918
+ data: {
99919
+ configuration?: {
99920
+ showSidebar: boolean;
99921
+ header: {
99922
+ description: string;
99923
+ alignment: "Center" | "Left";
99924
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
99925
+ showBackgroundOverlay: boolean;
99926
+ showCoverText: boolean;
99927
+ foregroundColor?: {
99928
+ aliasTo?: string | null | undefined;
99929
+ value?: {
99930
+ opacity: {
99931
+ aliasTo?: string | null | undefined;
99932
+ value?: {
99933
+ unit: "Pixels" | "Raw";
99934
+ measure: number;
99935
+ } | null | undefined;
99936
+ };
99937
+ color: (string | {
99938
+ aliasTo?: string | null | undefined;
99939
+ }) & (string | {
99940
+ aliasTo?: string | null | undefined;
99941
+ } | undefined);
99942
+ } | null | undefined;
99943
+ } | null | undefined;
99944
+ backgroundColor?: {
99945
+ aliasTo?: string | null | undefined;
99946
+ value?: {
99947
+ opacity: {
99948
+ aliasTo?: string | null | undefined;
99949
+ value?: {
99950
+ unit: "Pixels" | "Raw";
99951
+ measure: number;
99952
+ } | null | undefined;
99953
+ };
99954
+ color: (string | {
99955
+ aliasTo?: string | null | undefined;
99956
+ }) & (string | {
99957
+ aliasTo?: string | null | undefined;
99958
+ } | undefined);
99959
+ } | null | undefined;
99960
+ } | null | undefined;
99961
+ backgroundImageAsset?: {
99962
+ id: string;
99963
+ type: "image";
99964
+ url?: string | undefined;
99965
+ } | {
99966
+ type: "figmaFrame";
99967
+ figmaFrame: {
99968
+ persistentId: string;
99969
+ sourceId: string;
99970
+ sourceFrameId: string;
99971
+ title?: string | null | undefined;
99972
+ description?: string | null | undefined;
99973
+ backgroundColor?: {
99974
+ value: string;
99975
+ } | null | undefined;
99976
+ origin?: {
99977
+ sourceFileName?: string | null | undefined;
99978
+ title?: string | null | undefined;
99979
+ previewUrl?: string | null | undefined;
99980
+ valid?: boolean | null | undefined;
99981
+ referenceId?: string | null | undefined;
99982
+ assetId?: string | null | undefined;
99983
+ assetScale?: number | null | undefined;
99984
+ width?: number | null | undefined;
99985
+ height?: number | null | undefined;
99986
+ } | null | undefined;
99987
+ };
99988
+ url?: string | undefined;
99989
+ } | null | undefined;
99990
+ minHeight?: number | null | undefined;
99991
+ };
99992
+ } | null | undefined;
99993
+ };
99994
+ parentPersistentId: string;
99995
+ shortPersistentId: string;
99996
+ sortOrder: number;
99997
+ meta: {
99998
+ name: string;
99999
+ description?: string | undefined;
100000
+ };
100001
+ slug?: string | undefined;
100002
+ userSlug?: string | undefined;
100003
+ }>;
100004
+ pageParent: z.ZodObject<{
100005
+ id: z.ZodString;
100006
+ createdAt: z.ZodDate;
100007
+ updatedAt: z.ZodDate;
100008
+ persistentId: z.ZodString;
100009
+ designSystemVersionId: z.ZodString;
100010
+ brandPersistentId: z.ZodOptional<z.ZodString>;
100011
+ parentPersistentId: z.ZodOptional<z.ZodString>;
100012
+ sortOrder: z.ZodNumber;
100013
+ meta: z.ZodObject<{
100014
+ name: z.ZodString;
100015
+ description: z.ZodOptional<z.ZodString>;
100016
+ }, "strip", z.ZodTypeAny, {
100017
+ name: string;
100018
+ description?: string | undefined;
100019
+ }, {
100020
+ name: string;
100021
+ description?: string | undefined;
100022
+ }>;
100023
+ slug: z.ZodOptional<z.ZodString>;
100024
+ userSlug: z.ZodOptional<z.ZodString>;
100025
+ shortPersistentId: z.ZodOptional<z.ZodString>;
100026
+ childType: z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
100027
+ data: z.ZodOptional<z.ZodObject<{
100028
+ 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>;
100029
+ configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
100030
+ showSidebar: boolean;
100031
+ header: {
100032
+ description: string;
100033
+ alignment: "Center" | "Left";
100034
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
100035
+ showBackgroundOverlay: boolean;
100036
+ showCoverText: boolean;
100037
+ foregroundColor?: {
100038
+ aliasTo?: string | undefined;
100039
+ value?: {
100040
+ opacity: {
100041
+ aliasTo?: string | undefined;
100042
+ value?: {
100043
+ unit: "Pixels" | "Raw";
100044
+ measure: number;
100045
+ } | undefined;
100046
+ };
100047
+ color: (string | {
100048
+ aliasTo?: string | undefined;
100049
+ }) & (string | {
100050
+ aliasTo?: string | undefined;
100051
+ } | undefined);
100052
+ } | undefined;
100053
+ } | null | undefined;
100054
+ backgroundColor?: {
100055
+ aliasTo?: string | undefined;
100056
+ value?: {
100057
+ opacity: {
100058
+ aliasTo?: string | undefined;
100059
+ value?: {
100060
+ unit: "Pixels" | "Raw";
100061
+ measure: number;
100062
+ } | undefined;
100063
+ };
100064
+ color: (string | {
100065
+ aliasTo?: string | undefined;
100066
+ }) & (string | {
100067
+ aliasTo?: string | undefined;
100068
+ } | undefined);
100069
+ } | undefined;
100070
+ } | null | undefined;
100071
+ backgroundImageAsset?: {
100072
+ id: string;
100073
+ type: "image";
100074
+ url?: string | undefined;
100075
+ } | {
100076
+ type: "figmaFrame";
100077
+ figmaFrame: {
100078
+ persistentId: string;
100079
+ sourceId: string;
100080
+ sourceFrameId: string;
100081
+ title?: string | undefined;
100082
+ description?: string | undefined;
100083
+ backgroundColor?: {
100084
+ value: string;
100085
+ } | undefined;
100086
+ origin?: {
100087
+ sourceFileName?: string | undefined;
100088
+ title?: string | undefined;
100089
+ previewUrl?: string | undefined;
100090
+ valid?: boolean | undefined;
100091
+ referenceId?: string | undefined;
100092
+ assetId?: string | undefined;
100093
+ assetScale?: number | undefined;
100094
+ width?: number | undefined;
100095
+ height?: number | undefined;
100096
+ } | undefined;
100097
+ };
100098
+ url?: string | undefined;
100099
+ } | null | undefined;
100100
+ minHeight?: number | null | undefined;
100101
+ };
100102
+ }, z.ZodTypeDef, {
100103
+ showSidebar: boolean;
100104
+ header: {
100105
+ description: string;
100106
+ alignment: "Center" | "Left";
100107
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
100108
+ showBackgroundOverlay: boolean;
100109
+ showCoverText: boolean;
100110
+ foregroundColor?: {
100111
+ aliasTo?: string | null | undefined;
100112
+ value?: {
100113
+ opacity: {
100114
+ aliasTo?: string | null | undefined;
100115
+ value?: {
100116
+ unit: "Pixels" | "Raw";
100117
+ measure: number;
100118
+ } | null | undefined;
100119
+ };
100120
+ color: (string | {
100121
+ aliasTo?: string | null | undefined;
100122
+ }) & (string | {
100123
+ aliasTo?: string | null | undefined;
100124
+ } | undefined);
100125
+ } | null | undefined;
100126
+ } | null | undefined;
100127
+ backgroundColor?: {
100128
+ aliasTo?: string | null | undefined;
100129
+ value?: {
100130
+ opacity: {
100131
+ aliasTo?: string | null | undefined;
100132
+ value?: {
100133
+ unit: "Pixels" | "Raw";
100134
+ measure: number;
100135
+ } | null | undefined;
100136
+ };
100137
+ color: (string | {
100138
+ aliasTo?: string | null | undefined;
100139
+ }) & (string | {
100140
+ aliasTo?: string | null | undefined;
100141
+ } | undefined);
100142
+ } | null | undefined;
100143
+ } | null | undefined;
100144
+ backgroundImageAsset?: {
100145
+ id: string;
100146
+ type: "image";
100147
+ url?: string | undefined;
100148
+ } | {
100149
+ type: "figmaFrame";
100150
+ figmaFrame: {
100151
+ persistentId: string;
100152
+ sourceId: string;
100153
+ sourceFrameId: string;
100154
+ title?: string | null | undefined;
100155
+ description?: string | null | undefined;
100156
+ backgroundColor?: {
100157
+ value: string;
100158
+ } | null | undefined;
100159
+ origin?: {
100160
+ sourceFileName?: string | null | undefined;
100161
+ title?: string | null | undefined;
100162
+ previewUrl?: string | null | undefined;
100163
+ valid?: boolean | null | undefined;
100164
+ referenceId?: string | null | undefined;
100165
+ assetId?: string | null | undefined;
100166
+ assetScale?: number | null | undefined;
100167
+ width?: number | null | undefined;
100168
+ height?: number | null | undefined;
100169
+ } | null | undefined;
100170
+ };
100171
+ url?: string | undefined;
100172
+ } | null | undefined;
100173
+ minHeight?: number | null | undefined;
100174
+ };
100175
+ }>>>, {
100176
+ showSidebar: boolean;
100177
+ header: {
100178
+ description: string;
100179
+ alignment: "Center" | "Left";
100180
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
100181
+ showBackgroundOverlay: boolean;
100182
+ showCoverText: boolean;
100183
+ foregroundColor?: {
100184
+ aliasTo?: string | undefined;
100185
+ value?: {
100186
+ opacity: {
100187
+ aliasTo?: string | undefined;
100188
+ value?: {
100189
+ unit: "Pixels" | "Raw";
100190
+ measure: number;
100191
+ } | undefined;
100192
+ };
100193
+ color: (string | {
100194
+ aliasTo?: string | undefined;
100195
+ }) & (string | {
100196
+ aliasTo?: string | undefined;
100197
+ } | undefined);
100198
+ } | undefined;
100199
+ } | null | undefined;
100200
+ backgroundColor?: {
100201
+ aliasTo?: string | undefined;
100202
+ value?: {
100203
+ opacity: {
100204
+ aliasTo?: string | undefined;
100205
+ value?: {
100206
+ unit: "Pixels" | "Raw";
100207
+ measure: number;
100208
+ } | undefined;
100209
+ };
100210
+ color: (string | {
100211
+ aliasTo?: string | undefined;
100212
+ }) & (string | {
100213
+ aliasTo?: string | undefined;
100214
+ } | undefined);
100215
+ } | undefined;
100216
+ } | null | undefined;
100217
+ backgroundImageAsset?: {
100218
+ id: string;
100219
+ type: "image";
100220
+ url?: string | undefined;
100221
+ } | {
100222
+ type: "figmaFrame";
100223
+ figmaFrame: {
100224
+ persistentId: string;
100225
+ sourceId: string;
100226
+ sourceFrameId: string;
100227
+ title?: string | undefined;
100228
+ description?: string | undefined;
100229
+ backgroundColor?: {
100230
+ value: string;
100231
+ } | undefined;
100232
+ origin?: {
100233
+ sourceFileName?: string | undefined;
100234
+ title?: string | undefined;
100235
+ previewUrl?: string | undefined;
100236
+ valid?: boolean | undefined;
100237
+ referenceId?: string | undefined;
100238
+ assetId?: string | undefined;
100239
+ assetScale?: number | undefined;
100240
+ width?: number | undefined;
100241
+ height?: number | undefined;
100242
+ } | undefined;
100243
+ };
100244
+ url?: string | undefined;
100245
+ } | null | undefined;
100246
+ minHeight?: number | null | undefined;
100247
+ };
100248
+ } | undefined, {
100249
+ showSidebar: boolean;
100250
+ header: {
100251
+ description: string;
100252
+ alignment: "Center" | "Left";
100253
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
100254
+ showBackgroundOverlay: boolean;
100255
+ showCoverText: boolean;
100256
+ foregroundColor?: {
100257
+ aliasTo?: string | null | undefined;
100258
+ value?: {
100259
+ opacity: {
100260
+ aliasTo?: string | null | undefined;
100261
+ value?: {
100262
+ unit: "Pixels" | "Raw";
100263
+ measure: number;
100264
+ } | null | undefined;
100265
+ };
100266
+ color: (string | {
100267
+ aliasTo?: string | null | undefined;
100268
+ }) & (string | {
100269
+ aliasTo?: string | null | undefined;
100270
+ } | undefined);
100271
+ } | null | undefined;
100272
+ } | null | undefined;
100273
+ backgroundColor?: {
100274
+ aliasTo?: string | null | undefined;
100275
+ value?: {
100276
+ opacity: {
100277
+ aliasTo?: string | null | undefined;
100278
+ value?: {
100279
+ unit: "Pixels" | "Raw";
100280
+ measure: number;
100281
+ } | null | undefined;
100282
+ };
100283
+ color: (string | {
100284
+ aliasTo?: string | null | undefined;
100285
+ }) & (string | {
100286
+ aliasTo?: string | null | undefined;
100287
+ } | undefined);
100288
+ } | null | undefined;
100289
+ } | null | undefined;
100290
+ backgroundImageAsset?: {
100291
+ id: string;
100292
+ type: "image";
100293
+ url?: string | undefined;
100294
+ } | {
100295
+ type: "figmaFrame";
100296
+ figmaFrame: {
100297
+ persistentId: string;
100298
+ sourceId: string;
100299
+ sourceFrameId: string;
100300
+ title?: string | null | undefined;
100301
+ description?: string | null | undefined;
100302
+ backgroundColor?: {
100303
+ value: string;
100304
+ } | null | undefined;
100305
+ origin?: {
100306
+ sourceFileName?: string | null | undefined;
100307
+ title?: string | null | undefined;
100308
+ previewUrl?: string | null | undefined;
100309
+ valid?: boolean | null | undefined;
100310
+ referenceId?: string | null | undefined;
100311
+ assetId?: string | null | undefined;
100312
+ assetScale?: number | null | undefined;
100313
+ width?: number | null | undefined;
100314
+ height?: number | null | undefined;
100315
+ } | null | undefined;
100316
+ };
100317
+ url?: string | undefined;
100318
+ } | null | undefined;
100319
+ minHeight?: number | null | undefined;
100320
+ };
100321
+ } | null | undefined>;
100322
+ }, "strip", z.ZodTypeAny, {
100323
+ behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
100324
+ configuration?: {
100325
+ showSidebar: boolean;
100326
+ header: {
100327
+ description: string;
100328
+ alignment: "Center" | "Left";
100329
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
100330
+ showBackgroundOverlay: boolean;
100331
+ showCoverText: boolean;
100332
+ foregroundColor?: {
100333
+ aliasTo?: string | undefined;
100334
+ value?: {
100335
+ opacity: {
100336
+ aliasTo?: string | undefined;
100337
+ value?: {
100338
+ unit: "Pixels" | "Raw";
100339
+ measure: number;
100340
+ } | undefined;
100341
+ };
100342
+ color: (string | {
100343
+ aliasTo?: string | undefined;
100344
+ }) & (string | {
100345
+ aliasTo?: string | undefined;
100346
+ } | undefined);
100347
+ } | undefined;
100348
+ } | null | undefined;
100349
+ backgroundColor?: {
100350
+ aliasTo?: string | undefined;
100351
+ value?: {
100352
+ opacity: {
100353
+ aliasTo?: string | undefined;
100354
+ value?: {
100355
+ unit: "Pixels" | "Raw";
100356
+ measure: number;
100357
+ } | undefined;
100358
+ };
100359
+ color: (string | {
100360
+ aliasTo?: string | undefined;
100361
+ }) & (string | {
100362
+ aliasTo?: string | undefined;
100363
+ } | undefined);
100364
+ } | undefined;
100365
+ } | null | undefined;
100366
+ backgroundImageAsset?: {
100367
+ id: string;
100368
+ type: "image";
100369
+ url?: string | undefined;
100370
+ } | {
100371
+ type: "figmaFrame";
100372
+ figmaFrame: {
100373
+ persistentId: string;
100374
+ sourceId: string;
100375
+ sourceFrameId: string;
100376
+ title?: string | undefined;
100377
+ description?: string | undefined;
100378
+ backgroundColor?: {
100379
+ value: string;
100380
+ } | undefined;
100381
+ origin?: {
100382
+ sourceFileName?: string | undefined;
100383
+ title?: string | undefined;
100384
+ previewUrl?: string | undefined;
100385
+ valid?: boolean | undefined;
100386
+ referenceId?: string | undefined;
100387
+ assetId?: string | undefined;
100388
+ assetScale?: number | undefined;
100389
+ width?: number | undefined;
100390
+ height?: number | undefined;
100391
+ } | undefined;
100392
+ };
100393
+ url?: string | undefined;
100394
+ } | null | undefined;
100395
+ minHeight?: number | null | undefined;
100396
+ };
100397
+ } | undefined;
100398
+ }, {
100399
+ behavior?: "Tabs" | "Group" | null | undefined;
100400
+ configuration?: {
100401
+ showSidebar: boolean;
100402
+ header: {
100403
+ description: string;
100404
+ alignment: "Center" | "Left";
100405
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
100406
+ showBackgroundOverlay: boolean;
100407
+ showCoverText: boolean;
100408
+ foregroundColor?: {
100409
+ aliasTo?: string | null | undefined;
100410
+ value?: {
100411
+ opacity: {
100412
+ aliasTo?: string | null | undefined;
100413
+ value?: {
100414
+ unit: "Pixels" | "Raw";
100415
+ measure: number;
100416
+ } | null | undefined;
100417
+ };
100418
+ color: (string | {
100419
+ aliasTo?: string | null | undefined;
100420
+ }) & (string | {
100421
+ aliasTo?: string | null | undefined;
100422
+ } | undefined);
100423
+ } | null | undefined;
100424
+ } | null | undefined;
100425
+ backgroundColor?: {
100426
+ aliasTo?: string | null | undefined;
100427
+ value?: {
100428
+ opacity: {
100429
+ aliasTo?: string | null | undefined;
100430
+ value?: {
100431
+ unit: "Pixels" | "Raw";
100432
+ measure: number;
100433
+ } | null | undefined;
100434
+ };
100435
+ color: (string | {
100436
+ aliasTo?: string | null | undefined;
100437
+ }) & (string | {
100438
+ aliasTo?: string | null | undefined;
100439
+ } | undefined);
100440
+ } | null | undefined;
100441
+ } | null | undefined;
100442
+ backgroundImageAsset?: {
100443
+ id: string;
100444
+ type: "image";
100445
+ url?: string | undefined;
100446
+ } | {
100447
+ type: "figmaFrame";
100448
+ figmaFrame: {
100449
+ persistentId: string;
100450
+ sourceId: string;
100451
+ sourceFrameId: string;
100452
+ title?: string | null | undefined;
100453
+ description?: string | null | undefined;
100454
+ backgroundColor?: {
100455
+ value: string;
100456
+ } | null | undefined;
100457
+ origin?: {
100458
+ sourceFileName?: string | null | undefined;
100459
+ title?: string | null | undefined;
100460
+ previewUrl?: string | null | undefined;
100461
+ valid?: boolean | null | undefined;
100462
+ referenceId?: string | null | undefined;
100463
+ assetId?: string | null | undefined;
100464
+ assetScale?: number | null | undefined;
100465
+ width?: number | null | undefined;
100466
+ height?: number | null | undefined;
100467
+ } | null | undefined;
100468
+ };
100469
+ url?: string | undefined;
100470
+ } | null | undefined;
100471
+ minHeight?: number | null | undefined;
100472
+ };
100473
+ } | null | undefined;
100474
+ }>>;
100475
+ }, "strip", z.ZodTypeAny, {
100476
+ id: string;
100477
+ createdAt: Date;
100478
+ updatedAt: Date;
100479
+ persistentId: string;
100480
+ designSystemVersionId: string;
100481
+ childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
100482
+ sortOrder: number;
100483
+ meta: {
100484
+ name: string;
100485
+ description?: string | undefined;
100486
+ };
100487
+ brandPersistentId?: string | undefined;
100488
+ parentPersistentId?: string | undefined;
100489
+ slug?: string | undefined;
100490
+ userSlug?: string | undefined;
100491
+ shortPersistentId?: string | undefined;
100492
+ data?: {
100493
+ behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
100494
+ configuration?: {
100495
+ showSidebar: boolean;
100496
+ header: {
100497
+ description: string;
100498
+ alignment: "Center" | "Left";
100499
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
100500
+ showBackgroundOverlay: boolean;
100501
+ showCoverText: boolean;
100502
+ foregroundColor?: {
100503
+ aliasTo?: string | undefined;
100504
+ value?: {
100505
+ opacity: {
100506
+ aliasTo?: string | undefined;
100507
+ value?: {
100508
+ unit: "Pixels" | "Raw";
100509
+ measure: number;
100510
+ } | undefined;
100511
+ };
100512
+ color: (string | {
100513
+ aliasTo?: string | undefined;
100514
+ }) & (string | {
100515
+ aliasTo?: string | undefined;
100516
+ } | undefined);
100517
+ } | undefined;
100518
+ } | null | undefined;
100519
+ backgroundColor?: {
100520
+ aliasTo?: string | undefined;
100521
+ value?: {
100522
+ opacity: {
100523
+ aliasTo?: string | undefined;
100524
+ value?: {
100525
+ unit: "Pixels" | "Raw";
100526
+ measure: number;
100527
+ } | undefined;
100528
+ };
100529
+ color: (string | {
100530
+ aliasTo?: string | undefined;
100531
+ }) & (string | {
100532
+ aliasTo?: string | undefined;
100533
+ } | undefined);
100534
+ } | undefined;
100535
+ } | null | undefined;
100536
+ backgroundImageAsset?: {
100537
+ id: string;
100538
+ type: "image";
100539
+ url?: string | undefined;
100540
+ } | {
100541
+ type: "figmaFrame";
100542
+ figmaFrame: {
100543
+ persistentId: string;
100544
+ sourceId: string;
100545
+ sourceFrameId: string;
100546
+ title?: string | undefined;
100547
+ description?: string | undefined;
100548
+ backgroundColor?: {
100549
+ value: string;
100550
+ } | undefined;
100551
+ origin?: {
100552
+ sourceFileName?: string | undefined;
100553
+ title?: string | undefined;
100554
+ previewUrl?: string | undefined;
100555
+ valid?: boolean | undefined;
100556
+ referenceId?: string | undefined;
100557
+ assetId?: string | undefined;
100558
+ assetScale?: number | undefined;
100559
+ width?: number | undefined;
100560
+ height?: number | undefined;
100561
+ } | undefined;
100562
+ };
100563
+ url?: string | undefined;
100564
+ } | null | undefined;
100565
+ minHeight?: number | null | undefined;
100566
+ };
100567
+ } | undefined;
100568
+ } | undefined;
100569
+ }, {
100570
+ id: string;
100571
+ createdAt: Date;
100572
+ updatedAt: Date;
100573
+ persistentId: string;
100574
+ designSystemVersionId: string;
100575
+ childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
100576
+ sortOrder: number;
100577
+ meta: {
100578
+ name: string;
100579
+ description?: string | undefined;
100580
+ };
100581
+ brandPersistentId?: string | undefined;
100582
+ parentPersistentId?: string | undefined;
100583
+ slug?: string | undefined;
100584
+ userSlug?: string | undefined;
100585
+ shortPersistentId?: string | undefined;
100586
+ data?: {
100587
+ behavior?: "Tabs" | "Group" | null | undefined;
100588
+ configuration?: {
100589
+ showSidebar: boolean;
100590
+ header: {
100591
+ description: string;
100592
+ alignment: "Center" | "Left";
100593
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
100594
+ showBackgroundOverlay: boolean;
100595
+ showCoverText: boolean;
100596
+ foregroundColor?: {
100597
+ aliasTo?: string | null | undefined;
100598
+ value?: {
100599
+ opacity: {
100600
+ aliasTo?: string | null | undefined;
100601
+ value?: {
100602
+ unit: "Pixels" | "Raw";
100603
+ measure: number;
100604
+ } | null | undefined;
100605
+ };
100606
+ color: (string | {
100607
+ aliasTo?: string | null | undefined;
100608
+ }) & (string | {
100609
+ aliasTo?: string | null | undefined;
100610
+ } | undefined);
100611
+ } | null | undefined;
100612
+ } | null | undefined;
100613
+ backgroundColor?: {
100614
+ aliasTo?: string | null | undefined;
100615
+ value?: {
100616
+ opacity: {
100617
+ aliasTo?: string | null | undefined;
100618
+ value?: {
100619
+ unit: "Pixels" | "Raw";
100620
+ measure: number;
100621
+ } | null | undefined;
100622
+ };
100623
+ color: (string | {
100624
+ aliasTo?: string | null | undefined;
100625
+ }) & (string | {
100626
+ aliasTo?: string | null | undefined;
100627
+ } | undefined);
100628
+ } | null | undefined;
100629
+ } | null | undefined;
100630
+ backgroundImageAsset?: {
100631
+ id: string;
100632
+ type: "image";
100633
+ url?: string | undefined;
100634
+ } | {
100635
+ type: "figmaFrame";
100636
+ figmaFrame: {
100637
+ persistentId: string;
100638
+ sourceId: string;
100639
+ sourceFrameId: string;
100640
+ title?: string | null | undefined;
100641
+ description?: string | null | undefined;
100642
+ backgroundColor?: {
100643
+ value: string;
100644
+ } | null | undefined;
100645
+ origin?: {
100646
+ sourceFileName?: string | null | undefined;
100647
+ title?: string | null | undefined;
100648
+ previewUrl?: string | null | undefined;
100649
+ valid?: boolean | null | undefined;
100650
+ referenceId?: string | null | undefined;
100651
+ assetId?: string | null | undefined;
100652
+ assetScale?: number | null | undefined;
100653
+ width?: number | null | undefined;
100654
+ height?: number | null | undefined;
100655
+ } | null | undefined;
100656
+ };
100657
+ url?: string | undefined;
100658
+ } | null | undefined;
100659
+ minHeight?: number | null | undefined;
100660
+ };
100661
+ } | null | undefined;
100662
+ } | undefined;
100663
+ }>;
100664
+ pageBlocks: z.ZodArray<z.ZodObject<{
100665
+ id: z.ZodString;
100666
+ data: z.ZodObject<{
100667
+ packageId: z.ZodString;
100668
+ variantId: z.ZodOptional<z.ZodString>;
100669
+ indentLevel: z.ZodNumber;
100670
+ appearance: z.ZodOptional<z.ZodObject<{
100671
+ itemBackgroundColor: z.ZodOptional<z.ZodObject<{
100672
+ value: z.ZodString;
100673
+ referencedTokenId: z.ZodOptional<z.ZodString>;
100674
+ }, "strip", z.ZodTypeAny, {
100675
+ value: string;
100676
+ referencedTokenId?: string | undefined;
100677
+ }, {
100678
+ value: string;
100679
+ referencedTokenId?: string | undefined;
100680
+ }>>;
100681
+ numberOfColumns: z.ZodOptional<z.ZodNumber>;
100682
+ }, "strip", z.ZodTypeAny, {
100683
+ itemBackgroundColor?: {
100684
+ value: string;
100685
+ referencedTokenId?: string | undefined;
100686
+ } | undefined;
100687
+ numberOfColumns?: number | undefined;
100688
+ }, {
100689
+ itemBackgroundColor?: {
100690
+ value: string;
100691
+ referencedTokenId?: string | undefined;
100692
+ } | undefined;
100693
+ numberOfColumns?: number | undefined;
100694
+ }>>;
100695
+ items: z.ZodArray<z.ZodObject<{
100696
+ id: z.ZodString;
100697
+ linksTo: z.ZodOptional<z.ZodObject<{
100698
+ type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
100699
+ documentationItemId: z.ZodOptional<z.ZodString>;
100700
+ pageHeadingId: z.ZodOptional<z.ZodString>;
100701
+ url: z.ZodOptional<z.ZodString>;
100702
+ openInNewTab: z.ZodOptional<z.ZodBoolean>;
100703
+ }, "strip", z.ZodTypeAny, {
100704
+ type: "DocumentationItem" | "PageHeading" | "Url";
100705
+ documentationItemId?: string | undefined;
100706
+ pageHeadingId?: string | undefined;
100707
+ url?: string | undefined;
100708
+ openInNewTab?: boolean | undefined;
100709
+ }, {
100710
+ type: "DocumentationItem" | "PageHeading" | "Url";
100711
+ documentationItemId?: string | undefined;
100712
+ pageHeadingId?: string | undefined;
100713
+ url?: string | undefined;
100714
+ openInNewTab?: boolean | undefined;
100715
+ }>>;
100716
+ props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
100717
+ value: z.ZodAny;
100718
+ }, "strip", z.ZodTypeAny, {
100719
+ value?: any;
100720
+ }, {
100721
+ value?: any;
100722
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
100723
+ }, "strip", z.ZodTypeAny, {
100724
+ id: string;
100725
+ props: Record<string, {
100726
+ value?: any;
100727
+ } & Record<string, any>>;
100728
+ linksTo?: {
100729
+ type: "DocumentationItem" | "PageHeading" | "Url";
100730
+ documentationItemId?: string | undefined;
100731
+ pageHeadingId?: string | undefined;
100732
+ url?: string | undefined;
100733
+ openInNewTab?: boolean | undefined;
100734
+ } | undefined;
100735
+ }, {
100736
+ id: string;
100737
+ props: Record<string, {
100738
+ value?: any;
100739
+ } & Record<string, any>>;
100740
+ linksTo?: {
100741
+ type: "DocumentationItem" | "PageHeading" | "Url";
100742
+ documentationItemId?: string | undefined;
100743
+ pageHeadingId?: string | undefined;
100744
+ url?: string | undefined;
100745
+ openInNewTab?: boolean | undefined;
100746
+ } | undefined;
100747
+ }>, "many">;
100748
+ }, "strip", z.ZodTypeAny, {
100749
+ items: {
100750
+ id: string;
100751
+ props: Record<string, {
100752
+ value?: any;
100753
+ } & Record<string, any>>;
100754
+ linksTo?: {
100755
+ type: "DocumentationItem" | "PageHeading" | "Url";
100756
+ documentationItemId?: string | undefined;
100757
+ pageHeadingId?: string | undefined;
100758
+ url?: string | undefined;
100759
+ openInNewTab?: boolean | undefined;
100760
+ } | undefined;
100761
+ }[];
100762
+ packageId: string;
100763
+ indentLevel: number;
100764
+ variantId?: string | undefined;
100765
+ appearance?: {
100766
+ itemBackgroundColor?: {
100767
+ value: string;
100768
+ referencedTokenId?: string | undefined;
100769
+ } | undefined;
100770
+ numberOfColumns?: number | undefined;
100771
+ } | undefined;
100772
+ }, {
100773
+ items: {
100774
+ id: string;
100775
+ props: Record<string, {
100776
+ value?: any;
100777
+ } & Record<string, any>>;
100778
+ linksTo?: {
100779
+ type: "DocumentationItem" | "PageHeading" | "Url";
100780
+ documentationItemId?: string | undefined;
100781
+ pageHeadingId?: string | undefined;
100782
+ url?: string | undefined;
100783
+ openInNewTab?: boolean | undefined;
100784
+ } | undefined;
100785
+ }[];
100786
+ packageId: string;
100787
+ indentLevel: number;
100788
+ variantId?: string | undefined;
100789
+ appearance?: {
100790
+ itemBackgroundColor?: {
100791
+ value: string;
100792
+ referencedTokenId?: string | undefined;
100793
+ } | undefined;
100794
+ numberOfColumns?: number | undefined;
100795
+ } | undefined;
100796
+ }>;
100797
+ }, "strip", z.ZodTypeAny, {
100798
+ id: string;
100799
+ data: {
100800
+ items: {
100801
+ id: string;
100802
+ props: Record<string, {
100803
+ value?: any;
100804
+ } & Record<string, any>>;
100805
+ linksTo?: {
100806
+ type: "DocumentationItem" | "PageHeading" | "Url";
100807
+ documentationItemId?: string | undefined;
100808
+ pageHeadingId?: string | undefined;
100809
+ url?: string | undefined;
100810
+ openInNewTab?: boolean | undefined;
100811
+ } | undefined;
100812
+ }[];
100813
+ packageId: string;
100814
+ indentLevel: number;
100815
+ variantId?: string | undefined;
100816
+ appearance?: {
100817
+ itemBackgroundColor?: {
100818
+ value: string;
100819
+ referencedTokenId?: string | undefined;
100820
+ } | undefined;
100821
+ numberOfColumns?: number | undefined;
100822
+ } | undefined;
100823
+ };
100824
+ }, {
100825
+ id: string;
100826
+ data: {
100827
+ items: {
100828
+ id: string;
100829
+ props: Record<string, {
100830
+ value?: any;
100831
+ } & Record<string, any>>;
100832
+ linksTo?: {
100833
+ type: "DocumentationItem" | "PageHeading" | "Url";
100834
+ documentationItemId?: string | undefined;
100835
+ pageHeadingId?: string | undefined;
100836
+ url?: string | undefined;
100837
+ openInNewTab?: boolean | undefined;
100838
+ } | undefined;
100839
+ }[];
100840
+ packageId: string;
100841
+ indentLevel: number;
100842
+ variantId?: string | undefined;
100843
+ appearance?: {
100844
+ itemBackgroundColor?: {
100845
+ value: string;
100846
+ referencedTokenId?: string | undefined;
100847
+ } | undefined;
100848
+ numberOfColumns?: number | undefined;
100849
+ } | undefined;
100850
+ };
100851
+ }>, "many">;
100852
+ blockDefinitions: z.ZodArray<z.ZodObject<{
100853
+ id: z.ZodString;
100854
+ name: z.ZodString;
100855
+ description: z.ZodString;
100856
+ category: z.ZodEnum<["Text", "Layout", "Media", "Embed", "Figma", "Code", "Guidelines", "Tokens", "Components", "Assets", "Data", "Other"]>;
100857
+ icon: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
100858
+ documentationLink: z.ZodOptional<z.ZodString>;
100859
+ searchKeywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
100860
+ item: z.ZodObject<{
100861
+ properties: z.ZodArray<z.ZodObject<{
100862
+ id: z.ZodString;
100863
+ name: z.ZodString;
100864
+ type: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
100865
+ description: z.ZodOptional<z.ZodString>;
100866
+ options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
100867
+ variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
100868
+ }, "strip", z.ZodTypeAny, {
100869
+ id: string;
100870
+ type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
100871
+ name: string;
100872
+ description?: string | undefined;
100873
+ options?: Record<string, any> | undefined;
100874
+ variantOptions?: Record<string, Record<string, any>> | undefined;
100875
+ }, {
100876
+ id: string;
100877
+ type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
100878
+ name: string;
100879
+ description?: string | undefined;
100880
+ options?: Record<string, any> | undefined;
100881
+ variantOptions?: Record<string, Record<string, any>> | undefined;
100882
+ }>, "many">;
100883
+ appearance: z.ZodOptional<z.ZodObject<{
100884
+ isBordered: z.ZodOptional<z.ZodBoolean>;
100885
+ hasBackground: z.ZodOptional<z.ZodBoolean>;
100886
+ isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
100887
+ }, "strip", z.ZodTypeAny, {
100888
+ isBordered?: boolean | undefined;
100889
+ hasBackground?: boolean | undefined;
100890
+ isEditorPresentationDifferent?: boolean | undefined;
100891
+ }, {
100892
+ isBordered?: boolean | undefined;
100893
+ hasBackground?: boolean | undefined;
100894
+ isEditorPresentationDifferent?: boolean | undefined;
100895
+ }>>;
100896
+ variants: z.ZodArray<z.ZodObject<{
100897
+ id: z.ZodString;
100898
+ name: z.ZodString;
100899
+ image: z.ZodOptional<z.ZodString>;
100900
+ description: z.ZodOptional<z.ZodString>;
100901
+ documentationLink: z.ZodOptional<z.ZodString>;
100902
+ layout: z.ZodType<PageBlockDefinitionLayout, z.ZodTypeDef, PageBlockDefinitionLayout>;
100903
+ maxColumns: z.ZodOptional<z.ZodNumber>;
100904
+ defaultColumns: z.ZodOptional<z.ZodNumber>;
100905
+ appearance: z.ZodOptional<z.ZodObject<{
100906
+ isBordered: z.ZodOptional<z.ZodBoolean>;
100907
+ hasBackground: z.ZodOptional<z.ZodBoolean>;
100908
+ isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
100909
+ }, "strip", z.ZodTypeAny, {
100910
+ isBordered?: boolean | undefined;
100911
+ hasBackground?: boolean | undefined;
100912
+ isEditorPresentationDifferent?: boolean | undefined;
100913
+ }, {
100914
+ isBordered?: boolean | undefined;
100915
+ hasBackground?: boolean | undefined;
100916
+ isEditorPresentationDifferent?: boolean | undefined;
100917
+ }>>;
100918
+ }, "strip", z.ZodTypeAny, {
100919
+ id: string;
100920
+ name: string;
100921
+ layout: {
100922
+ type: "Column" | "Row";
100923
+ gap?: "None" | "Small" | "Medium" | "Large" | undefined;
100924
+ columnAlign?: "Center" | "Start" | "End" | undefined;
100925
+ columnResizing?: "Fill" | "Hug" | undefined;
100926
+ } & {
100927
+ children: (string | PageBlockDefinitionLayout)[];
100928
+ };
100929
+ image?: string | undefined;
100930
+ description?: string | undefined;
100931
+ documentationLink?: string | undefined;
100932
+ maxColumns?: number | undefined;
100933
+ defaultColumns?: number | undefined;
100934
+ appearance?: {
100935
+ isBordered?: boolean | undefined;
100936
+ hasBackground?: boolean | undefined;
100937
+ isEditorPresentationDifferent?: boolean | undefined;
100938
+ } | undefined;
100939
+ }, {
100940
+ id: string;
100941
+ name: string;
100942
+ layout: {
100943
+ type: "Column" | "Row";
100944
+ gap?: "None" | "Small" | "Medium" | "Large" | undefined;
100945
+ columnAlign?: "Center" | "Start" | "End" | undefined;
100946
+ columnResizing?: "Fill" | "Hug" | undefined;
100947
+ } & {
100948
+ children: (string | PageBlockDefinitionLayout)[];
100949
+ };
100950
+ image?: string | undefined;
100951
+ description?: string | undefined;
100952
+ documentationLink?: string | undefined;
100953
+ maxColumns?: number | undefined;
100954
+ defaultColumns?: number | undefined;
100955
+ appearance?: {
100956
+ isBordered?: boolean | undefined;
100957
+ hasBackground?: boolean | undefined;
100958
+ isEditorPresentationDifferent?: boolean | undefined;
100959
+ } | undefined;
100960
+ }>, "many">;
100961
+ defaultVariantKey: z.ZodString;
100962
+ }, "strip", z.ZodTypeAny, {
100963
+ properties: {
100964
+ id: string;
100965
+ type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
100966
+ name: string;
100967
+ description?: string | undefined;
100968
+ options?: Record<string, any> | undefined;
100969
+ variantOptions?: Record<string, Record<string, any>> | undefined;
100970
+ }[];
100971
+ variants: {
100972
+ id: string;
100973
+ name: string;
100974
+ layout: {
100975
+ type: "Column" | "Row";
100976
+ gap?: "None" | "Small" | "Medium" | "Large" | undefined;
100977
+ columnAlign?: "Center" | "Start" | "End" | undefined;
100978
+ columnResizing?: "Fill" | "Hug" | undefined;
100979
+ } & {
100980
+ children: (string | PageBlockDefinitionLayout)[];
100981
+ };
100982
+ image?: string | undefined;
100983
+ description?: string | undefined;
100984
+ documentationLink?: string | undefined;
100985
+ maxColumns?: number | undefined;
100986
+ defaultColumns?: number | undefined;
100987
+ appearance?: {
100988
+ isBordered?: boolean | undefined;
100989
+ hasBackground?: boolean | undefined;
100990
+ isEditorPresentationDifferent?: boolean | undefined;
100991
+ } | undefined;
100992
+ }[];
100993
+ defaultVariantKey: string;
100994
+ appearance?: {
100995
+ isBordered?: boolean | undefined;
100996
+ hasBackground?: boolean | undefined;
100997
+ isEditorPresentationDifferent?: boolean | undefined;
100998
+ } | undefined;
100999
+ }, {
101000
+ properties: {
101001
+ id: string;
101002
+ type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
101003
+ name: string;
101004
+ description?: string | undefined;
101005
+ options?: Record<string, any> | undefined;
101006
+ variantOptions?: Record<string, Record<string, any>> | undefined;
101007
+ }[];
101008
+ variants: {
101009
+ id: string;
101010
+ name: string;
101011
+ layout: {
101012
+ type: "Column" | "Row";
101013
+ gap?: "None" | "Small" | "Medium" | "Large" | undefined;
101014
+ columnAlign?: "Center" | "Start" | "End" | undefined;
101015
+ columnResizing?: "Fill" | "Hug" | undefined;
101016
+ } & {
101017
+ children: (string | PageBlockDefinitionLayout)[];
101018
+ };
101019
+ image?: string | undefined;
101020
+ description?: string | undefined;
101021
+ documentationLink?: string | undefined;
101022
+ maxColumns?: number | undefined;
101023
+ defaultColumns?: number | undefined;
101024
+ appearance?: {
101025
+ isBordered?: boolean | undefined;
101026
+ hasBackground?: boolean | undefined;
101027
+ isEditorPresentationDifferent?: boolean | undefined;
101028
+ } | undefined;
101029
+ }[];
101030
+ defaultVariantKey: string;
101031
+ appearance?: {
101032
+ isBordered?: boolean | undefined;
101033
+ hasBackground?: boolean | undefined;
101034
+ isEditorPresentationDifferent?: boolean | undefined;
101035
+ } | undefined;
101036
+ }>;
101037
+ behavior: z.ZodObject<{
101038
+ dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode"]>;
101039
+ items: z.ZodOptional<z.ZodObject<{
101040
+ numberOfItems: z.ZodNumber;
101041
+ allowLinks: z.ZodBoolean;
101042
+ }, "strip", z.ZodTypeAny, {
101043
+ numberOfItems: number;
101044
+ allowLinks: boolean;
101045
+ }, {
101046
+ numberOfItems: number;
101047
+ allowLinks: boolean;
101048
+ }>>;
101049
+ entities: z.ZodOptional<z.ZodObject<{
101050
+ selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
101051
+ maxSelected: z.ZodNumber;
101052
+ }, "strip", z.ZodTypeAny, {
101053
+ selectionType: "Group" | "Entity" | "EntityAndGroup";
101054
+ maxSelected: number;
101055
+ }, {
101056
+ selectionType: "Group" | "Entity" | "EntityAndGroup";
101057
+ maxSelected: number;
101058
+ }>>;
101059
+ }, "strip", z.ZodTypeAny, {
101060
+ dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
101061
+ items?: {
101062
+ numberOfItems: number;
101063
+ allowLinks: boolean;
101064
+ } | undefined;
101065
+ entities?: {
101066
+ selectionType: "Group" | "Entity" | "EntityAndGroup";
101067
+ maxSelected: number;
101068
+ } | undefined;
101069
+ }, {
101070
+ dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
101071
+ items?: {
101072
+ numberOfItems: number;
101073
+ allowLinks: boolean;
101074
+ } | undefined;
101075
+ entities?: {
101076
+ selectionType: "Group" | "Entity" | "EntityAndGroup";
101077
+ maxSelected: number;
101078
+ } | undefined;
101079
+ }>;
101080
+ editorOptions: z.ZodObject<{
101081
+ onboarding: z.ZodOptional<z.ZodObject<{
101082
+ helpText: z.ZodString;
101083
+ documentationLink: z.ZodOptional<z.ZodString>;
101084
+ }, "strip", z.ZodTypeAny, {
101085
+ helpText: string;
101086
+ documentationLink?: string | undefined;
101087
+ }, {
101088
+ helpText: string;
101089
+ documentationLink?: string | undefined;
101090
+ }>>;
101091
+ }, "strip", z.ZodTypeAny, {
101092
+ onboarding?: {
101093
+ helpText: string;
101094
+ documentationLink?: string | undefined;
101095
+ } | undefined;
101096
+ }, {
101097
+ onboarding?: {
101098
+ helpText: string;
101099
+ documentationLink?: string | undefined;
101100
+ } | undefined;
101101
+ }>;
101102
+ appearance: z.ZodOptional<z.ZodObject<{
101103
+ isBordered: z.ZodOptional<z.ZodBoolean>;
101104
+ hasBackground: z.ZodOptional<z.ZodBoolean>;
101105
+ isEditorPresentationDifferent: z.ZodOptional<z.ZodBoolean>;
101106
+ }, "strip", z.ZodTypeAny, {
101107
+ isBordered?: boolean | undefined;
101108
+ hasBackground?: boolean | undefined;
101109
+ isEditorPresentationDifferent?: boolean | undefined;
101110
+ }, {
101111
+ isBordered?: boolean | undefined;
101112
+ hasBackground?: boolean | undefined;
101113
+ isEditorPresentationDifferent?: boolean | undefined;
101114
+ }>>;
101115
+ }, "strip", z.ZodTypeAny, {
101116
+ id: string;
101117
+ name: string;
101118
+ description: string;
101119
+ item: {
101120
+ properties: {
101121
+ id: string;
101122
+ type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
101123
+ name: string;
101124
+ description?: string | undefined;
101125
+ options?: Record<string, any> | undefined;
101126
+ variantOptions?: Record<string, Record<string, any>> | undefined;
101127
+ }[];
101128
+ variants: {
101129
+ id: string;
101130
+ name: string;
101131
+ layout: {
101132
+ type: "Column" | "Row";
101133
+ gap?: "None" | "Small" | "Medium" | "Large" | undefined;
101134
+ columnAlign?: "Center" | "Start" | "End" | undefined;
101135
+ columnResizing?: "Fill" | "Hug" | undefined;
101136
+ } & {
101137
+ children: (string | PageBlockDefinitionLayout)[];
101138
+ };
101139
+ image?: string | undefined;
101140
+ description?: string | undefined;
101141
+ documentationLink?: string | undefined;
101142
+ maxColumns?: number | undefined;
101143
+ defaultColumns?: number | undefined;
101144
+ appearance?: {
101145
+ isBordered?: boolean | undefined;
101146
+ hasBackground?: boolean | undefined;
101147
+ isEditorPresentationDifferent?: boolean | undefined;
101148
+ } | undefined;
101149
+ }[];
101150
+ defaultVariantKey: string;
101151
+ appearance?: {
101152
+ isBordered?: boolean | undefined;
101153
+ hasBackground?: boolean | undefined;
101154
+ isEditorPresentationDifferent?: boolean | undefined;
101155
+ } | undefined;
101156
+ };
101157
+ category: "Text" | "Code" | "Embed" | "Figma" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
101158
+ behavior: {
101159
+ dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
101160
+ items?: {
101161
+ numberOfItems: number;
101162
+ allowLinks: boolean;
101163
+ } | undefined;
101164
+ entities?: {
101165
+ selectionType: "Group" | "Entity" | "EntityAndGroup";
101166
+ maxSelected: number;
101167
+ } | undefined;
101168
+ };
101169
+ editorOptions: {
101170
+ onboarding?: {
101171
+ helpText: string;
101172
+ documentationLink?: string | undefined;
101173
+ } | undefined;
101174
+ };
101175
+ icon?: {} | undefined;
101176
+ documentationLink?: string | undefined;
101177
+ searchKeywords?: string[] | undefined;
101178
+ appearance?: {
101179
+ isBordered?: boolean | undefined;
101180
+ hasBackground?: boolean | undefined;
101181
+ isEditorPresentationDifferent?: boolean | undefined;
101182
+ } | undefined;
101183
+ }, {
101184
+ id: string;
101185
+ name: string;
101186
+ description: string;
101187
+ item: {
101188
+ properties: {
101189
+ id: string;
101190
+ type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
101191
+ name: string;
101192
+ description?: string | undefined;
101193
+ options?: Record<string, any> | undefined;
101194
+ variantOptions?: Record<string, Record<string, any>> | undefined;
101195
+ }[];
101196
+ variants: {
101197
+ id: string;
101198
+ name: string;
101199
+ layout: {
101200
+ type: "Column" | "Row";
101201
+ gap?: "None" | "Small" | "Medium" | "Large" | undefined;
101202
+ columnAlign?: "Center" | "Start" | "End" | undefined;
101203
+ columnResizing?: "Fill" | "Hug" | undefined;
101204
+ } & {
101205
+ children: (string | PageBlockDefinitionLayout)[];
101206
+ };
101207
+ image?: string | undefined;
101208
+ description?: string | undefined;
101209
+ documentationLink?: string | undefined;
101210
+ maxColumns?: number | undefined;
101211
+ defaultColumns?: number | undefined;
101212
+ appearance?: {
101213
+ isBordered?: boolean | undefined;
101214
+ hasBackground?: boolean | undefined;
101215
+ isEditorPresentationDifferent?: boolean | undefined;
101216
+ } | undefined;
101217
+ }[];
101218
+ defaultVariantKey: string;
101219
+ appearance?: {
101220
+ isBordered?: boolean | undefined;
101221
+ hasBackground?: boolean | undefined;
101222
+ isEditorPresentationDifferent?: boolean | undefined;
101223
+ } | undefined;
101224
+ };
101225
+ category: "Text" | "Code" | "Embed" | "Figma" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
101226
+ behavior: {
101227
+ dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
101228
+ items?: {
101229
+ numberOfItems: number;
101230
+ allowLinks: boolean;
101231
+ } | undefined;
101232
+ entities?: {
101233
+ selectionType: "Group" | "Entity" | "EntityAndGroup";
101234
+ maxSelected: number;
101235
+ } | undefined;
101236
+ };
101237
+ editorOptions: {
101238
+ onboarding?: {
101239
+ helpText: string;
101240
+ documentationLink?: string | undefined;
101241
+ } | undefined;
101242
+ };
101243
+ icon?: {} | undefined;
101244
+ documentationLink?: string | undefined;
101245
+ searchKeywords?: string[] | undefined;
101246
+ appearance?: {
101247
+ isBordered?: boolean | undefined;
101248
+ hasBackground?: boolean | undefined;
101249
+ isEditorPresentationDifferent?: boolean | undefined;
101250
+ } | undefined;
101251
+ }>, "many">;
101252
+ }, "strip", z.ZodTypeAny, {
101253
+ page: {
101254
+ id: string;
101255
+ createdAt: Date;
101256
+ updatedAt: Date;
101257
+ persistentId: string;
101258
+ designSystemVersionId: string;
101259
+ data: {
101260
+ configuration?: {
101261
+ showSidebar: boolean;
101262
+ header: {
101263
+ description: string;
101264
+ alignment: "Center" | "Left";
101265
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
101266
+ showBackgroundOverlay: boolean;
101267
+ showCoverText: boolean;
101268
+ foregroundColor?: {
101269
+ aliasTo?: string | undefined;
101270
+ value?: {
101271
+ opacity: {
101272
+ aliasTo?: string | undefined;
101273
+ value?: {
101274
+ unit: "Pixels" | "Raw";
101275
+ measure: number;
101276
+ } | undefined;
101277
+ };
101278
+ color: (string | {
101279
+ aliasTo?: string | undefined;
101280
+ }) & (string | {
101281
+ aliasTo?: string | undefined;
101282
+ } | undefined);
101283
+ } | undefined;
101284
+ } | null | undefined;
101285
+ backgroundColor?: {
101286
+ aliasTo?: string | undefined;
101287
+ value?: {
101288
+ opacity: {
101289
+ aliasTo?: string | undefined;
101290
+ value?: {
101291
+ unit: "Pixels" | "Raw";
101292
+ measure: number;
101293
+ } | undefined;
101294
+ };
101295
+ color: (string | {
101296
+ aliasTo?: string | undefined;
101297
+ }) & (string | {
101298
+ aliasTo?: string | undefined;
101299
+ } | undefined);
101300
+ } | undefined;
101301
+ } | null | undefined;
101302
+ backgroundImageAsset?: {
101303
+ id: string;
101304
+ type: "image";
101305
+ url?: string | undefined;
101306
+ } | {
101307
+ type: "figmaFrame";
101308
+ figmaFrame: {
101309
+ persistentId: string;
101310
+ sourceId: string;
101311
+ sourceFrameId: string;
101312
+ title?: string | undefined;
101313
+ description?: string | undefined;
101314
+ backgroundColor?: {
101315
+ value: string;
101316
+ } | undefined;
101317
+ origin?: {
101318
+ sourceFileName?: string | undefined;
101319
+ title?: string | undefined;
101320
+ previewUrl?: string | undefined;
101321
+ valid?: boolean | undefined;
101322
+ referenceId?: string | undefined;
101323
+ assetId?: string | undefined;
101324
+ assetScale?: number | undefined;
101325
+ width?: number | undefined;
101326
+ height?: number | undefined;
101327
+ } | undefined;
101328
+ };
101329
+ url?: string | undefined;
101330
+ } | null | undefined;
101331
+ minHeight?: number | null | undefined;
101332
+ };
101333
+ } | undefined;
101334
+ };
101335
+ parentPersistentId: string;
101336
+ shortPersistentId: string;
101337
+ sortOrder: number;
101338
+ meta: {
101339
+ name: string;
101340
+ description?: string | undefined;
101341
+ };
101342
+ slug?: string | undefined;
101343
+ userSlug?: string | undefined;
101344
+ };
101345
+ pageParent: {
101346
+ id: string;
101347
+ createdAt: Date;
101348
+ updatedAt: Date;
101349
+ persistentId: string;
101350
+ designSystemVersionId: string;
101351
+ childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
101352
+ sortOrder: number;
101353
+ meta: {
101354
+ name: string;
101355
+ description?: string | undefined;
101356
+ };
101357
+ brandPersistentId?: string | undefined;
101358
+ parentPersistentId?: string | undefined;
101359
+ slug?: string | undefined;
101360
+ userSlug?: string | undefined;
101361
+ shortPersistentId?: string | undefined;
101362
+ data?: {
101363
+ behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
101364
+ configuration?: {
101365
+ showSidebar: boolean;
101366
+ header: {
101367
+ description: string;
101368
+ alignment: "Center" | "Left";
101369
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
101370
+ showBackgroundOverlay: boolean;
101371
+ showCoverText: boolean;
101372
+ foregroundColor?: {
101373
+ aliasTo?: string | undefined;
101374
+ value?: {
101375
+ opacity: {
101376
+ aliasTo?: string | undefined;
101377
+ value?: {
101378
+ unit: "Pixels" | "Raw";
101379
+ measure: number;
101380
+ } | undefined;
101381
+ };
101382
+ color: (string | {
101383
+ aliasTo?: string | undefined;
101384
+ }) & (string | {
101385
+ aliasTo?: string | undefined;
101386
+ } | undefined);
101387
+ } | undefined;
101388
+ } | null | undefined;
101389
+ backgroundColor?: {
101390
+ aliasTo?: string | undefined;
101391
+ value?: {
101392
+ opacity: {
101393
+ aliasTo?: string | undefined;
101394
+ value?: {
101395
+ unit: "Pixels" | "Raw";
101396
+ measure: number;
101397
+ } | undefined;
101398
+ };
101399
+ color: (string | {
101400
+ aliasTo?: string | undefined;
101401
+ }) & (string | {
101402
+ aliasTo?: string | undefined;
101403
+ } | undefined);
101404
+ } | undefined;
101405
+ } | null | undefined;
101406
+ backgroundImageAsset?: {
101407
+ id: string;
101408
+ type: "image";
101409
+ url?: string | undefined;
101410
+ } | {
101411
+ type: "figmaFrame";
101412
+ figmaFrame: {
101413
+ persistentId: string;
101414
+ sourceId: string;
101415
+ sourceFrameId: string;
101416
+ title?: string | undefined;
101417
+ description?: string | undefined;
101418
+ backgroundColor?: {
101419
+ value: string;
101420
+ } | undefined;
101421
+ origin?: {
101422
+ sourceFileName?: string | undefined;
101423
+ title?: string | undefined;
101424
+ previewUrl?: string | undefined;
101425
+ valid?: boolean | undefined;
101426
+ referenceId?: string | undefined;
101427
+ assetId?: string | undefined;
101428
+ assetScale?: number | undefined;
101429
+ width?: number | undefined;
101430
+ height?: number | undefined;
101431
+ } | undefined;
101432
+ };
101433
+ url?: string | undefined;
101434
+ } | null | undefined;
101435
+ minHeight?: number | null | undefined;
101436
+ };
101437
+ } | undefined;
101438
+ } | undefined;
101439
+ };
101440
+ pageBlocks: {
101441
+ id: string;
101442
+ data: {
101443
+ items: {
101444
+ id: string;
101445
+ props: Record<string, {
101446
+ value?: any;
101447
+ } & Record<string, any>>;
101448
+ linksTo?: {
101449
+ type: "DocumentationItem" | "PageHeading" | "Url";
101450
+ documentationItemId?: string | undefined;
101451
+ pageHeadingId?: string | undefined;
101452
+ url?: string | undefined;
101453
+ openInNewTab?: boolean | undefined;
101454
+ } | undefined;
101455
+ }[];
101456
+ packageId: string;
101457
+ indentLevel: number;
101458
+ variantId?: string | undefined;
101459
+ appearance?: {
101460
+ itemBackgroundColor?: {
101461
+ value: string;
101462
+ referencedTokenId?: string | undefined;
101463
+ } | undefined;
101464
+ numberOfColumns?: number | undefined;
101465
+ } | undefined;
101466
+ };
101467
+ }[];
101468
+ blockDefinitions: {
101469
+ id: string;
101470
+ name: string;
101471
+ description: string;
101472
+ item: {
101473
+ properties: {
101474
+ id: string;
101475
+ type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
101476
+ name: string;
101477
+ description?: string | undefined;
101478
+ options?: Record<string, any> | undefined;
101479
+ variantOptions?: Record<string, Record<string, any>> | undefined;
101480
+ }[];
101481
+ variants: {
101482
+ id: string;
101483
+ name: string;
101484
+ layout: {
101485
+ type: "Column" | "Row";
101486
+ gap?: "None" | "Small" | "Medium" | "Large" | undefined;
101487
+ columnAlign?: "Center" | "Start" | "End" | undefined;
101488
+ columnResizing?: "Fill" | "Hug" | undefined;
101489
+ } & {
101490
+ children: (string | PageBlockDefinitionLayout)[];
101491
+ };
101492
+ image?: string | undefined;
101493
+ description?: string | undefined;
101494
+ documentationLink?: string | undefined;
101495
+ maxColumns?: number | undefined;
101496
+ defaultColumns?: number | undefined;
101497
+ appearance?: {
101498
+ isBordered?: boolean | undefined;
101499
+ hasBackground?: boolean | undefined;
101500
+ isEditorPresentationDifferent?: boolean | undefined;
101501
+ } | undefined;
101502
+ }[];
101503
+ defaultVariantKey: string;
101504
+ appearance?: {
101505
+ isBordered?: boolean | undefined;
101506
+ hasBackground?: boolean | undefined;
101507
+ isEditorPresentationDifferent?: boolean | undefined;
101508
+ } | undefined;
101509
+ };
101510
+ category: "Text" | "Code" | "Embed" | "Figma" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
101511
+ behavior: {
101512
+ dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
101513
+ items?: {
101514
+ numberOfItems: number;
101515
+ allowLinks: boolean;
101516
+ } | undefined;
101517
+ entities?: {
101518
+ selectionType: "Group" | "Entity" | "EntityAndGroup";
101519
+ maxSelected: number;
101520
+ } | undefined;
101521
+ };
101522
+ editorOptions: {
101523
+ onboarding?: {
101524
+ helpText: string;
101525
+ documentationLink?: string | undefined;
101526
+ } | undefined;
101527
+ };
101528
+ icon?: {} | undefined;
101529
+ documentationLink?: string | undefined;
101530
+ searchKeywords?: string[] | undefined;
101531
+ appearance?: {
101532
+ isBordered?: boolean | undefined;
101533
+ hasBackground?: boolean | undefined;
101534
+ isEditorPresentationDifferent?: boolean | undefined;
101535
+ } | undefined;
101536
+ }[];
101537
+ }, {
101538
+ page: {
101539
+ id: string;
101540
+ createdAt: Date;
101541
+ updatedAt: Date;
101542
+ persistentId: string;
101543
+ designSystemVersionId: string;
101544
+ data: {
101545
+ configuration?: {
101546
+ showSidebar: boolean;
101547
+ header: {
101548
+ description: string;
101549
+ alignment: "Center" | "Left";
101550
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
101551
+ showBackgroundOverlay: boolean;
101552
+ showCoverText: boolean;
101553
+ foregroundColor?: {
101554
+ aliasTo?: string | null | undefined;
101555
+ value?: {
101556
+ opacity: {
101557
+ aliasTo?: string | null | undefined;
101558
+ value?: {
101559
+ unit: "Pixels" | "Raw";
101560
+ measure: number;
101561
+ } | null | undefined;
101562
+ };
101563
+ color: (string | {
101564
+ aliasTo?: string | null | undefined;
101565
+ }) & (string | {
101566
+ aliasTo?: string | null | undefined;
101567
+ } | undefined);
101568
+ } | null | undefined;
101569
+ } | null | undefined;
101570
+ backgroundColor?: {
101571
+ aliasTo?: string | null | undefined;
101572
+ value?: {
101573
+ opacity: {
101574
+ aliasTo?: string | null | undefined;
101575
+ value?: {
101576
+ unit: "Pixels" | "Raw";
101577
+ measure: number;
101578
+ } | null | undefined;
101579
+ };
101580
+ color: (string | {
101581
+ aliasTo?: string | null | undefined;
101582
+ }) & (string | {
101583
+ aliasTo?: string | null | undefined;
101584
+ } | undefined);
101585
+ } | null | undefined;
101586
+ } | null | undefined;
101587
+ backgroundImageAsset?: {
101588
+ id: string;
101589
+ type: "image";
101590
+ url?: string | undefined;
101591
+ } | {
101592
+ type: "figmaFrame";
101593
+ figmaFrame: {
101594
+ persistentId: string;
101595
+ sourceId: string;
101596
+ sourceFrameId: string;
101597
+ title?: string | null | undefined;
101598
+ description?: string | null | undefined;
101599
+ backgroundColor?: {
101600
+ value: string;
101601
+ } | null | undefined;
101602
+ origin?: {
101603
+ sourceFileName?: string | null | undefined;
101604
+ title?: string | null | undefined;
101605
+ previewUrl?: string | null | undefined;
101606
+ valid?: boolean | null | undefined;
101607
+ referenceId?: string | null | undefined;
101608
+ assetId?: string | null | undefined;
101609
+ assetScale?: number | null | undefined;
101610
+ width?: number | null | undefined;
101611
+ height?: number | null | undefined;
101612
+ } | null | undefined;
101613
+ };
101614
+ url?: string | undefined;
101615
+ } | null | undefined;
101616
+ minHeight?: number | null | undefined;
101617
+ };
101618
+ } | null | undefined;
101619
+ };
101620
+ parentPersistentId: string;
101621
+ shortPersistentId: string;
101622
+ sortOrder: number;
101623
+ meta: {
101624
+ name: string;
101625
+ description?: string | undefined;
101626
+ };
101627
+ slug?: string | undefined;
101628
+ userSlug?: string | undefined;
101629
+ };
101630
+ pageParent: {
101631
+ id: string;
101632
+ createdAt: Date;
101633
+ updatedAt: Date;
101634
+ persistentId: string;
101635
+ designSystemVersionId: string;
101636
+ childType: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
101637
+ sortOrder: number;
101638
+ meta: {
101639
+ name: string;
101640
+ description?: string | undefined;
101641
+ };
101642
+ brandPersistentId?: string | undefined;
101643
+ parentPersistentId?: string | undefined;
101644
+ slug?: string | undefined;
101645
+ userSlug?: string | undefined;
101646
+ shortPersistentId?: string | undefined;
101647
+ data?: {
101648
+ behavior?: "Tabs" | "Group" | null | undefined;
101649
+ configuration?: {
101650
+ showSidebar: boolean;
101651
+ header: {
101652
+ description: string;
101653
+ alignment: "Center" | "Left";
101654
+ backgroundImageScaleType: "AspectFill" | "AspectFit";
101655
+ showBackgroundOverlay: boolean;
101656
+ showCoverText: boolean;
101657
+ foregroundColor?: {
101658
+ aliasTo?: string | null | undefined;
101659
+ value?: {
101660
+ opacity: {
101661
+ aliasTo?: string | null | undefined;
101662
+ value?: {
101663
+ unit: "Pixels" | "Raw";
101664
+ measure: number;
101665
+ } | null | undefined;
101666
+ };
101667
+ color: (string | {
101668
+ aliasTo?: string | null | undefined;
101669
+ }) & (string | {
101670
+ aliasTo?: string | null | undefined;
101671
+ } | undefined);
101672
+ } | null | undefined;
101673
+ } | null | undefined;
101674
+ backgroundColor?: {
101675
+ aliasTo?: string | null | undefined;
101676
+ value?: {
101677
+ opacity: {
101678
+ aliasTo?: string | null | undefined;
101679
+ value?: {
101680
+ unit: "Pixels" | "Raw";
101681
+ measure: number;
101682
+ } | null | undefined;
101683
+ };
101684
+ color: (string | {
101685
+ aliasTo?: string | null | undefined;
101686
+ }) & (string | {
101687
+ aliasTo?: string | null | undefined;
101688
+ } | undefined);
101689
+ } | null | undefined;
101690
+ } | null | undefined;
101691
+ backgroundImageAsset?: {
101692
+ id: string;
101693
+ type: "image";
101694
+ url?: string | undefined;
101695
+ } | {
101696
+ type: "figmaFrame";
101697
+ figmaFrame: {
101698
+ persistentId: string;
101699
+ sourceId: string;
101700
+ sourceFrameId: string;
101701
+ title?: string | null | undefined;
101702
+ description?: string | null | undefined;
101703
+ backgroundColor?: {
101704
+ value: string;
101705
+ } | null | undefined;
101706
+ origin?: {
101707
+ sourceFileName?: string | null | undefined;
101708
+ title?: string | null | undefined;
101709
+ previewUrl?: string | null | undefined;
101710
+ valid?: boolean | null | undefined;
101711
+ referenceId?: string | null | undefined;
101712
+ assetId?: string | null | undefined;
101713
+ assetScale?: number | null | undefined;
101714
+ width?: number | null | undefined;
101715
+ height?: number | null | undefined;
101716
+ } | null | undefined;
101717
+ };
101718
+ url?: string | undefined;
101719
+ } | null | undefined;
101720
+ minHeight?: number | null | undefined;
101721
+ };
101722
+ } | null | undefined;
101723
+ } | undefined;
101724
+ };
101725
+ pageBlocks: {
101726
+ id: string;
101727
+ data: {
101728
+ items: {
101729
+ id: string;
101730
+ props: Record<string, {
101731
+ value?: any;
101732
+ } & Record<string, any>>;
101733
+ linksTo?: {
101734
+ type: "DocumentationItem" | "PageHeading" | "Url";
101735
+ documentationItemId?: string | undefined;
101736
+ pageHeadingId?: string | undefined;
101737
+ url?: string | undefined;
101738
+ openInNewTab?: boolean | undefined;
101739
+ } | undefined;
101740
+ }[];
101741
+ packageId: string;
101742
+ indentLevel: number;
101743
+ variantId?: string | undefined;
101744
+ appearance?: {
101745
+ itemBackgroundColor?: {
101746
+ value: string;
101747
+ referencedTokenId?: string | undefined;
101748
+ } | undefined;
101749
+ numberOfColumns?: number | undefined;
101750
+ } | undefined;
101751
+ };
101752
+ }[];
101753
+ blockDefinitions: {
101754
+ id: string;
101755
+ name: string;
101756
+ description: string;
101757
+ item: {
101758
+ properties: {
101759
+ id: string;
101760
+ type: "Image" | "Color" | "Component" | "Token" | "Text" | "Number" | "Boolean" | "URL" | "Code" | "Divider" | "Table" | "Markdown" | "Asset" | "FigmaNode" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "AssetProperty" | "EmbedURL" | "CodeSandbox" | "Storybook";
101761
+ name: string;
101762
+ description?: string | undefined;
101763
+ options?: Record<string, any> | undefined;
101764
+ variantOptions?: Record<string, Record<string, any>> | undefined;
101765
+ }[];
101766
+ variants: {
101767
+ id: string;
101768
+ name: string;
101769
+ layout: {
101770
+ type: "Column" | "Row";
101771
+ gap?: "None" | "Small" | "Medium" | "Large" | undefined;
101772
+ columnAlign?: "Center" | "Start" | "End" | undefined;
101773
+ columnResizing?: "Fill" | "Hug" | undefined;
101774
+ } & {
101775
+ children: (string | PageBlockDefinitionLayout)[];
101776
+ };
101777
+ image?: string | undefined;
101778
+ description?: string | undefined;
101779
+ documentationLink?: string | undefined;
101780
+ maxColumns?: number | undefined;
101781
+ defaultColumns?: number | undefined;
101782
+ appearance?: {
101783
+ isBordered?: boolean | undefined;
101784
+ hasBackground?: boolean | undefined;
101785
+ isEditorPresentationDifferent?: boolean | undefined;
101786
+ } | undefined;
101787
+ }[];
101788
+ defaultVariantKey: string;
101789
+ appearance?: {
101790
+ isBordered?: boolean | undefined;
101791
+ hasBackground?: boolean | undefined;
101792
+ isEditorPresentationDifferent?: boolean | undefined;
101793
+ } | undefined;
101794
+ };
101795
+ category: "Text" | "Code" | "Embed" | "Figma" | "Layout" | "Media" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
101796
+ behavior: {
101797
+ dataType: "Component" | "Token" | "Asset" | "FigmaNode" | "Item";
101798
+ items?: {
101799
+ numberOfItems: number;
101800
+ allowLinks: boolean;
101801
+ } | undefined;
101802
+ entities?: {
101803
+ selectionType: "Group" | "Entity" | "EntityAndGroup";
101804
+ maxSelected: number;
101805
+ } | undefined;
101806
+ };
101807
+ editorOptions: {
101808
+ onboarding?: {
101809
+ helpText: string;
101810
+ documentationLink?: string | undefined;
101811
+ } | undefined;
101812
+ };
101813
+ icon?: {} | undefined;
101814
+ documentationLink?: string | undefined;
101815
+ searchKeywords?: string[] | undefined;
101816
+ appearance?: {
101817
+ isBordered?: boolean | undefined;
101818
+ hasBackground?: boolean | undefined;
101819
+ isEditorPresentationDifferent?: boolean | undefined;
101820
+ } | undefined;
101821
+ }[];
101822
+ }>;
101823
+ type DocumentationPageRoomInitialState = z.infer<typeof DocumentationPageRoomInitialState>;
97654
101824
 
97655
101825
  declare enum RoomTypeEnum {
97656
101826
  DocumentationPage = "documentation-page",
@@ -102149,4 +106319,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
102149
106319
  }>;
102150
106320
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
102151
106321
 
102152
- export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, 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, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, 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, type DeleteElementGroup, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, 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, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, 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, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, 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, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, 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, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, 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, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, 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, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, 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, type 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 UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mergeDesignSystemVersionRoomUpdates, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
106322
+ export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, 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, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, 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, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, 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, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, 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, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, 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, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, 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, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, 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, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageReference, 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, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, 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, type 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 UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };