@supernova-studio/model 0.55.28 → 0.55.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -29739,7 +29739,7 @@ declare function trimLeadingSlash(string: string): string;
29739
29739
  declare function trimTrailingSlash(string: string): string;
29740
29740
  declare function tryParseUrl(url: string): URL | null;
29741
29741
  declare function parseUrl(url: string): URL;
29742
- declare function mapByUnique<V, K>(items: V[], keyFn: (item: V) => K): Map<K, V>;
29742
+ declare function mapByUnique<V, K>(items: Iterable<V>, keyFn: (item: V) => K): Map<K, V>;
29743
29743
  declare function groupBy<V, K>(items: V[], keyFn: (item: V) => K): Map<K, V[]>;
29744
29744
  declare function filterNonNullish<T>(items: Nullish<T>[]): T[];
29745
29745
  declare function nonNullishFilter<T>(item: Nullish<T>): item is T;
@@ -38141,6 +38141,15 @@ declare const PageBlockBaseV1: z.ZodObject<{
38141
38141
  persistentId: z.ZodString;
38142
38142
  type: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "ComponentAssetGroup", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell", "Guidelines", "Guideline", "FigmaComponents", "FigmaComponentPropsTable"]>;
38143
38143
  numberOfColumns: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
38144
+ itemBackgroundColor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
38145
+ value: string;
38146
+ }, z.ZodTypeDef, {
38147
+ value: string;
38148
+ }>>>, {
38149
+ value: string;
38150
+ } | undefined, {
38151
+ value: string;
38152
+ } | null | undefined>;
38144
38153
  designObjectId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
38145
38154
  designObjectIds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
38146
38155
  tokenType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur", z.ZodTypeDef, "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur">>>, NonNullable<"Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur"> | undefined, "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined>;
@@ -39037,6 +39046,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
39037
39046
  } | undefined;
39038
39047
  imageAlt?: string | undefined;
39039
39048
  numberOfColumns?: number | undefined;
39049
+ itemBackgroundColor?: {
39050
+ value: string;
39051
+ } | undefined;
39040
39052
  designObjectId?: string | undefined;
39041
39053
  designObjectIds?: string[] | undefined;
39042
39054
  showNestedGroups?: boolean | undefined;
@@ -39277,6 +39289,9 @@ declare const PageBlockBaseV1: z.ZodObject<{
39277
39289
  } | null | undefined;
39278
39290
  imageAlt?: string | null | undefined;
39279
39291
  numberOfColumns?: number | null | undefined;
39292
+ itemBackgroundColor?: {
39293
+ value: string;
39294
+ } | null | undefined;
39280
39295
  designObjectId?: string | null | undefined;
39281
39296
  designObjectIds?: string[] | null | undefined;
39282
39297
  showNestedGroups?: boolean | null | undefined;
@@ -43129,6 +43144,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
43129
43144
  } | null | undefined;
43130
43145
  imageAlt?: string | null | undefined;
43131
43146
  numberOfColumns?: number | null | undefined;
43147
+ itemBackgroundColor?: {
43148
+ value: string;
43149
+ } | null | undefined;
43132
43150
  designObjectId?: string | null | undefined;
43133
43151
  designObjectIds?: string[] | null | undefined;
43134
43152
  showNestedGroups?: boolean | null | undefined;
@@ -43370,6 +43388,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
43370
43388
  } | null | undefined;
43371
43389
  imageAlt?: string | null | undefined;
43372
43390
  numberOfColumns?: number | null | undefined;
43391
+ itemBackgroundColor?: {
43392
+ value: string;
43393
+ } | null | undefined;
43373
43394
  designObjectId?: string | null | undefined;
43374
43395
  designObjectIds?: string[] | null | undefined;
43375
43396
  showNestedGroups?: boolean | null | undefined;
@@ -43957,6 +43978,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
43957
43978
  } | null | undefined;
43958
43979
  imageAlt?: string | null | undefined;
43959
43980
  numberOfColumns?: number | null | undefined;
43981
+ itemBackgroundColor?: {
43982
+ value: string;
43983
+ } | null | undefined;
43960
43984
  designObjectId?: string | null | undefined;
43961
43985
  designObjectIds?: string[] | null | undefined;
43962
43986
  showNestedGroups?: boolean | null | undefined;
@@ -44198,6 +44222,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
44198
44222
  } | null | undefined;
44199
44223
  imageAlt?: string | null | undefined;
44200
44224
  numberOfColumns?: number | null | undefined;
44225
+ itemBackgroundColor?: {
44226
+ value: string;
44227
+ } | null | undefined;
44201
44228
  designObjectId?: string | null | undefined;
44202
44229
  designObjectIds?: string[] | null | undefined;
44203
44230
  showNestedGroups?: boolean | null | undefined;
@@ -51185,6 +51212,9 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
51185
51212
  } | null | undefined;
51186
51213
  imageAlt?: string | null | undefined;
51187
51214
  numberOfColumns?: number | null | undefined;
51215
+ itemBackgroundColor?: {
51216
+ value: string;
51217
+ } | null | undefined;
51188
51218
  designObjectId?: string | null | undefined;
51189
51219
  designObjectIds?: string[] | null | undefined;
51190
51220
  showNestedGroups?: boolean | null | undefined;
@@ -51426,6 +51456,9 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
51426
51456
  } | null | undefined;
51427
51457
  imageAlt?: string | null | undefined;
51428
51458
  numberOfColumns?: number | null | undefined;
51459
+ itemBackgroundColor?: {
51460
+ value: string;
51461
+ } | null | undefined;
51429
51462
  designObjectId?: string | null | undefined;
51430
51463
  designObjectIds?: string[] | null | undefined;
51431
51464
  showNestedGroups?: boolean | null | undefined;
@@ -52013,6 +52046,9 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
52013
52046
  } | null | undefined;
52014
52047
  imageAlt?: string | null | undefined;
52015
52048
  numberOfColumns?: number | null | undefined;
52049
+ itemBackgroundColor?: {
52050
+ value: string;
52051
+ } | null | undefined;
52016
52052
  designObjectId?: string | null | undefined;
52017
52053
  designObjectIds?: string[] | null | undefined;
52018
52054
  showNestedGroups?: boolean | null | undefined;
@@ -52254,6 +52290,9 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
52254
52290
  } | null | undefined;
52255
52291
  imageAlt?: string | null | undefined;
52256
52292
  numberOfColumns?: number | null | undefined;
52293
+ itemBackgroundColor?: {
52294
+ value: string;
52295
+ } | null | undefined;
52257
52296
  designObjectId?: string | null | undefined;
52258
52297
  designObjectIds?: string[] | null | undefined;
52259
52298
  showNestedGroups?: boolean | null | undefined;
@@ -52660,6 +52699,9 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
52660
52699
  } | null | undefined;
52661
52700
  imageAlt?: string | null | undefined;
52662
52701
  numberOfColumns?: number | null | undefined;
52702
+ itemBackgroundColor?: {
52703
+ value: string;
52704
+ } | null | undefined;
52663
52705
  designObjectId?: string | null | undefined;
52664
52706
  designObjectIds?: string[] | null | undefined;
52665
52707
  showNestedGroups?: boolean | null | undefined;
@@ -52901,6 +52943,9 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
52901
52943
  } | null | undefined;
52902
52944
  imageAlt?: string | null | undefined;
52903
52945
  numberOfColumns?: number | null | undefined;
52946
+ itemBackgroundColor?: {
52947
+ value: string;
52948
+ } | null | undefined;
52904
52949
  designObjectId?: string | null | undefined;
52905
52950
  designObjectIds?: string[] | null | undefined;
52906
52951
  showNestedGroups?: boolean | null | undefined;
@@ -54202,6 +54247,9 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
54202
54247
  } | null | undefined;
54203
54248
  imageAlt?: string | null | undefined;
54204
54249
  numberOfColumns?: number | null | undefined;
54250
+ itemBackgroundColor?: {
54251
+ value: string;
54252
+ } | null | undefined;
54205
54253
  designObjectId?: string | null | undefined;
54206
54254
  designObjectIds?: string[] | null | undefined;
54207
54255
  showNestedGroups?: boolean | null | undefined;
@@ -54443,6 +54491,9 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
54443
54491
  } | null | undefined;
54444
54492
  imageAlt?: string | null | undefined;
54445
54493
  numberOfColumns?: number | null | undefined;
54494
+ itemBackgroundColor?: {
54495
+ value: string;
54496
+ } | null | undefined;
54446
54497
  designObjectId?: string | null | undefined;
54447
54498
  designObjectIds?: string[] | null | undefined;
54448
54499
  showNestedGroups?: boolean | null | undefined;
@@ -54752,6 +54803,9 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
54752
54803
  } | null | undefined;
54753
54804
  imageAlt?: string | null | undefined;
54754
54805
  numberOfColumns?: number | null | undefined;
54806
+ itemBackgroundColor?: {
54807
+ value: string;
54808
+ } | null | undefined;
54755
54809
  designObjectId?: string | null | undefined;
54756
54810
  designObjectIds?: string[] | null | undefined;
54757
54811
  showNestedGroups?: boolean | null | undefined;
@@ -54993,6 +55047,9 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
54993
55047
  } | null | undefined;
54994
55048
  imageAlt?: string | null | undefined;
54995
55049
  numberOfColumns?: number | null | undefined;
55050
+ itemBackgroundColor?: {
55051
+ value: string;
55052
+ } | null | undefined;
54996
55053
  designObjectId?: string | null | undefined;
54997
55054
  designObjectIds?: string[] | null | undefined;
54998
55055
  showNestedGroups?: boolean | null | undefined;
@@ -55325,6 +55382,9 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
55325
55382
  } | null | undefined;
55326
55383
  imageAlt?: string | null | undefined;
55327
55384
  numberOfColumns?: number | null | undefined;
55385
+ itemBackgroundColor?: {
55386
+ value: string;
55387
+ } | null | undefined;
55328
55388
  designObjectId?: string | null | undefined;
55329
55389
  designObjectIds?: string[] | null | undefined;
55330
55390
  showNestedGroups?: boolean | null | undefined;
@@ -55566,6 +55626,9 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
55566
55626
  } | null | undefined;
55567
55627
  imageAlt?: string | null | undefined;
55568
55628
  numberOfColumns?: number | null | undefined;
55629
+ itemBackgroundColor?: {
55630
+ value: string;
55631
+ } | null | undefined;
55569
55632
  designObjectId?: string | null | undefined;
55570
55633
  designObjectIds?: string[] | null | undefined;
55571
55634
  showNestedGroups?: boolean | null | undefined;
@@ -57631,7 +57694,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
57631
57694
  type PageBlockEditorModelV2 = z.infer<typeof PageBlockEditorModelV2>;
57632
57695
 
57633
57696
  type CreateDesignElement = DbCreateInputOmit<DesignElement>;
57634
- type UpdateDesignElement = OmitStrict<DbUpdate<DesignElement>, "brandPersistentId" | "childType" | "designSystemVersionId" | "shortPersistentId" | "type">;
57697
+ type UpdateDesignElement = OmitStrict<DbUpdate<DesignElement>, "brandPersistentId" | "childType" | "designSystemVersionId" | "shortPersistentId">;
57635
57698
  declare const tokenElementTypes: DesignTokenType[];
57636
57699
  declare const DesignTokenType: z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>;
57637
57700
  type DesignTokenType = z.infer<typeof DesignTokenType>;
@@ -74486,6 +74549,9 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
74486
74549
  } | null | undefined;
74487
74550
  imageAlt?: string | null | undefined;
74488
74551
  numberOfColumns?: number | null | undefined;
74552
+ itemBackgroundColor?: {
74553
+ value: string;
74554
+ } | null | undefined;
74489
74555
  designObjectId?: string | null | undefined;
74490
74556
  designObjectIds?: string[] | null | undefined;
74491
74557
  showNestedGroups?: boolean | null | undefined;
@@ -74727,6 +74793,9 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
74727
74793
  } | null | undefined;
74728
74794
  imageAlt?: string | null | undefined;
74729
74795
  numberOfColumns?: number | null | undefined;
74796
+ itemBackgroundColor?: {
74797
+ value: string;
74798
+ } | null | undefined;
74730
74799
  designObjectId?: string | null | undefined;
74731
74800
  designObjectIds?: string[] | null | undefined;
74732
74801
  showNestedGroups?: boolean | null | undefined;
@@ -75036,6 +75105,9 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
75036
75105
  } | null | undefined;
75037
75106
  imageAlt?: string | null | undefined;
75038
75107
  numberOfColumns?: number | null | undefined;
75108
+ itemBackgroundColor?: {
75109
+ value: string;
75110
+ } | null | undefined;
75039
75111
  designObjectId?: string | null | undefined;
75040
75112
  designObjectIds?: string[] | null | undefined;
75041
75113
  showNestedGroups?: boolean | null | undefined;
@@ -75277,6 +75349,9 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
75277
75349
  } | null | undefined;
75278
75350
  imageAlt?: string | null | undefined;
75279
75351
  numberOfColumns?: number | null | undefined;
75352
+ itemBackgroundColor?: {
75353
+ value: string;
75354
+ } | null | undefined;
75280
75355
  designObjectId?: string | null | undefined;
75281
75356
  designObjectIds?: string[] | null | undefined;
75282
75357
  showNestedGroups?: boolean | null | undefined;
@@ -75609,6 +75684,9 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
75609
75684
  } | null | undefined;
75610
75685
  imageAlt?: string | null | undefined;
75611
75686
  numberOfColumns?: number | null | undefined;
75687
+ itemBackgroundColor?: {
75688
+ value: string;
75689
+ } | null | undefined;
75612
75690
  designObjectId?: string | null | undefined;
75613
75691
  designObjectIds?: string[] | null | undefined;
75614
75692
  showNestedGroups?: boolean | null | undefined;
@@ -75850,6 +75928,9 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
75850
75928
  } | null | undefined;
75851
75929
  imageAlt?: string | null | undefined;
75852
75930
  numberOfColumns?: number | null | undefined;
75931
+ itemBackgroundColor?: {
75932
+ value: string;
75933
+ } | null | undefined;
75853
75934
  designObjectId?: string | null | undefined;
75854
75935
  designObjectIds?: string[] | null | undefined;
75855
75936
  showNestedGroups?: boolean | null | undefined;
@@ -76211,6 +76292,9 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
76211
76292
  } | null | undefined;
76212
76293
  imageAlt?: string | null | undefined;
76213
76294
  numberOfColumns?: number | null | undefined;
76295
+ itemBackgroundColor?: {
76296
+ value: string;
76297
+ } | null | undefined;
76214
76298
  designObjectId?: string | null | undefined;
76215
76299
  designObjectIds?: string[] | null | undefined;
76216
76300
  showNestedGroups?: boolean | null | undefined;
@@ -76452,6 +76536,9 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
76452
76536
  } | null | undefined;
76453
76537
  imageAlt?: string | null | undefined;
76454
76538
  numberOfColumns?: number | null | undefined;
76539
+ itemBackgroundColor?: {
76540
+ value: string;
76541
+ } | null | undefined;
76455
76542
  designObjectId?: string | null | undefined;
76456
76543
  designObjectIds?: string[] | null | undefined;
76457
76544
  showNestedGroups?: boolean | null | undefined;
@@ -146891,6 +146978,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
146891
146978
  } | null | undefined;
146892
146979
  imageAlt?: string | null | undefined;
146893
146980
  numberOfColumns?: number | null | undefined;
146981
+ itemBackgroundColor?: {
146982
+ value: string;
146983
+ } | null | undefined;
146894
146984
  designObjectId?: string | null | undefined;
146895
146985
  designObjectIds?: string[] | null | undefined;
146896
146986
  showNestedGroups?: boolean | null | undefined;
@@ -147132,6 +147222,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
147132
147222
  } | null | undefined;
147133
147223
  imageAlt?: string | null | undefined;
147134
147224
  numberOfColumns?: number | null | undefined;
147225
+ itemBackgroundColor?: {
147226
+ value: string;
147227
+ } | null | undefined;
147135
147228
  designObjectId?: string | null | undefined;
147136
147229
  designObjectIds?: string[] | null | undefined;
147137
147230
  showNestedGroups?: boolean | null | undefined;
@@ -147441,6 +147534,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
147441
147534
  } | null | undefined;
147442
147535
  imageAlt?: string | null | undefined;
147443
147536
  numberOfColumns?: number | null | undefined;
147537
+ itemBackgroundColor?: {
147538
+ value: string;
147539
+ } | null | undefined;
147444
147540
  designObjectId?: string | null | undefined;
147445
147541
  designObjectIds?: string[] | null | undefined;
147446
147542
  showNestedGroups?: boolean | null | undefined;
@@ -147682,6 +147778,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
147682
147778
  } | null | undefined;
147683
147779
  imageAlt?: string | null | undefined;
147684
147780
  numberOfColumns?: number | null | undefined;
147781
+ itemBackgroundColor?: {
147782
+ value: string;
147783
+ } | null | undefined;
147685
147784
  designObjectId?: string | null | undefined;
147686
147785
  designObjectIds?: string[] | null | undefined;
147687
147786
  showNestedGroups?: boolean | null | undefined;
@@ -148014,6 +148113,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
148014
148113
  } | null | undefined;
148015
148114
  imageAlt?: string | null | undefined;
148016
148115
  numberOfColumns?: number | null | undefined;
148116
+ itemBackgroundColor?: {
148117
+ value: string;
148118
+ } | null | undefined;
148017
148119
  designObjectId?: string | null | undefined;
148018
148120
  designObjectIds?: string[] | null | undefined;
148019
148121
  showNestedGroups?: boolean | null | undefined;
@@ -148255,6 +148357,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
148255
148357
  } | null | undefined;
148256
148358
  imageAlt?: string | null | undefined;
148257
148359
  numberOfColumns?: number | null | undefined;
148360
+ itemBackgroundColor?: {
148361
+ value: string;
148362
+ } | null | undefined;
148258
148363
  designObjectId?: string | null | undefined;
148259
148364
  designObjectIds?: string[] | null | undefined;
148260
148365
  showNestedGroups?: boolean | null | undefined;
@@ -148998,6 +149103,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
148998
149103
  } | null | undefined;
148999
149104
  imageAlt?: string | null | undefined;
149000
149105
  numberOfColumns?: number | null | undefined;
149106
+ itemBackgroundColor?: {
149107
+ value: string;
149108
+ } | null | undefined;
149001
149109
  designObjectId?: string | null | undefined;
149002
149110
  designObjectIds?: string[] | null | undefined;
149003
149111
  showNestedGroups?: boolean | null | undefined;
@@ -149239,6 +149347,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
149239
149347
  } | null | undefined;
149240
149348
  imageAlt?: string | null | undefined;
149241
149349
  numberOfColumns?: number | null | undefined;
149350
+ itemBackgroundColor?: {
149351
+ value: string;
149352
+ } | null | undefined;
149242
149353
  designObjectId?: string | null | undefined;
149243
149354
  designObjectIds?: string[] | null | undefined;
149244
149355
  showNestedGroups?: boolean | null | undefined;
@@ -149548,6 +149659,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
149548
149659
  } | null | undefined;
149549
149660
  imageAlt?: string | null | undefined;
149550
149661
  numberOfColumns?: number | null | undefined;
149662
+ itemBackgroundColor?: {
149663
+ value: string;
149664
+ } | null | undefined;
149551
149665
  designObjectId?: string | null | undefined;
149552
149666
  designObjectIds?: string[] | null | undefined;
149553
149667
  showNestedGroups?: boolean | null | undefined;
@@ -149789,6 +149903,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
149789
149903
  } | null | undefined;
149790
149904
  imageAlt?: string | null | undefined;
149791
149905
  numberOfColumns?: number | null | undefined;
149906
+ itemBackgroundColor?: {
149907
+ value: string;
149908
+ } | null | undefined;
149792
149909
  designObjectId?: string | null | undefined;
149793
149910
  designObjectIds?: string[] | null | undefined;
149794
149911
  showNestedGroups?: boolean | null | undefined;
@@ -150121,6 +150238,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
150121
150238
  } | null | undefined;
150122
150239
  imageAlt?: string | null | undefined;
150123
150240
  numberOfColumns?: number | null | undefined;
150241
+ itemBackgroundColor?: {
150242
+ value: string;
150243
+ } | null | undefined;
150124
150244
  designObjectId?: string | null | undefined;
150125
150245
  designObjectIds?: string[] | null | undefined;
150126
150246
  showNestedGroups?: boolean | null | undefined;
@@ -150362,6 +150482,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
150362
150482
  } | null | undefined;
150363
150483
  imageAlt?: string | null | undefined;
150364
150484
  numberOfColumns?: number | null | undefined;
150485
+ itemBackgroundColor?: {
150486
+ value: string;
150487
+ } | null | undefined;
150365
150488
  designObjectId?: string | null | undefined;
150366
150489
  designObjectIds?: string[] | null | undefined;
150367
150490
  showNestedGroups?: boolean | null | undefined;
@@ -150723,6 +150846,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
150723
150846
  } | null | undefined;
150724
150847
  imageAlt?: string | null | undefined;
150725
150848
  numberOfColumns?: number | null | undefined;
150849
+ itemBackgroundColor?: {
150850
+ value: string;
150851
+ } | null | undefined;
150726
150852
  designObjectId?: string | null | undefined;
150727
150853
  designObjectIds?: string[] | null | undefined;
150728
150854
  showNestedGroups?: boolean | null | undefined;
@@ -150964,6 +151090,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
150964
151090
  } | null | undefined;
150965
151091
  imageAlt?: string | null | undefined;
150966
151092
  numberOfColumns?: number | null | undefined;
151093
+ itemBackgroundColor?: {
151094
+ value: string;
151095
+ } | null | undefined;
150967
151096
  designObjectId?: string | null | undefined;
150968
151097
  designObjectIds?: string[] | null | undefined;
150969
151098
  showNestedGroups?: boolean | null | undefined;
@@ -152068,6 +152197,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
152068
152197
  } | null | undefined;
152069
152198
  imageAlt?: string | null | undefined;
152070
152199
  numberOfColumns?: number | null | undefined;
152200
+ itemBackgroundColor?: {
152201
+ value: string;
152202
+ } | null | undefined;
152071
152203
  designObjectId?: string | null | undefined;
152072
152204
  designObjectIds?: string[] | null | undefined;
152073
152205
  showNestedGroups?: boolean | null | undefined;
@@ -152309,6 +152441,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
152309
152441
  } | null | undefined;
152310
152442
  imageAlt?: string | null | undefined;
152311
152443
  numberOfColumns?: number | null | undefined;
152444
+ itemBackgroundColor?: {
152445
+ value: string;
152446
+ } | null | undefined;
152312
152447
  designObjectId?: string | null | undefined;
152313
152448
  designObjectIds?: string[] | null | undefined;
152314
152449
  showNestedGroups?: boolean | null | undefined;
@@ -152607,6 +152742,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
152607
152742
  } | null | undefined;
152608
152743
  imageAlt?: string | null | undefined;
152609
152744
  numberOfColumns?: number | null | undefined;
152745
+ itemBackgroundColor?: {
152746
+ value: string;
152747
+ } | null | undefined;
152610
152748
  designObjectId?: string | null | undefined;
152611
152749
  designObjectIds?: string[] | null | undefined;
152612
152750
  showNestedGroups?: boolean | null | undefined;
@@ -152848,6 +152986,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
152848
152986
  } | null | undefined;
152849
152987
  imageAlt?: string | null | undefined;
152850
152988
  numberOfColumns?: number | null | undefined;
152989
+ itemBackgroundColor?: {
152990
+ value: string;
152991
+ } | null | undefined;
152851
152992
  designObjectId?: string | null | undefined;
152852
152993
  designObjectIds?: string[] | null | undefined;
152853
152994
  showNestedGroups?: boolean | null | undefined;
@@ -153341,6 +153482,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
153341
153482
  } | null | undefined;
153342
153483
  imageAlt?: string | null | undefined;
153343
153484
  numberOfColumns?: number | null | undefined;
153485
+ itemBackgroundColor?: {
153486
+ value: string;
153487
+ } | null | undefined;
153344
153488
  designObjectId?: string | null | undefined;
153345
153489
  designObjectIds?: string[] | null | undefined;
153346
153490
  showNestedGroups?: boolean | null | undefined;
@@ -153582,6 +153726,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
153582
153726
  } | null | undefined;
153583
153727
  imageAlt?: string | null | undefined;
153584
153728
  numberOfColumns?: number | null | undefined;
153729
+ itemBackgroundColor?: {
153730
+ value: string;
153731
+ } | null | undefined;
153585
153732
  designObjectId?: string | null | undefined;
153586
153733
  designObjectIds?: string[] | null | undefined;
153587
153734
  showNestedGroups?: boolean | null | undefined;
@@ -153891,6 +154038,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
153891
154038
  } | null | undefined;
153892
154039
  imageAlt?: string | null | undefined;
153893
154040
  numberOfColumns?: number | null | undefined;
154041
+ itemBackgroundColor?: {
154042
+ value: string;
154043
+ } | null | undefined;
153894
154044
  designObjectId?: string | null | undefined;
153895
154045
  designObjectIds?: string[] | null | undefined;
153896
154046
  showNestedGroups?: boolean | null | undefined;
@@ -154132,6 +154282,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
154132
154282
  } | null | undefined;
154133
154283
  imageAlt?: string | null | undefined;
154134
154284
  numberOfColumns?: number | null | undefined;
154285
+ itemBackgroundColor?: {
154286
+ value: string;
154287
+ } | null | undefined;
154135
154288
  designObjectId?: string | null | undefined;
154136
154289
  designObjectIds?: string[] | null | undefined;
154137
154290
  showNestedGroups?: boolean | null | undefined;
@@ -154464,6 +154617,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
154464
154617
  } | null | undefined;
154465
154618
  imageAlt?: string | null | undefined;
154466
154619
  numberOfColumns?: number | null | undefined;
154620
+ itemBackgroundColor?: {
154621
+ value: string;
154622
+ } | null | undefined;
154467
154623
  designObjectId?: string | null | undefined;
154468
154624
  designObjectIds?: string[] | null | undefined;
154469
154625
  showNestedGroups?: boolean | null | undefined;
@@ -154705,6 +154861,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
154705
154861
  } | null | undefined;
154706
154862
  imageAlt?: string | null | undefined;
154707
154863
  numberOfColumns?: number | null | undefined;
154864
+ itemBackgroundColor?: {
154865
+ value: string;
154866
+ } | null | undefined;
154708
154867
  designObjectId?: string | null | undefined;
154709
154868
  designObjectIds?: string[] | null | undefined;
154710
154869
  showNestedGroups?: boolean | null | undefined;
@@ -155450,6 +155609,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
155450
155609
  } | null | undefined;
155451
155610
  imageAlt?: string | null | undefined;
155452
155611
  numberOfColumns?: number | null | undefined;
155612
+ itemBackgroundColor?: {
155613
+ value: string;
155614
+ } | null | undefined;
155453
155615
  designObjectId?: string | null | undefined;
155454
155616
  designObjectIds?: string[] | null | undefined;
155455
155617
  showNestedGroups?: boolean | null | undefined;
@@ -155691,6 +155853,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
155691
155853
  } | null | undefined;
155692
155854
  imageAlt?: string | null | undefined;
155693
155855
  numberOfColumns?: number | null | undefined;
155856
+ itemBackgroundColor?: {
155857
+ value: string;
155858
+ } | null | undefined;
155694
155859
  designObjectId?: string | null | undefined;
155695
155860
  designObjectIds?: string[] | null | undefined;
155696
155861
  showNestedGroups?: boolean | null | undefined;
@@ -156000,6 +156165,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
156000
156165
  } | null | undefined;
156001
156166
  imageAlt?: string | null | undefined;
156002
156167
  numberOfColumns?: number | null | undefined;
156168
+ itemBackgroundColor?: {
156169
+ value: string;
156170
+ } | null | undefined;
156003
156171
  designObjectId?: string | null | undefined;
156004
156172
  designObjectIds?: string[] | null | undefined;
156005
156173
  showNestedGroups?: boolean | null | undefined;
@@ -156241,6 +156409,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
156241
156409
  } | null | undefined;
156242
156410
  imageAlt?: string | null | undefined;
156243
156411
  numberOfColumns?: number | null | undefined;
156412
+ itemBackgroundColor?: {
156413
+ value: string;
156414
+ } | null | undefined;
156244
156415
  designObjectId?: string | null | undefined;
156245
156416
  designObjectIds?: string[] | null | undefined;
156246
156417
  showNestedGroups?: boolean | null | undefined;
@@ -156573,6 +156744,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
156573
156744
  } | null | undefined;
156574
156745
  imageAlt?: string | null | undefined;
156575
156746
  numberOfColumns?: number | null | undefined;
156747
+ itemBackgroundColor?: {
156748
+ value: string;
156749
+ } | null | undefined;
156576
156750
  designObjectId?: string | null | undefined;
156577
156751
  designObjectIds?: string[] | null | undefined;
156578
156752
  showNestedGroups?: boolean | null | undefined;
@@ -156814,6 +156988,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
156814
156988
  } | null | undefined;
156815
156989
  imageAlt?: string | null | undefined;
156816
156990
  numberOfColumns?: number | null | undefined;
156991
+ itemBackgroundColor?: {
156992
+ value: string;
156993
+ } | null | undefined;
156817
156994
  designObjectId?: string | null | undefined;
156818
156995
  designObjectIds?: string[] | null | undefined;
156819
156996
  showNestedGroups?: boolean | null | undefined;
@@ -157175,6 +157352,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
157175
157352
  } | null | undefined;
157176
157353
  imageAlt?: string | null | undefined;
157177
157354
  numberOfColumns?: number | null | undefined;
157355
+ itemBackgroundColor?: {
157356
+ value: string;
157357
+ } | null | undefined;
157178
157358
  designObjectId?: string | null | undefined;
157179
157359
  designObjectIds?: string[] | null | undefined;
157180
157360
  showNestedGroups?: boolean | null | undefined;
@@ -157416,6 +157596,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
157416
157596
  } | null | undefined;
157417
157597
  imageAlt?: string | null | undefined;
157418
157598
  numberOfColumns?: number | null | undefined;
157599
+ itemBackgroundColor?: {
157600
+ value: string;
157601
+ } | null | undefined;
157419
157602
  designObjectId?: string | null | undefined;
157420
157603
  designObjectIds?: string[] | null | undefined;
157421
157604
  showNestedGroups?: boolean | null | undefined;
@@ -158508,6 +158691,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
158508
158691
  } | null | undefined;
158509
158692
  imageAlt?: string | null | undefined;
158510
158693
  numberOfColumns?: number | null | undefined;
158694
+ itemBackgroundColor?: {
158695
+ value: string;
158696
+ } | null | undefined;
158511
158697
  designObjectId?: string | null | undefined;
158512
158698
  designObjectIds?: string[] | null | undefined;
158513
158699
  showNestedGroups?: boolean | null | undefined;
@@ -158749,6 +158935,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
158749
158935
  } | null | undefined;
158750
158936
  imageAlt?: string | null | undefined;
158751
158937
  numberOfColumns?: number | null | undefined;
158938
+ itemBackgroundColor?: {
158939
+ value: string;
158940
+ } | null | undefined;
158752
158941
  designObjectId?: string | null | undefined;
158753
158942
  designObjectIds?: string[] | null | undefined;
158754
158943
  showNestedGroups?: boolean | null | undefined;
@@ -159047,6 +159236,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
159047
159236
  } | null | undefined;
159048
159237
  imageAlt?: string | null | undefined;
159049
159238
  numberOfColumns?: number | null | undefined;
159239
+ itemBackgroundColor?: {
159240
+ value: string;
159241
+ } | null | undefined;
159050
159242
  designObjectId?: string | null | undefined;
159051
159243
  designObjectIds?: string[] | null | undefined;
159052
159244
  showNestedGroups?: boolean | null | undefined;
@@ -159288,6 +159480,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
159288
159480
  } | null | undefined;
159289
159481
  imageAlt?: string | null | undefined;
159290
159482
  numberOfColumns?: number | null | undefined;
159483
+ itemBackgroundColor?: {
159484
+ value: string;
159485
+ } | null | undefined;
159291
159486
  designObjectId?: string | null | undefined;
159292
159487
  designObjectIds?: string[] | null | undefined;
159293
159488
  showNestedGroups?: boolean | null | undefined;
@@ -160964,6 +161159,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
160964
161159
  } | null | undefined;
160965
161160
  imageAlt?: string | null | undefined;
160966
161161
  numberOfColumns?: number | null | undefined;
161162
+ itemBackgroundColor?: {
161163
+ value: string;
161164
+ } | null | undefined;
160967
161165
  designObjectId?: string | null | undefined;
160968
161166
  designObjectIds?: string[] | null | undefined;
160969
161167
  showNestedGroups?: boolean | null | undefined;
@@ -161205,6 +161403,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
161205
161403
  } | null | undefined;
161206
161404
  imageAlt?: string | null | undefined;
161207
161405
  numberOfColumns?: number | null | undefined;
161406
+ itemBackgroundColor?: {
161407
+ value: string;
161408
+ } | null | undefined;
161208
161409
  designObjectId?: string | null | undefined;
161209
161410
  designObjectIds?: string[] | null | undefined;
161210
161411
  showNestedGroups?: boolean | null | undefined;
@@ -161514,6 +161715,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
161514
161715
  } | null | undefined;
161515
161716
  imageAlt?: string | null | undefined;
161516
161717
  numberOfColumns?: number | null | undefined;
161718
+ itemBackgroundColor?: {
161719
+ value: string;
161720
+ } | null | undefined;
161517
161721
  designObjectId?: string | null | undefined;
161518
161722
  designObjectIds?: string[] | null | undefined;
161519
161723
  showNestedGroups?: boolean | null | undefined;
@@ -161755,6 +161959,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
161755
161959
  } | null | undefined;
161756
161960
  imageAlt?: string | null | undefined;
161757
161961
  numberOfColumns?: number | null | undefined;
161962
+ itemBackgroundColor?: {
161963
+ value: string;
161964
+ } | null | undefined;
161758
161965
  designObjectId?: string | null | undefined;
161759
161966
  designObjectIds?: string[] | null | undefined;
161760
161967
  showNestedGroups?: boolean | null | undefined;
@@ -162087,6 +162294,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
162087
162294
  } | null | undefined;
162088
162295
  imageAlt?: string | null | undefined;
162089
162296
  numberOfColumns?: number | null | undefined;
162297
+ itemBackgroundColor?: {
162298
+ value: string;
162299
+ } | null | undefined;
162090
162300
  designObjectId?: string | null | undefined;
162091
162301
  designObjectIds?: string[] | null | undefined;
162092
162302
  showNestedGroups?: boolean | null | undefined;
@@ -162328,6 +162538,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
162328
162538
  } | null | undefined;
162329
162539
  imageAlt?: string | null | undefined;
162330
162540
  numberOfColumns?: number | null | undefined;
162541
+ itemBackgroundColor?: {
162542
+ value: string;
162543
+ } | null | undefined;
162331
162544
  designObjectId?: string | null | undefined;
162332
162545
  designObjectIds?: string[] | null | undefined;
162333
162546
  showNestedGroups?: boolean | null | undefined;
@@ -163054,6 +163267,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
163054
163267
  } | null | undefined;
163055
163268
  imageAlt?: string | null | undefined;
163056
163269
  numberOfColumns?: number | null | undefined;
163270
+ itemBackgroundColor?: {
163271
+ value: string;
163272
+ } | null | undefined;
163057
163273
  designObjectId?: string | null | undefined;
163058
163274
  designObjectIds?: string[] | null | undefined;
163059
163275
  showNestedGroups?: boolean | null | undefined;
@@ -163295,6 +163511,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
163295
163511
  } | null | undefined;
163296
163512
  imageAlt?: string | null | undefined;
163297
163513
  numberOfColumns?: number | null | undefined;
163514
+ itemBackgroundColor?: {
163515
+ value: string;
163516
+ } | null | undefined;
163298
163517
  designObjectId?: string | null | undefined;
163299
163518
  designObjectIds?: string[] | null | undefined;
163300
163519
  showNestedGroups?: boolean | null | undefined;
@@ -163757,6 +163976,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
163757
163976
  } | null | undefined;
163758
163977
  imageAlt?: string | null | undefined;
163759
163978
  numberOfColumns?: number | null | undefined;
163979
+ itemBackgroundColor?: {
163980
+ value: string;
163981
+ } | null | undefined;
163760
163982
  designObjectId?: string | null | undefined;
163761
163983
  designObjectIds?: string[] | null | undefined;
163762
163984
  showNestedGroups?: boolean | null | undefined;
@@ -163998,6 +164220,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
163998
164220
  } | null | undefined;
163999
164221
  imageAlt?: string | null | undefined;
164000
164222
  numberOfColumns?: number | null | undefined;
164223
+ itemBackgroundColor?: {
164224
+ value: string;
164225
+ } | null | undefined;
164001
164226
  designObjectId?: string | null | undefined;
164002
164227
  designObjectIds?: string[] | null | undefined;
164003
164228
  showNestedGroups?: boolean | null | undefined;
@@ -164307,6 +164532,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
164307
164532
  } | null | undefined;
164308
164533
  imageAlt?: string | null | undefined;
164309
164534
  numberOfColumns?: number | null | undefined;
164535
+ itemBackgroundColor?: {
164536
+ value: string;
164537
+ } | null | undefined;
164310
164538
  designObjectId?: string | null | undefined;
164311
164539
  designObjectIds?: string[] | null | undefined;
164312
164540
  showNestedGroups?: boolean | null | undefined;
@@ -164548,6 +164776,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
164548
164776
  } | null | undefined;
164549
164777
  imageAlt?: string | null | undefined;
164550
164778
  numberOfColumns?: number | null | undefined;
164779
+ itemBackgroundColor?: {
164780
+ value: string;
164781
+ } | null | undefined;
164551
164782
  designObjectId?: string | null | undefined;
164552
164783
  designObjectIds?: string[] | null | undefined;
164553
164784
  showNestedGroups?: boolean | null | undefined;
@@ -164880,6 +165111,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
164880
165111
  } | null | undefined;
164881
165112
  imageAlt?: string | null | undefined;
164882
165113
  numberOfColumns?: number | null | undefined;
165114
+ itemBackgroundColor?: {
165115
+ value: string;
165116
+ } | null | undefined;
164883
165117
  designObjectId?: string | null | undefined;
164884
165118
  designObjectIds?: string[] | null | undefined;
164885
165119
  showNestedGroups?: boolean | null | undefined;
@@ -165121,6 +165355,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
165121
165355
  } | null | undefined;
165122
165356
  imageAlt?: string | null | undefined;
165123
165357
  numberOfColumns?: number | null | undefined;
165358
+ itemBackgroundColor?: {
165359
+ value: string;
165360
+ } | null | undefined;
165124
165361
  designObjectId?: string | null | undefined;
165125
165362
  designObjectIds?: string[] | null | undefined;
165126
165363
  showNestedGroups?: boolean | null | undefined;
@@ -167161,6 +167398,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
167161
167398
  } | null | undefined;
167162
167399
  imageAlt?: string | null | undefined;
167163
167400
  numberOfColumns?: number | null | undefined;
167401
+ itemBackgroundColor?: {
167402
+ value: string;
167403
+ } | null | undefined;
167164
167404
  designObjectId?: string | null | undefined;
167165
167405
  designObjectIds?: string[] | null | undefined;
167166
167406
  showNestedGroups?: boolean | null | undefined;
@@ -167402,6 +167642,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
167402
167642
  } | null | undefined;
167403
167643
  imageAlt?: string | null | undefined;
167404
167644
  numberOfColumns?: number | null | undefined;
167645
+ itemBackgroundColor?: {
167646
+ value: string;
167647
+ } | null | undefined;
167405
167648
  designObjectId?: string | null | undefined;
167406
167649
  designObjectIds?: string[] | null | undefined;
167407
167650
  showNestedGroups?: boolean | null | undefined;
@@ -168026,6 +168269,9 @@ declare const RestoredDocumentationPage: z.ZodObject<{
168026
168269
  } | null | undefined;
168027
168270
  imageAlt?: string | null | undefined;
168028
168271
  numberOfColumns?: number | null | undefined;
168272
+ itemBackgroundColor?: {
168273
+ value: string;
168274
+ } | null | undefined;
168029
168275
  designObjectId?: string | null | undefined;
168030
168276
  designObjectIds?: string[] | null | undefined;
168031
168277
  showNestedGroups?: boolean | null | undefined;
@@ -168267,6 +168513,9 @@ declare const RestoredDocumentationPage: z.ZodObject<{
168267
168513
  } | null | undefined;
168268
168514
  imageAlt?: string | null | undefined;
168269
168515
  numberOfColumns?: number | null | undefined;
168516
+ itemBackgroundColor?: {
168517
+ value: string;
168518
+ } | null | undefined;
168270
168519
  designObjectId?: string | null | undefined;
168271
168520
  designObjectIds?: string[] | null | undefined;
168272
168521
  showNestedGroups?: boolean | null | undefined;
@@ -168576,6 +168825,9 @@ declare const RestoredDocumentationPage: z.ZodObject<{
168576
168825
  } | null | undefined;
168577
168826
  imageAlt?: string | null | undefined;
168578
168827
  numberOfColumns?: number | null | undefined;
168828
+ itemBackgroundColor?: {
168829
+ value: string;
168830
+ } | null | undefined;
168579
168831
  designObjectId?: string | null | undefined;
168580
168832
  designObjectIds?: string[] | null | undefined;
168581
168833
  showNestedGroups?: boolean | null | undefined;
@@ -168817,6 +169069,9 @@ declare const RestoredDocumentationPage: z.ZodObject<{
168817
169069
  } | null | undefined;
168818
169070
  imageAlt?: string | null | undefined;
168819
169071
  numberOfColumns?: number | null | undefined;
169072
+ itemBackgroundColor?: {
169073
+ value: string;
169074
+ } | null | undefined;
168820
169075
  designObjectId?: string | null | undefined;
168821
169076
  designObjectIds?: string[] | null | undefined;
168822
169077
  showNestedGroups?: boolean | null | undefined;
@@ -169149,6 +169404,9 @@ declare const RestoredDocumentationPage: z.ZodObject<{
169149
169404
  } | null | undefined;
169150
169405
  imageAlt?: string | null | undefined;
169151
169406
  numberOfColumns?: number | null | undefined;
169407
+ itemBackgroundColor?: {
169408
+ value: string;
169409
+ } | null | undefined;
169152
169410
  designObjectId?: string | null | undefined;
169153
169411
  designObjectIds?: string[] | null | undefined;
169154
169412
  showNestedGroups?: boolean | null | undefined;
@@ -169390,6 +169648,9 @@ declare const RestoredDocumentationPage: z.ZodObject<{
169390
169648
  } | null | undefined;
169391
169649
  imageAlt?: string | null | undefined;
169392
169650
  numberOfColumns?: number | null | undefined;
169651
+ itemBackgroundColor?: {
169652
+ value: string;
169653
+ } | null | undefined;
169393
169654
  designObjectId?: string | null | undefined;
169394
169655
  designObjectIds?: string[] | null | undefined;
169395
169656
  showNestedGroups?: boolean | null | undefined;
@@ -171110,6 +171371,9 @@ declare const RestoredDocumentationPage: z.ZodObject<{
171110
171371
  } | null | undefined;
171111
171372
  imageAlt?: string | null | undefined;
171112
171373
  numberOfColumns?: number | null | undefined;
171374
+ itemBackgroundColor?: {
171375
+ value: string;
171376
+ } | null | undefined;
171113
171377
  designObjectId?: string | null | undefined;
171114
171378
  designObjectIds?: string[] | null | undefined;
171115
171379
  showNestedGroups?: boolean | null | undefined;
@@ -171351,6 +171615,9 @@ declare const RestoredDocumentationPage: z.ZodObject<{
171351
171615
  } | null | undefined;
171352
171616
  imageAlt?: string | null | undefined;
171353
171617
  numberOfColumns?: number | null | undefined;
171618
+ itemBackgroundColor?: {
171619
+ value: string;
171620
+ } | null | undefined;
171354
171621
  designObjectId?: string | null | undefined;
171355
171622
  designObjectIds?: string[] | null | undefined;
171356
171623
  showNestedGroups?: boolean | null | undefined;