@supernova-studio/model 0.42.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.mts +576 -268
- package/dist/index.d.ts +576 -268
- package/dist/index.js +30 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +153 -134
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/billing/features.ts +1 -0
- package/src/dsm/elements/data/documentation-v2.ts +2 -2
- package/src/integrations/integration.ts +12 -11
- package/src/users/index.ts +2 -0
- package/src/users/user-create.ts +9 -0
- package/src/users/user-test.ts +8 -0
package/dist/index.d.mts
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;
|
|
@@ -15653,7 +15709,9 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
15653
15709
|
|
|
15654
15710
|
declare const DocumentationPageDataV2: z.ZodObject<{
|
|
15655
15711
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
15712
|
+
isHidden: boolean;
|
|
15656
15713
|
showSidebar: boolean;
|
|
15714
|
+
isPrivate: boolean;
|
|
15657
15715
|
header: {
|
|
15658
15716
|
description: string;
|
|
15659
15717
|
alignment: "Center" | "Left";
|
|
@@ -15681,10 +15739,10 @@ declare const DocumentationPageDataV2: z.ZodObject<{
|
|
|
15681
15739
|
} | null | undefined;
|
|
15682
15740
|
minHeight?: number | null | undefined;
|
|
15683
15741
|
};
|
|
15684
|
-
isPrivate?: boolean | undefined;
|
|
15685
|
-
isHidden?: boolean | undefined;
|
|
15686
15742
|
}, z.ZodTypeDef, {
|
|
15743
|
+
isHidden: boolean;
|
|
15687
15744
|
showSidebar: boolean;
|
|
15745
|
+
isPrivate: boolean;
|
|
15688
15746
|
header: {
|
|
15689
15747
|
description: string;
|
|
15690
15748
|
alignment: "Center" | "Left";
|
|
@@ -15712,10 +15770,10 @@ declare const DocumentationPageDataV2: z.ZodObject<{
|
|
|
15712
15770
|
} | null | undefined;
|
|
15713
15771
|
minHeight?: number | null | undefined;
|
|
15714
15772
|
};
|
|
15715
|
-
isPrivate?: boolean | undefined;
|
|
15716
|
-
isHidden?: boolean | undefined;
|
|
15717
15773
|
}>>>, {
|
|
15774
|
+
isHidden: boolean;
|
|
15718
15775
|
showSidebar: boolean;
|
|
15776
|
+
isPrivate: boolean;
|
|
15719
15777
|
header: {
|
|
15720
15778
|
description: string;
|
|
15721
15779
|
alignment: "Center" | "Left";
|
|
@@ -15743,10 +15801,10 @@ declare const DocumentationPageDataV2: z.ZodObject<{
|
|
|
15743
15801
|
} | null | undefined;
|
|
15744
15802
|
minHeight?: number | null | undefined;
|
|
15745
15803
|
};
|
|
15746
|
-
isPrivate?: boolean | undefined;
|
|
15747
|
-
isHidden?: boolean | undefined;
|
|
15748
15804
|
} | undefined, {
|
|
15805
|
+
isHidden: boolean;
|
|
15749
15806
|
showSidebar: boolean;
|
|
15807
|
+
isPrivate: boolean;
|
|
15750
15808
|
header: {
|
|
15751
15809
|
description: string;
|
|
15752
15810
|
alignment: "Center" | "Left";
|
|
@@ -15774,12 +15832,12 @@ declare const DocumentationPageDataV2: z.ZodObject<{
|
|
|
15774
15832
|
} | null | undefined;
|
|
15775
15833
|
minHeight?: number | null | undefined;
|
|
15776
15834
|
};
|
|
15777
|
-
isPrivate?: boolean | undefined;
|
|
15778
|
-
isHidden?: boolean | undefined;
|
|
15779
15835
|
} | null | undefined>;
|
|
15780
15836
|
}, "strip", z.ZodTypeAny, {
|
|
15781
15837
|
configuration?: {
|
|
15838
|
+
isHidden: boolean;
|
|
15782
15839
|
showSidebar: boolean;
|
|
15840
|
+
isPrivate: boolean;
|
|
15783
15841
|
header: {
|
|
15784
15842
|
description: string;
|
|
15785
15843
|
alignment: "Center" | "Left";
|
|
@@ -15807,12 +15865,12 @@ declare const DocumentationPageDataV2: z.ZodObject<{
|
|
|
15807
15865
|
} | null | undefined;
|
|
15808
15866
|
minHeight?: number | null | undefined;
|
|
15809
15867
|
};
|
|
15810
|
-
isPrivate?: boolean | undefined;
|
|
15811
|
-
isHidden?: boolean | undefined;
|
|
15812
15868
|
} | undefined;
|
|
15813
15869
|
}, {
|
|
15814
15870
|
configuration?: {
|
|
15871
|
+
isHidden: boolean;
|
|
15815
15872
|
showSidebar: boolean;
|
|
15873
|
+
isPrivate: boolean;
|
|
15816
15874
|
header: {
|
|
15817
15875
|
description: string;
|
|
15818
15876
|
alignment: "Center" | "Left";
|
|
@@ -15840,8 +15898,6 @@ declare const DocumentationPageDataV2: z.ZodObject<{
|
|
|
15840
15898
|
} | null | undefined;
|
|
15841
15899
|
minHeight?: number | null | undefined;
|
|
15842
15900
|
};
|
|
15843
|
-
isPrivate?: boolean | undefined;
|
|
15844
|
-
isHidden?: boolean | undefined;
|
|
15845
15901
|
} | null | undefined;
|
|
15846
15902
|
}>;
|
|
15847
15903
|
|
|
@@ -17665,8 +17721,8 @@ declare const defaultDocumentationItemConfigurationV1: DocumentationItemConfigur
|
|
|
17665
17721
|
|
|
17666
17722
|
declare const DocumentationItemConfigurationV2: z.ZodObject<{
|
|
17667
17723
|
showSidebar: z.ZodBoolean;
|
|
17668
|
-
isPrivate: z.
|
|
17669
|
-
isHidden: z.
|
|
17724
|
+
isPrivate: z.ZodBoolean;
|
|
17725
|
+
isHidden: z.ZodBoolean;
|
|
17670
17726
|
header: z.ZodObject<{
|
|
17671
17727
|
description: z.ZodString;
|
|
17672
17728
|
alignment: z.ZodEnum<["Left", "Center"]>;
|
|
@@ -17791,7 +17847,9 @@ declare const DocumentationItemConfigurationV2: z.ZodObject<{
|
|
|
17791
17847
|
minHeight?: number | null | undefined;
|
|
17792
17848
|
}>;
|
|
17793
17849
|
}, "strip", z.ZodTypeAny, {
|
|
17850
|
+
isHidden: boolean;
|
|
17794
17851
|
showSidebar: boolean;
|
|
17852
|
+
isPrivate: boolean;
|
|
17795
17853
|
header: {
|
|
17796
17854
|
description: string;
|
|
17797
17855
|
alignment: "Center" | "Left";
|
|
@@ -17819,10 +17877,10 @@ declare const DocumentationItemConfigurationV2: z.ZodObject<{
|
|
|
17819
17877
|
} | null | undefined;
|
|
17820
17878
|
minHeight?: number | null | undefined;
|
|
17821
17879
|
};
|
|
17822
|
-
isPrivate?: boolean | undefined;
|
|
17823
|
-
isHidden?: boolean | undefined;
|
|
17824
17880
|
}, {
|
|
17881
|
+
isHidden: boolean;
|
|
17825
17882
|
showSidebar: boolean;
|
|
17883
|
+
isPrivate: boolean;
|
|
17826
17884
|
header: {
|
|
17827
17885
|
description: string;
|
|
17828
17886
|
alignment: "Center" | "Left";
|
|
@@ -17850,8 +17908,6 @@ declare const DocumentationItemConfigurationV2: z.ZodObject<{
|
|
|
17850
17908
|
} | null | undefined;
|
|
17851
17909
|
minHeight?: number | null | undefined;
|
|
17852
17910
|
};
|
|
17853
|
-
isPrivate?: boolean | undefined;
|
|
17854
|
-
isHidden?: boolean | undefined;
|
|
17855
17911
|
}>;
|
|
17856
17912
|
type DocumentationItemConfigurationV2 = z.infer<typeof DocumentationItemConfigurationV2>;
|
|
17857
17913
|
declare const defaultDocumentationItemConfigurationV2: DocumentationItemConfigurationV2;
|
|
@@ -19636,7 +19692,9 @@ type ElementGroupDataV1 = z.infer<typeof ElementGroupDataV1>;
|
|
|
19636
19692
|
declare const ElementGroupDataV2: z.ZodObject<{
|
|
19637
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>;
|
|
19638
19694
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
19695
|
+
isHidden: boolean;
|
|
19639
19696
|
showSidebar: boolean;
|
|
19697
|
+
isPrivate: boolean;
|
|
19640
19698
|
header: {
|
|
19641
19699
|
description: string;
|
|
19642
19700
|
alignment: "Center" | "Left";
|
|
@@ -19664,10 +19722,10 @@ declare const ElementGroupDataV2: z.ZodObject<{
|
|
|
19664
19722
|
} | null | undefined;
|
|
19665
19723
|
minHeight?: number | null | undefined;
|
|
19666
19724
|
};
|
|
19667
|
-
isPrivate?: boolean | undefined;
|
|
19668
|
-
isHidden?: boolean | undefined;
|
|
19669
19725
|
}, z.ZodTypeDef, {
|
|
19726
|
+
isHidden: boolean;
|
|
19670
19727
|
showSidebar: boolean;
|
|
19728
|
+
isPrivate: boolean;
|
|
19671
19729
|
header: {
|
|
19672
19730
|
description: string;
|
|
19673
19731
|
alignment: "Center" | "Left";
|
|
@@ -19695,10 +19753,10 @@ declare const ElementGroupDataV2: z.ZodObject<{
|
|
|
19695
19753
|
} | null | undefined;
|
|
19696
19754
|
minHeight?: number | null | undefined;
|
|
19697
19755
|
};
|
|
19698
|
-
isPrivate?: boolean | undefined;
|
|
19699
|
-
isHidden?: boolean | undefined;
|
|
19700
19756
|
}>>>, {
|
|
19757
|
+
isHidden: boolean;
|
|
19701
19758
|
showSidebar: boolean;
|
|
19759
|
+
isPrivate: boolean;
|
|
19702
19760
|
header: {
|
|
19703
19761
|
description: string;
|
|
19704
19762
|
alignment: "Center" | "Left";
|
|
@@ -19726,10 +19784,10 @@ declare const ElementGroupDataV2: z.ZodObject<{
|
|
|
19726
19784
|
} | null | undefined;
|
|
19727
19785
|
minHeight?: number | null | undefined;
|
|
19728
19786
|
};
|
|
19729
|
-
isPrivate?: boolean | undefined;
|
|
19730
|
-
isHidden?: boolean | undefined;
|
|
19731
19787
|
} | undefined, {
|
|
19788
|
+
isHidden: boolean;
|
|
19732
19789
|
showSidebar: boolean;
|
|
19790
|
+
isPrivate: boolean;
|
|
19733
19791
|
header: {
|
|
19734
19792
|
description: string;
|
|
19735
19793
|
alignment: "Center" | "Left";
|
|
@@ -19757,13 +19815,13 @@ declare const ElementGroupDataV2: z.ZodObject<{
|
|
|
19757
19815
|
} | null | undefined;
|
|
19758
19816
|
minHeight?: number | null | undefined;
|
|
19759
19817
|
};
|
|
19760
|
-
isPrivate?: boolean | undefined;
|
|
19761
|
-
isHidden?: boolean | undefined;
|
|
19762
19818
|
} | null | undefined>;
|
|
19763
19819
|
}, "strip", z.ZodTypeAny, {
|
|
19764
19820
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
19765
19821
|
configuration?: {
|
|
19822
|
+
isHidden: boolean;
|
|
19766
19823
|
showSidebar: boolean;
|
|
19824
|
+
isPrivate: boolean;
|
|
19767
19825
|
header: {
|
|
19768
19826
|
description: string;
|
|
19769
19827
|
alignment: "Center" | "Left";
|
|
@@ -19791,13 +19849,13 @@ declare const ElementGroupDataV2: z.ZodObject<{
|
|
|
19791
19849
|
} | null | undefined;
|
|
19792
19850
|
minHeight?: number | null | undefined;
|
|
19793
19851
|
};
|
|
19794
|
-
isPrivate?: boolean | undefined;
|
|
19795
|
-
isHidden?: boolean | undefined;
|
|
19796
19852
|
} | undefined;
|
|
19797
19853
|
}, {
|
|
19798
19854
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
19799
19855
|
configuration?: {
|
|
19856
|
+
isHidden: boolean;
|
|
19800
19857
|
showSidebar: boolean;
|
|
19858
|
+
isPrivate: boolean;
|
|
19801
19859
|
header: {
|
|
19802
19860
|
description: string;
|
|
19803
19861
|
alignment: "Center" | "Left";
|
|
@@ -19825,8 +19883,6 @@ declare const ElementGroupDataV2: z.ZodObject<{
|
|
|
19825
19883
|
} | null | undefined;
|
|
19826
19884
|
minHeight?: number | null | undefined;
|
|
19827
19885
|
};
|
|
19828
|
-
isPrivate?: boolean | undefined;
|
|
19829
|
-
isHidden?: boolean | undefined;
|
|
19830
19886
|
} | null | undefined;
|
|
19831
19887
|
}>;
|
|
19832
19888
|
type ElementGroupDataV2 = z.infer<typeof ElementGroupDataV2>;
|
|
@@ -24681,7 +24737,9 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
24681
24737
|
shortPersistentId: z.ZodString;
|
|
24682
24738
|
data: z.ZodObject<{
|
|
24683
24739
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
24740
|
+
isHidden: boolean;
|
|
24684
24741
|
showSidebar: boolean;
|
|
24742
|
+
isPrivate: boolean;
|
|
24685
24743
|
header: {
|
|
24686
24744
|
description: string;
|
|
24687
24745
|
alignment: "Center" | "Left";
|
|
@@ -24709,10 +24767,10 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
24709
24767
|
} | null | undefined;
|
|
24710
24768
|
minHeight?: number | null | undefined;
|
|
24711
24769
|
};
|
|
24712
|
-
isPrivate?: boolean | undefined;
|
|
24713
|
-
isHidden?: boolean | undefined;
|
|
24714
24770
|
}, z.ZodTypeDef, {
|
|
24771
|
+
isHidden: boolean;
|
|
24715
24772
|
showSidebar: boolean;
|
|
24773
|
+
isPrivate: boolean;
|
|
24716
24774
|
header: {
|
|
24717
24775
|
description: string;
|
|
24718
24776
|
alignment: "Center" | "Left";
|
|
@@ -24740,10 +24798,10 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
24740
24798
|
} | null | undefined;
|
|
24741
24799
|
minHeight?: number | null | undefined;
|
|
24742
24800
|
};
|
|
24743
|
-
isPrivate?: boolean | undefined;
|
|
24744
|
-
isHidden?: boolean | undefined;
|
|
24745
24801
|
}>>>, {
|
|
24802
|
+
isHidden: boolean;
|
|
24746
24803
|
showSidebar: boolean;
|
|
24804
|
+
isPrivate: boolean;
|
|
24747
24805
|
header: {
|
|
24748
24806
|
description: string;
|
|
24749
24807
|
alignment: "Center" | "Left";
|
|
@@ -24771,10 +24829,10 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
24771
24829
|
} | null | undefined;
|
|
24772
24830
|
minHeight?: number | null | undefined;
|
|
24773
24831
|
};
|
|
24774
|
-
isPrivate?: boolean | undefined;
|
|
24775
|
-
isHidden?: boolean | undefined;
|
|
24776
24832
|
} | undefined, {
|
|
24833
|
+
isHidden: boolean;
|
|
24777
24834
|
showSidebar: boolean;
|
|
24835
|
+
isPrivate: boolean;
|
|
24778
24836
|
header: {
|
|
24779
24837
|
description: string;
|
|
24780
24838
|
alignment: "Center" | "Left";
|
|
@@ -24802,8 +24860,6 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
24802
24860
|
} | null | undefined;
|
|
24803
24861
|
minHeight?: number | null | undefined;
|
|
24804
24862
|
};
|
|
24805
|
-
isPrivate?: boolean | undefined;
|
|
24806
|
-
isHidden?: boolean | undefined;
|
|
24807
24863
|
} | null | undefined>;
|
|
24808
24864
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
24809
24865
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -25170,7 +25226,9 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
25170
25226
|
}>, "many">>;
|
|
25171
25227
|
}, "strip", z.ZodTypeAny, {
|
|
25172
25228
|
configuration?: {
|
|
25229
|
+
isHidden: boolean;
|
|
25173
25230
|
showSidebar: boolean;
|
|
25231
|
+
isPrivate: boolean;
|
|
25174
25232
|
header: {
|
|
25175
25233
|
description: string;
|
|
25176
25234
|
alignment: "Center" | "Left";
|
|
@@ -25198,13 +25256,13 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
25198
25256
|
} | null | undefined;
|
|
25199
25257
|
minHeight?: number | null | undefined;
|
|
25200
25258
|
};
|
|
25201
|
-
isPrivate?: boolean | undefined;
|
|
25202
|
-
isHidden?: boolean | undefined;
|
|
25203
25259
|
} | undefined;
|
|
25204
25260
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
25205
25261
|
}, {
|
|
25206
25262
|
configuration?: {
|
|
25263
|
+
isHidden: boolean;
|
|
25207
25264
|
showSidebar: boolean;
|
|
25265
|
+
isPrivate: boolean;
|
|
25208
25266
|
header: {
|
|
25209
25267
|
description: string;
|
|
25210
25268
|
alignment: "Center" | "Left";
|
|
@@ -25232,8 +25290,6 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
25232
25290
|
} | null | undefined;
|
|
25233
25291
|
minHeight?: number | null | undefined;
|
|
25234
25292
|
};
|
|
25235
|
-
isPrivate?: boolean | undefined;
|
|
25236
|
-
isHidden?: boolean | undefined;
|
|
25237
25293
|
} | null | undefined;
|
|
25238
25294
|
oldBlocks?: ({
|
|
25239
25295
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -25606,7 +25662,9 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
25606
25662
|
persistentId: string;
|
|
25607
25663
|
data: {
|
|
25608
25664
|
configuration?: {
|
|
25665
|
+
isHidden: boolean;
|
|
25609
25666
|
showSidebar: boolean;
|
|
25667
|
+
isPrivate: boolean;
|
|
25610
25668
|
header: {
|
|
25611
25669
|
description: string;
|
|
25612
25670
|
alignment: "Center" | "Left";
|
|
@@ -25634,8 +25692,6 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
25634
25692
|
} | null | undefined;
|
|
25635
25693
|
minHeight?: number | null | undefined;
|
|
25636
25694
|
};
|
|
25637
|
-
isPrivate?: boolean | undefined;
|
|
25638
|
-
isHidden?: boolean | undefined;
|
|
25639
25695
|
} | undefined;
|
|
25640
25696
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
25641
25697
|
};
|
|
@@ -25656,7 +25712,9 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
25656
25712
|
persistentId: string;
|
|
25657
25713
|
data: {
|
|
25658
25714
|
configuration?: {
|
|
25715
|
+
isHidden: boolean;
|
|
25659
25716
|
showSidebar: boolean;
|
|
25717
|
+
isPrivate: boolean;
|
|
25660
25718
|
header: {
|
|
25661
25719
|
description: string;
|
|
25662
25720
|
alignment: "Center" | "Left";
|
|
@@ -25684,8 +25742,6 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
25684
25742
|
} | null | undefined;
|
|
25685
25743
|
minHeight?: number | null | undefined;
|
|
25686
25744
|
};
|
|
25687
|
-
isPrivate?: boolean | undefined;
|
|
25688
|
-
isHidden?: boolean | undefined;
|
|
25689
25745
|
} | null | undefined;
|
|
25690
25746
|
oldBlocks?: ({
|
|
25691
25747
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -26500,7 +26556,9 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26500
26556
|
data: z.ZodOptional<z.ZodObject<{
|
|
26501
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>;
|
|
26502
26558
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
26559
|
+
isHidden: boolean;
|
|
26503
26560
|
showSidebar: boolean;
|
|
26561
|
+
isPrivate: boolean;
|
|
26504
26562
|
header: {
|
|
26505
26563
|
description: string;
|
|
26506
26564
|
alignment: "Center" | "Left";
|
|
@@ -26528,10 +26586,10 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26528
26586
|
} | null | undefined;
|
|
26529
26587
|
minHeight?: number | null | undefined;
|
|
26530
26588
|
};
|
|
26531
|
-
isPrivate?: boolean | undefined;
|
|
26532
|
-
isHidden?: boolean | undefined;
|
|
26533
26589
|
}, z.ZodTypeDef, {
|
|
26590
|
+
isHidden: boolean;
|
|
26534
26591
|
showSidebar: boolean;
|
|
26592
|
+
isPrivate: boolean;
|
|
26535
26593
|
header: {
|
|
26536
26594
|
description: string;
|
|
26537
26595
|
alignment: "Center" | "Left";
|
|
@@ -26559,10 +26617,10 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26559
26617
|
} | null | undefined;
|
|
26560
26618
|
minHeight?: number | null | undefined;
|
|
26561
26619
|
};
|
|
26562
|
-
isPrivate?: boolean | undefined;
|
|
26563
|
-
isHidden?: boolean | undefined;
|
|
26564
26620
|
}>>>, {
|
|
26621
|
+
isHidden: boolean;
|
|
26565
26622
|
showSidebar: boolean;
|
|
26623
|
+
isPrivate: boolean;
|
|
26566
26624
|
header: {
|
|
26567
26625
|
description: string;
|
|
26568
26626
|
alignment: "Center" | "Left";
|
|
@@ -26590,10 +26648,10 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26590
26648
|
} | null | undefined;
|
|
26591
26649
|
minHeight?: number | null | undefined;
|
|
26592
26650
|
};
|
|
26593
|
-
isPrivate?: boolean | undefined;
|
|
26594
|
-
isHidden?: boolean | undefined;
|
|
26595
26651
|
} | undefined, {
|
|
26652
|
+
isHidden: boolean;
|
|
26596
26653
|
showSidebar: boolean;
|
|
26654
|
+
isPrivate: boolean;
|
|
26597
26655
|
header: {
|
|
26598
26656
|
description: string;
|
|
26599
26657
|
alignment: "Center" | "Left";
|
|
@@ -26621,13 +26679,13 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26621
26679
|
} | null | undefined;
|
|
26622
26680
|
minHeight?: number | null | undefined;
|
|
26623
26681
|
};
|
|
26624
|
-
isPrivate?: boolean | undefined;
|
|
26625
|
-
isHidden?: boolean | undefined;
|
|
26626
26682
|
} | null | undefined>;
|
|
26627
26683
|
}, "strip", z.ZodTypeAny, {
|
|
26628
26684
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
26629
26685
|
configuration?: {
|
|
26686
|
+
isHidden: boolean;
|
|
26630
26687
|
showSidebar: boolean;
|
|
26688
|
+
isPrivate: boolean;
|
|
26631
26689
|
header: {
|
|
26632
26690
|
description: string;
|
|
26633
26691
|
alignment: "Center" | "Left";
|
|
@@ -26655,13 +26713,13 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26655
26713
|
} | null | undefined;
|
|
26656
26714
|
minHeight?: number | null | undefined;
|
|
26657
26715
|
};
|
|
26658
|
-
isPrivate?: boolean | undefined;
|
|
26659
|
-
isHidden?: boolean | undefined;
|
|
26660
26716
|
} | undefined;
|
|
26661
26717
|
}, {
|
|
26662
26718
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
26663
26719
|
configuration?: {
|
|
26720
|
+
isHidden: boolean;
|
|
26664
26721
|
showSidebar: boolean;
|
|
26722
|
+
isPrivate: boolean;
|
|
26665
26723
|
header: {
|
|
26666
26724
|
description: string;
|
|
26667
26725
|
alignment: "Center" | "Left";
|
|
@@ -26689,8 +26747,6 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26689
26747
|
} | null | undefined;
|
|
26690
26748
|
minHeight?: number | null | undefined;
|
|
26691
26749
|
};
|
|
26692
|
-
isPrivate?: boolean | undefined;
|
|
26693
|
-
isHidden?: boolean | undefined;
|
|
26694
26750
|
} | null | undefined;
|
|
26695
26751
|
}>>;
|
|
26696
26752
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26713,7 +26769,9 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26713
26769
|
data?: {
|
|
26714
26770
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
26715
26771
|
configuration?: {
|
|
26772
|
+
isHidden: boolean;
|
|
26716
26773
|
showSidebar: boolean;
|
|
26774
|
+
isPrivate: boolean;
|
|
26717
26775
|
header: {
|
|
26718
26776
|
description: string;
|
|
26719
26777
|
alignment: "Center" | "Left";
|
|
@@ -26741,8 +26799,6 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26741
26799
|
} | null | undefined;
|
|
26742
26800
|
minHeight?: number | null | undefined;
|
|
26743
26801
|
};
|
|
26744
|
-
isPrivate?: boolean | undefined;
|
|
26745
|
-
isHidden?: boolean | undefined;
|
|
26746
26802
|
} | undefined;
|
|
26747
26803
|
} | undefined;
|
|
26748
26804
|
}, {
|
|
@@ -26765,7 +26821,9 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26765
26821
|
data?: {
|
|
26766
26822
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
26767
26823
|
configuration?: {
|
|
26824
|
+
isHidden: boolean;
|
|
26768
26825
|
showSidebar: boolean;
|
|
26826
|
+
isPrivate: boolean;
|
|
26769
26827
|
header: {
|
|
26770
26828
|
description: string;
|
|
26771
26829
|
alignment: "Center" | "Left";
|
|
@@ -26793,8 +26851,6 @@ declare const ElementGroup: z.ZodObject<{
|
|
|
26793
26851
|
} | null | undefined;
|
|
26794
26852
|
minHeight?: number | null | undefined;
|
|
26795
26853
|
};
|
|
26796
|
-
isPrivate?: boolean | undefined;
|
|
26797
|
-
isHidden?: boolean | undefined;
|
|
26798
26854
|
} | null | undefined;
|
|
26799
26855
|
} | undefined;
|
|
26800
26856
|
}>;
|
|
@@ -26807,7 +26863,9 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
26807
26863
|
data: z.ZodOptional<z.ZodObject<{
|
|
26808
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>;
|
|
26809
26865
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
26866
|
+
isHidden: boolean;
|
|
26810
26867
|
showSidebar: boolean;
|
|
26868
|
+
isPrivate: boolean;
|
|
26811
26869
|
header: {
|
|
26812
26870
|
description: string;
|
|
26813
26871
|
alignment: "Center" | "Left";
|
|
@@ -26835,10 +26893,10 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
26835
26893
|
} | null | undefined;
|
|
26836
26894
|
minHeight?: number | null | undefined;
|
|
26837
26895
|
};
|
|
26838
|
-
isPrivate?: boolean | undefined;
|
|
26839
|
-
isHidden?: boolean | undefined;
|
|
26840
26896
|
}, z.ZodTypeDef, {
|
|
26897
|
+
isHidden: boolean;
|
|
26841
26898
|
showSidebar: boolean;
|
|
26899
|
+
isPrivate: boolean;
|
|
26842
26900
|
header: {
|
|
26843
26901
|
description: string;
|
|
26844
26902
|
alignment: "Center" | "Left";
|
|
@@ -26866,10 +26924,10 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
26866
26924
|
} | null | undefined;
|
|
26867
26925
|
minHeight?: number | null | undefined;
|
|
26868
26926
|
};
|
|
26869
|
-
isPrivate?: boolean | undefined;
|
|
26870
|
-
isHidden?: boolean | undefined;
|
|
26871
26927
|
}>>>, {
|
|
26928
|
+
isHidden: boolean;
|
|
26872
26929
|
showSidebar: boolean;
|
|
26930
|
+
isPrivate: boolean;
|
|
26873
26931
|
header: {
|
|
26874
26932
|
description: string;
|
|
26875
26933
|
alignment: "Center" | "Left";
|
|
@@ -26897,10 +26955,10 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
26897
26955
|
} | null | undefined;
|
|
26898
26956
|
minHeight?: number | null | undefined;
|
|
26899
26957
|
};
|
|
26900
|
-
isPrivate?: boolean | undefined;
|
|
26901
|
-
isHidden?: boolean | undefined;
|
|
26902
26958
|
} | undefined, {
|
|
26959
|
+
isHidden: boolean;
|
|
26903
26960
|
showSidebar: boolean;
|
|
26961
|
+
isPrivate: boolean;
|
|
26904
26962
|
header: {
|
|
26905
26963
|
description: string;
|
|
26906
26964
|
alignment: "Center" | "Left";
|
|
@@ -26928,13 +26986,13 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
26928
26986
|
} | null | undefined;
|
|
26929
26987
|
minHeight?: number | null | undefined;
|
|
26930
26988
|
};
|
|
26931
|
-
isPrivate?: boolean | undefined;
|
|
26932
|
-
isHidden?: boolean | undefined;
|
|
26933
26989
|
} | null | undefined>;
|
|
26934
26990
|
}, "strip", z.ZodTypeAny, {
|
|
26935
26991
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
26936
26992
|
configuration?: {
|
|
26993
|
+
isHidden: boolean;
|
|
26937
26994
|
showSidebar: boolean;
|
|
26995
|
+
isPrivate: boolean;
|
|
26938
26996
|
header: {
|
|
26939
26997
|
description: string;
|
|
26940
26998
|
alignment: "Center" | "Left";
|
|
@@ -26962,13 +27020,13 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
26962
27020
|
} | null | undefined;
|
|
26963
27021
|
minHeight?: number | null | undefined;
|
|
26964
27022
|
};
|
|
26965
|
-
isPrivate?: boolean | undefined;
|
|
26966
|
-
isHidden?: boolean | undefined;
|
|
26967
27023
|
} | undefined;
|
|
26968
27024
|
}, {
|
|
26969
27025
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
26970
27026
|
configuration?: {
|
|
27027
|
+
isHidden: boolean;
|
|
26971
27028
|
showSidebar: boolean;
|
|
27029
|
+
isPrivate: boolean;
|
|
26972
27030
|
header: {
|
|
26973
27031
|
description: string;
|
|
26974
27032
|
alignment: "Center" | "Left";
|
|
@@ -26996,8 +27054,6 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
26996
27054
|
} | null | undefined;
|
|
26997
27055
|
minHeight?: number | null | undefined;
|
|
26998
27056
|
};
|
|
26999
|
-
isPrivate?: boolean | undefined;
|
|
27000
|
-
isHidden?: boolean | undefined;
|
|
27001
27057
|
} | null | undefined;
|
|
27002
27058
|
}>>;
|
|
27003
27059
|
designSystemVersionId: z.ZodString;
|
|
@@ -27034,7 +27090,9 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
27034
27090
|
data?: {
|
|
27035
27091
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
27036
27092
|
configuration?: {
|
|
27093
|
+
isHidden: boolean;
|
|
27037
27094
|
showSidebar: boolean;
|
|
27095
|
+
isPrivate: boolean;
|
|
27038
27096
|
header: {
|
|
27039
27097
|
description: string;
|
|
27040
27098
|
alignment: "Center" | "Left";
|
|
@@ -27062,8 +27120,6 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
27062
27120
|
} | null | undefined;
|
|
27063
27121
|
minHeight?: number | null | undefined;
|
|
27064
27122
|
};
|
|
27065
|
-
isPrivate?: boolean | undefined;
|
|
27066
|
-
isHidden?: boolean | undefined;
|
|
27067
27123
|
} | undefined;
|
|
27068
27124
|
} | undefined;
|
|
27069
27125
|
parentPersistentId?: string | undefined;
|
|
@@ -27086,7 +27142,9 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
27086
27142
|
data?: {
|
|
27087
27143
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
27088
27144
|
configuration?: {
|
|
27145
|
+
isHidden: boolean;
|
|
27089
27146
|
showSidebar: boolean;
|
|
27147
|
+
isPrivate: boolean;
|
|
27090
27148
|
header: {
|
|
27091
27149
|
description: string;
|
|
27092
27150
|
alignment: "Center" | "Left";
|
|
@@ -27114,8 +27172,6 @@ declare const BrandedElementGroup: z.ZodObject<{
|
|
|
27114
27172
|
} | null | undefined;
|
|
27115
27173
|
minHeight?: number | null | undefined;
|
|
27116
27174
|
};
|
|
27117
|
-
isPrivate?: boolean | undefined;
|
|
27118
|
-
isHidden?: boolean | undefined;
|
|
27119
27175
|
} | null | undefined;
|
|
27120
27176
|
} | undefined;
|
|
27121
27177
|
parentPersistentId?: string | undefined;
|
|
@@ -94344,7 +94400,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
94344
94400
|
shortPersistentId: z.ZodString;
|
|
94345
94401
|
data: z.ZodObject<{
|
|
94346
94402
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
94403
|
+
isHidden: boolean;
|
|
94347
94404
|
showSidebar: boolean;
|
|
94405
|
+
isPrivate: boolean;
|
|
94348
94406
|
header: {
|
|
94349
94407
|
description: string;
|
|
94350
94408
|
alignment: "Center" | "Left";
|
|
@@ -94372,10 +94430,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
94372
94430
|
} | null | undefined;
|
|
94373
94431
|
minHeight?: number | null | undefined;
|
|
94374
94432
|
};
|
|
94375
|
-
isPrivate?: boolean | undefined;
|
|
94376
|
-
isHidden?: boolean | undefined;
|
|
94377
94433
|
}, z.ZodTypeDef, {
|
|
94434
|
+
isHidden: boolean;
|
|
94378
94435
|
showSidebar: boolean;
|
|
94436
|
+
isPrivate: boolean;
|
|
94379
94437
|
header: {
|
|
94380
94438
|
description: string;
|
|
94381
94439
|
alignment: "Center" | "Left";
|
|
@@ -94403,10 +94461,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
94403
94461
|
} | null | undefined;
|
|
94404
94462
|
minHeight?: number | null | undefined;
|
|
94405
94463
|
};
|
|
94406
|
-
isPrivate?: boolean | undefined;
|
|
94407
|
-
isHidden?: boolean | undefined;
|
|
94408
94464
|
}>>>, {
|
|
94465
|
+
isHidden: boolean;
|
|
94409
94466
|
showSidebar: boolean;
|
|
94467
|
+
isPrivate: boolean;
|
|
94410
94468
|
header: {
|
|
94411
94469
|
description: string;
|
|
94412
94470
|
alignment: "Center" | "Left";
|
|
@@ -94434,10 +94492,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
94434
94492
|
} | null | undefined;
|
|
94435
94493
|
minHeight?: number | null | undefined;
|
|
94436
94494
|
};
|
|
94437
|
-
isPrivate?: boolean | undefined;
|
|
94438
|
-
isHidden?: boolean | undefined;
|
|
94439
94495
|
} | undefined, {
|
|
94496
|
+
isHidden: boolean;
|
|
94440
94497
|
showSidebar: boolean;
|
|
94498
|
+
isPrivate: boolean;
|
|
94441
94499
|
header: {
|
|
94442
94500
|
description: string;
|
|
94443
94501
|
alignment: "Center" | "Left";
|
|
@@ -94465,8 +94523,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
94465
94523
|
} | null | undefined;
|
|
94466
94524
|
minHeight?: number | null | undefined;
|
|
94467
94525
|
};
|
|
94468
|
-
isPrivate?: boolean | undefined;
|
|
94469
|
-
isHidden?: boolean | undefined;
|
|
94470
94526
|
} | null | undefined>;
|
|
94471
94527
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
94472
94528
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -94833,7 +94889,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
94833
94889
|
}>, "many">>;
|
|
94834
94890
|
}, "strip", z.ZodTypeAny, {
|
|
94835
94891
|
configuration?: {
|
|
94892
|
+
isHidden: boolean;
|
|
94836
94893
|
showSidebar: boolean;
|
|
94894
|
+
isPrivate: boolean;
|
|
94837
94895
|
header: {
|
|
94838
94896
|
description: string;
|
|
94839
94897
|
alignment: "Center" | "Left";
|
|
@@ -94861,13 +94919,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
94861
94919
|
} | null | undefined;
|
|
94862
94920
|
minHeight?: number | null | undefined;
|
|
94863
94921
|
};
|
|
94864
|
-
isPrivate?: boolean | undefined;
|
|
94865
|
-
isHidden?: boolean | undefined;
|
|
94866
94922
|
} | undefined;
|
|
94867
94923
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
94868
94924
|
}, {
|
|
94869
94925
|
configuration?: {
|
|
94926
|
+
isHidden: boolean;
|
|
94870
94927
|
showSidebar: boolean;
|
|
94928
|
+
isPrivate: boolean;
|
|
94871
94929
|
header: {
|
|
94872
94930
|
description: string;
|
|
94873
94931
|
alignment: "Center" | "Left";
|
|
@@ -94895,8 +94953,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
94895
94953
|
} | null | undefined;
|
|
94896
94954
|
minHeight?: number | null | undefined;
|
|
94897
94955
|
};
|
|
94898
|
-
isPrivate?: boolean | undefined;
|
|
94899
|
-
isHidden?: boolean | undefined;
|
|
94900
94956
|
} | null | undefined;
|
|
94901
94957
|
oldBlocks?: ({
|
|
94902
94958
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -95269,7 +95325,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95269
95325
|
persistentId: string;
|
|
95270
95326
|
data: {
|
|
95271
95327
|
configuration?: {
|
|
95328
|
+
isHidden: boolean;
|
|
95272
95329
|
showSidebar: boolean;
|
|
95330
|
+
isPrivate: boolean;
|
|
95273
95331
|
header: {
|
|
95274
95332
|
description: string;
|
|
95275
95333
|
alignment: "Center" | "Left";
|
|
@@ -95297,8 +95355,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95297
95355
|
} | null | undefined;
|
|
95298
95356
|
minHeight?: number | null | undefined;
|
|
95299
95357
|
};
|
|
95300
|
-
isPrivate?: boolean | undefined;
|
|
95301
|
-
isHidden?: boolean | undefined;
|
|
95302
95358
|
} | undefined;
|
|
95303
95359
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
95304
95360
|
};
|
|
@@ -95319,7 +95375,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95319
95375
|
persistentId: string;
|
|
95320
95376
|
data: {
|
|
95321
95377
|
configuration?: {
|
|
95378
|
+
isHidden: boolean;
|
|
95322
95379
|
showSidebar: boolean;
|
|
95380
|
+
isPrivate: boolean;
|
|
95323
95381
|
header: {
|
|
95324
95382
|
description: string;
|
|
95325
95383
|
alignment: "Center" | "Left";
|
|
@@ -95347,8 +95405,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95347
95405
|
} | null | undefined;
|
|
95348
95406
|
minHeight?: number | null | undefined;
|
|
95349
95407
|
};
|
|
95350
|
-
isPrivate?: boolean | undefined;
|
|
95351
|
-
isHidden?: boolean | undefined;
|
|
95352
95408
|
} | null | undefined;
|
|
95353
95409
|
oldBlocks?: ({
|
|
95354
95410
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -95751,7 +95807,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95751
95807
|
data: z.ZodOptional<z.ZodObject<{
|
|
95752
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>;
|
|
95753
95809
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
95810
|
+
isHidden: boolean;
|
|
95754
95811
|
showSidebar: boolean;
|
|
95812
|
+
isPrivate: boolean;
|
|
95755
95813
|
header: {
|
|
95756
95814
|
description: string;
|
|
95757
95815
|
alignment: "Center" | "Left";
|
|
@@ -95779,10 +95837,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95779
95837
|
} | null | undefined;
|
|
95780
95838
|
minHeight?: number | null | undefined;
|
|
95781
95839
|
};
|
|
95782
|
-
isPrivate?: boolean | undefined;
|
|
95783
|
-
isHidden?: boolean | undefined;
|
|
95784
95840
|
}, z.ZodTypeDef, {
|
|
95841
|
+
isHidden: boolean;
|
|
95785
95842
|
showSidebar: boolean;
|
|
95843
|
+
isPrivate: boolean;
|
|
95786
95844
|
header: {
|
|
95787
95845
|
description: string;
|
|
95788
95846
|
alignment: "Center" | "Left";
|
|
@@ -95810,10 +95868,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95810
95868
|
} | null | undefined;
|
|
95811
95869
|
minHeight?: number | null | undefined;
|
|
95812
95870
|
};
|
|
95813
|
-
isPrivate?: boolean | undefined;
|
|
95814
|
-
isHidden?: boolean | undefined;
|
|
95815
95871
|
}>>>, {
|
|
95872
|
+
isHidden: boolean;
|
|
95816
95873
|
showSidebar: boolean;
|
|
95874
|
+
isPrivate: boolean;
|
|
95817
95875
|
header: {
|
|
95818
95876
|
description: string;
|
|
95819
95877
|
alignment: "Center" | "Left";
|
|
@@ -95841,10 +95899,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95841
95899
|
} | null | undefined;
|
|
95842
95900
|
minHeight?: number | null | undefined;
|
|
95843
95901
|
};
|
|
95844
|
-
isPrivate?: boolean | undefined;
|
|
95845
|
-
isHidden?: boolean | undefined;
|
|
95846
95902
|
} | undefined, {
|
|
95903
|
+
isHidden: boolean;
|
|
95847
95904
|
showSidebar: boolean;
|
|
95905
|
+
isPrivate: boolean;
|
|
95848
95906
|
header: {
|
|
95849
95907
|
description: string;
|
|
95850
95908
|
alignment: "Center" | "Left";
|
|
@@ -95872,13 +95930,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95872
95930
|
} | null | undefined;
|
|
95873
95931
|
minHeight?: number | null | undefined;
|
|
95874
95932
|
};
|
|
95875
|
-
isPrivate?: boolean | undefined;
|
|
95876
|
-
isHidden?: boolean | undefined;
|
|
95877
95933
|
} | null | undefined>;
|
|
95878
95934
|
}, "strip", z.ZodTypeAny, {
|
|
95879
95935
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
95880
95936
|
configuration?: {
|
|
95937
|
+
isHidden: boolean;
|
|
95881
95938
|
showSidebar: boolean;
|
|
95939
|
+
isPrivate: boolean;
|
|
95882
95940
|
header: {
|
|
95883
95941
|
description: string;
|
|
95884
95942
|
alignment: "Center" | "Left";
|
|
@@ -95906,13 +95964,13 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95906
95964
|
} | null | undefined;
|
|
95907
95965
|
minHeight?: number | null | undefined;
|
|
95908
95966
|
};
|
|
95909
|
-
isPrivate?: boolean | undefined;
|
|
95910
|
-
isHidden?: boolean | undefined;
|
|
95911
95967
|
} | undefined;
|
|
95912
95968
|
}, {
|
|
95913
95969
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
95914
95970
|
configuration?: {
|
|
95971
|
+
isHidden: boolean;
|
|
95915
95972
|
showSidebar: boolean;
|
|
95973
|
+
isPrivate: boolean;
|
|
95916
95974
|
header: {
|
|
95917
95975
|
description: string;
|
|
95918
95976
|
alignment: "Center" | "Left";
|
|
@@ -95940,8 +95998,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95940
95998
|
} | null | undefined;
|
|
95941
95999
|
minHeight?: number | null | undefined;
|
|
95942
96000
|
};
|
|
95943
|
-
isPrivate?: boolean | undefined;
|
|
95944
|
-
isHidden?: boolean | undefined;
|
|
95945
96001
|
} | null | undefined;
|
|
95946
96002
|
}>>;
|
|
95947
96003
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95964,7 +96020,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95964
96020
|
data?: {
|
|
95965
96021
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
95966
96022
|
configuration?: {
|
|
96023
|
+
isHidden: boolean;
|
|
95967
96024
|
showSidebar: boolean;
|
|
96025
|
+
isPrivate: boolean;
|
|
95968
96026
|
header: {
|
|
95969
96027
|
description: string;
|
|
95970
96028
|
alignment: "Center" | "Left";
|
|
@@ -95992,8 +96050,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
95992
96050
|
} | null | undefined;
|
|
95993
96051
|
minHeight?: number | null | undefined;
|
|
95994
96052
|
};
|
|
95995
|
-
isPrivate?: boolean | undefined;
|
|
95996
|
-
isHidden?: boolean | undefined;
|
|
95997
96053
|
} | undefined;
|
|
95998
96054
|
} | undefined;
|
|
95999
96055
|
}, {
|
|
@@ -96016,7 +96072,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96016
96072
|
data?: {
|
|
96017
96073
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
96018
96074
|
configuration?: {
|
|
96075
|
+
isHidden: boolean;
|
|
96019
96076
|
showSidebar: boolean;
|
|
96077
|
+
isPrivate: boolean;
|
|
96020
96078
|
header: {
|
|
96021
96079
|
description: string;
|
|
96022
96080
|
alignment: "Center" | "Left";
|
|
@@ -96044,8 +96102,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96044
96102
|
} | null | undefined;
|
|
96045
96103
|
minHeight?: number | null | undefined;
|
|
96046
96104
|
};
|
|
96047
|
-
isPrivate?: boolean | undefined;
|
|
96048
|
-
isHidden?: boolean | undefined;
|
|
96049
96105
|
} | null | undefined;
|
|
96050
96106
|
} | undefined;
|
|
96051
96107
|
}>, "many">;
|
|
@@ -96077,7 +96133,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96077
96133
|
data?: {
|
|
96078
96134
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
96079
96135
|
configuration?: {
|
|
96136
|
+
isHidden: boolean;
|
|
96080
96137
|
showSidebar: boolean;
|
|
96138
|
+
isPrivate: boolean;
|
|
96081
96139
|
header: {
|
|
96082
96140
|
description: string;
|
|
96083
96141
|
alignment: "Center" | "Left";
|
|
@@ -96105,8 +96163,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96105
96163
|
} | null | undefined;
|
|
96106
96164
|
minHeight?: number | null | undefined;
|
|
96107
96165
|
};
|
|
96108
|
-
isPrivate?: boolean | undefined;
|
|
96109
|
-
isHidden?: boolean | undefined;
|
|
96110
96166
|
} | undefined;
|
|
96111
96167
|
} | undefined;
|
|
96112
96168
|
}[];
|
|
@@ -96117,7 +96173,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96117
96173
|
persistentId: string;
|
|
96118
96174
|
data: {
|
|
96119
96175
|
configuration?: {
|
|
96176
|
+
isHidden: boolean;
|
|
96120
96177
|
showSidebar: boolean;
|
|
96178
|
+
isPrivate: boolean;
|
|
96121
96179
|
header: {
|
|
96122
96180
|
description: string;
|
|
96123
96181
|
alignment: "Center" | "Left";
|
|
@@ -96145,8 +96203,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96145
96203
|
} | null | undefined;
|
|
96146
96204
|
minHeight?: number | null | undefined;
|
|
96147
96205
|
};
|
|
96148
|
-
isPrivate?: boolean | undefined;
|
|
96149
|
-
isHidden?: boolean | undefined;
|
|
96150
96206
|
} | undefined;
|
|
96151
96207
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
96152
96208
|
};
|
|
@@ -96185,7 +96241,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96185
96241
|
data?: {
|
|
96186
96242
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
96187
96243
|
configuration?: {
|
|
96244
|
+
isHidden: boolean;
|
|
96188
96245
|
showSidebar: boolean;
|
|
96246
|
+
isPrivate: boolean;
|
|
96189
96247
|
header: {
|
|
96190
96248
|
description: string;
|
|
96191
96249
|
alignment: "Center" | "Left";
|
|
@@ -96213,8 +96271,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96213
96271
|
} | null | undefined;
|
|
96214
96272
|
minHeight?: number | null | undefined;
|
|
96215
96273
|
};
|
|
96216
|
-
isPrivate?: boolean | undefined;
|
|
96217
|
-
isHidden?: boolean | undefined;
|
|
96218
96274
|
} | null | undefined;
|
|
96219
96275
|
} | undefined;
|
|
96220
96276
|
}[];
|
|
@@ -96225,7 +96281,9 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96225
96281
|
persistentId: string;
|
|
96226
96282
|
data: {
|
|
96227
96283
|
configuration?: {
|
|
96284
|
+
isHidden: boolean;
|
|
96228
96285
|
showSidebar: boolean;
|
|
96286
|
+
isPrivate: boolean;
|
|
96229
96287
|
header: {
|
|
96230
96288
|
description: string;
|
|
96231
96289
|
alignment: "Center" | "Left";
|
|
@@ -96253,8 +96311,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
96253
96311
|
} | null | undefined;
|
|
96254
96312
|
minHeight?: number | null | undefined;
|
|
96255
96313
|
};
|
|
96256
|
-
isPrivate?: boolean | undefined;
|
|
96257
|
-
isHidden?: boolean | undefined;
|
|
96258
96314
|
} | null | undefined;
|
|
96259
96315
|
oldBlocks?: ({
|
|
96260
96316
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -96660,7 +96716,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
96660
96716
|
shortPersistentId: z.ZodString;
|
|
96661
96717
|
data: z.ZodObject<{
|
|
96662
96718
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
96719
|
+
isHidden: boolean;
|
|
96663
96720
|
showSidebar: boolean;
|
|
96721
|
+
isPrivate: boolean;
|
|
96664
96722
|
header: {
|
|
96665
96723
|
description: string;
|
|
96666
96724
|
alignment: "Center" | "Left";
|
|
@@ -96688,10 +96746,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
96688
96746
|
} | null | undefined;
|
|
96689
96747
|
minHeight?: number | null | undefined;
|
|
96690
96748
|
};
|
|
96691
|
-
isPrivate?: boolean | undefined;
|
|
96692
|
-
isHidden?: boolean | undefined;
|
|
96693
96749
|
}, z.ZodTypeDef, {
|
|
96750
|
+
isHidden: boolean;
|
|
96694
96751
|
showSidebar: boolean;
|
|
96752
|
+
isPrivate: boolean;
|
|
96695
96753
|
header: {
|
|
96696
96754
|
description: string;
|
|
96697
96755
|
alignment: "Center" | "Left";
|
|
@@ -96719,10 +96777,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
96719
96777
|
} | null | undefined;
|
|
96720
96778
|
minHeight?: number | null | undefined;
|
|
96721
96779
|
};
|
|
96722
|
-
isPrivate?: boolean | undefined;
|
|
96723
|
-
isHidden?: boolean | undefined;
|
|
96724
96780
|
}>>>, {
|
|
96781
|
+
isHidden: boolean;
|
|
96725
96782
|
showSidebar: boolean;
|
|
96783
|
+
isPrivate: boolean;
|
|
96726
96784
|
header: {
|
|
96727
96785
|
description: string;
|
|
96728
96786
|
alignment: "Center" | "Left";
|
|
@@ -96750,10 +96808,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
96750
96808
|
} | null | undefined;
|
|
96751
96809
|
minHeight?: number | null | undefined;
|
|
96752
96810
|
};
|
|
96753
|
-
isPrivate?: boolean | undefined;
|
|
96754
|
-
isHidden?: boolean | undefined;
|
|
96755
96811
|
} | undefined, {
|
|
96812
|
+
isHidden: boolean;
|
|
96756
96813
|
showSidebar: boolean;
|
|
96814
|
+
isPrivate: boolean;
|
|
96757
96815
|
header: {
|
|
96758
96816
|
description: string;
|
|
96759
96817
|
alignment: "Center" | "Left";
|
|
@@ -96781,8 +96839,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
96781
96839
|
} | null | undefined;
|
|
96782
96840
|
minHeight?: number | null | undefined;
|
|
96783
96841
|
};
|
|
96784
|
-
isPrivate?: boolean | undefined;
|
|
96785
|
-
isHidden?: boolean | undefined;
|
|
96786
96842
|
} | null | undefined>;
|
|
96787
96843
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
96788
96844
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -97149,7 +97205,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97149
97205
|
}>, "many">>;
|
|
97150
97206
|
}, "strip", z.ZodTypeAny, {
|
|
97151
97207
|
configuration?: {
|
|
97208
|
+
isHidden: boolean;
|
|
97152
97209
|
showSidebar: boolean;
|
|
97210
|
+
isPrivate: boolean;
|
|
97153
97211
|
header: {
|
|
97154
97212
|
description: string;
|
|
97155
97213
|
alignment: "Center" | "Left";
|
|
@@ -97177,13 +97235,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97177
97235
|
} | null | undefined;
|
|
97178
97236
|
minHeight?: number | null | undefined;
|
|
97179
97237
|
};
|
|
97180
|
-
isPrivate?: boolean | undefined;
|
|
97181
|
-
isHidden?: boolean | undefined;
|
|
97182
97238
|
} | undefined;
|
|
97183
97239
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
97184
97240
|
}, {
|
|
97185
97241
|
configuration?: {
|
|
97242
|
+
isHidden: boolean;
|
|
97186
97243
|
showSidebar: boolean;
|
|
97244
|
+
isPrivate: boolean;
|
|
97187
97245
|
header: {
|
|
97188
97246
|
description: string;
|
|
97189
97247
|
alignment: "Center" | "Left";
|
|
@@ -97211,8 +97269,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97211
97269
|
} | null | undefined;
|
|
97212
97270
|
minHeight?: number | null | undefined;
|
|
97213
97271
|
};
|
|
97214
|
-
isPrivate?: boolean | undefined;
|
|
97215
|
-
isHidden?: boolean | undefined;
|
|
97216
97272
|
} | null | undefined;
|
|
97217
97273
|
oldBlocks?: ({
|
|
97218
97274
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -97585,7 +97641,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97585
97641
|
persistentId: string;
|
|
97586
97642
|
data: {
|
|
97587
97643
|
configuration?: {
|
|
97644
|
+
isHidden: boolean;
|
|
97588
97645
|
showSidebar: boolean;
|
|
97646
|
+
isPrivate: boolean;
|
|
97589
97647
|
header: {
|
|
97590
97648
|
description: string;
|
|
97591
97649
|
alignment: "Center" | "Left";
|
|
@@ -97613,8 +97671,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97613
97671
|
} | null | undefined;
|
|
97614
97672
|
minHeight?: number | null | undefined;
|
|
97615
97673
|
};
|
|
97616
|
-
isPrivate?: boolean | undefined;
|
|
97617
|
-
isHidden?: boolean | undefined;
|
|
97618
97674
|
} | undefined;
|
|
97619
97675
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
97620
97676
|
};
|
|
@@ -97635,7 +97691,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97635
97691
|
persistentId: string;
|
|
97636
97692
|
data: {
|
|
97637
97693
|
configuration?: {
|
|
97694
|
+
isHidden: boolean;
|
|
97638
97695
|
showSidebar: boolean;
|
|
97696
|
+
isPrivate: boolean;
|
|
97639
97697
|
header: {
|
|
97640
97698
|
description: string;
|
|
97641
97699
|
alignment: "Center" | "Left";
|
|
@@ -97663,8 +97721,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
97663
97721
|
} | null | undefined;
|
|
97664
97722
|
minHeight?: number | null | undefined;
|
|
97665
97723
|
};
|
|
97666
|
-
isPrivate?: boolean | undefined;
|
|
97667
|
-
isHidden?: boolean | undefined;
|
|
97668
97724
|
} | null | undefined;
|
|
97669
97725
|
oldBlocks?: ({
|
|
97670
97726
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -98067,7 +98123,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98067
98123
|
data: z.ZodOptional<z.ZodObject<{
|
|
98068
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>;
|
|
98069
98125
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98126
|
+
isHidden: boolean;
|
|
98070
98127
|
showSidebar: boolean;
|
|
98128
|
+
isPrivate: boolean;
|
|
98071
98129
|
header: {
|
|
98072
98130
|
description: string;
|
|
98073
98131
|
alignment: "Center" | "Left";
|
|
@@ -98095,10 +98153,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98095
98153
|
} | null | undefined;
|
|
98096
98154
|
minHeight?: number | null | undefined;
|
|
98097
98155
|
};
|
|
98098
|
-
isPrivate?: boolean | undefined;
|
|
98099
|
-
isHidden?: boolean | undefined;
|
|
98100
98156
|
}, z.ZodTypeDef, {
|
|
98157
|
+
isHidden: boolean;
|
|
98101
98158
|
showSidebar: boolean;
|
|
98159
|
+
isPrivate: boolean;
|
|
98102
98160
|
header: {
|
|
98103
98161
|
description: string;
|
|
98104
98162
|
alignment: "Center" | "Left";
|
|
@@ -98126,10 +98184,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98126
98184
|
} | null | undefined;
|
|
98127
98185
|
minHeight?: number | null | undefined;
|
|
98128
98186
|
};
|
|
98129
|
-
isPrivate?: boolean | undefined;
|
|
98130
|
-
isHidden?: boolean | undefined;
|
|
98131
98187
|
}>>>, {
|
|
98188
|
+
isHidden: boolean;
|
|
98132
98189
|
showSidebar: boolean;
|
|
98190
|
+
isPrivate: boolean;
|
|
98133
98191
|
header: {
|
|
98134
98192
|
description: string;
|
|
98135
98193
|
alignment: "Center" | "Left";
|
|
@@ -98157,10 +98215,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98157
98215
|
} | null | undefined;
|
|
98158
98216
|
minHeight?: number | null | undefined;
|
|
98159
98217
|
};
|
|
98160
|
-
isPrivate?: boolean | undefined;
|
|
98161
|
-
isHidden?: boolean | undefined;
|
|
98162
98218
|
} | undefined, {
|
|
98219
|
+
isHidden: boolean;
|
|
98163
98220
|
showSidebar: boolean;
|
|
98221
|
+
isPrivate: boolean;
|
|
98164
98222
|
header: {
|
|
98165
98223
|
description: string;
|
|
98166
98224
|
alignment: "Center" | "Left";
|
|
@@ -98188,13 +98246,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98188
98246
|
} | null | undefined;
|
|
98189
98247
|
minHeight?: number | null | undefined;
|
|
98190
98248
|
};
|
|
98191
|
-
isPrivate?: boolean | undefined;
|
|
98192
|
-
isHidden?: boolean | undefined;
|
|
98193
98249
|
} | null | undefined>;
|
|
98194
98250
|
}, "strip", z.ZodTypeAny, {
|
|
98195
98251
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
98196
98252
|
configuration?: {
|
|
98253
|
+
isHidden: boolean;
|
|
98197
98254
|
showSidebar: boolean;
|
|
98255
|
+
isPrivate: boolean;
|
|
98198
98256
|
header: {
|
|
98199
98257
|
description: string;
|
|
98200
98258
|
alignment: "Center" | "Left";
|
|
@@ -98222,13 +98280,13 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98222
98280
|
} | null | undefined;
|
|
98223
98281
|
minHeight?: number | null | undefined;
|
|
98224
98282
|
};
|
|
98225
|
-
isPrivate?: boolean | undefined;
|
|
98226
|
-
isHidden?: boolean | undefined;
|
|
98227
98283
|
} | undefined;
|
|
98228
98284
|
}, {
|
|
98229
98285
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
98230
98286
|
configuration?: {
|
|
98287
|
+
isHidden: boolean;
|
|
98231
98288
|
showSidebar: boolean;
|
|
98289
|
+
isPrivate: boolean;
|
|
98232
98290
|
header: {
|
|
98233
98291
|
description: string;
|
|
98234
98292
|
alignment: "Center" | "Left";
|
|
@@ -98256,8 +98314,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98256
98314
|
} | null | undefined;
|
|
98257
98315
|
minHeight?: number | null | undefined;
|
|
98258
98316
|
};
|
|
98259
|
-
isPrivate?: boolean | undefined;
|
|
98260
|
-
isHidden?: boolean | undefined;
|
|
98261
98317
|
} | null | undefined;
|
|
98262
98318
|
}>>;
|
|
98263
98319
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -98280,7 +98336,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98280
98336
|
data?: {
|
|
98281
98337
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
98282
98338
|
configuration?: {
|
|
98339
|
+
isHidden: boolean;
|
|
98283
98340
|
showSidebar: boolean;
|
|
98341
|
+
isPrivate: boolean;
|
|
98284
98342
|
header: {
|
|
98285
98343
|
description: string;
|
|
98286
98344
|
alignment: "Center" | "Left";
|
|
@@ -98308,8 +98366,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98308
98366
|
} | null | undefined;
|
|
98309
98367
|
minHeight?: number | null | undefined;
|
|
98310
98368
|
};
|
|
98311
|
-
isPrivate?: boolean | undefined;
|
|
98312
|
-
isHidden?: boolean | undefined;
|
|
98313
98369
|
} | undefined;
|
|
98314
98370
|
} | undefined;
|
|
98315
98371
|
}, {
|
|
@@ -98332,7 +98388,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98332
98388
|
data?: {
|
|
98333
98389
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
98334
98390
|
configuration?: {
|
|
98391
|
+
isHidden: boolean;
|
|
98335
98392
|
showSidebar: boolean;
|
|
98393
|
+
isPrivate: boolean;
|
|
98336
98394
|
header: {
|
|
98337
98395
|
description: string;
|
|
98338
98396
|
alignment: "Center" | "Left";
|
|
@@ -98360,8 +98418,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98360
98418
|
} | null | undefined;
|
|
98361
98419
|
minHeight?: number | null | undefined;
|
|
98362
98420
|
};
|
|
98363
|
-
isPrivate?: boolean | undefined;
|
|
98364
|
-
isHidden?: boolean | undefined;
|
|
98365
98421
|
} | null | undefined;
|
|
98366
98422
|
} | undefined;
|
|
98367
98423
|
}>, "many">;
|
|
@@ -98388,7 +98444,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98388
98444
|
data?: {
|
|
98389
98445
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
98390
98446
|
configuration?: {
|
|
98447
|
+
isHidden: boolean;
|
|
98391
98448
|
showSidebar: boolean;
|
|
98449
|
+
isPrivate: boolean;
|
|
98392
98450
|
header: {
|
|
98393
98451
|
description: string;
|
|
98394
98452
|
alignment: "Center" | "Left";
|
|
@@ -98416,8 +98474,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98416
98474
|
} | null | undefined;
|
|
98417
98475
|
minHeight?: number | null | undefined;
|
|
98418
98476
|
};
|
|
98419
|
-
isPrivate?: boolean | undefined;
|
|
98420
|
-
isHidden?: boolean | undefined;
|
|
98421
98477
|
} | undefined;
|
|
98422
98478
|
} | undefined;
|
|
98423
98479
|
}[];
|
|
@@ -98428,7 +98484,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98428
98484
|
persistentId: string;
|
|
98429
98485
|
data: {
|
|
98430
98486
|
configuration?: {
|
|
98487
|
+
isHidden: boolean;
|
|
98431
98488
|
showSidebar: boolean;
|
|
98489
|
+
isPrivate: boolean;
|
|
98432
98490
|
header: {
|
|
98433
98491
|
description: string;
|
|
98434
98492
|
alignment: "Center" | "Left";
|
|
@@ -98456,8 +98514,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98456
98514
|
} | null | undefined;
|
|
98457
98515
|
minHeight?: number | null | undefined;
|
|
98458
98516
|
};
|
|
98459
|
-
isPrivate?: boolean | undefined;
|
|
98460
|
-
isHidden?: boolean | undefined;
|
|
98461
98517
|
} | undefined;
|
|
98462
98518
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
98463
98519
|
};
|
|
@@ -98495,7 +98551,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98495
98551
|
data?: {
|
|
98496
98552
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
98497
98553
|
configuration?: {
|
|
98554
|
+
isHidden: boolean;
|
|
98498
98555
|
showSidebar: boolean;
|
|
98556
|
+
isPrivate: boolean;
|
|
98499
98557
|
header: {
|
|
98500
98558
|
description: string;
|
|
98501
98559
|
alignment: "Center" | "Left";
|
|
@@ -98523,8 +98581,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98523
98581
|
} | null | undefined;
|
|
98524
98582
|
minHeight?: number | null | undefined;
|
|
98525
98583
|
};
|
|
98526
|
-
isPrivate?: boolean | undefined;
|
|
98527
|
-
isHidden?: boolean | undefined;
|
|
98528
98584
|
} | null | undefined;
|
|
98529
98585
|
} | undefined;
|
|
98530
98586
|
}[];
|
|
@@ -98535,7 +98591,9 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98535
98591
|
persistentId: string;
|
|
98536
98592
|
data: {
|
|
98537
98593
|
configuration?: {
|
|
98594
|
+
isHidden: boolean;
|
|
98538
98595
|
showSidebar: boolean;
|
|
98596
|
+
isPrivate: boolean;
|
|
98539
98597
|
header: {
|
|
98540
98598
|
description: string;
|
|
98541
98599
|
alignment: "Center" | "Left";
|
|
@@ -98563,8 +98621,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
98563
98621
|
} | null | undefined;
|
|
98564
98622
|
minHeight?: number | null | undefined;
|
|
98565
98623
|
};
|
|
98566
|
-
isPrivate?: boolean | undefined;
|
|
98567
|
-
isHidden?: boolean | undefined;
|
|
98568
98624
|
} | null | undefined;
|
|
98569
98625
|
oldBlocks?: ({
|
|
98570
98626
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -99695,8 +99751,8 @@ declare const DocumentationPageRoomState: z.ZodObject<{
|
|
|
99695
99751
|
}>]>, "many">;
|
|
99696
99752
|
itemConfiguration: z.ZodObject<{
|
|
99697
99753
|
showSidebar: z.ZodBoolean;
|
|
99698
|
-
isPrivate: z.
|
|
99699
|
-
isHidden: z.
|
|
99754
|
+
isPrivate: z.ZodBoolean;
|
|
99755
|
+
isHidden: z.ZodBoolean;
|
|
99700
99756
|
header: z.ZodObject<{
|
|
99701
99757
|
description: z.ZodString;
|
|
99702
99758
|
alignment: z.ZodEnum<["Left", "Center"]>;
|
|
@@ -99821,7 +99877,9 @@ declare const DocumentationPageRoomState: z.ZodObject<{
|
|
|
99821
99877
|
minHeight?: number | null | undefined;
|
|
99822
99878
|
}>;
|
|
99823
99879
|
}, "strip", z.ZodTypeAny, {
|
|
99880
|
+
isHidden: boolean;
|
|
99824
99881
|
showSidebar: boolean;
|
|
99882
|
+
isPrivate: boolean;
|
|
99825
99883
|
header: {
|
|
99826
99884
|
description: string;
|
|
99827
99885
|
alignment: "Center" | "Left";
|
|
@@ -99849,10 +99907,10 @@ declare const DocumentationPageRoomState: z.ZodObject<{
|
|
|
99849
99907
|
} | null | undefined;
|
|
99850
99908
|
minHeight?: number | null | undefined;
|
|
99851
99909
|
};
|
|
99852
|
-
isPrivate?: boolean | undefined;
|
|
99853
|
-
isHidden?: boolean | undefined;
|
|
99854
99910
|
}, {
|
|
99911
|
+
isHidden: boolean;
|
|
99855
99912
|
showSidebar: boolean;
|
|
99913
|
+
isPrivate: boolean;
|
|
99856
99914
|
header: {
|
|
99857
99915
|
description: string;
|
|
99858
99916
|
alignment: "Center" | "Left";
|
|
@@ -99880,8 +99938,6 @@ declare const DocumentationPageRoomState: z.ZodObject<{
|
|
|
99880
99938
|
} | null | undefined;
|
|
99881
99939
|
minHeight?: number | null | undefined;
|
|
99882
99940
|
};
|
|
99883
|
-
isPrivate?: boolean | undefined;
|
|
99884
|
-
isHidden?: boolean | undefined;
|
|
99885
99941
|
}>;
|
|
99886
99942
|
}, "strip", z.ZodTypeAny, {
|
|
99887
99943
|
pageItems: ({
|
|
@@ -99973,7 +100029,9 @@ declare const DocumentationPageRoomState: z.ZodObject<{
|
|
|
99973
100029
|
variantId?: string | undefined;
|
|
99974
100030
|
})[];
|
|
99975
100031
|
itemConfiguration: {
|
|
100032
|
+
isHidden: boolean;
|
|
99976
100033
|
showSidebar: boolean;
|
|
100034
|
+
isPrivate: boolean;
|
|
99977
100035
|
header: {
|
|
99978
100036
|
description: string;
|
|
99979
100037
|
alignment: "Center" | "Left";
|
|
@@ -100001,8 +100059,6 @@ declare const DocumentationPageRoomState: z.ZodObject<{
|
|
|
100001
100059
|
} | null | undefined;
|
|
100002
100060
|
minHeight?: number | null | undefined;
|
|
100003
100061
|
};
|
|
100004
|
-
isPrivate?: boolean | undefined;
|
|
100005
|
-
isHidden?: boolean | undefined;
|
|
100006
100062
|
};
|
|
100007
100063
|
}, {
|
|
100008
100064
|
pageItems: ({
|
|
@@ -100094,7 +100150,9 @@ declare const DocumentationPageRoomState: z.ZodObject<{
|
|
|
100094
100150
|
variantId?: string | undefined;
|
|
100095
100151
|
})[];
|
|
100096
100152
|
itemConfiguration: {
|
|
100153
|
+
isHidden: boolean;
|
|
100097
100154
|
showSidebar: boolean;
|
|
100155
|
+
isPrivate: boolean;
|
|
100098
100156
|
header: {
|
|
100099
100157
|
description: string;
|
|
100100
100158
|
alignment: "Center" | "Left";
|
|
@@ -100122,8 +100180,6 @@ declare const DocumentationPageRoomState: z.ZodObject<{
|
|
|
100122
100180
|
} | null | undefined;
|
|
100123
100181
|
minHeight?: number | null | undefined;
|
|
100124
100182
|
};
|
|
100125
|
-
isPrivate?: boolean | undefined;
|
|
100126
|
-
isHidden?: boolean | undefined;
|
|
100127
100183
|
};
|
|
100128
100184
|
}>;
|
|
100129
100185
|
type DocumentationPageRoomState = z.infer<typeof DocumentationPageRoomState>;
|
|
@@ -100151,7 +100207,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
100151
100207
|
shortPersistentId: z.ZodString;
|
|
100152
100208
|
data: z.ZodObject<{
|
|
100153
100209
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
100210
|
+
isHidden: boolean;
|
|
100154
100211
|
showSidebar: boolean;
|
|
100212
|
+
isPrivate: boolean;
|
|
100155
100213
|
header: {
|
|
100156
100214
|
description: string;
|
|
100157
100215
|
alignment: "Center" | "Left";
|
|
@@ -100179,10 +100237,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
100179
100237
|
} | null | undefined;
|
|
100180
100238
|
minHeight?: number | null | undefined;
|
|
100181
100239
|
};
|
|
100182
|
-
isPrivate?: boolean | undefined;
|
|
100183
|
-
isHidden?: boolean | undefined;
|
|
100184
100240
|
}, z.ZodTypeDef, {
|
|
100241
|
+
isHidden: boolean;
|
|
100185
100242
|
showSidebar: boolean;
|
|
100243
|
+
isPrivate: boolean;
|
|
100186
100244
|
header: {
|
|
100187
100245
|
description: string;
|
|
100188
100246
|
alignment: "Center" | "Left";
|
|
@@ -100210,10 +100268,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
100210
100268
|
} | null | undefined;
|
|
100211
100269
|
minHeight?: number | null | undefined;
|
|
100212
100270
|
};
|
|
100213
|
-
isPrivate?: boolean | undefined;
|
|
100214
|
-
isHidden?: boolean | undefined;
|
|
100215
100271
|
}>>>, {
|
|
100272
|
+
isHidden: boolean;
|
|
100216
100273
|
showSidebar: boolean;
|
|
100274
|
+
isPrivate: boolean;
|
|
100217
100275
|
header: {
|
|
100218
100276
|
description: string;
|
|
100219
100277
|
alignment: "Center" | "Left";
|
|
@@ -100241,10 +100299,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
100241
100299
|
} | null | undefined;
|
|
100242
100300
|
minHeight?: number | null | undefined;
|
|
100243
100301
|
};
|
|
100244
|
-
isPrivate?: boolean | undefined;
|
|
100245
|
-
isHidden?: boolean | undefined;
|
|
100246
100302
|
} | undefined, {
|
|
100303
|
+
isHidden: boolean;
|
|
100247
100304
|
showSidebar: boolean;
|
|
100305
|
+
isPrivate: boolean;
|
|
100248
100306
|
header: {
|
|
100249
100307
|
description: string;
|
|
100250
100308
|
alignment: "Center" | "Left";
|
|
@@ -100272,8 +100330,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
100272
100330
|
} | null | undefined;
|
|
100273
100331
|
minHeight?: number | null | undefined;
|
|
100274
100332
|
};
|
|
100275
|
-
isPrivate?: boolean | undefined;
|
|
100276
|
-
isHidden?: boolean | undefined;
|
|
100277
100333
|
} | null | undefined>;
|
|
100278
100334
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
100279
100335
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -100640,7 +100696,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
100640
100696
|
}>, "many">>;
|
|
100641
100697
|
}, "strip", z.ZodTypeAny, {
|
|
100642
100698
|
configuration?: {
|
|
100699
|
+
isHidden: boolean;
|
|
100643
100700
|
showSidebar: boolean;
|
|
100701
|
+
isPrivate: boolean;
|
|
100644
100702
|
header: {
|
|
100645
100703
|
description: string;
|
|
100646
100704
|
alignment: "Center" | "Left";
|
|
@@ -100668,13 +100726,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
100668
100726
|
} | null | undefined;
|
|
100669
100727
|
minHeight?: number | null | undefined;
|
|
100670
100728
|
};
|
|
100671
|
-
isPrivate?: boolean | undefined;
|
|
100672
|
-
isHidden?: boolean | undefined;
|
|
100673
100729
|
} | undefined;
|
|
100674
100730
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
100675
100731
|
}, {
|
|
100676
100732
|
configuration?: {
|
|
100733
|
+
isHidden: boolean;
|
|
100677
100734
|
showSidebar: boolean;
|
|
100735
|
+
isPrivate: boolean;
|
|
100678
100736
|
header: {
|
|
100679
100737
|
description: string;
|
|
100680
100738
|
alignment: "Center" | "Left";
|
|
@@ -100702,8 +100760,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
100702
100760
|
} | null | undefined;
|
|
100703
100761
|
minHeight?: number | null | undefined;
|
|
100704
100762
|
};
|
|
100705
|
-
isPrivate?: boolean | undefined;
|
|
100706
|
-
isHidden?: boolean | undefined;
|
|
100707
100763
|
} | null | undefined;
|
|
100708
100764
|
oldBlocks?: ({
|
|
100709
100765
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -101076,7 +101132,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101076
101132
|
persistentId: string;
|
|
101077
101133
|
data: {
|
|
101078
101134
|
configuration?: {
|
|
101135
|
+
isHidden: boolean;
|
|
101079
101136
|
showSidebar: boolean;
|
|
101137
|
+
isPrivate: boolean;
|
|
101080
101138
|
header: {
|
|
101081
101139
|
description: string;
|
|
101082
101140
|
alignment: "Center" | "Left";
|
|
@@ -101104,8 +101162,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101104
101162
|
} | null | undefined;
|
|
101105
101163
|
minHeight?: number | null | undefined;
|
|
101106
101164
|
};
|
|
101107
|
-
isPrivate?: boolean | undefined;
|
|
101108
|
-
isHidden?: boolean | undefined;
|
|
101109
101165
|
} | undefined;
|
|
101110
101166
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
101111
101167
|
};
|
|
@@ -101126,7 +101182,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101126
101182
|
persistentId: string;
|
|
101127
101183
|
data: {
|
|
101128
101184
|
configuration?: {
|
|
101185
|
+
isHidden: boolean;
|
|
101129
101186
|
showSidebar: boolean;
|
|
101187
|
+
isPrivate: boolean;
|
|
101130
101188
|
header: {
|
|
101131
101189
|
description: string;
|
|
101132
101190
|
alignment: "Center" | "Left";
|
|
@@ -101154,8 +101212,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101154
101212
|
} | null | undefined;
|
|
101155
101213
|
minHeight?: number | null | undefined;
|
|
101156
101214
|
};
|
|
101157
|
-
isPrivate?: boolean | undefined;
|
|
101158
|
-
isHidden?: boolean | undefined;
|
|
101159
101215
|
} | null | undefined;
|
|
101160
101216
|
oldBlocks?: ({
|
|
101161
101217
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -101558,7 +101614,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101558
101614
|
data: z.ZodOptional<z.ZodObject<{
|
|
101559
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>;
|
|
101560
101616
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
101617
|
+
isHidden: boolean;
|
|
101561
101618
|
showSidebar: boolean;
|
|
101619
|
+
isPrivate: boolean;
|
|
101562
101620
|
header: {
|
|
101563
101621
|
description: string;
|
|
101564
101622
|
alignment: "Center" | "Left";
|
|
@@ -101586,10 +101644,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101586
101644
|
} | null | undefined;
|
|
101587
101645
|
minHeight?: number | null | undefined;
|
|
101588
101646
|
};
|
|
101589
|
-
isPrivate?: boolean | undefined;
|
|
101590
|
-
isHidden?: boolean | undefined;
|
|
101591
101647
|
}, z.ZodTypeDef, {
|
|
101648
|
+
isHidden: boolean;
|
|
101592
101649
|
showSidebar: boolean;
|
|
101650
|
+
isPrivate: boolean;
|
|
101593
101651
|
header: {
|
|
101594
101652
|
description: string;
|
|
101595
101653
|
alignment: "Center" | "Left";
|
|
@@ -101617,10 +101675,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101617
101675
|
} | null | undefined;
|
|
101618
101676
|
minHeight?: number | null | undefined;
|
|
101619
101677
|
};
|
|
101620
|
-
isPrivate?: boolean | undefined;
|
|
101621
|
-
isHidden?: boolean | undefined;
|
|
101622
101678
|
}>>>, {
|
|
101679
|
+
isHidden: boolean;
|
|
101623
101680
|
showSidebar: boolean;
|
|
101681
|
+
isPrivate: boolean;
|
|
101624
101682
|
header: {
|
|
101625
101683
|
description: string;
|
|
101626
101684
|
alignment: "Center" | "Left";
|
|
@@ -101648,10 +101706,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101648
101706
|
} | null | undefined;
|
|
101649
101707
|
minHeight?: number | null | undefined;
|
|
101650
101708
|
};
|
|
101651
|
-
isPrivate?: boolean | undefined;
|
|
101652
|
-
isHidden?: boolean | undefined;
|
|
101653
101709
|
} | undefined, {
|
|
101710
|
+
isHidden: boolean;
|
|
101654
101711
|
showSidebar: boolean;
|
|
101712
|
+
isPrivate: boolean;
|
|
101655
101713
|
header: {
|
|
101656
101714
|
description: string;
|
|
101657
101715
|
alignment: "Center" | "Left";
|
|
@@ -101679,13 +101737,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101679
101737
|
} | null | undefined;
|
|
101680
101738
|
minHeight?: number | null | undefined;
|
|
101681
101739
|
};
|
|
101682
|
-
isPrivate?: boolean | undefined;
|
|
101683
|
-
isHidden?: boolean | undefined;
|
|
101684
101740
|
} | null | undefined>;
|
|
101685
101741
|
}, "strip", z.ZodTypeAny, {
|
|
101686
101742
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
101687
101743
|
configuration?: {
|
|
101744
|
+
isHidden: boolean;
|
|
101688
101745
|
showSidebar: boolean;
|
|
101746
|
+
isPrivate: boolean;
|
|
101689
101747
|
header: {
|
|
101690
101748
|
description: string;
|
|
101691
101749
|
alignment: "Center" | "Left";
|
|
@@ -101713,13 +101771,13 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101713
101771
|
} | null | undefined;
|
|
101714
101772
|
minHeight?: number | null | undefined;
|
|
101715
101773
|
};
|
|
101716
|
-
isPrivate?: boolean | undefined;
|
|
101717
|
-
isHidden?: boolean | undefined;
|
|
101718
101774
|
} | undefined;
|
|
101719
101775
|
}, {
|
|
101720
101776
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
101721
101777
|
configuration?: {
|
|
101778
|
+
isHidden: boolean;
|
|
101722
101779
|
showSidebar: boolean;
|
|
101780
|
+
isPrivate: boolean;
|
|
101723
101781
|
header: {
|
|
101724
101782
|
description: string;
|
|
101725
101783
|
alignment: "Center" | "Left";
|
|
@@ -101747,8 +101805,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101747
101805
|
} | null | undefined;
|
|
101748
101806
|
minHeight?: number | null | undefined;
|
|
101749
101807
|
};
|
|
101750
|
-
isPrivate?: boolean | undefined;
|
|
101751
|
-
isHidden?: boolean | undefined;
|
|
101752
101808
|
} | null | undefined;
|
|
101753
101809
|
}>>;
|
|
101754
101810
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -101771,7 +101827,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101771
101827
|
data?: {
|
|
101772
101828
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
101773
101829
|
configuration?: {
|
|
101830
|
+
isHidden: boolean;
|
|
101774
101831
|
showSidebar: boolean;
|
|
101832
|
+
isPrivate: boolean;
|
|
101775
101833
|
header: {
|
|
101776
101834
|
description: string;
|
|
101777
101835
|
alignment: "Center" | "Left";
|
|
@@ -101799,8 +101857,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101799
101857
|
} | null | undefined;
|
|
101800
101858
|
minHeight?: number | null | undefined;
|
|
101801
101859
|
};
|
|
101802
|
-
isPrivate?: boolean | undefined;
|
|
101803
|
-
isHidden?: boolean | undefined;
|
|
101804
101860
|
} | undefined;
|
|
101805
101861
|
} | undefined;
|
|
101806
101862
|
}, {
|
|
@@ -101823,7 +101879,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101823
101879
|
data?: {
|
|
101824
101880
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
101825
101881
|
configuration?: {
|
|
101882
|
+
isHidden: boolean;
|
|
101826
101883
|
showSidebar: boolean;
|
|
101884
|
+
isPrivate: boolean;
|
|
101827
101885
|
header: {
|
|
101828
101886
|
description: string;
|
|
101829
101887
|
alignment: "Center" | "Left";
|
|
@@ -101851,8 +101909,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101851
101909
|
} | null | undefined;
|
|
101852
101910
|
minHeight?: number | null | undefined;
|
|
101853
101911
|
};
|
|
101854
|
-
isPrivate?: boolean | undefined;
|
|
101855
|
-
isHidden?: boolean | undefined;
|
|
101856
101912
|
} | null | undefined;
|
|
101857
101913
|
} | undefined;
|
|
101858
101914
|
}>;
|
|
@@ -101864,7 +101920,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101864
101920
|
persistentId: string;
|
|
101865
101921
|
data: {
|
|
101866
101922
|
configuration?: {
|
|
101923
|
+
isHidden: boolean;
|
|
101867
101924
|
showSidebar: boolean;
|
|
101925
|
+
isPrivate: boolean;
|
|
101868
101926
|
header: {
|
|
101869
101927
|
description: string;
|
|
101870
101928
|
alignment: "Center" | "Left";
|
|
@@ -101892,8 +101950,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101892
101950
|
} | null | undefined;
|
|
101893
101951
|
minHeight?: number | null | undefined;
|
|
101894
101952
|
};
|
|
101895
|
-
isPrivate?: boolean | undefined;
|
|
101896
|
-
isHidden?: boolean | undefined;
|
|
101897
101953
|
} | undefined;
|
|
101898
101954
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
101899
101955
|
};
|
|
@@ -101928,7 +101984,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101928
101984
|
data?: {
|
|
101929
101985
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
101930
101986
|
configuration?: {
|
|
101987
|
+
isHidden: boolean;
|
|
101931
101988
|
showSidebar: boolean;
|
|
101989
|
+
isPrivate: boolean;
|
|
101932
101990
|
header: {
|
|
101933
101991
|
description: string;
|
|
101934
101992
|
alignment: "Center" | "Left";
|
|
@@ -101956,8 +102014,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101956
102014
|
} | null | undefined;
|
|
101957
102015
|
minHeight?: number | null | undefined;
|
|
101958
102016
|
};
|
|
101959
|
-
isPrivate?: boolean | undefined;
|
|
101960
|
-
isHidden?: boolean | undefined;
|
|
101961
102017
|
} | undefined;
|
|
101962
102018
|
} | undefined;
|
|
101963
102019
|
};
|
|
@@ -101969,7 +102025,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101969
102025
|
persistentId: string;
|
|
101970
102026
|
data: {
|
|
101971
102027
|
configuration?: {
|
|
102028
|
+
isHidden: boolean;
|
|
101972
102029
|
showSidebar: boolean;
|
|
102030
|
+
isPrivate: boolean;
|
|
101973
102031
|
header: {
|
|
101974
102032
|
description: string;
|
|
101975
102033
|
alignment: "Center" | "Left";
|
|
@@ -101997,8 +102055,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
101997
102055
|
} | null | undefined;
|
|
101998
102056
|
minHeight?: number | null | undefined;
|
|
101999
102057
|
};
|
|
102000
|
-
isPrivate?: boolean | undefined;
|
|
102001
|
-
isHidden?: boolean | undefined;
|
|
102002
102058
|
} | null | undefined;
|
|
102003
102059
|
oldBlocks?: ({
|
|
102004
102060
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -102395,7 +102451,9 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
102395
102451
|
data?: {
|
|
102396
102452
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
102397
102453
|
configuration?: {
|
|
102454
|
+
isHidden: boolean;
|
|
102398
102455
|
showSidebar: boolean;
|
|
102456
|
+
isPrivate: boolean;
|
|
102399
102457
|
header: {
|
|
102400
102458
|
description: string;
|
|
102401
102459
|
alignment: "Center" | "Left";
|
|
@@ -102423,8 +102481,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
102423
102481
|
} | null | undefined;
|
|
102424
102482
|
minHeight?: number | null | undefined;
|
|
102425
102483
|
};
|
|
102426
|
-
isPrivate?: boolean | undefined;
|
|
102427
|
-
isHidden?: boolean | undefined;
|
|
102428
102484
|
} | null | undefined;
|
|
102429
102485
|
} | undefined;
|
|
102430
102486
|
};
|
|
@@ -102454,7 +102510,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
102454
102510
|
shortPersistentId: z.ZodString;
|
|
102455
102511
|
data: z.ZodObject<{
|
|
102456
102512
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
102513
|
+
isHidden: boolean;
|
|
102457
102514
|
showSidebar: boolean;
|
|
102515
|
+
isPrivate: boolean;
|
|
102458
102516
|
header: {
|
|
102459
102517
|
description: string;
|
|
102460
102518
|
alignment: "Center" | "Left";
|
|
@@ -102482,10 +102540,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
102482
102540
|
} | null | undefined;
|
|
102483
102541
|
minHeight?: number | null | undefined;
|
|
102484
102542
|
};
|
|
102485
|
-
isPrivate?: boolean | undefined;
|
|
102486
|
-
isHidden?: boolean | undefined;
|
|
102487
102543
|
}, z.ZodTypeDef, {
|
|
102544
|
+
isHidden: boolean;
|
|
102488
102545
|
showSidebar: boolean;
|
|
102546
|
+
isPrivate: boolean;
|
|
102489
102547
|
header: {
|
|
102490
102548
|
description: string;
|
|
102491
102549
|
alignment: "Center" | "Left";
|
|
@@ -102513,10 +102571,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
102513
102571
|
} | null | undefined;
|
|
102514
102572
|
minHeight?: number | null | undefined;
|
|
102515
102573
|
};
|
|
102516
|
-
isPrivate?: boolean | undefined;
|
|
102517
|
-
isHidden?: boolean | undefined;
|
|
102518
102574
|
}>>>, {
|
|
102575
|
+
isHidden: boolean;
|
|
102519
102576
|
showSidebar: boolean;
|
|
102577
|
+
isPrivate: boolean;
|
|
102520
102578
|
header: {
|
|
102521
102579
|
description: string;
|
|
102522
102580
|
alignment: "Center" | "Left";
|
|
@@ -102544,10 +102602,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
102544
102602
|
} | null | undefined;
|
|
102545
102603
|
minHeight?: number | null | undefined;
|
|
102546
102604
|
};
|
|
102547
|
-
isPrivate?: boolean | undefined;
|
|
102548
|
-
isHidden?: boolean | undefined;
|
|
102549
102605
|
} | undefined, {
|
|
102606
|
+
isHidden: boolean;
|
|
102550
102607
|
showSidebar: boolean;
|
|
102608
|
+
isPrivate: boolean;
|
|
102551
102609
|
header: {
|
|
102552
102610
|
description: string;
|
|
102553
102611
|
alignment: "Center" | "Left";
|
|
@@ -102575,8 +102633,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
102575
102633
|
} | null | undefined;
|
|
102576
102634
|
minHeight?: number | null | undefined;
|
|
102577
102635
|
};
|
|
102578
|
-
isPrivate?: boolean | undefined;
|
|
102579
|
-
isHidden?: boolean | undefined;
|
|
102580
102636
|
} | null | undefined>;
|
|
102581
102637
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
102582
102638
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -102943,7 +102999,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
102943
102999
|
}>, "many">>;
|
|
102944
103000
|
}, "strip", z.ZodTypeAny, {
|
|
102945
103001
|
configuration?: {
|
|
103002
|
+
isHidden: boolean;
|
|
102946
103003
|
showSidebar: boolean;
|
|
103004
|
+
isPrivate: boolean;
|
|
102947
103005
|
header: {
|
|
102948
103006
|
description: string;
|
|
102949
103007
|
alignment: "Center" | "Left";
|
|
@@ -102971,13 +103029,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
102971
103029
|
} | null | undefined;
|
|
102972
103030
|
minHeight?: number | null | undefined;
|
|
102973
103031
|
};
|
|
102974
|
-
isPrivate?: boolean | undefined;
|
|
102975
|
-
isHidden?: boolean | undefined;
|
|
102976
103032
|
} | undefined;
|
|
102977
103033
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
102978
103034
|
}, {
|
|
102979
103035
|
configuration?: {
|
|
103036
|
+
isHidden: boolean;
|
|
102980
103037
|
showSidebar: boolean;
|
|
103038
|
+
isPrivate: boolean;
|
|
102981
103039
|
header: {
|
|
102982
103040
|
description: string;
|
|
102983
103041
|
alignment: "Center" | "Left";
|
|
@@ -103005,8 +103063,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103005
103063
|
} | null | undefined;
|
|
103006
103064
|
minHeight?: number | null | undefined;
|
|
103007
103065
|
};
|
|
103008
|
-
isPrivate?: boolean | undefined;
|
|
103009
|
-
isHidden?: boolean | undefined;
|
|
103010
103066
|
} | null | undefined;
|
|
103011
103067
|
oldBlocks?: ({
|
|
103012
103068
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -103379,7 +103435,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103379
103435
|
persistentId: string;
|
|
103380
103436
|
data: {
|
|
103381
103437
|
configuration?: {
|
|
103438
|
+
isHidden: boolean;
|
|
103382
103439
|
showSidebar: boolean;
|
|
103440
|
+
isPrivate: boolean;
|
|
103383
103441
|
header: {
|
|
103384
103442
|
description: string;
|
|
103385
103443
|
alignment: "Center" | "Left";
|
|
@@ -103407,8 +103465,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103407
103465
|
} | null | undefined;
|
|
103408
103466
|
minHeight?: number | null | undefined;
|
|
103409
103467
|
};
|
|
103410
|
-
isPrivate?: boolean | undefined;
|
|
103411
|
-
isHidden?: boolean | undefined;
|
|
103412
103468
|
} | undefined;
|
|
103413
103469
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
103414
103470
|
};
|
|
@@ -103429,7 +103485,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103429
103485
|
persistentId: string;
|
|
103430
103486
|
data: {
|
|
103431
103487
|
configuration?: {
|
|
103488
|
+
isHidden: boolean;
|
|
103432
103489
|
showSidebar: boolean;
|
|
103490
|
+
isPrivate: boolean;
|
|
103433
103491
|
header: {
|
|
103434
103492
|
description: string;
|
|
103435
103493
|
alignment: "Center" | "Left";
|
|
@@ -103457,8 +103515,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103457
103515
|
} | null | undefined;
|
|
103458
103516
|
minHeight?: number | null | undefined;
|
|
103459
103517
|
};
|
|
103460
|
-
isPrivate?: boolean | undefined;
|
|
103461
|
-
isHidden?: boolean | undefined;
|
|
103462
103518
|
} | null | undefined;
|
|
103463
103519
|
oldBlocks?: ({
|
|
103464
103520
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -103861,7 +103917,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103861
103917
|
data: z.ZodOptional<z.ZodObject<{
|
|
103862
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>;
|
|
103863
103919
|
configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
103920
|
+
isHidden: boolean;
|
|
103864
103921
|
showSidebar: boolean;
|
|
103922
|
+
isPrivate: boolean;
|
|
103865
103923
|
header: {
|
|
103866
103924
|
description: string;
|
|
103867
103925
|
alignment: "Center" | "Left";
|
|
@@ -103889,10 +103947,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103889
103947
|
} | null | undefined;
|
|
103890
103948
|
minHeight?: number | null | undefined;
|
|
103891
103949
|
};
|
|
103892
|
-
isPrivate?: boolean | undefined;
|
|
103893
|
-
isHidden?: boolean | undefined;
|
|
103894
103950
|
}, z.ZodTypeDef, {
|
|
103951
|
+
isHidden: boolean;
|
|
103895
103952
|
showSidebar: boolean;
|
|
103953
|
+
isPrivate: boolean;
|
|
103896
103954
|
header: {
|
|
103897
103955
|
description: string;
|
|
103898
103956
|
alignment: "Center" | "Left";
|
|
@@ -103920,10 +103978,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103920
103978
|
} | null | undefined;
|
|
103921
103979
|
minHeight?: number | null | undefined;
|
|
103922
103980
|
};
|
|
103923
|
-
isPrivate?: boolean | undefined;
|
|
103924
|
-
isHidden?: boolean | undefined;
|
|
103925
103981
|
}>>>, {
|
|
103982
|
+
isHidden: boolean;
|
|
103926
103983
|
showSidebar: boolean;
|
|
103984
|
+
isPrivate: boolean;
|
|
103927
103985
|
header: {
|
|
103928
103986
|
description: string;
|
|
103929
103987
|
alignment: "Center" | "Left";
|
|
@@ -103951,10 +104009,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103951
104009
|
} | null | undefined;
|
|
103952
104010
|
minHeight?: number | null | undefined;
|
|
103953
104011
|
};
|
|
103954
|
-
isPrivate?: boolean | undefined;
|
|
103955
|
-
isHidden?: boolean | undefined;
|
|
103956
104012
|
} | undefined, {
|
|
104013
|
+
isHidden: boolean;
|
|
103957
104014
|
showSidebar: boolean;
|
|
104015
|
+
isPrivate: boolean;
|
|
103958
104016
|
header: {
|
|
103959
104017
|
description: string;
|
|
103960
104018
|
alignment: "Center" | "Left";
|
|
@@ -103982,13 +104040,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
103982
104040
|
} | null | undefined;
|
|
103983
104041
|
minHeight?: number | null | undefined;
|
|
103984
104042
|
};
|
|
103985
|
-
isPrivate?: boolean | undefined;
|
|
103986
|
-
isHidden?: boolean | undefined;
|
|
103987
104043
|
} | null | undefined>;
|
|
103988
104044
|
}, "strip", z.ZodTypeAny, {
|
|
103989
104045
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
103990
104046
|
configuration?: {
|
|
104047
|
+
isHidden: boolean;
|
|
103991
104048
|
showSidebar: boolean;
|
|
104049
|
+
isPrivate: boolean;
|
|
103992
104050
|
header: {
|
|
103993
104051
|
description: string;
|
|
103994
104052
|
alignment: "Center" | "Left";
|
|
@@ -104016,13 +104074,13 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
104016
104074
|
} | null | undefined;
|
|
104017
104075
|
minHeight?: number | null | undefined;
|
|
104018
104076
|
};
|
|
104019
|
-
isPrivate?: boolean | undefined;
|
|
104020
|
-
isHidden?: boolean | undefined;
|
|
104021
104077
|
} | undefined;
|
|
104022
104078
|
}, {
|
|
104023
104079
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
104024
104080
|
configuration?: {
|
|
104081
|
+
isHidden: boolean;
|
|
104025
104082
|
showSidebar: boolean;
|
|
104083
|
+
isPrivate: boolean;
|
|
104026
104084
|
header: {
|
|
104027
104085
|
description: string;
|
|
104028
104086
|
alignment: "Center" | "Left";
|
|
@@ -104050,8 +104108,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
104050
104108
|
} | null | undefined;
|
|
104051
104109
|
minHeight?: number | null | undefined;
|
|
104052
104110
|
};
|
|
104053
|
-
isPrivate?: boolean | undefined;
|
|
104054
|
-
isHidden?: boolean | undefined;
|
|
104055
104111
|
} | null | undefined;
|
|
104056
104112
|
}>>;
|
|
104057
104113
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -104074,7 +104130,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
104074
104130
|
data?: {
|
|
104075
104131
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
104076
104132
|
configuration?: {
|
|
104133
|
+
isHidden: boolean;
|
|
104077
104134
|
showSidebar: boolean;
|
|
104135
|
+
isPrivate: boolean;
|
|
104078
104136
|
header: {
|
|
104079
104137
|
description: string;
|
|
104080
104138
|
alignment: "Center" | "Left";
|
|
@@ -104102,8 +104160,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
104102
104160
|
} | null | undefined;
|
|
104103
104161
|
minHeight?: number | null | undefined;
|
|
104104
104162
|
};
|
|
104105
|
-
isPrivate?: boolean | undefined;
|
|
104106
|
-
isHidden?: boolean | undefined;
|
|
104107
104163
|
} | undefined;
|
|
104108
104164
|
} | undefined;
|
|
104109
104165
|
}, {
|
|
@@ -104126,7 +104182,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
104126
104182
|
data?: {
|
|
104127
104183
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
104128
104184
|
configuration?: {
|
|
104185
|
+
isHidden: boolean;
|
|
104129
104186
|
showSidebar: boolean;
|
|
104187
|
+
isPrivate: boolean;
|
|
104130
104188
|
header: {
|
|
104131
104189
|
description: string;
|
|
104132
104190
|
alignment: "Center" | "Left";
|
|
@@ -104154,8 +104212,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
104154
104212
|
} | null | undefined;
|
|
104155
104213
|
minHeight?: number | null | undefined;
|
|
104156
104214
|
};
|
|
104157
|
-
isPrivate?: boolean | undefined;
|
|
104158
|
-
isHidden?: boolean | undefined;
|
|
104159
104215
|
} | null | undefined;
|
|
104160
104216
|
} | undefined;
|
|
104161
104217
|
}>;
|
|
@@ -105306,7 +105362,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
105306
105362
|
persistentId: string;
|
|
105307
105363
|
data: {
|
|
105308
105364
|
configuration?: {
|
|
105365
|
+
isHidden: boolean;
|
|
105309
105366
|
showSidebar: boolean;
|
|
105367
|
+
isPrivate: boolean;
|
|
105310
105368
|
header: {
|
|
105311
105369
|
description: string;
|
|
105312
105370
|
alignment: "Center" | "Left";
|
|
@@ -105334,8 +105392,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
105334
105392
|
} | null | undefined;
|
|
105335
105393
|
minHeight?: number | null | undefined;
|
|
105336
105394
|
};
|
|
105337
|
-
isPrivate?: boolean | undefined;
|
|
105338
|
-
isHidden?: boolean | undefined;
|
|
105339
105395
|
} | undefined;
|
|
105340
105396
|
oldBlocks?: PageBlockV1[] | undefined;
|
|
105341
105397
|
};
|
|
@@ -105458,7 +105514,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
105458
105514
|
data?: {
|
|
105459
105515
|
behavior?: NonNullable<"Tabs" | "Group" | undefined> | undefined;
|
|
105460
105516
|
configuration?: {
|
|
105517
|
+
isHidden: boolean;
|
|
105461
105518
|
showSidebar: boolean;
|
|
105519
|
+
isPrivate: boolean;
|
|
105462
105520
|
header: {
|
|
105463
105521
|
description: string;
|
|
105464
105522
|
alignment: "Center" | "Left";
|
|
@@ -105486,8 +105544,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
105486
105544
|
} | null | undefined;
|
|
105487
105545
|
minHeight?: number | null | undefined;
|
|
105488
105546
|
};
|
|
105489
|
-
isPrivate?: boolean | undefined;
|
|
105490
|
-
isHidden?: boolean | undefined;
|
|
105491
105547
|
} | undefined;
|
|
105492
105548
|
} | undefined;
|
|
105493
105549
|
};
|
|
@@ -105571,7 +105627,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
105571
105627
|
persistentId: string;
|
|
105572
105628
|
data: {
|
|
105573
105629
|
configuration?: {
|
|
105630
|
+
isHidden: boolean;
|
|
105574
105631
|
showSidebar: boolean;
|
|
105632
|
+
isPrivate: boolean;
|
|
105575
105633
|
header: {
|
|
105576
105634
|
description: string;
|
|
105577
105635
|
alignment: "Center" | "Left";
|
|
@@ -105599,8 +105657,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
105599
105657
|
} | null | undefined;
|
|
105600
105658
|
minHeight?: number | null | undefined;
|
|
105601
105659
|
};
|
|
105602
|
-
isPrivate?: boolean | undefined;
|
|
105603
|
-
isHidden?: boolean | undefined;
|
|
105604
105660
|
} | null | undefined;
|
|
105605
105661
|
oldBlocks?: ({
|
|
105606
105662
|
type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
@@ -106085,7 +106141,9 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
106085
106141
|
data?: {
|
|
106086
106142
|
behavior?: "Tabs" | "Group" | null | undefined;
|
|
106087
106143
|
configuration?: {
|
|
106144
|
+
isHidden: boolean;
|
|
106088
106145
|
showSidebar: boolean;
|
|
106146
|
+
isPrivate: boolean;
|
|
106089
106147
|
header: {
|
|
106090
106148
|
description: string;
|
|
106091
106149
|
alignment: "Center" | "Left";
|
|
@@ -106113,8 +106171,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
106113
106171
|
} | null | undefined;
|
|
106114
106172
|
minHeight?: number | null | undefined;
|
|
106115
106173
|
};
|
|
106116
|
-
isPrivate?: boolean | undefined;
|
|
106117
|
-
isHidden?: boolean | undefined;
|
|
106118
106174
|
} | null | undefined;
|
|
106119
106175
|
} | undefined;
|
|
106120
106176
|
};
|
|
@@ -106924,6 +106980,19 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
106924
106980
|
errorReason: string;
|
|
106925
106981
|
enabled: boolean;
|
|
106926
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
|
+
}>;
|
|
106927
106996
|
}, "strip", z.ZodTypeAny, {
|
|
106928
106997
|
designSystems: {
|
|
106929
106998
|
max: number;
|
|
@@ -107012,6 +107081,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
107012
107081
|
errorReason: string;
|
|
107013
107082
|
enabled: boolean;
|
|
107014
107083
|
};
|
|
107084
|
+
protectedPages: {
|
|
107085
|
+
errorMessage: string;
|
|
107086
|
+
errorReason: string;
|
|
107087
|
+
enabled: boolean;
|
|
107088
|
+
};
|
|
107015
107089
|
}, {
|
|
107016
107090
|
designSystems: {
|
|
107017
107091
|
max: number;
|
|
@@ -107100,6 +107174,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
107100
107174
|
errorReason: string;
|
|
107101
107175
|
enabled: boolean;
|
|
107102
107176
|
};
|
|
107177
|
+
protectedPages: {
|
|
107178
|
+
errorMessage: string;
|
|
107179
|
+
errorReason: string;
|
|
107180
|
+
enabled: boolean;
|
|
107181
|
+
};
|
|
107103
107182
|
}>>;
|
|
107104
107183
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
107105
107184
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -107240,6 +107319,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
107240
107319
|
errorReason: string;
|
|
107241
107320
|
enabled: boolean;
|
|
107242
107321
|
};
|
|
107322
|
+
protectedPages: {
|
|
107323
|
+
errorMessage: string;
|
|
107324
|
+
errorReason: string;
|
|
107325
|
+
enabled: boolean;
|
|
107326
|
+
};
|
|
107243
107327
|
} | undefined;
|
|
107244
107328
|
stripeProductDescription?: string | undefined;
|
|
107245
107329
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -107362,6 +107446,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
107362
107446
|
errorReason: string;
|
|
107363
107447
|
enabled: boolean;
|
|
107364
107448
|
};
|
|
107449
|
+
protectedPages: {
|
|
107450
|
+
errorMessage: string;
|
|
107451
|
+
errorReason: string;
|
|
107452
|
+
enabled: boolean;
|
|
107453
|
+
};
|
|
107365
107454
|
} | undefined;
|
|
107366
107455
|
stripeProductDescription?: string | undefined;
|
|
107367
107456
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -107727,6 +107816,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
107727
107816
|
errorReason: string;
|
|
107728
107817
|
enabled: boolean;
|
|
107729
107818
|
};
|
|
107819
|
+
protectedPages: {
|
|
107820
|
+
errorMessage: string;
|
|
107821
|
+
errorReason: string;
|
|
107822
|
+
enabled: boolean;
|
|
107823
|
+
};
|
|
107730
107824
|
} | undefined;
|
|
107731
107825
|
stripeProductDescription?: string | undefined;
|
|
107732
107826
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -107934,6 +108028,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
107934
108028
|
errorReason: string;
|
|
107935
108029
|
enabled: boolean;
|
|
107936
108030
|
};
|
|
108031
|
+
protectedPages: {
|
|
108032
|
+
errorMessage: string;
|
|
108033
|
+
errorReason: string;
|
|
108034
|
+
enabled: boolean;
|
|
108035
|
+
};
|
|
107937
108036
|
} | undefined;
|
|
107938
108037
|
stripeProductDescription?: string | undefined;
|
|
107939
108038
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -108143,6 +108242,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
108143
108242
|
errorReason: string;
|
|
108144
108243
|
enabled: boolean;
|
|
108145
108244
|
};
|
|
108245
|
+
protectedPages: {
|
|
108246
|
+
errorMessage: string;
|
|
108247
|
+
errorReason: string;
|
|
108248
|
+
enabled: boolean;
|
|
108249
|
+
};
|
|
108146
108250
|
} | undefined;
|
|
108147
108251
|
stripeProductDescription?: string | undefined;
|
|
108148
108252
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -108372,6 +108476,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
108372
108476
|
errorReason: string;
|
|
108373
108477
|
enabled: boolean;
|
|
108374
108478
|
};
|
|
108479
|
+
protectedPages: {
|
|
108480
|
+
errorMessage: string;
|
|
108481
|
+
errorReason: string;
|
|
108482
|
+
enabled: boolean;
|
|
108483
|
+
};
|
|
108375
108484
|
} | undefined;
|
|
108376
108485
|
stripeProductDescription?: string | undefined;
|
|
108377
108486
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -111417,25 +111526,6 @@ declare const ExternalOAuthRequest: z.ZodObject<{
|
|
|
111417
111526
|
}>;
|
|
111418
111527
|
type ExternalOAuthRequest = z.infer<typeof ExternalOAuthRequest>;
|
|
111419
111528
|
|
|
111420
|
-
declare const IntegrationType: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
111421
|
-
type IntegrationType = z.infer<typeof IntegrationType>;
|
|
111422
|
-
declare const Integration: z.ZodObject<{
|
|
111423
|
-
id: z.ZodString;
|
|
111424
|
-
workspaceId: z.ZodString;
|
|
111425
|
-
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
111426
|
-
createdAt: z.ZodDate;
|
|
111427
|
-
}, "strip", z.ZodTypeAny, {
|
|
111428
|
-
id: string;
|
|
111429
|
-
createdAt: Date;
|
|
111430
|
-
type: "Figma" | "Azure" | "Github" | "Gitlab" | "Bitbucket";
|
|
111431
|
-
workspaceId: string;
|
|
111432
|
-
}, {
|
|
111433
|
-
id: string;
|
|
111434
|
-
createdAt: Date;
|
|
111435
|
-
type: "Figma" | "Azure" | "Github" | "Gitlab" | "Bitbucket";
|
|
111436
|
-
workspaceId: string;
|
|
111437
|
-
}>;
|
|
111438
|
-
type Integration = z.infer<typeof Integration>;
|
|
111439
111529
|
declare const IntegrationCredentialsType: z.ZodEnum<["OAuth2", "PAT"]>;
|
|
111440
111530
|
type IntegrationCredentialsType = z.infer<typeof IntegrationCredentialsType>;
|
|
111441
111531
|
declare const IntegrationCredentialsProfile: z.ZodObject<{
|
|
@@ -111501,6 +111591,101 @@ declare const IntegrationCredentialsSchema: z.ZodObject<{
|
|
|
111501
111591
|
} | undefined;
|
|
111502
111592
|
}>;
|
|
111503
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>;
|
|
111504
111689
|
|
|
111505
111690
|
declare const IntegrationTokenSchema: z.ZodObject<{
|
|
111506
111691
|
id: z.ZodString;
|
|
@@ -111864,6 +112049,21 @@ declare const UserLinkedIntegrations: z.ZodObject<{
|
|
|
111864
112049
|
}>;
|
|
111865
112050
|
type UserLinkedIntegrations = z.infer<typeof UserLinkedIntegrations>;
|
|
111866
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
|
+
|
|
111867
112067
|
declare const UserIdentity: z.ZodObject<{
|
|
111868
112068
|
id: z.ZodString;
|
|
111869
112069
|
userId: z.ZodString;
|
|
@@ -111962,6 +112162,18 @@ declare const UserProfile: z.ZodObject<{
|
|
|
111962
112162
|
}>;
|
|
111963
112163
|
type UserProfile = z.infer<typeof UserProfile>;
|
|
111964
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
|
+
|
|
111965
112177
|
declare const User: z.ZodObject<{
|
|
111966
112178
|
id: z.ZodString;
|
|
111967
112179
|
email: z.ZodString;
|
|
@@ -113496,6 +113708,19 @@ declare const Workspace: z.ZodObject<{
|
|
|
113496
113708
|
errorReason: string;
|
|
113497
113709
|
enabled: boolean;
|
|
113498
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
|
+
}>;
|
|
113499
113724
|
}, "strip", z.ZodTypeAny, {
|
|
113500
113725
|
designSystems: {
|
|
113501
113726
|
max: number;
|
|
@@ -113584,6 +113809,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
113584
113809
|
errorReason: string;
|
|
113585
113810
|
enabled: boolean;
|
|
113586
113811
|
};
|
|
113812
|
+
protectedPages: {
|
|
113813
|
+
errorMessage: string;
|
|
113814
|
+
errorReason: string;
|
|
113815
|
+
enabled: boolean;
|
|
113816
|
+
};
|
|
113587
113817
|
}, {
|
|
113588
113818
|
designSystems: {
|
|
113589
113819
|
max: number;
|
|
@@ -113672,6 +113902,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
113672
113902
|
errorReason: string;
|
|
113673
113903
|
enabled: boolean;
|
|
113674
113904
|
};
|
|
113905
|
+
protectedPages: {
|
|
113906
|
+
errorMessage: string;
|
|
113907
|
+
errorReason: string;
|
|
113908
|
+
enabled: boolean;
|
|
113909
|
+
};
|
|
113675
113910
|
}>>;
|
|
113676
113911
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
113677
113912
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -113812,6 +114047,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
113812
114047
|
errorReason: string;
|
|
113813
114048
|
enabled: boolean;
|
|
113814
114049
|
};
|
|
114050
|
+
protectedPages: {
|
|
114051
|
+
errorMessage: string;
|
|
114052
|
+
errorReason: string;
|
|
114053
|
+
enabled: boolean;
|
|
114054
|
+
};
|
|
113815
114055
|
} | undefined;
|
|
113816
114056
|
stripeProductDescription?: string | undefined;
|
|
113817
114057
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -113934,6 +114174,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
113934
114174
|
errorReason: string;
|
|
113935
114175
|
enabled: boolean;
|
|
113936
114176
|
};
|
|
114177
|
+
protectedPages: {
|
|
114178
|
+
errorMessage: string;
|
|
114179
|
+
errorReason: string;
|
|
114180
|
+
enabled: boolean;
|
|
114181
|
+
};
|
|
113937
114182
|
} | undefined;
|
|
113938
114183
|
stripeProductDescription?: string | undefined;
|
|
113939
114184
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -114299,6 +114544,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
114299
114544
|
errorReason: string;
|
|
114300
114545
|
enabled: boolean;
|
|
114301
114546
|
};
|
|
114547
|
+
protectedPages: {
|
|
114548
|
+
errorMessage: string;
|
|
114549
|
+
errorReason: string;
|
|
114550
|
+
enabled: boolean;
|
|
114551
|
+
};
|
|
114302
114552
|
} | undefined;
|
|
114303
114553
|
stripeProductDescription?: string | undefined;
|
|
114304
114554
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -114506,6 +114756,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
114506
114756
|
errorReason: string;
|
|
114507
114757
|
enabled: boolean;
|
|
114508
114758
|
};
|
|
114759
|
+
protectedPages: {
|
|
114760
|
+
errorMessage: string;
|
|
114761
|
+
errorReason: string;
|
|
114762
|
+
enabled: boolean;
|
|
114763
|
+
};
|
|
114509
114764
|
} | undefined;
|
|
114510
114765
|
stripeProductDescription?: string | undefined;
|
|
114511
114766
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -114939,6 +115194,19 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
114939
115194
|
errorReason: string;
|
|
114940
115195
|
enabled: boolean;
|
|
114941
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
|
+
}>;
|
|
114942
115210
|
}, "strip", z.ZodTypeAny, {
|
|
114943
115211
|
designSystems: {
|
|
114944
115212
|
max: number;
|
|
@@ -115027,6 +115295,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
115027
115295
|
errorReason: string;
|
|
115028
115296
|
enabled: boolean;
|
|
115029
115297
|
};
|
|
115298
|
+
protectedPages: {
|
|
115299
|
+
errorMessage: string;
|
|
115300
|
+
errorReason: string;
|
|
115301
|
+
enabled: boolean;
|
|
115302
|
+
};
|
|
115030
115303
|
}, {
|
|
115031
115304
|
designSystems: {
|
|
115032
115305
|
max: number;
|
|
@@ -115115,6 +115388,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
115115
115388
|
errorReason: string;
|
|
115116
115389
|
enabled: boolean;
|
|
115117
115390
|
};
|
|
115391
|
+
protectedPages: {
|
|
115392
|
+
errorMessage: string;
|
|
115393
|
+
errorReason: string;
|
|
115394
|
+
enabled: boolean;
|
|
115395
|
+
};
|
|
115118
115396
|
}>>;
|
|
115119
115397
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
115120
115398
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -115255,6 +115533,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
115255
115533
|
errorReason: string;
|
|
115256
115534
|
enabled: boolean;
|
|
115257
115535
|
};
|
|
115536
|
+
protectedPages: {
|
|
115537
|
+
errorMessage: string;
|
|
115538
|
+
errorReason: string;
|
|
115539
|
+
enabled: boolean;
|
|
115540
|
+
};
|
|
115258
115541
|
} | undefined;
|
|
115259
115542
|
stripeProductDescription?: string | undefined;
|
|
115260
115543
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -115377,6 +115660,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
115377
115660
|
errorReason: string;
|
|
115378
115661
|
enabled: boolean;
|
|
115379
115662
|
};
|
|
115663
|
+
protectedPages: {
|
|
115664
|
+
errorMessage: string;
|
|
115665
|
+
errorReason: string;
|
|
115666
|
+
enabled: boolean;
|
|
115667
|
+
};
|
|
115380
115668
|
} | undefined;
|
|
115381
115669
|
stripeProductDescription?: string | undefined;
|
|
115382
115670
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -115742,6 +116030,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
115742
116030
|
errorReason: string;
|
|
115743
116031
|
enabled: boolean;
|
|
115744
116032
|
};
|
|
116033
|
+
protectedPages: {
|
|
116034
|
+
errorMessage: string;
|
|
116035
|
+
errorReason: string;
|
|
116036
|
+
enabled: boolean;
|
|
116037
|
+
};
|
|
115745
116038
|
} | undefined;
|
|
115746
116039
|
stripeProductDescription?: string | undefined;
|
|
115747
116040
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -115949,6 +116242,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
115949
116242
|
errorReason: string;
|
|
115950
116243
|
enabled: boolean;
|
|
115951
116244
|
};
|
|
116245
|
+
protectedPages: {
|
|
116246
|
+
errorMessage: string;
|
|
116247
|
+
errorReason: string;
|
|
116248
|
+
enabled: boolean;
|
|
116249
|
+
};
|
|
115952
116250
|
} | undefined;
|
|
115953
116251
|
stripeProductDescription?: string | undefined;
|
|
115954
116252
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -116245,6 +116543,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
116245
116543
|
errorReason: string;
|
|
116246
116544
|
enabled: boolean;
|
|
116247
116545
|
};
|
|
116546
|
+
protectedPages: {
|
|
116547
|
+
errorMessage: string;
|
|
116548
|
+
errorReason: string;
|
|
116549
|
+
enabled: boolean;
|
|
116550
|
+
};
|
|
116248
116551
|
} | undefined;
|
|
116249
116552
|
stripeProductDescription?: string | undefined;
|
|
116250
116553
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -116474,6 +116777,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
116474
116777
|
errorReason: string;
|
|
116475
116778
|
enabled: boolean;
|
|
116476
116779
|
};
|
|
116780
|
+
protectedPages: {
|
|
116781
|
+
errorMessage: string;
|
|
116782
|
+
errorReason: string;
|
|
116783
|
+
enabled: boolean;
|
|
116784
|
+
};
|
|
116477
116785
|
} | undefined;
|
|
116478
116786
|
stripeProductDescription?: string | undefined;
|
|
116479
116787
|
stripeProductFeatures?: string[] | undefined;
|
|
@@ -116562,4 +116870,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
116562
116870
|
}>;
|
|
116563
116871
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
116564
116872
|
|
|
116565
|
-
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, 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 };
|