@supernova-studio/model 0.41.0 → 0.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -460,6 +460,19 @@ declare const FeaturesSummary: z.ZodObject<{
460
460
  errorReason: string;
461
461
  enabled: boolean;
462
462
  }>;
463
+ protectedPages: z.ZodObject<{
464
+ enabled: z.ZodBoolean;
465
+ errorMessage: z.ZodString;
466
+ errorReason: z.ZodString;
467
+ }, "strip", z.ZodTypeAny, {
468
+ errorMessage: string;
469
+ errorReason: string;
470
+ enabled: boolean;
471
+ }, {
472
+ errorMessage: string;
473
+ errorReason: string;
474
+ enabled: boolean;
475
+ }>;
463
476
  }, "strip", z.ZodTypeAny, {
464
477
  designSystems: {
465
478
  max: number;
@@ -548,6 +561,11 @@ declare const FeaturesSummary: z.ZodObject<{
548
561
  errorReason: string;
549
562
  enabled: boolean;
550
563
  };
564
+ protectedPages: {
565
+ errorMessage: string;
566
+ errorReason: string;
567
+ enabled: boolean;
568
+ };
551
569
  }, {
552
570
  designSystems: {
553
571
  max: number;
@@ -636,6 +654,11 @@ declare const FeaturesSummary: z.ZodObject<{
636
654
  errorReason: string;
637
655
  enabled: boolean;
638
656
  };
657
+ protectedPages: {
658
+ errorMessage: string;
659
+ errorReason: string;
660
+ enabled: boolean;
661
+ };
639
662
  }>;
640
663
  type FeaturesSummary = z.infer<typeof FeaturesSummary>;
641
664
 
@@ -1109,6 +1132,19 @@ declare const Subscription: z.ZodObject<{
1109
1132
  errorReason: string;
1110
1133
  enabled: boolean;
1111
1134
  }>;
1135
+ protectedPages: z.ZodObject<{
1136
+ enabled: z.ZodBoolean;
1137
+ errorMessage: z.ZodString;
1138
+ errorReason: z.ZodString;
1139
+ }, "strip", z.ZodTypeAny, {
1140
+ errorMessage: string;
1141
+ errorReason: string;
1142
+ enabled: boolean;
1143
+ }, {
1144
+ errorMessage: string;
1145
+ errorReason: string;
1146
+ enabled: boolean;
1147
+ }>;
1112
1148
  }, "strip", z.ZodTypeAny, {
1113
1149
  designSystems: {
1114
1150
  max: number;
@@ -1197,6 +1233,11 @@ declare const Subscription: z.ZodObject<{
1197
1233
  errorReason: string;
1198
1234
  enabled: boolean;
1199
1235
  };
1236
+ protectedPages: {
1237
+ errorMessage: string;
1238
+ errorReason: string;
1239
+ enabled: boolean;
1240
+ };
1200
1241
  }, {
1201
1242
  designSystems: {
1202
1243
  max: number;
@@ -1285,6 +1326,11 @@ declare const Subscription: z.ZodObject<{
1285
1326
  errorReason: string;
1286
1327
  enabled: boolean;
1287
1328
  };
1329
+ protectedPages: {
1330
+ errorMessage: string;
1331
+ errorReason: string;
1332
+ enabled: boolean;
1333
+ };
1288
1334
  }>>;
1289
1335
  stripeProductDescription: z.ZodOptional<z.ZodString>;
1290
1336
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -1425,6 +1471,11 @@ declare const Subscription: z.ZodObject<{
1425
1471
  errorReason: string;
1426
1472
  enabled: boolean;
1427
1473
  };
1474
+ protectedPages: {
1475
+ errorMessage: string;
1476
+ errorReason: string;
1477
+ enabled: boolean;
1478
+ };
1428
1479
  } | undefined;
1429
1480
  stripeProductDescription?: string | undefined;
1430
1481
  stripeProductFeatures?: string[] | undefined;
@@ -1547,6 +1598,11 @@ declare const Subscription: z.ZodObject<{
1547
1598
  errorReason: string;
1548
1599
  enabled: boolean;
1549
1600
  };
1601
+ protectedPages: {
1602
+ errorMessage: string;
1603
+ errorReason: string;
1604
+ enabled: boolean;
1605
+ };
1550
1606
  } | undefined;
1551
1607
  stripeProductDescription?: string | undefined;
1552
1608
  stripeProductFeatures?: string[] | undefined;
@@ -2918,8 +2974,8 @@ declare const Exporter: z.ZodObject<{
2918
2974
  id: string;
2919
2975
  createdAt: Date;
2920
2976
  name: string;
2921
- storagePath: string;
2922
2977
  isPrivate: boolean;
2978
+ storagePath: string;
2923
2979
  details: {
2924
2980
  description: string;
2925
2981
  source: "upload" | "git";
@@ -14918,6 +14974,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
14918
14974
  } | null | undefined;
14919
14975
  minHeight?: number | null | undefined;
14920
14976
  };
14977
+ isPrivate?: boolean | undefined;
14978
+ isHidden?: boolean | undefined;
14921
14979
  }, z.ZodTypeDef, {
14922
14980
  showSidebar: boolean;
14923
14981
  header: {
@@ -14988,6 +15046,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
14988
15046
  } | null | undefined;
14989
15047
  minHeight?: number | null | undefined;
14990
15048
  };
15049
+ isPrivate?: boolean | undefined;
15050
+ isHidden?: boolean | undefined;
14991
15051
  }>>>, {
14992
15052
  showSidebar: boolean;
14993
15053
  header: {
@@ -15058,6 +15118,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
15058
15118
  } | null | undefined;
15059
15119
  minHeight?: number | null | undefined;
15060
15120
  };
15121
+ isPrivate?: boolean | undefined;
15122
+ isHidden?: boolean | undefined;
15061
15123
  } | undefined, {
15062
15124
  showSidebar: boolean;
15063
15125
  header: {
@@ -15128,6 +15190,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
15128
15190
  } | null | undefined;
15129
15191
  minHeight?: number | null | undefined;
15130
15192
  };
15193
+ isPrivate?: boolean | undefined;
15194
+ isHidden?: boolean | undefined;
15131
15195
  } | null | undefined>;
15132
15196
  }, "strip", z.ZodTypeAny, {
15133
15197
  blocks: PageBlockV1[];
@@ -15201,6 +15265,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
15201
15265
  } | null | undefined;
15202
15266
  minHeight?: number | null | undefined;
15203
15267
  };
15268
+ isPrivate?: boolean | undefined;
15269
+ isHidden?: boolean | undefined;
15204
15270
  } | undefined;
15205
15271
  }, {
15206
15272
  blocks: ({
@@ -15636,12 +15702,16 @@ declare const DocumentationPageDataV1: z.ZodObject<{
15636
15702
  } | null | undefined;
15637
15703
  minHeight?: number | null | undefined;
15638
15704
  };
15705
+ isPrivate?: boolean | undefined;
15706
+ isHidden?: boolean | undefined;
15639
15707
  } | null | undefined;
15640
15708
  }>;
15641
15709
 
15642
15710
  declare const DocumentationPageDataV2: z.ZodObject<{
15643
15711
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
15712
+ isHidden: boolean;
15644
15713
  showSidebar: boolean;
15714
+ isPrivate: boolean;
15645
15715
  header: {
15646
15716
  description: string;
15647
15717
  alignment: "Center" | "Left";
@@ -15670,7 +15740,9 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15670
15740
  minHeight?: number | null | undefined;
15671
15741
  };
15672
15742
  }, z.ZodTypeDef, {
15743
+ isHidden: boolean;
15673
15744
  showSidebar: boolean;
15745
+ isPrivate: boolean;
15674
15746
  header: {
15675
15747
  description: string;
15676
15748
  alignment: "Center" | "Left";
@@ -15699,7 +15771,9 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15699
15771
  minHeight?: number | null | undefined;
15700
15772
  };
15701
15773
  }>>>, {
15774
+ isHidden: boolean;
15702
15775
  showSidebar: boolean;
15776
+ isPrivate: boolean;
15703
15777
  header: {
15704
15778
  description: string;
15705
15779
  alignment: "Center" | "Left";
@@ -15728,7 +15802,9 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15728
15802
  minHeight?: number | null | undefined;
15729
15803
  };
15730
15804
  } | undefined, {
15805
+ isHidden: boolean;
15731
15806
  showSidebar: boolean;
15807
+ isPrivate: boolean;
15732
15808
  header: {
15733
15809
  description: string;
15734
15810
  alignment: "Center" | "Left";
@@ -15759,7 +15835,9 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15759
15835
  } | null | undefined>;
15760
15836
  }, "strip", z.ZodTypeAny, {
15761
15837
  configuration?: {
15838
+ isHidden: boolean;
15762
15839
  showSidebar: boolean;
15840
+ isPrivate: boolean;
15763
15841
  header: {
15764
15842
  description: string;
15765
15843
  alignment: "Center" | "Left";
@@ -15790,7 +15868,9 @@ declare const DocumentationPageDataV2: z.ZodObject<{
15790
15868
  } | undefined;
15791
15869
  }, {
15792
15870
  configuration?: {
15871
+ isHidden: boolean;
15793
15872
  showSidebar: boolean;
15873
+ isPrivate: boolean;
15794
15874
  header: {
15795
15875
  description: string;
15796
15876
  alignment: "Center" | "Left";
@@ -17035,6 +17115,8 @@ type PageSectionEditorModelV2 = z.infer<typeof PageSectionEditorModelV2>;
17035
17115
 
17036
17116
  declare const DocumentationItemConfigurationV1: z.ZodObject<{
17037
17117
  showSidebar: z.ZodBoolean;
17118
+ isPrivate: z.ZodOptional<z.ZodBoolean>;
17119
+ isHidden: z.ZodOptional<z.ZodBoolean>;
17038
17120
  header: z.ZodObject<{
17039
17121
  description: z.ZodString;
17040
17122
  alignment: z.ZodEnum<["Left", "Center"]>;
@@ -17559,6 +17641,8 @@ declare const DocumentationItemConfigurationV1: z.ZodObject<{
17559
17641
  } | null | undefined;
17560
17642
  minHeight?: number | null | undefined;
17561
17643
  };
17644
+ isPrivate?: boolean | undefined;
17645
+ isHidden?: boolean | undefined;
17562
17646
  }, {
17563
17647
  showSidebar: boolean;
17564
17648
  header: {
@@ -17629,12 +17713,16 @@ declare const DocumentationItemConfigurationV1: z.ZodObject<{
17629
17713
  } | null | undefined;
17630
17714
  minHeight?: number | null | undefined;
17631
17715
  };
17716
+ isPrivate?: boolean | undefined;
17717
+ isHidden?: boolean | undefined;
17632
17718
  }>;
17633
17719
  type DocumentationItemConfigurationV1 = z.infer<typeof DocumentationItemConfigurationV1>;
17634
17720
  declare const defaultDocumentationItemConfigurationV1: DocumentationItemConfigurationV1;
17635
17721
 
17636
17722
  declare const DocumentationItemConfigurationV2: z.ZodObject<{
17637
17723
  showSidebar: z.ZodBoolean;
17724
+ isPrivate: z.ZodBoolean;
17725
+ isHidden: z.ZodBoolean;
17638
17726
  header: z.ZodObject<{
17639
17727
  description: z.ZodString;
17640
17728
  alignment: z.ZodEnum<["Left", "Center"]>;
@@ -17759,7 +17847,9 @@ declare const DocumentationItemConfigurationV2: z.ZodObject<{
17759
17847
  minHeight?: number | null | undefined;
17760
17848
  }>;
17761
17849
  }, "strip", z.ZodTypeAny, {
17850
+ isHidden: boolean;
17762
17851
  showSidebar: boolean;
17852
+ isPrivate: boolean;
17763
17853
  header: {
17764
17854
  description: string;
17765
17855
  alignment: "Center" | "Left";
@@ -17788,7 +17878,9 @@ declare const DocumentationItemConfigurationV2: z.ZodObject<{
17788
17878
  minHeight?: number | null | undefined;
17789
17879
  };
17790
17880
  }, {
17881
+ isHidden: boolean;
17791
17882
  showSidebar: boolean;
17883
+ isPrivate: boolean;
17792
17884
  header: {
17793
17885
  description: string;
17794
17886
  alignment: "Center" | "Left";
@@ -19226,6 +19318,8 @@ declare const ElementGroupDataV1: z.ZodObject<{
19226
19318
  } | null | undefined;
19227
19319
  minHeight?: number | null | undefined;
19228
19320
  };
19321
+ isPrivate?: boolean | undefined;
19322
+ isHidden?: boolean | undefined;
19229
19323
  }, z.ZodTypeDef, {
19230
19324
  showSidebar: boolean;
19231
19325
  header: {
@@ -19296,6 +19390,8 @@ declare const ElementGroupDataV1: z.ZodObject<{
19296
19390
  } | null | undefined;
19297
19391
  minHeight?: number | null | undefined;
19298
19392
  };
19393
+ isPrivate?: boolean | undefined;
19394
+ isHidden?: boolean | undefined;
19299
19395
  }>>>, {
19300
19396
  showSidebar: boolean;
19301
19397
  header: {
@@ -19366,6 +19462,8 @@ declare const ElementGroupDataV1: z.ZodObject<{
19366
19462
  } | null | undefined;
19367
19463
  minHeight?: number | null | undefined;
19368
19464
  };
19465
+ isPrivate?: boolean | undefined;
19466
+ isHidden?: boolean | undefined;
19369
19467
  } | undefined, {
19370
19468
  showSidebar: boolean;
19371
19469
  header: {
@@ -19436,6 +19534,8 @@ declare const ElementGroupDataV1: z.ZodObject<{
19436
19534
  } | null | undefined;
19437
19535
  minHeight?: number | null | undefined;
19438
19536
  };
19537
+ isPrivate?: boolean | undefined;
19538
+ isHidden?: boolean | undefined;
19439
19539
  } | null | undefined>;
19440
19540
  }, "strip", z.ZodTypeAny, {
19441
19541
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
@@ -19509,6 +19609,8 @@ declare const ElementGroupDataV1: z.ZodObject<{
19509
19609
  } | null | undefined;
19510
19610
  minHeight?: number | null | undefined;
19511
19611
  };
19612
+ isPrivate?: boolean | undefined;
19613
+ isHidden?: boolean | undefined;
19512
19614
  } | undefined;
19513
19615
  }, {
19514
19616
  behavior?: "Tabs" | "Group" | null | undefined;
@@ -19582,13 +19684,17 @@ declare const ElementGroupDataV1: z.ZodObject<{
19582
19684
  } | null | undefined;
19583
19685
  minHeight?: number | null | undefined;
19584
19686
  };
19687
+ isPrivate?: boolean | undefined;
19688
+ isHidden?: boolean | undefined;
19585
19689
  } | null | undefined;
19586
19690
  }>;
19587
19691
  type ElementGroupDataV1 = z.infer<typeof ElementGroupDataV1>;
19588
19692
  declare const ElementGroupDataV2: z.ZodObject<{
19589
19693
  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>;
19590
19694
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
19695
+ isHidden: boolean;
19591
19696
  showSidebar: boolean;
19697
+ isPrivate: boolean;
19592
19698
  header: {
19593
19699
  description: string;
19594
19700
  alignment: "Center" | "Left";
@@ -19617,7 +19723,9 @@ declare const ElementGroupDataV2: z.ZodObject<{
19617
19723
  minHeight?: number | null | undefined;
19618
19724
  };
19619
19725
  }, z.ZodTypeDef, {
19726
+ isHidden: boolean;
19620
19727
  showSidebar: boolean;
19728
+ isPrivate: boolean;
19621
19729
  header: {
19622
19730
  description: string;
19623
19731
  alignment: "Center" | "Left";
@@ -19646,7 +19754,9 @@ declare const ElementGroupDataV2: z.ZodObject<{
19646
19754
  minHeight?: number | null | undefined;
19647
19755
  };
19648
19756
  }>>>, {
19757
+ isHidden: boolean;
19649
19758
  showSidebar: boolean;
19759
+ isPrivate: boolean;
19650
19760
  header: {
19651
19761
  description: string;
19652
19762
  alignment: "Center" | "Left";
@@ -19675,7 +19785,9 @@ declare const ElementGroupDataV2: z.ZodObject<{
19675
19785
  minHeight?: number | null | undefined;
19676
19786
  };
19677
19787
  } | undefined, {
19788
+ isHidden: boolean;
19678
19789
  showSidebar: boolean;
19790
+ isPrivate: boolean;
19679
19791
  header: {
19680
19792
  description: string;
19681
19793
  alignment: "Center" | "Left";
@@ -19707,7 +19819,9 @@ declare const ElementGroupDataV2: z.ZodObject<{
19707
19819
  }, "strip", z.ZodTypeAny, {
19708
19820
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
19709
19821
  configuration?: {
19822
+ isHidden: boolean;
19710
19823
  showSidebar: boolean;
19824
+ isPrivate: boolean;
19711
19825
  header: {
19712
19826
  description: string;
19713
19827
  alignment: "Center" | "Left";
@@ -19739,7 +19853,9 @@ declare const ElementGroupDataV2: z.ZodObject<{
19739
19853
  }, {
19740
19854
  behavior?: "Tabs" | "Group" | null | undefined;
19741
19855
  configuration?: {
19856
+ isHidden: boolean;
19742
19857
  showSidebar: boolean;
19858
+ isPrivate: boolean;
19743
19859
  header: {
19744
19860
  description: string;
19745
19861
  alignment: "Center" | "Left";
@@ -22664,6 +22780,8 @@ declare const DocumentationPageV1: z.ZodObject<{
22664
22780
  } | null | undefined;
22665
22781
  minHeight?: number | null | undefined;
22666
22782
  };
22783
+ isPrivate?: boolean | undefined;
22784
+ isHidden?: boolean | undefined;
22667
22785
  }, z.ZodTypeDef, {
22668
22786
  showSidebar: boolean;
22669
22787
  header: {
@@ -22734,6 +22852,8 @@ declare const DocumentationPageV1: z.ZodObject<{
22734
22852
  } | null | undefined;
22735
22853
  minHeight?: number | null | undefined;
22736
22854
  };
22855
+ isPrivate?: boolean | undefined;
22856
+ isHidden?: boolean | undefined;
22737
22857
  }>>>, {
22738
22858
  showSidebar: boolean;
22739
22859
  header: {
@@ -22804,6 +22924,8 @@ declare const DocumentationPageV1: z.ZodObject<{
22804
22924
  } | null | undefined;
22805
22925
  minHeight?: number | null | undefined;
22806
22926
  };
22927
+ isPrivate?: boolean | undefined;
22928
+ isHidden?: boolean | undefined;
22807
22929
  } | undefined, {
22808
22930
  showSidebar: boolean;
22809
22931
  header: {
@@ -22874,6 +22996,8 @@ declare const DocumentationPageV1: z.ZodObject<{
22874
22996
  } | null | undefined;
22875
22997
  minHeight?: number | null | undefined;
22876
22998
  };
22999
+ isPrivate?: boolean | undefined;
23000
+ isHidden?: boolean | undefined;
22877
23001
  } | null | undefined>;
22878
23002
  }, "strip", z.ZodTypeAny, {
22879
23003
  blocks: PageBlockV1[];
@@ -22947,6 +23071,8 @@ declare const DocumentationPageV1: z.ZodObject<{
22947
23071
  } | null | undefined;
22948
23072
  minHeight?: number | null | undefined;
22949
23073
  };
23074
+ isPrivate?: boolean | undefined;
23075
+ isHidden?: boolean | undefined;
22950
23076
  } | undefined;
22951
23077
  }, {
22952
23078
  blocks: ({
@@ -23382,6 +23508,8 @@ declare const DocumentationPageV1: z.ZodObject<{
23382
23508
  } | null | undefined;
23383
23509
  minHeight?: number | null | undefined;
23384
23510
  };
23511
+ isPrivate?: boolean | undefined;
23512
+ isHidden?: boolean | undefined;
23385
23513
  } | null | undefined;
23386
23514
  }>;
23387
23515
  }, "strip", z.ZodTypeAny, {
@@ -23461,6 +23589,8 @@ declare const DocumentationPageV1: z.ZodObject<{
23461
23589
  } | null | undefined;
23462
23590
  minHeight?: number | null | undefined;
23463
23591
  };
23592
+ isPrivate?: boolean | undefined;
23593
+ isHidden?: boolean | undefined;
23464
23594
  } | undefined;
23465
23595
  };
23466
23596
  designSystemVersionId: string;
@@ -23912,6 +24042,8 @@ declare const DocumentationPageV1: z.ZodObject<{
23912
24042
  } | null | undefined;
23913
24043
  minHeight?: number | null | undefined;
23914
24044
  };
24045
+ isPrivate?: boolean | undefined;
24046
+ isHidden?: boolean | undefined;
23915
24047
  } | null | undefined;
23916
24048
  };
23917
24049
  designSystemVersionId: string;
@@ -24023,6 +24155,8 @@ declare const DocumentationGroupV1: z.ZodObject<{
24023
24155
  } | null | undefined;
24024
24156
  minHeight?: number | null | undefined;
24025
24157
  };
24158
+ isPrivate?: boolean | undefined;
24159
+ isHidden?: boolean | undefined;
24026
24160
  }, z.ZodTypeDef, {
24027
24161
  showSidebar: boolean;
24028
24162
  header: {
@@ -24093,6 +24227,8 @@ declare const DocumentationGroupV1: z.ZodObject<{
24093
24227
  } | null | undefined;
24094
24228
  minHeight?: number | null | undefined;
24095
24229
  };
24230
+ isPrivate?: boolean | undefined;
24231
+ isHidden?: boolean | undefined;
24096
24232
  }>>>, {
24097
24233
  showSidebar: boolean;
24098
24234
  header: {
@@ -24163,6 +24299,8 @@ declare const DocumentationGroupV1: z.ZodObject<{
24163
24299
  } | null | undefined;
24164
24300
  minHeight?: number | null | undefined;
24165
24301
  };
24302
+ isPrivate?: boolean | undefined;
24303
+ isHidden?: boolean | undefined;
24166
24304
  } | undefined, {
24167
24305
  showSidebar: boolean;
24168
24306
  header: {
@@ -24233,6 +24371,8 @@ declare const DocumentationGroupV1: z.ZodObject<{
24233
24371
  } | null | undefined;
24234
24372
  minHeight?: number | null | undefined;
24235
24373
  };
24374
+ isPrivate?: boolean | undefined;
24375
+ isHidden?: boolean | undefined;
24236
24376
  } | null | undefined>;
24237
24377
  }, "strip", z.ZodTypeAny, {
24238
24378
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
@@ -24306,6 +24446,8 @@ declare const DocumentationGroupV1: z.ZodObject<{
24306
24446
  } | null | undefined;
24307
24447
  minHeight?: number | null | undefined;
24308
24448
  };
24449
+ isPrivate?: boolean | undefined;
24450
+ isHidden?: boolean | undefined;
24309
24451
  } | undefined;
24310
24452
  }, {
24311
24453
  behavior?: "Tabs" | "Group" | null | undefined;
@@ -24379,6 +24521,8 @@ declare const DocumentationGroupV1: z.ZodObject<{
24379
24521
  } | null | undefined;
24380
24522
  minHeight?: number | null | undefined;
24381
24523
  };
24524
+ isPrivate?: boolean | undefined;
24525
+ isHidden?: boolean | undefined;
24382
24526
  } | null | undefined;
24383
24527
  }>>;
24384
24528
  }, "strip", z.ZodTypeAny, {
@@ -24470,6 +24614,8 @@ declare const DocumentationGroupV1: z.ZodObject<{
24470
24614
  } | null | undefined;
24471
24615
  minHeight?: number | null | undefined;
24472
24616
  };
24617
+ isPrivate?: boolean | undefined;
24618
+ isHidden?: boolean | undefined;
24473
24619
  } | undefined;
24474
24620
  } | undefined;
24475
24621
  }, {
@@ -24561,6 +24707,8 @@ declare const DocumentationGroupV1: z.ZodObject<{
24561
24707
  } | null | undefined;
24562
24708
  minHeight?: number | null | undefined;
24563
24709
  };
24710
+ isPrivate?: boolean | undefined;
24711
+ isHidden?: boolean | undefined;
24564
24712
  } | null | undefined;
24565
24713
  } | undefined;
24566
24714
  }>;
@@ -24589,7 +24737,9 @@ declare const DocumentationPageV2: z.ZodObject<{
24589
24737
  shortPersistentId: z.ZodString;
24590
24738
  data: z.ZodObject<{
24591
24739
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
24740
+ isHidden: boolean;
24592
24741
  showSidebar: boolean;
24742
+ isPrivate: boolean;
24593
24743
  header: {
24594
24744
  description: string;
24595
24745
  alignment: "Center" | "Left";
@@ -24618,7 +24768,9 @@ declare const DocumentationPageV2: z.ZodObject<{
24618
24768
  minHeight?: number | null | undefined;
24619
24769
  };
24620
24770
  }, z.ZodTypeDef, {
24771
+ isHidden: boolean;
24621
24772
  showSidebar: boolean;
24773
+ isPrivate: boolean;
24622
24774
  header: {
24623
24775
  description: string;
24624
24776
  alignment: "Center" | "Left";
@@ -24647,7 +24799,9 @@ declare const DocumentationPageV2: z.ZodObject<{
24647
24799
  minHeight?: number | null | undefined;
24648
24800
  };
24649
24801
  }>>>, {
24802
+ isHidden: boolean;
24650
24803
  showSidebar: boolean;
24804
+ isPrivate: boolean;
24651
24805
  header: {
24652
24806
  description: string;
24653
24807
  alignment: "Center" | "Left";
@@ -24676,7 +24830,9 @@ declare const DocumentationPageV2: z.ZodObject<{
24676
24830
  minHeight?: number | null | undefined;
24677
24831
  };
24678
24832
  } | undefined, {
24833
+ isHidden: boolean;
24679
24834
  showSidebar: boolean;
24835
+ isPrivate: boolean;
24680
24836
  header: {
24681
24837
  description: string;
24682
24838
  alignment: "Center" | "Left";
@@ -25070,7 +25226,9 @@ declare const DocumentationPageV2: z.ZodObject<{
25070
25226
  }>, "many">>;
25071
25227
  }, "strip", z.ZodTypeAny, {
25072
25228
  configuration?: {
25229
+ isHidden: boolean;
25073
25230
  showSidebar: boolean;
25231
+ isPrivate: boolean;
25074
25232
  header: {
25075
25233
  description: string;
25076
25234
  alignment: "Center" | "Left";
@@ -25102,7 +25260,9 @@ declare const DocumentationPageV2: z.ZodObject<{
25102
25260
  oldBlocks?: PageBlockV1[] | undefined;
25103
25261
  }, {
25104
25262
  configuration?: {
25263
+ isHidden: boolean;
25105
25264
  showSidebar: boolean;
25265
+ isPrivate: boolean;
25106
25266
  header: {
25107
25267
  description: string;
25108
25268
  alignment: "Center" | "Left";
@@ -25502,7 +25662,9 @@ declare const DocumentationPageV2: z.ZodObject<{
25502
25662
  persistentId: string;
25503
25663
  data: {
25504
25664
  configuration?: {
25665
+ isHidden: boolean;
25505
25666
  showSidebar: boolean;
25667
+ isPrivate: boolean;
25506
25668
  header: {
25507
25669
  description: string;
25508
25670
  alignment: "Center" | "Left";
@@ -25550,7 +25712,9 @@ declare const DocumentationPageV2: z.ZodObject<{
25550
25712
  persistentId: string;
25551
25713
  data: {
25552
25714
  configuration?: {
25715
+ isHidden: boolean;
25553
25716
  showSidebar: boolean;
25717
+ isPrivate: boolean;
25554
25718
  header: {
25555
25719
  description: string;
25556
25720
  alignment: "Center" | "Left";
@@ -26392,7 +26556,9 @@ declare const ElementGroup: z.ZodObject<{
26392
26556
  data: z.ZodOptional<z.ZodObject<{
26393
26557
  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>;
26394
26558
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
26559
+ isHidden: boolean;
26395
26560
  showSidebar: boolean;
26561
+ isPrivate: boolean;
26396
26562
  header: {
26397
26563
  description: string;
26398
26564
  alignment: "Center" | "Left";
@@ -26421,7 +26587,9 @@ declare const ElementGroup: z.ZodObject<{
26421
26587
  minHeight?: number | null | undefined;
26422
26588
  };
26423
26589
  }, z.ZodTypeDef, {
26590
+ isHidden: boolean;
26424
26591
  showSidebar: boolean;
26592
+ isPrivate: boolean;
26425
26593
  header: {
26426
26594
  description: string;
26427
26595
  alignment: "Center" | "Left";
@@ -26450,7 +26618,9 @@ declare const ElementGroup: z.ZodObject<{
26450
26618
  minHeight?: number | null | undefined;
26451
26619
  };
26452
26620
  }>>>, {
26621
+ isHidden: boolean;
26453
26622
  showSidebar: boolean;
26623
+ isPrivate: boolean;
26454
26624
  header: {
26455
26625
  description: string;
26456
26626
  alignment: "Center" | "Left";
@@ -26479,7 +26649,9 @@ declare const ElementGroup: z.ZodObject<{
26479
26649
  minHeight?: number | null | undefined;
26480
26650
  };
26481
26651
  } | undefined, {
26652
+ isHidden: boolean;
26482
26653
  showSidebar: boolean;
26654
+ isPrivate: boolean;
26483
26655
  header: {
26484
26656
  description: string;
26485
26657
  alignment: "Center" | "Left";
@@ -26511,7 +26683,9 @@ declare const ElementGroup: z.ZodObject<{
26511
26683
  }, "strip", z.ZodTypeAny, {
26512
26684
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
26513
26685
  configuration?: {
26686
+ isHidden: boolean;
26514
26687
  showSidebar: boolean;
26688
+ isPrivate: boolean;
26515
26689
  header: {
26516
26690
  description: string;
26517
26691
  alignment: "Center" | "Left";
@@ -26543,7 +26717,9 @@ declare const ElementGroup: z.ZodObject<{
26543
26717
  }, {
26544
26718
  behavior?: "Tabs" | "Group" | null | undefined;
26545
26719
  configuration?: {
26720
+ isHidden: boolean;
26546
26721
  showSidebar: boolean;
26722
+ isPrivate: boolean;
26547
26723
  header: {
26548
26724
  description: string;
26549
26725
  alignment: "Center" | "Left";
@@ -26593,7 +26769,9 @@ declare const ElementGroup: z.ZodObject<{
26593
26769
  data?: {
26594
26770
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
26595
26771
  configuration?: {
26772
+ isHidden: boolean;
26596
26773
  showSidebar: boolean;
26774
+ isPrivate: boolean;
26597
26775
  header: {
26598
26776
  description: string;
26599
26777
  alignment: "Center" | "Left";
@@ -26643,7 +26821,9 @@ declare const ElementGroup: z.ZodObject<{
26643
26821
  data?: {
26644
26822
  behavior?: "Tabs" | "Group" | null | undefined;
26645
26823
  configuration?: {
26824
+ isHidden: boolean;
26646
26825
  showSidebar: boolean;
26826
+ isPrivate: boolean;
26647
26827
  header: {
26648
26828
  description: string;
26649
26829
  alignment: "Center" | "Left";
@@ -26683,7 +26863,9 @@ declare const BrandedElementGroup: z.ZodObject<{
26683
26863
  data: z.ZodOptional<z.ZodObject<{
26684
26864
  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>;
26685
26865
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
26866
+ isHidden: boolean;
26686
26867
  showSidebar: boolean;
26868
+ isPrivate: boolean;
26687
26869
  header: {
26688
26870
  description: string;
26689
26871
  alignment: "Center" | "Left";
@@ -26712,7 +26894,9 @@ declare const BrandedElementGroup: z.ZodObject<{
26712
26894
  minHeight?: number | null | undefined;
26713
26895
  };
26714
26896
  }, z.ZodTypeDef, {
26897
+ isHidden: boolean;
26715
26898
  showSidebar: boolean;
26899
+ isPrivate: boolean;
26716
26900
  header: {
26717
26901
  description: string;
26718
26902
  alignment: "Center" | "Left";
@@ -26741,7 +26925,9 @@ declare const BrandedElementGroup: z.ZodObject<{
26741
26925
  minHeight?: number | null | undefined;
26742
26926
  };
26743
26927
  }>>>, {
26928
+ isHidden: boolean;
26744
26929
  showSidebar: boolean;
26930
+ isPrivate: boolean;
26745
26931
  header: {
26746
26932
  description: string;
26747
26933
  alignment: "Center" | "Left";
@@ -26770,7 +26956,9 @@ declare const BrandedElementGroup: z.ZodObject<{
26770
26956
  minHeight?: number | null | undefined;
26771
26957
  };
26772
26958
  } | undefined, {
26959
+ isHidden: boolean;
26773
26960
  showSidebar: boolean;
26961
+ isPrivate: boolean;
26774
26962
  header: {
26775
26963
  description: string;
26776
26964
  alignment: "Center" | "Left";
@@ -26802,7 +26990,9 @@ declare const BrandedElementGroup: z.ZodObject<{
26802
26990
  }, "strip", z.ZodTypeAny, {
26803
26991
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
26804
26992
  configuration?: {
26993
+ isHidden: boolean;
26805
26994
  showSidebar: boolean;
26995
+ isPrivate: boolean;
26806
26996
  header: {
26807
26997
  description: string;
26808
26998
  alignment: "Center" | "Left";
@@ -26834,7 +27024,9 @@ declare const BrandedElementGroup: z.ZodObject<{
26834
27024
  }, {
26835
27025
  behavior?: "Tabs" | "Group" | null | undefined;
26836
27026
  configuration?: {
27027
+ isHidden: boolean;
26837
27028
  showSidebar: boolean;
27029
+ isPrivate: boolean;
26838
27030
  header: {
26839
27031
  description: string;
26840
27032
  alignment: "Center" | "Left";
@@ -26898,7 +27090,9 @@ declare const BrandedElementGroup: z.ZodObject<{
26898
27090
  data?: {
26899
27091
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
26900
27092
  configuration?: {
27093
+ isHidden: boolean;
26901
27094
  showSidebar: boolean;
27095
+ isPrivate: boolean;
26902
27096
  header: {
26903
27097
  description: string;
26904
27098
  alignment: "Center" | "Left";
@@ -26948,7 +27142,9 @@ declare const BrandedElementGroup: z.ZodObject<{
26948
27142
  data?: {
26949
27143
  behavior?: "Tabs" | "Group" | null | undefined;
26950
27144
  configuration?: {
27145
+ isHidden: boolean;
26951
27146
  showSidebar: boolean;
27147
+ isPrivate: boolean;
26952
27148
  header: {
26953
27149
  description: string;
26954
27150
  alignment: "Center" | "Left";
@@ -94204,7 +94400,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94204
94400
  shortPersistentId: z.ZodString;
94205
94401
  data: z.ZodObject<{
94206
94402
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
94403
+ isHidden: boolean;
94207
94404
  showSidebar: boolean;
94405
+ isPrivate: boolean;
94208
94406
  header: {
94209
94407
  description: string;
94210
94408
  alignment: "Center" | "Left";
@@ -94233,7 +94431,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94233
94431
  minHeight?: number | null | undefined;
94234
94432
  };
94235
94433
  }, z.ZodTypeDef, {
94434
+ isHidden: boolean;
94236
94435
  showSidebar: boolean;
94436
+ isPrivate: boolean;
94237
94437
  header: {
94238
94438
  description: string;
94239
94439
  alignment: "Center" | "Left";
@@ -94262,7 +94462,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94262
94462
  minHeight?: number | null | undefined;
94263
94463
  };
94264
94464
  }>>>, {
94465
+ isHidden: boolean;
94265
94466
  showSidebar: boolean;
94467
+ isPrivate: boolean;
94266
94468
  header: {
94267
94469
  description: string;
94268
94470
  alignment: "Center" | "Left";
@@ -94291,7 +94493,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94291
94493
  minHeight?: number | null | undefined;
94292
94494
  };
94293
94495
  } | undefined, {
94496
+ isHidden: boolean;
94294
94497
  showSidebar: boolean;
94498
+ isPrivate: boolean;
94295
94499
  header: {
94296
94500
  description: string;
94297
94501
  alignment: "Center" | "Left";
@@ -94685,7 +94889,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94685
94889
  }>, "many">>;
94686
94890
  }, "strip", z.ZodTypeAny, {
94687
94891
  configuration?: {
94892
+ isHidden: boolean;
94688
94893
  showSidebar: boolean;
94894
+ isPrivate: boolean;
94689
94895
  header: {
94690
94896
  description: string;
94691
94897
  alignment: "Center" | "Left";
@@ -94717,7 +94923,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
94717
94923
  oldBlocks?: PageBlockV1[] | undefined;
94718
94924
  }, {
94719
94925
  configuration?: {
94926
+ isHidden: boolean;
94720
94927
  showSidebar: boolean;
94928
+ isPrivate: boolean;
94721
94929
  header: {
94722
94930
  description: string;
94723
94931
  alignment: "Center" | "Left";
@@ -95117,7 +95325,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95117
95325
  persistentId: string;
95118
95326
  data: {
95119
95327
  configuration?: {
95328
+ isHidden: boolean;
95120
95329
  showSidebar: boolean;
95330
+ isPrivate: boolean;
95121
95331
  header: {
95122
95332
  description: string;
95123
95333
  alignment: "Center" | "Left";
@@ -95165,7 +95375,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95165
95375
  persistentId: string;
95166
95376
  data: {
95167
95377
  configuration?: {
95378
+ isHidden: boolean;
95168
95379
  showSidebar: boolean;
95380
+ isPrivate: boolean;
95169
95381
  header: {
95170
95382
  description: string;
95171
95383
  alignment: "Center" | "Left";
@@ -95595,7 +95807,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95595
95807
  data: z.ZodOptional<z.ZodObject<{
95596
95808
  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>;
95597
95809
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
95810
+ isHidden: boolean;
95598
95811
  showSidebar: boolean;
95812
+ isPrivate: boolean;
95599
95813
  header: {
95600
95814
  description: string;
95601
95815
  alignment: "Center" | "Left";
@@ -95624,7 +95838,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95624
95838
  minHeight?: number | null | undefined;
95625
95839
  };
95626
95840
  }, z.ZodTypeDef, {
95841
+ isHidden: boolean;
95627
95842
  showSidebar: boolean;
95843
+ isPrivate: boolean;
95628
95844
  header: {
95629
95845
  description: string;
95630
95846
  alignment: "Center" | "Left";
@@ -95653,7 +95869,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95653
95869
  minHeight?: number | null | undefined;
95654
95870
  };
95655
95871
  }>>>, {
95872
+ isHidden: boolean;
95656
95873
  showSidebar: boolean;
95874
+ isPrivate: boolean;
95657
95875
  header: {
95658
95876
  description: string;
95659
95877
  alignment: "Center" | "Left";
@@ -95682,7 +95900,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95682
95900
  minHeight?: number | null | undefined;
95683
95901
  };
95684
95902
  } | undefined, {
95903
+ isHidden: boolean;
95685
95904
  showSidebar: boolean;
95905
+ isPrivate: boolean;
95686
95906
  header: {
95687
95907
  description: string;
95688
95908
  alignment: "Center" | "Left";
@@ -95714,7 +95934,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95714
95934
  }, "strip", z.ZodTypeAny, {
95715
95935
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
95716
95936
  configuration?: {
95937
+ isHidden: boolean;
95717
95938
  showSidebar: boolean;
95939
+ isPrivate: boolean;
95718
95940
  header: {
95719
95941
  description: string;
95720
95942
  alignment: "Center" | "Left";
@@ -95746,7 +95968,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95746
95968
  }, {
95747
95969
  behavior?: "Tabs" | "Group" | null | undefined;
95748
95970
  configuration?: {
95971
+ isHidden: boolean;
95749
95972
  showSidebar: boolean;
95973
+ isPrivate: boolean;
95750
95974
  header: {
95751
95975
  description: string;
95752
95976
  alignment: "Center" | "Left";
@@ -95796,7 +96020,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95796
96020
  data?: {
95797
96021
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
95798
96022
  configuration?: {
96023
+ isHidden: boolean;
95799
96024
  showSidebar: boolean;
96025
+ isPrivate: boolean;
95800
96026
  header: {
95801
96027
  description: string;
95802
96028
  alignment: "Center" | "Left";
@@ -95846,7 +96072,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95846
96072
  data?: {
95847
96073
  behavior?: "Tabs" | "Group" | null | undefined;
95848
96074
  configuration?: {
96075
+ isHidden: boolean;
95849
96076
  showSidebar: boolean;
96077
+ isPrivate: boolean;
95850
96078
  header: {
95851
96079
  description: string;
95852
96080
  alignment: "Center" | "Left";
@@ -95905,7 +96133,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95905
96133
  data?: {
95906
96134
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
95907
96135
  configuration?: {
96136
+ isHidden: boolean;
95908
96137
  showSidebar: boolean;
96138
+ isPrivate: boolean;
95909
96139
  header: {
95910
96140
  description: string;
95911
96141
  alignment: "Center" | "Left";
@@ -95943,7 +96173,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
95943
96173
  persistentId: string;
95944
96174
  data: {
95945
96175
  configuration?: {
96176
+ isHidden: boolean;
95946
96177
  showSidebar: boolean;
96178
+ isPrivate: boolean;
95947
96179
  header: {
95948
96180
  description: string;
95949
96181
  alignment: "Center" | "Left";
@@ -96009,7 +96241,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96009
96241
  data?: {
96010
96242
  behavior?: "Tabs" | "Group" | null | undefined;
96011
96243
  configuration?: {
96244
+ isHidden: boolean;
96012
96245
  showSidebar: boolean;
96246
+ isPrivate: boolean;
96013
96247
  header: {
96014
96248
  description: string;
96015
96249
  alignment: "Center" | "Left";
@@ -96047,7 +96281,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96047
96281
  persistentId: string;
96048
96282
  data: {
96049
96283
  configuration?: {
96284
+ isHidden: boolean;
96050
96285
  showSidebar: boolean;
96286
+ isPrivate: boolean;
96051
96287
  header: {
96052
96288
  description: string;
96053
96289
  alignment: "Center" | "Left";
@@ -96480,7 +96716,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96480
96716
  shortPersistentId: z.ZodString;
96481
96717
  data: z.ZodObject<{
96482
96718
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
96719
+ isHidden: boolean;
96483
96720
  showSidebar: boolean;
96721
+ isPrivate: boolean;
96484
96722
  header: {
96485
96723
  description: string;
96486
96724
  alignment: "Center" | "Left";
@@ -96509,7 +96747,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96509
96747
  minHeight?: number | null | undefined;
96510
96748
  };
96511
96749
  }, z.ZodTypeDef, {
96750
+ isHidden: boolean;
96512
96751
  showSidebar: boolean;
96752
+ isPrivate: boolean;
96513
96753
  header: {
96514
96754
  description: string;
96515
96755
  alignment: "Center" | "Left";
@@ -96538,7 +96778,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96538
96778
  minHeight?: number | null | undefined;
96539
96779
  };
96540
96780
  }>>>, {
96781
+ isHidden: boolean;
96541
96782
  showSidebar: boolean;
96783
+ isPrivate: boolean;
96542
96784
  header: {
96543
96785
  description: string;
96544
96786
  alignment: "Center" | "Left";
@@ -96567,7 +96809,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96567
96809
  minHeight?: number | null | undefined;
96568
96810
  };
96569
96811
  } | undefined, {
96812
+ isHidden: boolean;
96570
96813
  showSidebar: boolean;
96814
+ isPrivate: boolean;
96571
96815
  header: {
96572
96816
  description: string;
96573
96817
  alignment: "Center" | "Left";
@@ -96961,7 +97205,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96961
97205
  }>, "many">>;
96962
97206
  }, "strip", z.ZodTypeAny, {
96963
97207
  configuration?: {
97208
+ isHidden: boolean;
96964
97209
  showSidebar: boolean;
97210
+ isPrivate: boolean;
96965
97211
  header: {
96966
97212
  description: string;
96967
97213
  alignment: "Center" | "Left";
@@ -96993,7 +97239,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
96993
97239
  oldBlocks?: PageBlockV1[] | undefined;
96994
97240
  }, {
96995
97241
  configuration?: {
97242
+ isHidden: boolean;
96996
97243
  showSidebar: boolean;
97244
+ isPrivate: boolean;
96997
97245
  header: {
96998
97246
  description: string;
96999
97247
  alignment: "Center" | "Left";
@@ -97393,7 +97641,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97393
97641
  persistentId: string;
97394
97642
  data: {
97395
97643
  configuration?: {
97644
+ isHidden: boolean;
97396
97645
  showSidebar: boolean;
97646
+ isPrivate: boolean;
97397
97647
  header: {
97398
97648
  description: string;
97399
97649
  alignment: "Center" | "Left";
@@ -97441,7 +97691,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97441
97691
  persistentId: string;
97442
97692
  data: {
97443
97693
  configuration?: {
97694
+ isHidden: boolean;
97444
97695
  showSidebar: boolean;
97696
+ isPrivate: boolean;
97445
97697
  header: {
97446
97698
  description: string;
97447
97699
  alignment: "Center" | "Left";
@@ -97871,7 +98123,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97871
98123
  data: z.ZodOptional<z.ZodObject<{
97872
98124
  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>;
97873
98125
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
98126
+ isHidden: boolean;
97874
98127
  showSidebar: boolean;
98128
+ isPrivate: boolean;
97875
98129
  header: {
97876
98130
  description: string;
97877
98131
  alignment: "Center" | "Left";
@@ -97900,7 +98154,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97900
98154
  minHeight?: number | null | undefined;
97901
98155
  };
97902
98156
  }, z.ZodTypeDef, {
98157
+ isHidden: boolean;
97903
98158
  showSidebar: boolean;
98159
+ isPrivate: boolean;
97904
98160
  header: {
97905
98161
  description: string;
97906
98162
  alignment: "Center" | "Left";
@@ -97929,7 +98185,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97929
98185
  minHeight?: number | null | undefined;
97930
98186
  };
97931
98187
  }>>>, {
98188
+ isHidden: boolean;
97932
98189
  showSidebar: boolean;
98190
+ isPrivate: boolean;
97933
98191
  header: {
97934
98192
  description: string;
97935
98193
  alignment: "Center" | "Left";
@@ -97958,7 +98216,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97958
98216
  minHeight?: number | null | undefined;
97959
98217
  };
97960
98218
  } | undefined, {
98219
+ isHidden: boolean;
97961
98220
  showSidebar: boolean;
98221
+ isPrivate: boolean;
97962
98222
  header: {
97963
98223
  description: string;
97964
98224
  alignment: "Center" | "Left";
@@ -97990,7 +98250,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
97990
98250
  }, "strip", z.ZodTypeAny, {
97991
98251
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
97992
98252
  configuration?: {
98253
+ isHidden: boolean;
97993
98254
  showSidebar: boolean;
98255
+ isPrivate: boolean;
97994
98256
  header: {
97995
98257
  description: string;
97996
98258
  alignment: "Center" | "Left";
@@ -98022,7 +98284,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98022
98284
  }, {
98023
98285
  behavior?: "Tabs" | "Group" | null | undefined;
98024
98286
  configuration?: {
98287
+ isHidden: boolean;
98025
98288
  showSidebar: boolean;
98289
+ isPrivate: boolean;
98026
98290
  header: {
98027
98291
  description: string;
98028
98292
  alignment: "Center" | "Left";
@@ -98072,7 +98336,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98072
98336
  data?: {
98073
98337
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
98074
98338
  configuration?: {
98339
+ isHidden: boolean;
98075
98340
  showSidebar: boolean;
98341
+ isPrivate: boolean;
98076
98342
  header: {
98077
98343
  description: string;
98078
98344
  alignment: "Center" | "Left";
@@ -98122,7 +98388,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98122
98388
  data?: {
98123
98389
  behavior?: "Tabs" | "Group" | null | undefined;
98124
98390
  configuration?: {
98391
+ isHidden: boolean;
98125
98392
  showSidebar: boolean;
98393
+ isPrivate: boolean;
98126
98394
  header: {
98127
98395
  description: string;
98128
98396
  alignment: "Center" | "Left";
@@ -98176,7 +98444,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98176
98444
  data?: {
98177
98445
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
98178
98446
  configuration?: {
98447
+ isHidden: boolean;
98179
98448
  showSidebar: boolean;
98449
+ isPrivate: boolean;
98180
98450
  header: {
98181
98451
  description: string;
98182
98452
  alignment: "Center" | "Left";
@@ -98214,7 +98484,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98214
98484
  persistentId: string;
98215
98485
  data: {
98216
98486
  configuration?: {
98487
+ isHidden: boolean;
98217
98488
  showSidebar: boolean;
98489
+ isPrivate: boolean;
98218
98490
  header: {
98219
98491
  description: string;
98220
98492
  alignment: "Center" | "Left";
@@ -98279,7 +98551,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98279
98551
  data?: {
98280
98552
  behavior?: "Tabs" | "Group" | null | undefined;
98281
98553
  configuration?: {
98554
+ isHidden: boolean;
98282
98555
  showSidebar: boolean;
98556
+ isPrivate: boolean;
98283
98557
  header: {
98284
98558
  description: string;
98285
98559
  alignment: "Center" | "Left";
@@ -98317,7 +98591,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
98317
98591
  persistentId: string;
98318
98592
  data: {
98319
98593
  configuration?: {
98594
+ isHidden: boolean;
98320
98595
  showSidebar: boolean;
98596
+ isPrivate: boolean;
98321
98597
  header: {
98322
98598
  description: string;
98323
98599
  alignment: "Center" | "Left";
@@ -99475,6 +99751,8 @@ declare const DocumentationPageRoomState: z.ZodObject<{
99475
99751
  }>]>, "many">;
99476
99752
  itemConfiguration: z.ZodObject<{
99477
99753
  showSidebar: z.ZodBoolean;
99754
+ isPrivate: z.ZodBoolean;
99755
+ isHidden: z.ZodBoolean;
99478
99756
  header: z.ZodObject<{
99479
99757
  description: z.ZodString;
99480
99758
  alignment: z.ZodEnum<["Left", "Center"]>;
@@ -99599,7 +99877,9 @@ declare const DocumentationPageRoomState: z.ZodObject<{
99599
99877
  minHeight?: number | null | undefined;
99600
99878
  }>;
99601
99879
  }, "strip", z.ZodTypeAny, {
99880
+ isHidden: boolean;
99602
99881
  showSidebar: boolean;
99882
+ isPrivate: boolean;
99603
99883
  header: {
99604
99884
  description: string;
99605
99885
  alignment: "Center" | "Left";
@@ -99628,7 +99908,9 @@ declare const DocumentationPageRoomState: z.ZodObject<{
99628
99908
  minHeight?: number | null | undefined;
99629
99909
  };
99630
99910
  }, {
99911
+ isHidden: boolean;
99631
99912
  showSidebar: boolean;
99913
+ isPrivate: boolean;
99632
99914
  header: {
99633
99915
  description: string;
99634
99916
  alignment: "Center" | "Left";
@@ -99747,7 +100029,9 @@ declare const DocumentationPageRoomState: z.ZodObject<{
99747
100029
  variantId?: string | undefined;
99748
100030
  })[];
99749
100031
  itemConfiguration: {
100032
+ isHidden: boolean;
99750
100033
  showSidebar: boolean;
100034
+ isPrivate: boolean;
99751
100035
  header: {
99752
100036
  description: string;
99753
100037
  alignment: "Center" | "Left";
@@ -99866,7 +100150,9 @@ declare const DocumentationPageRoomState: z.ZodObject<{
99866
100150
  variantId?: string | undefined;
99867
100151
  })[];
99868
100152
  itemConfiguration: {
100153
+ isHidden: boolean;
99869
100154
  showSidebar: boolean;
100155
+ isPrivate: boolean;
99870
100156
  header: {
99871
100157
  description: string;
99872
100158
  alignment: "Center" | "Left";
@@ -99921,7 +100207,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
99921
100207
  shortPersistentId: z.ZodString;
99922
100208
  data: z.ZodObject<{
99923
100209
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
100210
+ isHidden: boolean;
99924
100211
  showSidebar: boolean;
100212
+ isPrivate: boolean;
99925
100213
  header: {
99926
100214
  description: string;
99927
100215
  alignment: "Center" | "Left";
@@ -99950,7 +100238,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
99950
100238
  minHeight?: number | null | undefined;
99951
100239
  };
99952
100240
  }, z.ZodTypeDef, {
100241
+ isHidden: boolean;
99953
100242
  showSidebar: boolean;
100243
+ isPrivate: boolean;
99954
100244
  header: {
99955
100245
  description: string;
99956
100246
  alignment: "Center" | "Left";
@@ -99979,7 +100269,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
99979
100269
  minHeight?: number | null | undefined;
99980
100270
  };
99981
100271
  }>>>, {
100272
+ isHidden: boolean;
99982
100273
  showSidebar: boolean;
100274
+ isPrivate: boolean;
99983
100275
  header: {
99984
100276
  description: string;
99985
100277
  alignment: "Center" | "Left";
@@ -100008,7 +100300,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100008
100300
  minHeight?: number | null | undefined;
100009
100301
  };
100010
100302
  } | undefined, {
100303
+ isHidden: boolean;
100011
100304
  showSidebar: boolean;
100305
+ isPrivate: boolean;
100012
100306
  header: {
100013
100307
  description: string;
100014
100308
  alignment: "Center" | "Left";
@@ -100402,7 +100696,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100402
100696
  }>, "many">>;
100403
100697
  }, "strip", z.ZodTypeAny, {
100404
100698
  configuration?: {
100699
+ isHidden: boolean;
100405
100700
  showSidebar: boolean;
100701
+ isPrivate: boolean;
100406
100702
  header: {
100407
100703
  description: string;
100408
100704
  alignment: "Center" | "Left";
@@ -100434,7 +100730,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100434
100730
  oldBlocks?: PageBlockV1[] | undefined;
100435
100731
  }, {
100436
100732
  configuration?: {
100733
+ isHidden: boolean;
100437
100734
  showSidebar: boolean;
100735
+ isPrivate: boolean;
100438
100736
  header: {
100439
100737
  description: string;
100440
100738
  alignment: "Center" | "Left";
@@ -100834,7 +101132,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100834
101132
  persistentId: string;
100835
101133
  data: {
100836
101134
  configuration?: {
101135
+ isHidden: boolean;
100837
101136
  showSidebar: boolean;
101137
+ isPrivate: boolean;
100838
101138
  header: {
100839
101139
  description: string;
100840
101140
  alignment: "Center" | "Left";
@@ -100882,7 +101182,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
100882
101182
  persistentId: string;
100883
101183
  data: {
100884
101184
  configuration?: {
101185
+ isHidden: boolean;
100885
101186
  showSidebar: boolean;
101187
+ isPrivate: boolean;
100886
101188
  header: {
100887
101189
  description: string;
100888
101190
  alignment: "Center" | "Left";
@@ -101312,7 +101614,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101312
101614
  data: z.ZodOptional<z.ZodObject<{
101313
101615
  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>;
101314
101616
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
101617
+ isHidden: boolean;
101315
101618
  showSidebar: boolean;
101619
+ isPrivate: boolean;
101316
101620
  header: {
101317
101621
  description: string;
101318
101622
  alignment: "Center" | "Left";
@@ -101341,7 +101645,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101341
101645
  minHeight?: number | null | undefined;
101342
101646
  };
101343
101647
  }, z.ZodTypeDef, {
101648
+ isHidden: boolean;
101344
101649
  showSidebar: boolean;
101650
+ isPrivate: boolean;
101345
101651
  header: {
101346
101652
  description: string;
101347
101653
  alignment: "Center" | "Left";
@@ -101370,7 +101676,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101370
101676
  minHeight?: number | null | undefined;
101371
101677
  };
101372
101678
  }>>>, {
101679
+ isHidden: boolean;
101373
101680
  showSidebar: boolean;
101681
+ isPrivate: boolean;
101374
101682
  header: {
101375
101683
  description: string;
101376
101684
  alignment: "Center" | "Left";
@@ -101399,7 +101707,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101399
101707
  minHeight?: number | null | undefined;
101400
101708
  };
101401
101709
  } | undefined, {
101710
+ isHidden: boolean;
101402
101711
  showSidebar: boolean;
101712
+ isPrivate: boolean;
101403
101713
  header: {
101404
101714
  description: string;
101405
101715
  alignment: "Center" | "Left";
@@ -101431,7 +101741,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101431
101741
  }, "strip", z.ZodTypeAny, {
101432
101742
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
101433
101743
  configuration?: {
101744
+ isHidden: boolean;
101434
101745
  showSidebar: boolean;
101746
+ isPrivate: boolean;
101435
101747
  header: {
101436
101748
  description: string;
101437
101749
  alignment: "Center" | "Left";
@@ -101463,7 +101775,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101463
101775
  }, {
101464
101776
  behavior?: "Tabs" | "Group" | null | undefined;
101465
101777
  configuration?: {
101778
+ isHidden: boolean;
101466
101779
  showSidebar: boolean;
101780
+ isPrivate: boolean;
101467
101781
  header: {
101468
101782
  description: string;
101469
101783
  alignment: "Center" | "Left";
@@ -101513,7 +101827,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101513
101827
  data?: {
101514
101828
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
101515
101829
  configuration?: {
101830
+ isHidden: boolean;
101516
101831
  showSidebar: boolean;
101832
+ isPrivate: boolean;
101517
101833
  header: {
101518
101834
  description: string;
101519
101835
  alignment: "Center" | "Left";
@@ -101563,7 +101879,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101563
101879
  data?: {
101564
101880
  behavior?: "Tabs" | "Group" | null | undefined;
101565
101881
  configuration?: {
101882
+ isHidden: boolean;
101566
101883
  showSidebar: boolean;
101884
+ isPrivate: boolean;
101567
101885
  header: {
101568
101886
  description: string;
101569
101887
  alignment: "Center" | "Left";
@@ -101602,7 +101920,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101602
101920
  persistentId: string;
101603
101921
  data: {
101604
101922
  configuration?: {
101923
+ isHidden: boolean;
101605
101924
  showSidebar: boolean;
101925
+ isPrivate: boolean;
101606
101926
  header: {
101607
101927
  description: string;
101608
101928
  alignment: "Center" | "Left";
@@ -101664,7 +101984,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101664
101984
  data?: {
101665
101985
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
101666
101986
  configuration?: {
101987
+ isHidden: boolean;
101667
101988
  showSidebar: boolean;
101989
+ isPrivate: boolean;
101668
101990
  header: {
101669
101991
  description: string;
101670
101992
  alignment: "Center" | "Left";
@@ -101703,7 +102025,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101703
102025
  persistentId: string;
101704
102026
  data: {
101705
102027
  configuration?: {
102028
+ isHidden: boolean;
101706
102029
  showSidebar: boolean;
102030
+ isPrivate: boolean;
101707
102031
  header: {
101708
102032
  description: string;
101709
102033
  alignment: "Center" | "Left";
@@ -102127,7 +102451,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102127
102451
  data?: {
102128
102452
  behavior?: "Tabs" | "Group" | null | undefined;
102129
102453
  configuration?: {
102454
+ isHidden: boolean;
102130
102455
  showSidebar: boolean;
102456
+ isPrivate: boolean;
102131
102457
  header: {
102132
102458
  description: string;
102133
102459
  alignment: "Center" | "Left";
@@ -102184,7 +102510,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102184
102510
  shortPersistentId: z.ZodString;
102185
102511
  data: z.ZodObject<{
102186
102512
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
102513
+ isHidden: boolean;
102187
102514
  showSidebar: boolean;
102515
+ isPrivate: boolean;
102188
102516
  header: {
102189
102517
  description: string;
102190
102518
  alignment: "Center" | "Left";
@@ -102213,7 +102541,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102213
102541
  minHeight?: number | null | undefined;
102214
102542
  };
102215
102543
  }, z.ZodTypeDef, {
102544
+ isHidden: boolean;
102216
102545
  showSidebar: boolean;
102546
+ isPrivate: boolean;
102217
102547
  header: {
102218
102548
  description: string;
102219
102549
  alignment: "Center" | "Left";
@@ -102242,7 +102572,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102242
102572
  minHeight?: number | null | undefined;
102243
102573
  };
102244
102574
  }>>>, {
102575
+ isHidden: boolean;
102245
102576
  showSidebar: boolean;
102577
+ isPrivate: boolean;
102246
102578
  header: {
102247
102579
  description: string;
102248
102580
  alignment: "Center" | "Left";
@@ -102271,7 +102603,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102271
102603
  minHeight?: number | null | undefined;
102272
102604
  };
102273
102605
  } | undefined, {
102606
+ isHidden: boolean;
102274
102607
  showSidebar: boolean;
102608
+ isPrivate: boolean;
102275
102609
  header: {
102276
102610
  description: string;
102277
102611
  alignment: "Center" | "Left";
@@ -102665,7 +102999,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102665
102999
  }>, "many">>;
102666
103000
  }, "strip", z.ZodTypeAny, {
102667
103001
  configuration?: {
103002
+ isHidden: boolean;
102668
103003
  showSidebar: boolean;
103004
+ isPrivate: boolean;
102669
103005
  header: {
102670
103006
  description: string;
102671
103007
  alignment: "Center" | "Left";
@@ -102697,7 +103033,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
102697
103033
  oldBlocks?: PageBlockV1[] | undefined;
102698
103034
  }, {
102699
103035
  configuration?: {
103036
+ isHidden: boolean;
102700
103037
  showSidebar: boolean;
103038
+ isPrivate: boolean;
102701
103039
  header: {
102702
103040
  description: string;
102703
103041
  alignment: "Center" | "Left";
@@ -103097,7 +103435,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103097
103435
  persistentId: string;
103098
103436
  data: {
103099
103437
  configuration?: {
103438
+ isHidden: boolean;
103100
103439
  showSidebar: boolean;
103440
+ isPrivate: boolean;
103101
103441
  header: {
103102
103442
  description: string;
103103
103443
  alignment: "Center" | "Left";
@@ -103145,7 +103485,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103145
103485
  persistentId: string;
103146
103486
  data: {
103147
103487
  configuration?: {
103488
+ isHidden: boolean;
103148
103489
  showSidebar: boolean;
103490
+ isPrivate: boolean;
103149
103491
  header: {
103150
103492
  description: string;
103151
103493
  alignment: "Center" | "Left";
@@ -103575,7 +103917,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103575
103917
  data: z.ZodOptional<z.ZodObject<{
103576
103918
  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>;
103577
103919
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
103920
+ isHidden: boolean;
103578
103921
  showSidebar: boolean;
103922
+ isPrivate: boolean;
103579
103923
  header: {
103580
103924
  description: string;
103581
103925
  alignment: "Center" | "Left";
@@ -103604,7 +103948,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103604
103948
  minHeight?: number | null | undefined;
103605
103949
  };
103606
103950
  }, z.ZodTypeDef, {
103951
+ isHidden: boolean;
103607
103952
  showSidebar: boolean;
103953
+ isPrivate: boolean;
103608
103954
  header: {
103609
103955
  description: string;
103610
103956
  alignment: "Center" | "Left";
@@ -103633,7 +103979,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103633
103979
  minHeight?: number | null | undefined;
103634
103980
  };
103635
103981
  }>>>, {
103982
+ isHidden: boolean;
103636
103983
  showSidebar: boolean;
103984
+ isPrivate: boolean;
103637
103985
  header: {
103638
103986
  description: string;
103639
103987
  alignment: "Center" | "Left";
@@ -103662,7 +104010,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103662
104010
  minHeight?: number | null | undefined;
103663
104011
  };
103664
104012
  } | undefined, {
104013
+ isHidden: boolean;
103665
104014
  showSidebar: boolean;
104015
+ isPrivate: boolean;
103666
104016
  header: {
103667
104017
  description: string;
103668
104018
  alignment: "Center" | "Left";
@@ -103694,7 +104044,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103694
104044
  }, "strip", z.ZodTypeAny, {
103695
104045
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
103696
104046
  configuration?: {
104047
+ isHidden: boolean;
103697
104048
  showSidebar: boolean;
104049
+ isPrivate: boolean;
103698
104050
  header: {
103699
104051
  description: string;
103700
104052
  alignment: "Center" | "Left";
@@ -103726,7 +104078,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103726
104078
  }, {
103727
104079
  behavior?: "Tabs" | "Group" | null | undefined;
103728
104080
  configuration?: {
104081
+ isHidden: boolean;
103729
104082
  showSidebar: boolean;
104083
+ isPrivate: boolean;
103730
104084
  header: {
103731
104085
  description: string;
103732
104086
  alignment: "Center" | "Left";
@@ -103776,7 +104130,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103776
104130
  data?: {
103777
104131
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
103778
104132
  configuration?: {
104133
+ isHidden: boolean;
103779
104134
  showSidebar: boolean;
104135
+ isPrivate: boolean;
103780
104136
  header: {
103781
104137
  description: string;
103782
104138
  alignment: "Center" | "Left";
@@ -103826,7 +104182,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
103826
104182
  data?: {
103827
104183
  behavior?: "Tabs" | "Group" | null | undefined;
103828
104184
  configuration?: {
104185
+ isHidden: boolean;
103829
104186
  showSidebar: boolean;
104187
+ isPrivate: boolean;
103830
104188
  header: {
103831
104189
  description: string;
103832
104190
  alignment: "Center" | "Left";
@@ -105004,7 +105362,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105004
105362
  persistentId: string;
105005
105363
  data: {
105006
105364
  configuration?: {
105365
+ isHidden: boolean;
105007
105366
  showSidebar: boolean;
105367
+ isPrivate: boolean;
105008
105368
  header: {
105009
105369
  description: string;
105010
105370
  alignment: "Center" | "Left";
@@ -105154,7 +105514,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105154
105514
  data?: {
105155
105515
  behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
105156
105516
  configuration?: {
105517
+ isHidden: boolean;
105157
105518
  showSidebar: boolean;
105519
+ isPrivate: boolean;
105158
105520
  header: {
105159
105521
  description: string;
105160
105522
  alignment: "Center" | "Left";
@@ -105265,7 +105627,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105265
105627
  persistentId: string;
105266
105628
  data: {
105267
105629
  configuration?: {
105630
+ isHidden: boolean;
105268
105631
  showSidebar: boolean;
105632
+ isPrivate: boolean;
105269
105633
  header: {
105270
105634
  description: string;
105271
105635
  alignment: "Center" | "Left";
@@ -105777,7 +106141,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
105777
106141
  data?: {
105778
106142
  behavior?: "Tabs" | "Group" | null | undefined;
105779
106143
  configuration?: {
106144
+ isHidden: boolean;
105780
106145
  showSidebar: boolean;
106146
+ isPrivate: boolean;
105781
106147
  header: {
105782
106148
  description: string;
105783
106149
  alignment: "Center" | "Left";
@@ -106614,6 +106980,19 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
106614
106980
  errorReason: string;
106615
106981
  enabled: boolean;
106616
106982
  }>;
106983
+ protectedPages: z.ZodObject<{
106984
+ enabled: z.ZodBoolean;
106985
+ errorMessage: z.ZodString;
106986
+ errorReason: z.ZodString;
106987
+ }, "strip", z.ZodTypeAny, {
106988
+ errorMessage: string;
106989
+ errorReason: string;
106990
+ enabled: boolean;
106991
+ }, {
106992
+ errorMessage: string;
106993
+ errorReason: string;
106994
+ enabled: boolean;
106995
+ }>;
106617
106996
  }, "strip", z.ZodTypeAny, {
106618
106997
  designSystems: {
106619
106998
  max: number;
@@ -106702,6 +107081,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
106702
107081
  errorReason: string;
106703
107082
  enabled: boolean;
106704
107083
  };
107084
+ protectedPages: {
107085
+ errorMessage: string;
107086
+ errorReason: string;
107087
+ enabled: boolean;
107088
+ };
106705
107089
  }, {
106706
107090
  designSystems: {
106707
107091
  max: number;
@@ -106790,6 +107174,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
106790
107174
  errorReason: string;
106791
107175
  enabled: boolean;
106792
107176
  };
107177
+ protectedPages: {
107178
+ errorMessage: string;
107179
+ errorReason: string;
107180
+ enabled: boolean;
107181
+ };
106793
107182
  }>>;
106794
107183
  stripeProductDescription: z.ZodOptional<z.ZodString>;
106795
107184
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -106930,6 +107319,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
106930
107319
  errorReason: string;
106931
107320
  enabled: boolean;
106932
107321
  };
107322
+ protectedPages: {
107323
+ errorMessage: string;
107324
+ errorReason: string;
107325
+ enabled: boolean;
107326
+ };
106933
107327
  } | undefined;
106934
107328
  stripeProductDescription?: string | undefined;
106935
107329
  stripeProductFeatures?: string[] | undefined;
@@ -107052,6 +107446,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
107052
107446
  errorReason: string;
107053
107447
  enabled: boolean;
107054
107448
  };
107449
+ protectedPages: {
107450
+ errorMessage: string;
107451
+ errorReason: string;
107452
+ enabled: boolean;
107453
+ };
107055
107454
  } | undefined;
107056
107455
  stripeProductDescription?: string | undefined;
107057
107456
  stripeProductFeatures?: string[] | undefined;
@@ -107417,6 +107816,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
107417
107816
  errorReason: string;
107418
107817
  enabled: boolean;
107419
107818
  };
107819
+ protectedPages: {
107820
+ errorMessage: string;
107821
+ errorReason: string;
107822
+ enabled: boolean;
107823
+ };
107420
107824
  } | undefined;
107421
107825
  stripeProductDescription?: string | undefined;
107422
107826
  stripeProductFeatures?: string[] | undefined;
@@ -107624,6 +108028,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
107624
108028
  errorReason: string;
107625
108029
  enabled: boolean;
107626
108030
  };
108031
+ protectedPages: {
108032
+ errorMessage: string;
108033
+ errorReason: string;
108034
+ enabled: boolean;
108035
+ };
107627
108036
  } | undefined;
107628
108037
  stripeProductDescription?: string | undefined;
107629
108038
  stripeProductFeatures?: string[] | undefined;
@@ -107833,6 +108242,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
107833
108242
  errorReason: string;
107834
108243
  enabled: boolean;
107835
108244
  };
108245
+ protectedPages: {
108246
+ errorMessage: string;
108247
+ errorReason: string;
108248
+ enabled: boolean;
108249
+ };
107836
108250
  } | undefined;
107837
108251
  stripeProductDescription?: string | undefined;
107838
108252
  stripeProductFeatures?: string[] | undefined;
@@ -108062,6 +108476,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
108062
108476
  errorReason: string;
108063
108477
  enabled: boolean;
108064
108478
  };
108479
+ protectedPages: {
108480
+ errorMessage: string;
108481
+ errorReason: string;
108482
+ enabled: boolean;
108483
+ };
108065
108484
  } | undefined;
108066
108485
  stripeProductDescription?: string | undefined;
108067
108486
  stripeProductFeatures?: string[] | undefined;
@@ -110912,17 +111331,44 @@ type ExporterPropertyValuesCollection = z.infer<typeof ExporterPropertyValuesCol
110912
111331
 
110913
111332
  declare const SHORT_PERSISTENT_ID_LENGTH = 8;
110914
111333
  declare function tryParseShortPersistentId(url?: string): string | null;
110915
- type PublishedDocPage = {
111334
+ declare const PublishedDocPage: z.ZodObject<{
111335
+ id: z.ZodString;
111336
+ publishedDocId: z.ZodString;
111337
+ pageShortPersistentId: z.ZodString;
111338
+ pathV1: z.ZodString;
111339
+ pathV2: z.ZodString;
111340
+ storagePath: z.ZodString;
111341
+ locale: z.ZodOptional<z.ZodString>;
111342
+ isPrivate: z.ZodBoolean;
111343
+ isHidden: z.ZodBoolean;
111344
+ createdAt: z.ZodDate;
111345
+ updatedAt: z.ZodDate;
111346
+ }, "strip", z.ZodTypeAny, {
110916
111347
  id: string;
111348
+ createdAt: Date;
111349
+ updatedAt: Date;
111350
+ isHidden: boolean;
111351
+ isPrivate: boolean;
111352
+ storagePath: string;
110917
111353
  publishedDocId: string;
110918
111354
  pageShortPersistentId: string;
110919
111355
  pathV1: string;
110920
111356
  pathV2: string;
110921
- storagePath: string;
111357
+ locale?: string | undefined;
111358
+ }, {
111359
+ id: string;
110922
111360
  createdAt: Date;
110923
111361
  updatedAt: Date;
110924
- locale: string | undefined;
110925
- };
111362
+ isHidden: boolean;
111363
+ isPrivate: boolean;
111364
+ storagePath: string;
111365
+ publishedDocId: string;
111366
+ pageShortPersistentId: string;
111367
+ pathV1: string;
111368
+ pathV2: string;
111369
+ locale?: string | undefined;
111370
+ }>;
111371
+ type PublishedDocPage = z.infer<typeof PublishedDocPage>;
110926
111372
  type CreatePublishedDocPage = DbCreateInputOmit<PublishedDocPage>;
110927
111373
  type UpdatePublishedDocPage = DbUpdate<OmitStrict<PublishedDocPage, "pageShortPersistentId" | "publishedDocId">>;
110928
111374
 
@@ -111080,25 +111526,6 @@ declare const ExternalOAuthRequest: z.ZodObject<{
111080
111526
  }>;
111081
111527
  type ExternalOAuthRequest = z.infer<typeof ExternalOAuthRequest>;
111082
111528
 
111083
- declare const IntegrationType: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
111084
- type IntegrationType = z.infer<typeof IntegrationType>;
111085
- declare const Integration: z.ZodObject<{
111086
- id: z.ZodString;
111087
- workspaceId: z.ZodString;
111088
- type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
111089
- createdAt: z.ZodDate;
111090
- }, "strip", z.ZodTypeAny, {
111091
- id: string;
111092
- createdAt: Date;
111093
- type: "Figma" | "Azure" | "Github" | "Gitlab" | "Bitbucket";
111094
- workspaceId: string;
111095
- }, {
111096
- id: string;
111097
- createdAt: Date;
111098
- type: "Figma" | "Azure" | "Github" | "Gitlab" | "Bitbucket";
111099
- workspaceId: string;
111100
- }>;
111101
- type Integration = z.infer<typeof Integration>;
111102
111529
  declare const IntegrationCredentialsType: z.ZodEnum<["OAuth2", "PAT"]>;
111103
111530
  type IntegrationCredentialsType = z.infer<typeof IntegrationCredentialsType>;
111104
111531
  declare const IntegrationCredentialsProfile: z.ZodObject<{
@@ -111164,6 +111591,101 @@ declare const IntegrationCredentialsSchema: z.ZodObject<{
111164
111591
  } | undefined;
111165
111592
  }>;
111166
111593
  type IntegrationCredentials = z.infer<typeof IntegrationCredentialsSchema>;
111594
+ declare const IntegrationType: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
111595
+ type IntegrationType = z.infer<typeof IntegrationType>;
111596
+ declare const Integration: z.ZodObject<{
111597
+ id: z.ZodString;
111598
+ workspaceId: z.ZodString;
111599
+ type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
111600
+ createdAt: z.ZodDate;
111601
+ integrationCredentials: z.ZodOptional<z.ZodArray<z.ZodObject<{
111602
+ id: z.ZodString;
111603
+ type: z.ZodEnum<["OAuth2", "PAT"]>;
111604
+ integrationId: z.ZodString;
111605
+ accessToken: z.ZodString;
111606
+ userId: z.ZodString;
111607
+ createdAt: z.ZodDate;
111608
+ refreshToken: z.ZodOptional<z.ZodString>;
111609
+ profile: z.ZodOptional<z.ZodObject<{
111610
+ id: z.ZodString;
111611
+ username: z.ZodOptional<z.ZodString>;
111612
+ avatarUrl: z.ZodOptional<z.ZodString>;
111613
+ }, "strip", z.ZodTypeAny, {
111614
+ id: string;
111615
+ username?: string | undefined;
111616
+ avatarUrl?: string | undefined;
111617
+ }, {
111618
+ id: string;
111619
+ username?: string | undefined;
111620
+ avatarUrl?: string | undefined;
111621
+ }>>;
111622
+ }, "strip", z.ZodTypeAny, {
111623
+ id: string;
111624
+ createdAt: Date;
111625
+ type: "OAuth2" | "PAT";
111626
+ accessToken: string;
111627
+ userId: string;
111628
+ integrationId: string;
111629
+ refreshToken?: string | undefined;
111630
+ profile?: {
111631
+ id: string;
111632
+ username?: string | undefined;
111633
+ avatarUrl?: string | undefined;
111634
+ } | undefined;
111635
+ }, {
111636
+ id: string;
111637
+ createdAt: Date;
111638
+ type: "OAuth2" | "PAT";
111639
+ accessToken: string;
111640
+ userId: string;
111641
+ integrationId: string;
111642
+ refreshToken?: string | undefined;
111643
+ profile?: {
111644
+ id: string;
111645
+ username?: string | undefined;
111646
+ avatarUrl?: string | undefined;
111647
+ } | undefined;
111648
+ }>, "many">>;
111649
+ }, "strip", z.ZodTypeAny, {
111650
+ id: string;
111651
+ createdAt: Date;
111652
+ type: "Figma" | "Azure" | "Github" | "Gitlab" | "Bitbucket";
111653
+ workspaceId: string;
111654
+ integrationCredentials?: {
111655
+ id: string;
111656
+ createdAt: Date;
111657
+ type: "OAuth2" | "PAT";
111658
+ accessToken: string;
111659
+ userId: string;
111660
+ integrationId: string;
111661
+ refreshToken?: string | undefined;
111662
+ profile?: {
111663
+ id: string;
111664
+ username?: string | undefined;
111665
+ avatarUrl?: string | undefined;
111666
+ } | undefined;
111667
+ }[] | undefined;
111668
+ }, {
111669
+ id: string;
111670
+ createdAt: Date;
111671
+ type: "Figma" | "Azure" | "Github" | "Gitlab" | "Bitbucket";
111672
+ workspaceId: string;
111673
+ integrationCredentials?: {
111674
+ id: string;
111675
+ createdAt: Date;
111676
+ type: "OAuth2" | "PAT";
111677
+ accessToken: string;
111678
+ userId: string;
111679
+ integrationId: string;
111680
+ refreshToken?: string | undefined;
111681
+ profile?: {
111682
+ id: string;
111683
+ username?: string | undefined;
111684
+ avatarUrl?: string | undefined;
111685
+ } | undefined;
111686
+ }[] | undefined;
111687
+ }>;
111688
+ type Integration = z.infer<typeof Integration>;
111167
111689
 
111168
111690
  declare const IntegrationTokenSchema: z.ZodObject<{
111169
111691
  id: z.ZodString;
@@ -111527,6 +112049,21 @@ declare const UserLinkedIntegrations: z.ZodObject<{
111527
112049
  }>;
111528
112050
  type UserLinkedIntegrations = z.infer<typeof UserLinkedIntegrations>;
111529
112051
 
112052
+ declare const CreateUserInput: z.ZodObject<{
112053
+ email: z.ZodString;
112054
+ name: z.ZodString;
112055
+ username: z.ZodString;
112056
+ }, "strip", z.ZodTypeAny, {
112057
+ name: string;
112058
+ email: string;
112059
+ username: string;
112060
+ }, {
112061
+ name: string;
112062
+ email: string;
112063
+ username: string;
112064
+ }>;
112065
+ type CreateUserInput = z.infer<typeof CreateUserInput>;
112066
+
111530
112067
  declare const UserIdentity: z.ZodObject<{
111531
112068
  id: z.ZodString;
111532
112069
  userId: z.ZodString;
@@ -111625,6 +112162,18 @@ declare const UserProfile: z.ZodObject<{
111625
112162
  }>;
111626
112163
  type UserProfile = z.infer<typeof UserProfile>;
111627
112164
 
112165
+ declare const UserTest: z.ZodObject<{
112166
+ id: z.ZodString;
112167
+ email: z.ZodString;
112168
+ }, "strip", z.ZodTypeAny, {
112169
+ id: string;
112170
+ email: string;
112171
+ }, {
112172
+ id: string;
112173
+ email: string;
112174
+ }>;
112175
+ type UserTest = z.infer<typeof UserTest>;
112176
+
111628
112177
  declare const User: z.ZodObject<{
111629
112178
  id: z.ZodString;
111630
112179
  email: z.ZodString;
@@ -113159,6 +113708,19 @@ declare const Workspace: z.ZodObject<{
113159
113708
  errorReason: string;
113160
113709
  enabled: boolean;
113161
113710
  }>;
113711
+ protectedPages: z.ZodObject<{
113712
+ enabled: z.ZodBoolean;
113713
+ errorMessage: z.ZodString;
113714
+ errorReason: z.ZodString;
113715
+ }, "strip", z.ZodTypeAny, {
113716
+ errorMessage: string;
113717
+ errorReason: string;
113718
+ enabled: boolean;
113719
+ }, {
113720
+ errorMessage: string;
113721
+ errorReason: string;
113722
+ enabled: boolean;
113723
+ }>;
113162
113724
  }, "strip", z.ZodTypeAny, {
113163
113725
  designSystems: {
113164
113726
  max: number;
@@ -113247,6 +113809,11 @@ declare const Workspace: z.ZodObject<{
113247
113809
  errorReason: string;
113248
113810
  enabled: boolean;
113249
113811
  };
113812
+ protectedPages: {
113813
+ errorMessage: string;
113814
+ errorReason: string;
113815
+ enabled: boolean;
113816
+ };
113250
113817
  }, {
113251
113818
  designSystems: {
113252
113819
  max: number;
@@ -113335,6 +113902,11 @@ declare const Workspace: z.ZodObject<{
113335
113902
  errorReason: string;
113336
113903
  enabled: boolean;
113337
113904
  };
113905
+ protectedPages: {
113906
+ errorMessage: string;
113907
+ errorReason: string;
113908
+ enabled: boolean;
113909
+ };
113338
113910
  }>>;
113339
113911
  stripeProductDescription: z.ZodOptional<z.ZodString>;
113340
113912
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -113475,6 +114047,11 @@ declare const Workspace: z.ZodObject<{
113475
114047
  errorReason: string;
113476
114048
  enabled: boolean;
113477
114049
  };
114050
+ protectedPages: {
114051
+ errorMessage: string;
114052
+ errorReason: string;
114053
+ enabled: boolean;
114054
+ };
113478
114055
  } | undefined;
113479
114056
  stripeProductDescription?: string | undefined;
113480
114057
  stripeProductFeatures?: string[] | undefined;
@@ -113597,6 +114174,11 @@ declare const Workspace: z.ZodObject<{
113597
114174
  errorReason: string;
113598
114175
  enabled: boolean;
113599
114176
  };
114177
+ protectedPages: {
114178
+ errorMessage: string;
114179
+ errorReason: string;
114180
+ enabled: boolean;
114181
+ };
113600
114182
  } | undefined;
113601
114183
  stripeProductDescription?: string | undefined;
113602
114184
  stripeProductFeatures?: string[] | undefined;
@@ -113962,6 +114544,11 @@ declare const Workspace: z.ZodObject<{
113962
114544
  errorReason: string;
113963
114545
  enabled: boolean;
113964
114546
  };
114547
+ protectedPages: {
114548
+ errorMessage: string;
114549
+ errorReason: string;
114550
+ enabled: boolean;
114551
+ };
113965
114552
  } | undefined;
113966
114553
  stripeProductDescription?: string | undefined;
113967
114554
  stripeProductFeatures?: string[] | undefined;
@@ -114169,6 +114756,11 @@ declare const Workspace: z.ZodObject<{
114169
114756
  errorReason: string;
114170
114757
  enabled: boolean;
114171
114758
  };
114759
+ protectedPages: {
114760
+ errorMessage: string;
114761
+ errorReason: string;
114762
+ enabled: boolean;
114763
+ };
114172
114764
  } | undefined;
114173
114765
  stripeProductDescription?: string | undefined;
114174
114766
  stripeProductFeatures?: string[] | undefined;
@@ -114602,6 +115194,19 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
114602
115194
  errorReason: string;
114603
115195
  enabled: boolean;
114604
115196
  }>;
115197
+ protectedPages: z.ZodObject<{
115198
+ enabled: z.ZodBoolean;
115199
+ errorMessage: z.ZodString;
115200
+ errorReason: z.ZodString;
115201
+ }, "strip", z.ZodTypeAny, {
115202
+ errorMessage: string;
115203
+ errorReason: string;
115204
+ enabled: boolean;
115205
+ }, {
115206
+ errorMessage: string;
115207
+ errorReason: string;
115208
+ enabled: boolean;
115209
+ }>;
114605
115210
  }, "strip", z.ZodTypeAny, {
114606
115211
  designSystems: {
114607
115212
  max: number;
@@ -114690,6 +115295,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
114690
115295
  errorReason: string;
114691
115296
  enabled: boolean;
114692
115297
  };
115298
+ protectedPages: {
115299
+ errorMessage: string;
115300
+ errorReason: string;
115301
+ enabled: boolean;
115302
+ };
114693
115303
  }, {
114694
115304
  designSystems: {
114695
115305
  max: number;
@@ -114778,6 +115388,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
114778
115388
  errorReason: string;
114779
115389
  enabled: boolean;
114780
115390
  };
115391
+ protectedPages: {
115392
+ errorMessage: string;
115393
+ errorReason: string;
115394
+ enabled: boolean;
115395
+ };
114781
115396
  }>>;
114782
115397
  stripeProductDescription: z.ZodOptional<z.ZodString>;
114783
115398
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -114918,6 +115533,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
114918
115533
  errorReason: string;
114919
115534
  enabled: boolean;
114920
115535
  };
115536
+ protectedPages: {
115537
+ errorMessage: string;
115538
+ errorReason: string;
115539
+ enabled: boolean;
115540
+ };
114921
115541
  } | undefined;
114922
115542
  stripeProductDescription?: string | undefined;
114923
115543
  stripeProductFeatures?: string[] | undefined;
@@ -115040,6 +115660,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
115040
115660
  errorReason: string;
115041
115661
  enabled: boolean;
115042
115662
  };
115663
+ protectedPages: {
115664
+ errorMessage: string;
115665
+ errorReason: string;
115666
+ enabled: boolean;
115667
+ };
115043
115668
  } | undefined;
115044
115669
  stripeProductDescription?: string | undefined;
115045
115670
  stripeProductFeatures?: string[] | undefined;
@@ -115405,6 +116030,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
115405
116030
  errorReason: string;
115406
116031
  enabled: boolean;
115407
116032
  };
116033
+ protectedPages: {
116034
+ errorMessage: string;
116035
+ errorReason: string;
116036
+ enabled: boolean;
116037
+ };
115408
116038
  } | undefined;
115409
116039
  stripeProductDescription?: string | undefined;
115410
116040
  stripeProductFeatures?: string[] | undefined;
@@ -115612,6 +116242,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
115612
116242
  errorReason: string;
115613
116243
  enabled: boolean;
115614
116244
  };
116245
+ protectedPages: {
116246
+ errorMessage: string;
116247
+ errorReason: string;
116248
+ enabled: boolean;
116249
+ };
115615
116250
  } | undefined;
115616
116251
  stripeProductDescription?: string | undefined;
115617
116252
  stripeProductFeatures?: string[] | undefined;
@@ -115908,6 +116543,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
115908
116543
  errorReason: string;
115909
116544
  enabled: boolean;
115910
116545
  };
116546
+ protectedPages: {
116547
+ errorMessage: string;
116548
+ errorReason: string;
116549
+ enabled: boolean;
116550
+ };
115911
116551
  } | undefined;
115912
116552
  stripeProductDescription?: string | undefined;
115913
116553
  stripeProductFeatures?: string[] | undefined;
@@ -116137,6 +116777,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
116137
116777
  errorReason: string;
116138
116778
  enabled: boolean;
116139
116779
  };
116780
+ protectedPages: {
116781
+ errorMessage: string;
116782
+ errorReason: string;
116783
+ enabled: boolean;
116784
+ };
116140
116785
  } | undefined;
116141
116786
  stripeProductDescription?: string | undefined;
116142
116787
  stripeProductFeatures?: string[] | undefined;
@@ -116225,4 +116870,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
116225
116870
  }>;
116226
116871
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
116227
116872
 
116228
- export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, type IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsSchema, IntegrationCredentialsType, type IntegrationToken, IntegrationTokenSchema, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, 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 UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
116873
+ export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, type IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsSchema, IntegrationCredentialsType, type IntegrationToken, IntegrationTokenSchema, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserTest, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };