@supernova-studio/model 0.56.0 → 0.57.1
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 +484 -5
- package/dist/index.d.ts +484 -5
- package/dist/index.js +15 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/billing/features.ts +1 -0
- package/src/dsm/documentation/block-definitions/item.ts +1 -0
- package/src/dsm/elements/data/documentation-block-v1.ts +1 -0
- package/src/dsm/elements/data/documentation-block-v2.ts +1 -0
- package/src/dsm/import/support/import-context.ts +1 -0
- package/src/feature-flags/feature-flags.ts +7 -1
package/dist/index.d.ts
CHANGED
|
@@ -576,6 +576,19 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
576
576
|
errorReason: string;
|
|
577
577
|
enabled: boolean;
|
|
578
578
|
}>;
|
|
579
|
+
designSystemRoles: z.ZodObject<{
|
|
580
|
+
enabled: z.ZodBoolean;
|
|
581
|
+
errorMessage: z.ZodString;
|
|
582
|
+
errorReason: z.ZodString;
|
|
583
|
+
}, "strip", z.ZodTypeAny, {
|
|
584
|
+
errorMessage: string;
|
|
585
|
+
errorReason: string;
|
|
586
|
+
enabled: boolean;
|
|
587
|
+
}, {
|
|
588
|
+
errorMessage: string;
|
|
589
|
+
errorReason: string;
|
|
590
|
+
enabled: boolean;
|
|
591
|
+
}>;
|
|
579
592
|
}, "strip", z.ZodTypeAny, {
|
|
580
593
|
designSystems: {
|
|
581
594
|
max: number;
|
|
@@ -684,6 +697,11 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
684
697
|
errorReason: string;
|
|
685
698
|
enabled: boolean;
|
|
686
699
|
};
|
|
700
|
+
designSystemRoles: {
|
|
701
|
+
errorMessage: string;
|
|
702
|
+
errorReason: string;
|
|
703
|
+
enabled: boolean;
|
|
704
|
+
};
|
|
687
705
|
}, {
|
|
688
706
|
designSystems: {
|
|
689
707
|
max: number;
|
|
@@ -792,6 +810,11 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
792
810
|
errorReason: string;
|
|
793
811
|
enabled: boolean;
|
|
794
812
|
};
|
|
813
|
+
designSystemRoles: {
|
|
814
|
+
errorMessage: string;
|
|
815
|
+
errorReason: string;
|
|
816
|
+
enabled: boolean;
|
|
817
|
+
};
|
|
795
818
|
}>;
|
|
796
819
|
type FeaturesSummary = z.infer<typeof FeaturesSummary>;
|
|
797
820
|
|
|
@@ -1318,6 +1341,19 @@ declare const Subscription: z.ZodObject<{
|
|
|
1318
1341
|
errorReason: string;
|
|
1319
1342
|
enabled: boolean;
|
|
1320
1343
|
}>;
|
|
1344
|
+
designSystemRoles: z.ZodObject<{
|
|
1345
|
+
enabled: z.ZodBoolean;
|
|
1346
|
+
errorMessage: z.ZodString;
|
|
1347
|
+
errorReason: z.ZodString;
|
|
1348
|
+
}, "strip", z.ZodTypeAny, {
|
|
1349
|
+
errorMessage: string;
|
|
1350
|
+
errorReason: string;
|
|
1351
|
+
enabled: boolean;
|
|
1352
|
+
}, {
|
|
1353
|
+
errorMessage: string;
|
|
1354
|
+
errorReason: string;
|
|
1355
|
+
enabled: boolean;
|
|
1356
|
+
}>;
|
|
1321
1357
|
}, "strip", z.ZodTypeAny, {
|
|
1322
1358
|
designSystems: {
|
|
1323
1359
|
max: number;
|
|
@@ -1426,6 +1462,11 @@ declare const Subscription: z.ZodObject<{
|
|
|
1426
1462
|
errorReason: string;
|
|
1427
1463
|
enabled: boolean;
|
|
1428
1464
|
};
|
|
1465
|
+
designSystemRoles: {
|
|
1466
|
+
errorMessage: string;
|
|
1467
|
+
errorReason: string;
|
|
1468
|
+
enabled: boolean;
|
|
1469
|
+
};
|
|
1429
1470
|
}, {
|
|
1430
1471
|
designSystems: {
|
|
1431
1472
|
max: number;
|
|
@@ -1534,6 +1575,11 @@ declare const Subscription: z.ZodObject<{
|
|
|
1534
1575
|
errorReason: string;
|
|
1535
1576
|
enabled: boolean;
|
|
1536
1577
|
};
|
|
1578
|
+
designSystemRoles: {
|
|
1579
|
+
errorMessage: string;
|
|
1580
|
+
errorReason: string;
|
|
1581
|
+
enabled: boolean;
|
|
1582
|
+
};
|
|
1537
1583
|
}>>;
|
|
1538
1584
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
1539
1585
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1709,6 +1755,11 @@ declare const Subscription: z.ZodObject<{
|
|
|
1709
1755
|
errorReason: string;
|
|
1710
1756
|
enabled: boolean;
|
|
1711
1757
|
};
|
|
1758
|
+
designSystemRoles: {
|
|
1759
|
+
errorMessage: string;
|
|
1760
|
+
errorReason: string;
|
|
1761
|
+
enabled: boolean;
|
|
1762
|
+
};
|
|
1712
1763
|
} | undefined;
|
|
1713
1764
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
1714
1765
|
currentPeriodStart?: string | undefined;
|
|
@@ -1851,6 +1902,11 @@ declare const Subscription: z.ZodObject<{
|
|
|
1851
1902
|
errorReason: string;
|
|
1852
1903
|
enabled: boolean;
|
|
1853
1904
|
};
|
|
1905
|
+
designSystemRoles: {
|
|
1906
|
+
errorMessage: string;
|
|
1907
|
+
errorReason: string;
|
|
1908
|
+
enabled: boolean;
|
|
1909
|
+
};
|
|
1854
1910
|
} | undefined;
|
|
1855
1911
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
1856
1912
|
currentPeriodStart?: string | undefined;
|
|
@@ -10881,6 +10937,19 @@ declare const UserDump: z.ZodObject<{
|
|
|
10881
10937
|
errorReason: string;
|
|
10882
10938
|
enabled: boolean;
|
|
10883
10939
|
}>;
|
|
10940
|
+
designSystemRoles: z.ZodObject<{
|
|
10941
|
+
enabled: z.ZodBoolean;
|
|
10942
|
+
errorMessage: z.ZodString;
|
|
10943
|
+
errorReason: z.ZodString;
|
|
10944
|
+
}, "strip", z.ZodTypeAny, {
|
|
10945
|
+
errorMessage: string;
|
|
10946
|
+
errorReason: string;
|
|
10947
|
+
enabled: boolean;
|
|
10948
|
+
}, {
|
|
10949
|
+
errorMessage: string;
|
|
10950
|
+
errorReason: string;
|
|
10951
|
+
enabled: boolean;
|
|
10952
|
+
}>;
|
|
10884
10953
|
}, "strip", z.ZodTypeAny, {
|
|
10885
10954
|
designSystems: {
|
|
10886
10955
|
max: number;
|
|
@@ -10989,6 +11058,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
10989
11058
|
errorReason: string;
|
|
10990
11059
|
enabled: boolean;
|
|
10991
11060
|
};
|
|
11061
|
+
designSystemRoles: {
|
|
11062
|
+
errorMessage: string;
|
|
11063
|
+
errorReason: string;
|
|
11064
|
+
enabled: boolean;
|
|
11065
|
+
};
|
|
10992
11066
|
}, {
|
|
10993
11067
|
designSystems: {
|
|
10994
11068
|
max: number;
|
|
@@ -11097,6 +11171,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
11097
11171
|
errorReason: string;
|
|
11098
11172
|
enabled: boolean;
|
|
11099
11173
|
};
|
|
11174
|
+
designSystemRoles: {
|
|
11175
|
+
errorMessage: string;
|
|
11176
|
+
errorReason: string;
|
|
11177
|
+
enabled: boolean;
|
|
11178
|
+
};
|
|
11100
11179
|
}>>;
|
|
11101
11180
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
11102
11181
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -11272,6 +11351,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
11272
11351
|
errorReason: string;
|
|
11273
11352
|
enabled: boolean;
|
|
11274
11353
|
};
|
|
11354
|
+
designSystemRoles: {
|
|
11355
|
+
errorMessage: string;
|
|
11356
|
+
errorReason: string;
|
|
11357
|
+
enabled: boolean;
|
|
11358
|
+
};
|
|
11275
11359
|
} | undefined;
|
|
11276
11360
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
11277
11361
|
currentPeriodStart?: string | undefined;
|
|
@@ -11414,6 +11498,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
11414
11498
|
errorReason: string;
|
|
11415
11499
|
enabled: boolean;
|
|
11416
11500
|
};
|
|
11501
|
+
designSystemRoles: {
|
|
11502
|
+
errorMessage: string;
|
|
11503
|
+
errorReason: string;
|
|
11504
|
+
enabled: boolean;
|
|
11505
|
+
};
|
|
11417
11506
|
} | undefined;
|
|
11418
11507
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
11419
11508
|
currentPeriodStart?: string | undefined;
|
|
@@ -11732,6 +11821,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
11732
11821
|
errorReason: string;
|
|
11733
11822
|
enabled: boolean;
|
|
11734
11823
|
};
|
|
11824
|
+
designSystemRoles: {
|
|
11825
|
+
errorMessage: string;
|
|
11826
|
+
errorReason: string;
|
|
11827
|
+
enabled: boolean;
|
|
11828
|
+
};
|
|
11735
11829
|
} | undefined;
|
|
11736
11830
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
11737
11831
|
currentPeriodStart?: string | undefined;
|
|
@@ -11939,6 +12033,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
11939
12033
|
errorReason: string;
|
|
11940
12034
|
enabled: boolean;
|
|
11941
12035
|
};
|
|
12036
|
+
designSystemRoles: {
|
|
12037
|
+
errorMessage: string;
|
|
12038
|
+
errorReason: string;
|
|
12039
|
+
enabled: boolean;
|
|
12040
|
+
};
|
|
11942
12041
|
} | undefined;
|
|
11943
12042
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
11944
12043
|
currentPeriodStart?: string | undefined;
|
|
@@ -17762,6 +17861,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
17762
17861
|
errorReason: string;
|
|
17763
17862
|
enabled: boolean;
|
|
17764
17863
|
};
|
|
17864
|
+
designSystemRoles: {
|
|
17865
|
+
errorMessage: string;
|
|
17866
|
+
errorReason: string;
|
|
17867
|
+
enabled: boolean;
|
|
17868
|
+
};
|
|
17765
17869
|
} | undefined;
|
|
17766
17870
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
17767
17871
|
currentPeriodStart?: string | undefined;
|
|
@@ -18580,6 +18684,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
18580
18684
|
errorReason: string;
|
|
18581
18685
|
enabled: boolean;
|
|
18582
18686
|
};
|
|
18687
|
+
designSystemRoles: {
|
|
18688
|
+
errorMessage: string;
|
|
18689
|
+
errorReason: string;
|
|
18690
|
+
enabled: boolean;
|
|
18691
|
+
};
|
|
18583
18692
|
} | undefined;
|
|
18584
18693
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
18585
18694
|
currentPeriodStart?: string | undefined;
|
|
@@ -19400,6 +19509,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
19400
19509
|
errorReason: string;
|
|
19401
19510
|
enabled: boolean;
|
|
19402
19511
|
};
|
|
19512
|
+
designSystemRoles: {
|
|
19513
|
+
errorMessage: string;
|
|
19514
|
+
errorReason: string;
|
|
19515
|
+
enabled: boolean;
|
|
19516
|
+
};
|
|
19403
19517
|
} | undefined;
|
|
19404
19518
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
19405
19519
|
currentPeriodStart?: string | undefined;
|
|
@@ -20291,6 +20405,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
20291
20405
|
errorReason: string;
|
|
20292
20406
|
enabled: boolean;
|
|
20293
20407
|
};
|
|
20408
|
+
designSystemRoles: {
|
|
20409
|
+
errorMessage: string;
|
|
20410
|
+
errorReason: string;
|
|
20411
|
+
enabled: boolean;
|
|
20412
|
+
};
|
|
20294
20413
|
} | undefined;
|
|
20295
20414
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
20296
20415
|
currentPeriodStart?: string | undefined;
|
|
@@ -20992,6 +21111,19 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
20992
21111
|
errorReason: string;
|
|
20993
21112
|
enabled: boolean;
|
|
20994
21113
|
}>;
|
|
21114
|
+
designSystemRoles: z.ZodObject<{
|
|
21115
|
+
enabled: z.ZodBoolean;
|
|
21116
|
+
errorMessage: z.ZodString;
|
|
21117
|
+
errorReason: z.ZodString;
|
|
21118
|
+
}, "strip", z.ZodTypeAny, {
|
|
21119
|
+
errorMessage: string;
|
|
21120
|
+
errorReason: string;
|
|
21121
|
+
enabled: boolean;
|
|
21122
|
+
}, {
|
|
21123
|
+
errorMessage: string;
|
|
21124
|
+
errorReason: string;
|
|
21125
|
+
enabled: boolean;
|
|
21126
|
+
}>;
|
|
20995
21127
|
}, "strip", z.ZodTypeAny, {
|
|
20996
21128
|
designSystems: {
|
|
20997
21129
|
max: number;
|
|
@@ -21100,6 +21232,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21100
21232
|
errorReason: string;
|
|
21101
21233
|
enabled: boolean;
|
|
21102
21234
|
};
|
|
21235
|
+
designSystemRoles: {
|
|
21236
|
+
errorMessage: string;
|
|
21237
|
+
errorReason: string;
|
|
21238
|
+
enabled: boolean;
|
|
21239
|
+
};
|
|
21103
21240
|
}, {
|
|
21104
21241
|
designSystems: {
|
|
21105
21242
|
max: number;
|
|
@@ -21208,6 +21345,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21208
21345
|
errorReason: string;
|
|
21209
21346
|
enabled: boolean;
|
|
21210
21347
|
};
|
|
21348
|
+
designSystemRoles: {
|
|
21349
|
+
errorMessage: string;
|
|
21350
|
+
errorReason: string;
|
|
21351
|
+
enabled: boolean;
|
|
21352
|
+
};
|
|
21211
21353
|
}>>;
|
|
21212
21354
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
21213
21355
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -21383,6 +21525,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21383
21525
|
errorReason: string;
|
|
21384
21526
|
enabled: boolean;
|
|
21385
21527
|
};
|
|
21528
|
+
designSystemRoles: {
|
|
21529
|
+
errorMessage: string;
|
|
21530
|
+
errorReason: string;
|
|
21531
|
+
enabled: boolean;
|
|
21532
|
+
};
|
|
21386
21533
|
} | undefined;
|
|
21387
21534
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
21388
21535
|
currentPeriodStart?: string | undefined;
|
|
@@ -21525,6 +21672,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21525
21672
|
errorReason: string;
|
|
21526
21673
|
enabled: boolean;
|
|
21527
21674
|
};
|
|
21675
|
+
designSystemRoles: {
|
|
21676
|
+
errorMessage: string;
|
|
21677
|
+
errorReason: string;
|
|
21678
|
+
enabled: boolean;
|
|
21679
|
+
};
|
|
21528
21680
|
} | undefined;
|
|
21529
21681
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
21530
21682
|
currentPeriodStart?: string | undefined;
|
|
@@ -21843,6 +21995,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21843
21995
|
errorReason: string;
|
|
21844
21996
|
enabled: boolean;
|
|
21845
21997
|
};
|
|
21998
|
+
designSystemRoles: {
|
|
21999
|
+
errorMessage: string;
|
|
22000
|
+
errorReason: string;
|
|
22001
|
+
enabled: boolean;
|
|
22002
|
+
};
|
|
21846
22003
|
} | undefined;
|
|
21847
22004
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
21848
22005
|
currentPeriodStart?: string | undefined;
|
|
@@ -22050,6 +22207,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
22050
22207
|
errorReason: string;
|
|
22051
22208
|
enabled: boolean;
|
|
22052
22209
|
};
|
|
22210
|
+
designSystemRoles: {
|
|
22211
|
+
errorMessage: string;
|
|
22212
|
+
errorReason: string;
|
|
22213
|
+
enabled: boolean;
|
|
22214
|
+
};
|
|
22053
22215
|
} | undefined;
|
|
22054
22216
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
22055
22217
|
currentPeriodStart?: string | undefined;
|
|
@@ -27873,6 +28035,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27873
28035
|
errorReason: string;
|
|
27874
28036
|
enabled: boolean;
|
|
27875
28037
|
};
|
|
28038
|
+
designSystemRoles: {
|
|
28039
|
+
errorMessage: string;
|
|
28040
|
+
errorReason: string;
|
|
28041
|
+
enabled: boolean;
|
|
28042
|
+
};
|
|
27876
28043
|
} | undefined;
|
|
27877
28044
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
27878
28045
|
currentPeriodStart?: string | undefined;
|
|
@@ -28691,6 +28858,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28691
28858
|
errorReason: string;
|
|
28692
28859
|
enabled: boolean;
|
|
28693
28860
|
};
|
|
28861
|
+
designSystemRoles: {
|
|
28862
|
+
errorMessage: string;
|
|
28863
|
+
errorReason: string;
|
|
28864
|
+
enabled: boolean;
|
|
28865
|
+
};
|
|
28694
28866
|
} | undefined;
|
|
28695
28867
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
28696
28868
|
currentPeriodStart?: string | undefined;
|
|
@@ -32465,10 +32637,13 @@ declare const PageBlockDefinitionComponentOptions: z.ZodObject<{
|
|
|
32465
32637
|
type PageBlockDefinitionComponentOptions = z.infer<typeof PageBlockDefinitionComponentOptions>;
|
|
32466
32638
|
declare const PageBlockDefinitionFigmaComponentOptions: z.ZodObject<{
|
|
32467
32639
|
renderLayoutAs: z.ZodEnum<["Grid", "PropsTable", "Canvas", "Playground"]>;
|
|
32640
|
+
invertPropertySelection: z.ZodOptional<z.ZodBoolean>;
|
|
32468
32641
|
}, "strip", z.ZodTypeAny, {
|
|
32469
32642
|
renderLayoutAs: "Grid" | "PropsTable" | "Canvas" | "Playground";
|
|
32643
|
+
invertPropertySelection?: boolean | undefined;
|
|
32470
32644
|
}, {
|
|
32471
32645
|
renderLayoutAs: "Grid" | "PropsTable" | "Canvas" | "Playground";
|
|
32646
|
+
invertPropertySelection?: boolean | undefined;
|
|
32472
32647
|
}>;
|
|
32473
32648
|
type PageBlockDefinitionFigmaComponentOptions = z.infer<typeof PageBlockDefinitionFigmaComponentOptions>;
|
|
32474
32649
|
declare const PageBlockDefinitionProperty: z.ZodObject<{
|
|
@@ -38109,6 +38284,7 @@ declare const PageBlockFigmaComponentBlockConfig: z.ZodObject<{
|
|
|
38109
38284
|
showComponentName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
38110
38285
|
showComponentDescription: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
38111
38286
|
showPropertyList: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
38287
|
+
previewOrderIds: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
|
|
38112
38288
|
previewContainerSize: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Centered" | "NaturalHeight", z.ZodTypeDef, "Centered" | "NaturalHeight">>>, NonNullable<"Centered" | "NaturalHeight"> | undefined, "Centered" | "NaturalHeight" | null | undefined>;
|
|
38113
38289
|
backgroundColor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
38114
38290
|
value: string;
|
|
@@ -38126,6 +38302,7 @@ declare const PageBlockFigmaComponentBlockConfig: z.ZodObject<{
|
|
|
38126
38302
|
showComponentName?: boolean | undefined;
|
|
38127
38303
|
showComponentDescription?: boolean | undefined;
|
|
38128
38304
|
showPropertyList?: boolean | undefined;
|
|
38305
|
+
previewOrderIds?: string[] | undefined;
|
|
38129
38306
|
previewContainerSize?: NonNullable<"Centered" | "NaturalHeight"> | undefined;
|
|
38130
38307
|
}, {
|
|
38131
38308
|
backgroundColor?: {
|
|
@@ -38134,6 +38311,7 @@ declare const PageBlockFigmaComponentBlockConfig: z.ZodObject<{
|
|
|
38134
38311
|
showComponentName?: boolean | null | undefined;
|
|
38135
38312
|
showComponentDescription?: boolean | null | undefined;
|
|
38136
38313
|
showPropertyList?: boolean | null | undefined;
|
|
38314
|
+
previewOrderIds?: string[] | null | undefined;
|
|
38137
38315
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
38138
38316
|
}>;
|
|
38139
38317
|
type PageBlockFigmaComponentBlockConfig = z.infer<typeof PageBlockFigmaComponentBlockConfig>;
|
|
@@ -38933,6 +39111,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38933
39111
|
showComponentName?: boolean | undefined;
|
|
38934
39112
|
showComponentDescription?: boolean | undefined;
|
|
38935
39113
|
showPropertyList?: boolean | undefined;
|
|
39114
|
+
previewOrderIds?: string[] | undefined;
|
|
38936
39115
|
previewContainerSize?: NonNullable<"Centered" | "NaturalHeight"> | undefined;
|
|
38937
39116
|
}, z.ZodTypeDef, {
|
|
38938
39117
|
backgroundColor?: {
|
|
@@ -38941,6 +39120,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38941
39120
|
showComponentName?: boolean | null | undefined;
|
|
38942
39121
|
showComponentDescription?: boolean | null | undefined;
|
|
38943
39122
|
showPropertyList?: boolean | null | undefined;
|
|
39123
|
+
previewOrderIds?: string[] | null | undefined;
|
|
38944
39124
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
38945
39125
|
}>>>, {
|
|
38946
39126
|
backgroundColor?: {
|
|
@@ -38949,6 +39129,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38949
39129
|
showComponentName?: boolean | undefined;
|
|
38950
39130
|
showComponentDescription?: boolean | undefined;
|
|
38951
39131
|
showPropertyList?: boolean | undefined;
|
|
39132
|
+
previewOrderIds?: string[] | undefined;
|
|
38952
39133
|
previewContainerSize?: NonNullable<"Centered" | "NaturalHeight"> | undefined;
|
|
38953
39134
|
} | undefined, {
|
|
38954
39135
|
backgroundColor?: {
|
|
@@ -38957,6 +39138,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
38957
39138
|
showComponentName?: boolean | null | undefined;
|
|
38958
39139
|
showComponentDescription?: boolean | null | undefined;
|
|
38959
39140
|
showPropertyList?: boolean | null | undefined;
|
|
39141
|
+
previewOrderIds?: string[] | null | undefined;
|
|
38960
39142
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
38961
39143
|
} | null | undefined>;
|
|
38962
39144
|
selectedFigmaComponent: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
@@ -39218,6 +39400,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39218
39400
|
showComponentName?: boolean | undefined;
|
|
39219
39401
|
showComponentDescription?: boolean | undefined;
|
|
39220
39402
|
showPropertyList?: boolean | undefined;
|
|
39403
|
+
previewOrderIds?: string[] | undefined;
|
|
39221
39404
|
previewContainerSize?: NonNullable<"Centered" | "NaturalHeight"> | undefined;
|
|
39222
39405
|
} | undefined;
|
|
39223
39406
|
selectedFigmaComponent?: {
|
|
@@ -39461,6 +39644,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
39461
39644
|
showComponentName?: boolean | null | undefined;
|
|
39462
39645
|
showComponentDescription?: boolean | null | undefined;
|
|
39463
39646
|
showPropertyList?: boolean | null | undefined;
|
|
39647
|
+
previewOrderIds?: string[] | null | undefined;
|
|
39464
39648
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
39465
39649
|
} | null | undefined;
|
|
39466
39650
|
selectedFigmaComponent?: {
|
|
@@ -40035,6 +40219,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
40035
40219
|
showComponentName: z.ZodOptional<z.ZodBoolean>;
|
|
40036
40220
|
showComponentDescription: z.ZodOptional<z.ZodBoolean>;
|
|
40037
40221
|
showPropertyList: z.ZodOptional<z.ZodBoolean>;
|
|
40222
|
+
previewOrderIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
40038
40223
|
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
40039
40224
|
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
40040
40225
|
value: z.ZodString;
|
|
@@ -40084,6 +40269,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
40084
40269
|
showComponentName?: boolean | undefined;
|
|
40085
40270
|
showComponentDescription?: boolean | undefined;
|
|
40086
40271
|
showPropertyList?: boolean | undefined;
|
|
40272
|
+
previewOrderIds?: string[] | undefined;
|
|
40087
40273
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
40088
40274
|
}, {
|
|
40089
40275
|
value?: {
|
|
@@ -40100,6 +40286,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
40100
40286
|
showComponentName?: boolean | undefined;
|
|
40101
40287
|
showComponentDescription?: boolean | undefined;
|
|
40102
40288
|
showPropertyList?: boolean | undefined;
|
|
40289
|
+
previewOrderIds?: string[] | undefined;
|
|
40103
40290
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
40104
40291
|
}>;
|
|
40105
40292
|
type PageBlockItemFigmaComponentValue = z.infer<typeof PageBlockItemFigmaComponentValue>;
|
|
@@ -43316,6 +43503,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43316
43503
|
showComponentName?: boolean | null | undefined;
|
|
43317
43504
|
showComponentDescription?: boolean | null | undefined;
|
|
43318
43505
|
showPropertyList?: boolean | null | undefined;
|
|
43506
|
+
previewOrderIds?: string[] | null | undefined;
|
|
43319
43507
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
43320
43508
|
} | null | undefined;
|
|
43321
43509
|
selectedFigmaComponent?: {
|
|
@@ -43560,6 +43748,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
43560
43748
|
showComponentName?: boolean | null | undefined;
|
|
43561
43749
|
showComponentDescription?: boolean | null | undefined;
|
|
43562
43750
|
showPropertyList?: boolean | null | undefined;
|
|
43751
|
+
previewOrderIds?: string[] | null | undefined;
|
|
43563
43752
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
43564
43753
|
} | null | undefined;
|
|
43565
43754
|
selectedFigmaComponent?: {
|
|
@@ -44150,6 +44339,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44150
44339
|
showComponentName?: boolean | null | undefined;
|
|
44151
44340
|
showComponentDescription?: boolean | null | undefined;
|
|
44152
44341
|
showPropertyList?: boolean | null | undefined;
|
|
44342
|
+
previewOrderIds?: string[] | null | undefined;
|
|
44153
44343
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
44154
44344
|
} | null | undefined;
|
|
44155
44345
|
selectedFigmaComponent?: {
|
|
@@ -44394,6 +44584,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
44394
44584
|
showComponentName?: boolean | null | undefined;
|
|
44395
44585
|
showComponentDescription?: boolean | null | undefined;
|
|
44396
44586
|
showPropertyList?: boolean | null | undefined;
|
|
44587
|
+
previewOrderIds?: string[] | null | undefined;
|
|
44397
44588
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
44398
44589
|
} | null | undefined;
|
|
44399
44590
|
selectedFigmaComponent?: {
|
|
@@ -51384,6 +51575,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51384
51575
|
showComponentName?: boolean | null | undefined;
|
|
51385
51576
|
showComponentDescription?: boolean | null | undefined;
|
|
51386
51577
|
showPropertyList?: boolean | null | undefined;
|
|
51578
|
+
previewOrderIds?: string[] | null | undefined;
|
|
51387
51579
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
51388
51580
|
} | null | undefined;
|
|
51389
51581
|
selectedFigmaComponent?: {
|
|
@@ -51628,6 +51820,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
51628
51820
|
showComponentName?: boolean | null | undefined;
|
|
51629
51821
|
showComponentDescription?: boolean | null | undefined;
|
|
51630
51822
|
showPropertyList?: boolean | null | undefined;
|
|
51823
|
+
previewOrderIds?: string[] | null | undefined;
|
|
51631
51824
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
51632
51825
|
} | null | undefined;
|
|
51633
51826
|
selectedFigmaComponent?: {
|
|
@@ -52218,6 +52411,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52218
52411
|
showComponentName?: boolean | null | undefined;
|
|
52219
52412
|
showComponentDescription?: boolean | null | undefined;
|
|
52220
52413
|
showPropertyList?: boolean | null | undefined;
|
|
52414
|
+
previewOrderIds?: string[] | null | undefined;
|
|
52221
52415
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
52222
52416
|
} | null | undefined;
|
|
52223
52417
|
selectedFigmaComponent?: {
|
|
@@ -52462,6 +52656,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52462
52656
|
showComponentName?: boolean | null | undefined;
|
|
52463
52657
|
showComponentDescription?: boolean | null | undefined;
|
|
52464
52658
|
showPropertyList?: boolean | null | undefined;
|
|
52659
|
+
previewOrderIds?: string[] | null | undefined;
|
|
52465
52660
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
52466
52661
|
} | null | undefined;
|
|
52467
52662
|
selectedFigmaComponent?: {
|
|
@@ -52871,6 +53066,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
52871
53066
|
showComponentName?: boolean | null | undefined;
|
|
52872
53067
|
showComponentDescription?: boolean | null | undefined;
|
|
52873
53068
|
showPropertyList?: boolean | null | undefined;
|
|
53069
|
+
previewOrderIds?: string[] | null | undefined;
|
|
52874
53070
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
52875
53071
|
} | null | undefined;
|
|
52876
53072
|
selectedFigmaComponent?: {
|
|
@@ -53115,6 +53311,7 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
53115
53311
|
showComponentName?: boolean | null | undefined;
|
|
53116
53312
|
showComponentDescription?: boolean | null | undefined;
|
|
53117
53313
|
showPropertyList?: boolean | null | undefined;
|
|
53314
|
+
previewOrderIds?: string[] | null | undefined;
|
|
53118
53315
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
53119
53316
|
} | null | undefined;
|
|
53120
53317
|
selectedFigmaComponent?: {
|
|
@@ -54419,6 +54616,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54419
54616
|
showComponentName?: boolean | null | undefined;
|
|
54420
54617
|
showComponentDescription?: boolean | null | undefined;
|
|
54421
54618
|
showPropertyList?: boolean | null | undefined;
|
|
54619
|
+
previewOrderIds?: string[] | null | undefined;
|
|
54422
54620
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
54423
54621
|
} | null | undefined;
|
|
54424
54622
|
selectedFigmaComponent?: {
|
|
@@ -54663,6 +54861,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54663
54861
|
showComponentName?: boolean | null | undefined;
|
|
54664
54862
|
showComponentDescription?: boolean | null | undefined;
|
|
54665
54863
|
showPropertyList?: boolean | null | undefined;
|
|
54864
|
+
previewOrderIds?: string[] | null | undefined;
|
|
54666
54865
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
54667
54866
|
} | null | undefined;
|
|
54668
54867
|
selectedFigmaComponent?: {
|
|
@@ -54975,6 +55174,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
54975
55174
|
showComponentName?: boolean | null | undefined;
|
|
54976
55175
|
showComponentDescription?: boolean | null | undefined;
|
|
54977
55176
|
showPropertyList?: boolean | null | undefined;
|
|
55177
|
+
previewOrderIds?: string[] | null | undefined;
|
|
54978
55178
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
54979
55179
|
} | null | undefined;
|
|
54980
55180
|
selectedFigmaComponent?: {
|
|
@@ -55219,6 +55419,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55219
55419
|
showComponentName?: boolean | null | undefined;
|
|
55220
55420
|
showComponentDescription?: boolean | null | undefined;
|
|
55221
55421
|
showPropertyList?: boolean | null | undefined;
|
|
55422
|
+
previewOrderIds?: string[] | null | undefined;
|
|
55222
55423
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
55223
55424
|
} | null | undefined;
|
|
55224
55425
|
selectedFigmaComponent?: {
|
|
@@ -55554,6 +55755,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55554
55755
|
showComponentName?: boolean | null | undefined;
|
|
55555
55756
|
showComponentDescription?: boolean | null | undefined;
|
|
55556
55757
|
showPropertyList?: boolean | null | undefined;
|
|
55758
|
+
previewOrderIds?: string[] | null | undefined;
|
|
55557
55759
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
55558
55760
|
} | null | undefined;
|
|
55559
55761
|
selectedFigmaComponent?: {
|
|
@@ -55798,6 +56000,7 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
|
|
|
55798
56000
|
showComponentName?: boolean | null | undefined;
|
|
55799
56001
|
showComponentDescription?: boolean | null | undefined;
|
|
55800
56002
|
showPropertyList?: boolean | null | undefined;
|
|
56003
|
+
previewOrderIds?: string[] | null | undefined;
|
|
55801
56004
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
55802
56005
|
} | null | undefined;
|
|
55803
56006
|
selectedFigmaComponent?: {
|
|
@@ -74722,6 +74925,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74722
74925
|
showComponentName?: boolean | null | undefined;
|
|
74723
74926
|
showComponentDescription?: boolean | null | undefined;
|
|
74724
74927
|
showPropertyList?: boolean | null | undefined;
|
|
74928
|
+
previewOrderIds?: string[] | null | undefined;
|
|
74725
74929
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
74726
74930
|
} | null | undefined;
|
|
74727
74931
|
selectedFigmaComponent?: {
|
|
@@ -74966,6 +75170,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
74966
75170
|
showComponentName?: boolean | null | undefined;
|
|
74967
75171
|
showComponentDescription?: boolean | null | undefined;
|
|
74968
75172
|
showPropertyList?: boolean | null | undefined;
|
|
75173
|
+
previewOrderIds?: string[] | null | undefined;
|
|
74969
75174
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
74970
75175
|
} | null | undefined;
|
|
74971
75176
|
selectedFigmaComponent?: {
|
|
@@ -75278,6 +75483,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75278
75483
|
showComponentName?: boolean | null | undefined;
|
|
75279
75484
|
showComponentDescription?: boolean | null | undefined;
|
|
75280
75485
|
showPropertyList?: boolean | null | undefined;
|
|
75486
|
+
previewOrderIds?: string[] | null | undefined;
|
|
75281
75487
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
75282
75488
|
} | null | undefined;
|
|
75283
75489
|
selectedFigmaComponent?: {
|
|
@@ -75522,6 +75728,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75522
75728
|
showComponentName?: boolean | null | undefined;
|
|
75523
75729
|
showComponentDescription?: boolean | null | undefined;
|
|
75524
75730
|
showPropertyList?: boolean | null | undefined;
|
|
75731
|
+
previewOrderIds?: string[] | null | undefined;
|
|
75525
75732
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
75526
75733
|
} | null | undefined;
|
|
75527
75734
|
selectedFigmaComponent?: {
|
|
@@ -75857,6 +76064,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
75857
76064
|
showComponentName?: boolean | null | undefined;
|
|
75858
76065
|
showComponentDescription?: boolean | null | undefined;
|
|
75859
76066
|
showPropertyList?: boolean | null | undefined;
|
|
76067
|
+
previewOrderIds?: string[] | null | undefined;
|
|
75860
76068
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
75861
76069
|
} | null | undefined;
|
|
75862
76070
|
selectedFigmaComponent?: {
|
|
@@ -76101,6 +76309,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76101
76309
|
showComponentName?: boolean | null | undefined;
|
|
76102
76310
|
showComponentDescription?: boolean | null | undefined;
|
|
76103
76311
|
showPropertyList?: boolean | null | undefined;
|
|
76312
|
+
previewOrderIds?: string[] | null | undefined;
|
|
76104
76313
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
76105
76314
|
} | null | undefined;
|
|
76106
76315
|
selectedFigmaComponent?: {
|
|
@@ -76465,6 +76674,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76465
76674
|
showComponentName?: boolean | null | undefined;
|
|
76466
76675
|
showComponentDescription?: boolean | null | undefined;
|
|
76467
76676
|
showPropertyList?: boolean | null | undefined;
|
|
76677
|
+
previewOrderIds?: string[] | null | undefined;
|
|
76468
76678
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
76469
76679
|
} | null | undefined;
|
|
76470
76680
|
selectedFigmaComponent?: {
|
|
@@ -76709,6 +76919,7 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
76709
76919
|
showComponentName?: boolean | null | undefined;
|
|
76710
76920
|
showComponentDescription?: boolean | null | undefined;
|
|
76711
76921
|
showPropertyList?: boolean | null | undefined;
|
|
76922
|
+
previewOrderIds?: string[] | null | undefined;
|
|
76712
76923
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
76713
76924
|
} | null | undefined;
|
|
76714
76925
|
selectedFigmaComponent?: {
|
|
@@ -78098,6 +78309,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
|
|
|
78098
78309
|
}, {
|
|
78099
78310
|
sourcesWithMissingAccess: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
78100
78311
|
shadowOpacityOptional: z.ZodDefault<z.ZodBoolean>;
|
|
78312
|
+
typographyPropsKeepAliases: z.ZodDefault<z.ZodBoolean>;
|
|
78101
78313
|
}>, "strip", z.ZodTypeAny, {
|
|
78102
78314
|
designSystemId: string;
|
|
78103
78315
|
fileAccessByFileId: Record<string, {
|
|
@@ -78148,6 +78360,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
|
|
|
78148
78360
|
}[]>;
|
|
78149
78361
|
sourcesWithMissingAccess: string[];
|
|
78150
78362
|
shadowOpacityOptional: boolean;
|
|
78363
|
+
typographyPropsKeepAliases: boolean;
|
|
78151
78364
|
}, {
|
|
78152
78365
|
designSystemId: string;
|
|
78153
78366
|
fileAccessByFileId: Record<string, {
|
|
@@ -78198,6 +78411,7 @@ declare const FigmaImportContextWithSourcesState: z.ZodObject<z.objectUtil.exten
|
|
|
78198
78411
|
}[]> | undefined;
|
|
78199
78412
|
sourcesWithMissingAccess?: string[] | undefined;
|
|
78200
78413
|
shadowOpacityOptional?: boolean | undefined;
|
|
78414
|
+
typographyPropsKeepAliases?: boolean | undefined;
|
|
78201
78415
|
}>;
|
|
78202
78416
|
type FigmaImportContextWithSourcesState = z.infer<typeof FigmaImportContextWithSourcesState>;
|
|
78203
78417
|
declare const ChangedImportedFigmaSourceData: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -78743,6 +78957,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
|
|
|
78743
78957
|
}, {
|
|
78744
78958
|
sourcesWithMissingAccess: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
78745
78959
|
shadowOpacityOptional: z.ZodDefault<z.ZodBoolean>;
|
|
78960
|
+
typographyPropsKeepAliases: z.ZodDefault<z.ZodBoolean>;
|
|
78746
78961
|
}>, {
|
|
78747
78962
|
/**
|
|
78748
78963
|
* Describes what to download from each file, this should contain all file id mentioned in
|
|
@@ -79107,6 +79322,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
|
|
|
79107
79322
|
}[]>;
|
|
79108
79323
|
sourcesWithMissingAccess: string[];
|
|
79109
79324
|
shadowOpacityOptional: boolean;
|
|
79325
|
+
typographyPropsKeepAliases: boolean;
|
|
79110
79326
|
fileDownloadScopesByFileId: Record<string, {
|
|
79111
79327
|
styles: boolean;
|
|
79112
79328
|
components: boolean;
|
|
@@ -79265,6 +79481,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<z.objectUtil.ext
|
|
|
79265
79481
|
}[]> | undefined;
|
|
79266
79482
|
sourcesWithMissingAccess?: string[] | undefined;
|
|
79267
79483
|
shadowOpacityOptional?: boolean | undefined;
|
|
79484
|
+
typographyPropsKeepAliases?: boolean | undefined;
|
|
79268
79485
|
}>;
|
|
79269
79486
|
type FigmaImportContextWithDownloadScopes = z.infer<typeof FigmaImportContextWithDownloadScopes>;
|
|
79270
79487
|
|
|
@@ -130864,6 +131081,19 @@ declare const Workspace: z.ZodObject<{
|
|
|
130864
131081
|
errorReason: string;
|
|
130865
131082
|
enabled: boolean;
|
|
130866
131083
|
}>;
|
|
131084
|
+
designSystemRoles: z.ZodObject<{
|
|
131085
|
+
enabled: z.ZodBoolean;
|
|
131086
|
+
errorMessage: z.ZodString;
|
|
131087
|
+
errorReason: z.ZodString;
|
|
131088
|
+
}, "strip", z.ZodTypeAny, {
|
|
131089
|
+
errorMessage: string;
|
|
131090
|
+
errorReason: string;
|
|
131091
|
+
enabled: boolean;
|
|
131092
|
+
}, {
|
|
131093
|
+
errorMessage: string;
|
|
131094
|
+
errorReason: string;
|
|
131095
|
+
enabled: boolean;
|
|
131096
|
+
}>;
|
|
130867
131097
|
}, "strip", z.ZodTypeAny, {
|
|
130868
131098
|
designSystems: {
|
|
130869
131099
|
max: number;
|
|
@@ -130972,6 +131202,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
130972
131202
|
errorReason: string;
|
|
130973
131203
|
enabled: boolean;
|
|
130974
131204
|
};
|
|
131205
|
+
designSystemRoles: {
|
|
131206
|
+
errorMessage: string;
|
|
131207
|
+
errorReason: string;
|
|
131208
|
+
enabled: boolean;
|
|
131209
|
+
};
|
|
130975
131210
|
}, {
|
|
130976
131211
|
designSystems: {
|
|
130977
131212
|
max: number;
|
|
@@ -131080,6 +131315,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
131080
131315
|
errorReason: string;
|
|
131081
131316
|
enabled: boolean;
|
|
131082
131317
|
};
|
|
131318
|
+
designSystemRoles: {
|
|
131319
|
+
errorMessage: string;
|
|
131320
|
+
errorReason: string;
|
|
131321
|
+
enabled: boolean;
|
|
131322
|
+
};
|
|
131083
131323
|
}>>;
|
|
131084
131324
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
131085
131325
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -131255,6 +131495,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
131255
131495
|
errorReason: string;
|
|
131256
131496
|
enabled: boolean;
|
|
131257
131497
|
};
|
|
131498
|
+
designSystemRoles: {
|
|
131499
|
+
errorMessage: string;
|
|
131500
|
+
errorReason: string;
|
|
131501
|
+
enabled: boolean;
|
|
131502
|
+
};
|
|
131258
131503
|
} | undefined;
|
|
131259
131504
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
131260
131505
|
currentPeriodStart?: string | undefined;
|
|
@@ -131397,6 +131642,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
131397
131642
|
errorReason: string;
|
|
131398
131643
|
enabled: boolean;
|
|
131399
131644
|
};
|
|
131645
|
+
designSystemRoles: {
|
|
131646
|
+
errorMessage: string;
|
|
131647
|
+
errorReason: string;
|
|
131648
|
+
enabled: boolean;
|
|
131649
|
+
};
|
|
131400
131650
|
} | undefined;
|
|
131401
131651
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
131402
131652
|
currentPeriodStart?: string | undefined;
|
|
@@ -131715,6 +131965,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
131715
131965
|
errorReason: string;
|
|
131716
131966
|
enabled: boolean;
|
|
131717
131967
|
};
|
|
131968
|
+
designSystemRoles: {
|
|
131969
|
+
errorMessage: string;
|
|
131970
|
+
errorReason: string;
|
|
131971
|
+
enabled: boolean;
|
|
131972
|
+
};
|
|
131718
131973
|
} | undefined;
|
|
131719
131974
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
131720
131975
|
currentPeriodStart?: string | undefined;
|
|
@@ -131922,6 +132177,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
131922
132177
|
errorReason: string;
|
|
131923
132178
|
enabled: boolean;
|
|
131924
132179
|
};
|
|
132180
|
+
designSystemRoles: {
|
|
132181
|
+
errorMessage: string;
|
|
132182
|
+
errorReason: string;
|
|
132183
|
+
enabled: boolean;
|
|
132184
|
+
};
|
|
131925
132185
|
} | undefined;
|
|
131926
132186
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
131927
132187
|
currentPeriodStart?: string | undefined;
|
|
@@ -132373,6 +132633,19 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
132373
132633
|
errorReason: string;
|
|
132374
132634
|
enabled: boolean;
|
|
132375
132635
|
}>;
|
|
132636
|
+
designSystemRoles: z.ZodObject<{
|
|
132637
|
+
enabled: z.ZodBoolean;
|
|
132638
|
+
errorMessage: z.ZodString;
|
|
132639
|
+
errorReason: z.ZodString;
|
|
132640
|
+
}, "strip", z.ZodTypeAny, {
|
|
132641
|
+
errorMessage: string;
|
|
132642
|
+
errorReason: string;
|
|
132643
|
+
enabled: boolean;
|
|
132644
|
+
}, {
|
|
132645
|
+
errorMessage: string;
|
|
132646
|
+
errorReason: string;
|
|
132647
|
+
enabled: boolean;
|
|
132648
|
+
}>;
|
|
132376
132649
|
}, "strip", z.ZodTypeAny, {
|
|
132377
132650
|
designSystems: {
|
|
132378
132651
|
max: number;
|
|
@@ -132481,6 +132754,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
132481
132754
|
errorReason: string;
|
|
132482
132755
|
enabled: boolean;
|
|
132483
132756
|
};
|
|
132757
|
+
designSystemRoles: {
|
|
132758
|
+
errorMessage: string;
|
|
132759
|
+
errorReason: string;
|
|
132760
|
+
enabled: boolean;
|
|
132761
|
+
};
|
|
132484
132762
|
}, {
|
|
132485
132763
|
designSystems: {
|
|
132486
132764
|
max: number;
|
|
@@ -132589,6 +132867,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
132589
132867
|
errorReason: string;
|
|
132590
132868
|
enabled: boolean;
|
|
132591
132869
|
};
|
|
132870
|
+
designSystemRoles: {
|
|
132871
|
+
errorMessage: string;
|
|
132872
|
+
errorReason: string;
|
|
132873
|
+
enabled: boolean;
|
|
132874
|
+
};
|
|
132592
132875
|
}>>;
|
|
132593
132876
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
132594
132877
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -132764,6 +133047,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
132764
133047
|
errorReason: string;
|
|
132765
133048
|
enabled: boolean;
|
|
132766
133049
|
};
|
|
133050
|
+
designSystemRoles: {
|
|
133051
|
+
errorMessage: string;
|
|
133052
|
+
errorReason: string;
|
|
133053
|
+
enabled: boolean;
|
|
133054
|
+
};
|
|
132767
133055
|
} | undefined;
|
|
132768
133056
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
132769
133057
|
currentPeriodStart?: string | undefined;
|
|
@@ -132906,6 +133194,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
132906
133194
|
errorReason: string;
|
|
132907
133195
|
enabled: boolean;
|
|
132908
133196
|
};
|
|
133197
|
+
designSystemRoles: {
|
|
133198
|
+
errorMessage: string;
|
|
133199
|
+
errorReason: string;
|
|
133200
|
+
enabled: boolean;
|
|
133201
|
+
};
|
|
132909
133202
|
} | undefined;
|
|
132910
133203
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
132911
133204
|
currentPeriodStart?: string | undefined;
|
|
@@ -133224,6 +133517,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
133224
133517
|
errorReason: string;
|
|
133225
133518
|
enabled: boolean;
|
|
133226
133519
|
};
|
|
133520
|
+
designSystemRoles: {
|
|
133521
|
+
errorMessage: string;
|
|
133522
|
+
errorReason: string;
|
|
133523
|
+
enabled: boolean;
|
|
133524
|
+
};
|
|
133227
133525
|
} | undefined;
|
|
133228
133526
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
133229
133527
|
currentPeriodStart?: string | undefined;
|
|
@@ -133431,6 +133729,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
133431
133729
|
errorReason: string;
|
|
133432
133730
|
enabled: boolean;
|
|
133433
133731
|
};
|
|
133732
|
+
designSystemRoles: {
|
|
133733
|
+
errorMessage: string;
|
|
133734
|
+
errorReason: string;
|
|
133735
|
+
enabled: boolean;
|
|
133736
|
+
};
|
|
133434
133737
|
} | undefined;
|
|
133435
133738
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
133436
133739
|
currentPeriodStart?: string | undefined;
|
|
@@ -133739,6 +134042,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
133739
134042
|
errorReason: string;
|
|
133740
134043
|
enabled: boolean;
|
|
133741
134044
|
};
|
|
134045
|
+
designSystemRoles: {
|
|
134046
|
+
errorMessage: string;
|
|
134047
|
+
errorReason: string;
|
|
134048
|
+
enabled: boolean;
|
|
134049
|
+
};
|
|
133742
134050
|
} | undefined;
|
|
133743
134051
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
133744
134052
|
currentPeriodStart?: string | undefined;
|
|
@@ -133971,6 +134279,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
133971
134279
|
errorReason: string;
|
|
133972
134280
|
enabled: boolean;
|
|
133973
134281
|
};
|
|
134282
|
+
designSystemRoles: {
|
|
134283
|
+
errorMessage: string;
|
|
134284
|
+
errorReason: string;
|
|
134285
|
+
enabled: boolean;
|
|
134286
|
+
};
|
|
133974
134287
|
} | undefined;
|
|
133975
134288
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
133976
134289
|
currentPeriodStart?: string | undefined;
|
|
@@ -137463,6 +137776,19 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
137463
137776
|
errorReason: string;
|
|
137464
137777
|
enabled: boolean;
|
|
137465
137778
|
}>;
|
|
137779
|
+
designSystemRoles: z.ZodObject<{
|
|
137780
|
+
enabled: z.ZodBoolean;
|
|
137781
|
+
errorMessage: z.ZodString;
|
|
137782
|
+
errorReason: z.ZodString;
|
|
137783
|
+
}, "strip", z.ZodTypeAny, {
|
|
137784
|
+
errorMessage: string;
|
|
137785
|
+
errorReason: string;
|
|
137786
|
+
enabled: boolean;
|
|
137787
|
+
}, {
|
|
137788
|
+
errorMessage: string;
|
|
137789
|
+
errorReason: string;
|
|
137790
|
+
enabled: boolean;
|
|
137791
|
+
}>;
|
|
137466
137792
|
}, "strip", z.ZodTypeAny, {
|
|
137467
137793
|
designSystems: {
|
|
137468
137794
|
max: number;
|
|
@@ -137571,6 +137897,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
137571
137897
|
errorReason: string;
|
|
137572
137898
|
enabled: boolean;
|
|
137573
137899
|
};
|
|
137900
|
+
designSystemRoles: {
|
|
137901
|
+
errorMessage: string;
|
|
137902
|
+
errorReason: string;
|
|
137903
|
+
enabled: boolean;
|
|
137904
|
+
};
|
|
137574
137905
|
}, {
|
|
137575
137906
|
designSystems: {
|
|
137576
137907
|
max: number;
|
|
@@ -137679,6 +138010,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
137679
138010
|
errorReason: string;
|
|
137680
138011
|
enabled: boolean;
|
|
137681
138012
|
};
|
|
138013
|
+
designSystemRoles: {
|
|
138014
|
+
errorMessage: string;
|
|
138015
|
+
errorReason: string;
|
|
138016
|
+
enabled: boolean;
|
|
138017
|
+
};
|
|
137682
138018
|
}>>;
|
|
137683
138019
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
137684
138020
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -137854,6 +138190,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
137854
138190
|
errorReason: string;
|
|
137855
138191
|
enabled: boolean;
|
|
137856
138192
|
};
|
|
138193
|
+
designSystemRoles: {
|
|
138194
|
+
errorMessage: string;
|
|
138195
|
+
errorReason: string;
|
|
138196
|
+
enabled: boolean;
|
|
138197
|
+
};
|
|
137857
138198
|
} | undefined;
|
|
137858
138199
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
137859
138200
|
currentPeriodStart?: string | undefined;
|
|
@@ -137996,6 +138337,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
137996
138337
|
errorReason: string;
|
|
137997
138338
|
enabled: boolean;
|
|
137998
138339
|
};
|
|
138340
|
+
designSystemRoles: {
|
|
138341
|
+
errorMessage: string;
|
|
138342
|
+
errorReason: string;
|
|
138343
|
+
enabled: boolean;
|
|
138344
|
+
};
|
|
137999
138345
|
} | undefined;
|
|
138000
138346
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
138001
138347
|
currentPeriodStart?: string | undefined;
|
|
@@ -138314,6 +138660,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
138314
138660
|
errorReason: string;
|
|
138315
138661
|
enabled: boolean;
|
|
138316
138662
|
};
|
|
138663
|
+
designSystemRoles: {
|
|
138664
|
+
errorMessage: string;
|
|
138665
|
+
errorReason: string;
|
|
138666
|
+
enabled: boolean;
|
|
138667
|
+
};
|
|
138317
138668
|
} | undefined;
|
|
138318
138669
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
138319
138670
|
currentPeriodStart?: string | undefined;
|
|
@@ -138521,6 +138872,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
138521
138872
|
errorReason: string;
|
|
138522
138873
|
enabled: boolean;
|
|
138523
138874
|
};
|
|
138875
|
+
designSystemRoles: {
|
|
138876
|
+
errorMessage: string;
|
|
138877
|
+
errorReason: string;
|
|
138878
|
+
enabled: boolean;
|
|
138879
|
+
};
|
|
138524
138880
|
} | undefined;
|
|
138525
138881
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
138526
138882
|
currentPeriodStart?: string | undefined;
|
|
@@ -139232,6 +139588,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
139232
139588
|
errorReason: string;
|
|
139233
139589
|
enabled: boolean;
|
|
139234
139590
|
};
|
|
139591
|
+
designSystemRoles: {
|
|
139592
|
+
errorMessage: string;
|
|
139593
|
+
errorReason: string;
|
|
139594
|
+
enabled: boolean;
|
|
139595
|
+
};
|
|
139235
139596
|
} | undefined;
|
|
139236
139597
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
139237
139598
|
currentPeriodStart?: string | undefined;
|
|
@@ -139536,6 +139897,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
139536
139897
|
errorReason: string;
|
|
139537
139898
|
enabled: boolean;
|
|
139538
139899
|
};
|
|
139900
|
+
designSystemRoles: {
|
|
139901
|
+
errorMessage: string;
|
|
139902
|
+
errorReason: string;
|
|
139903
|
+
enabled: boolean;
|
|
139904
|
+
};
|
|
139539
139905
|
} | undefined;
|
|
139540
139906
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
139541
139907
|
currentPeriodStart?: string | undefined;
|
|
@@ -140106,6 +140472,19 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
140106
140472
|
errorReason: string;
|
|
140107
140473
|
enabled: boolean;
|
|
140108
140474
|
}>;
|
|
140475
|
+
designSystemRoles: z.ZodObject<{
|
|
140476
|
+
enabled: z.ZodBoolean;
|
|
140477
|
+
errorMessage: z.ZodString;
|
|
140478
|
+
errorReason: z.ZodString;
|
|
140479
|
+
}, "strip", z.ZodTypeAny, {
|
|
140480
|
+
errorMessage: string;
|
|
140481
|
+
errorReason: string;
|
|
140482
|
+
enabled: boolean;
|
|
140483
|
+
}, {
|
|
140484
|
+
errorMessage: string;
|
|
140485
|
+
errorReason: string;
|
|
140486
|
+
enabled: boolean;
|
|
140487
|
+
}>;
|
|
140109
140488
|
}, "strip", z.ZodTypeAny, {
|
|
140110
140489
|
designSystems: {
|
|
140111
140490
|
max: number;
|
|
@@ -140214,6 +140593,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
140214
140593
|
errorReason: string;
|
|
140215
140594
|
enabled: boolean;
|
|
140216
140595
|
};
|
|
140596
|
+
designSystemRoles: {
|
|
140597
|
+
errorMessage: string;
|
|
140598
|
+
errorReason: string;
|
|
140599
|
+
enabled: boolean;
|
|
140600
|
+
};
|
|
140217
140601
|
}, {
|
|
140218
140602
|
designSystems: {
|
|
140219
140603
|
max: number;
|
|
@@ -140322,6 +140706,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
140322
140706
|
errorReason: string;
|
|
140323
140707
|
enabled: boolean;
|
|
140324
140708
|
};
|
|
140709
|
+
designSystemRoles: {
|
|
140710
|
+
errorMessage: string;
|
|
140711
|
+
errorReason: string;
|
|
140712
|
+
enabled: boolean;
|
|
140713
|
+
};
|
|
140325
140714
|
}>>;
|
|
140326
140715
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
140327
140716
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -140497,6 +140886,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
140497
140886
|
errorReason: string;
|
|
140498
140887
|
enabled: boolean;
|
|
140499
140888
|
};
|
|
140889
|
+
designSystemRoles: {
|
|
140890
|
+
errorMessage: string;
|
|
140891
|
+
errorReason: string;
|
|
140892
|
+
enabled: boolean;
|
|
140893
|
+
};
|
|
140500
140894
|
} | undefined;
|
|
140501
140895
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
140502
140896
|
currentPeriodStart?: string | undefined;
|
|
@@ -140639,6 +141033,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
140639
141033
|
errorReason: string;
|
|
140640
141034
|
enabled: boolean;
|
|
140641
141035
|
};
|
|
141036
|
+
designSystemRoles: {
|
|
141037
|
+
errorMessage: string;
|
|
141038
|
+
errorReason: string;
|
|
141039
|
+
enabled: boolean;
|
|
141040
|
+
};
|
|
140642
141041
|
} | undefined;
|
|
140643
141042
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
140644
141043
|
currentPeriodStart?: string | undefined;
|
|
@@ -140957,6 +141356,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
140957
141356
|
errorReason: string;
|
|
140958
141357
|
enabled: boolean;
|
|
140959
141358
|
};
|
|
141359
|
+
designSystemRoles: {
|
|
141360
|
+
errorMessage: string;
|
|
141361
|
+
errorReason: string;
|
|
141362
|
+
enabled: boolean;
|
|
141363
|
+
};
|
|
140960
141364
|
} | undefined;
|
|
140961
141365
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
140962
141366
|
currentPeriodStart?: string | undefined;
|
|
@@ -141164,6 +141568,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
141164
141568
|
errorReason: string;
|
|
141165
141569
|
enabled: boolean;
|
|
141166
141570
|
};
|
|
141571
|
+
designSystemRoles: {
|
|
141572
|
+
errorMessage: string;
|
|
141573
|
+
errorReason: string;
|
|
141574
|
+
enabled: boolean;
|
|
141575
|
+
};
|
|
141167
141576
|
} | undefined;
|
|
141168
141577
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
141169
141578
|
currentPeriodStart?: string | undefined;
|
|
@@ -141799,6 +142208,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
141799
142208
|
errorReason: string;
|
|
141800
142209
|
enabled: boolean;
|
|
141801
142210
|
};
|
|
142211
|
+
designSystemRoles: {
|
|
142212
|
+
errorMessage: string;
|
|
142213
|
+
errorReason: string;
|
|
142214
|
+
enabled: boolean;
|
|
142215
|
+
};
|
|
141802
142216
|
} | undefined;
|
|
141803
142217
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
141804
142218
|
currentPeriodStart?: string | undefined;
|
|
@@ -142080,6 +142494,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
142080
142494
|
errorReason: string;
|
|
142081
142495
|
enabled: boolean;
|
|
142082
142496
|
};
|
|
142497
|
+
designSystemRoles: {
|
|
142498
|
+
errorMessage: string;
|
|
142499
|
+
errorReason: string;
|
|
142500
|
+
enabled: boolean;
|
|
142501
|
+
};
|
|
142083
142502
|
} | undefined;
|
|
142084
142503
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
142085
142504
|
currentPeriodStart?: string | undefined;
|
|
@@ -146075,13 +146494,13 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
|
|
|
146075
146494
|
}>;
|
|
146076
146495
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
146077
146496
|
|
|
146078
|
-
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
146497
|
+
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases"]>;
|
|
146079
146498
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
146080
|
-
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>, z.ZodBoolean>;
|
|
146499
|
+
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases"]>, z.ZodBoolean>;
|
|
146081
146500
|
type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
|
|
146082
146501
|
declare const FeatureFlag: z.ZodObject<{
|
|
146083
146502
|
id: z.ZodString;
|
|
146084
|
-
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
146503
|
+
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder", "TypographyPropsKeepAliases"]>;
|
|
146085
146504
|
createdAt: z.ZodDate;
|
|
146086
146505
|
enabled: z.ZodBoolean;
|
|
146087
146506
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
@@ -146089,13 +146508,13 @@ declare const FeatureFlag: z.ZodObject<{
|
|
|
146089
146508
|
id: string;
|
|
146090
146509
|
createdAt: Date;
|
|
146091
146510
|
enabled: boolean;
|
|
146092
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
146511
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases";
|
|
146093
146512
|
designSystemId?: string | undefined;
|
|
146094
146513
|
}, {
|
|
146095
146514
|
id: string;
|
|
146096
146515
|
createdAt: Date;
|
|
146097
146516
|
enabled: boolean;
|
|
146098
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
146517
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder" | "TypographyPropsKeepAliases";
|
|
146099
146518
|
designSystemId?: string | undefined;
|
|
146100
146519
|
}>;
|
|
146101
146520
|
type FeatureFlag = z.infer<typeof FeatureFlag>;
|
|
@@ -147167,6 +147586,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
147167
147586
|
showComponentName?: boolean | null | undefined;
|
|
147168
147587
|
showComponentDescription?: boolean | null | undefined;
|
|
147169
147588
|
showPropertyList?: boolean | null | undefined;
|
|
147589
|
+
previewOrderIds?: string[] | null | undefined;
|
|
147170
147590
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
147171
147591
|
} | null | undefined;
|
|
147172
147592
|
selectedFigmaComponent?: {
|
|
@@ -147411,6 +147831,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
147411
147831
|
showComponentName?: boolean | null | undefined;
|
|
147412
147832
|
showComponentDescription?: boolean | null | undefined;
|
|
147413
147833
|
showPropertyList?: boolean | null | undefined;
|
|
147834
|
+
previewOrderIds?: string[] | null | undefined;
|
|
147414
147835
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
147415
147836
|
} | null | undefined;
|
|
147416
147837
|
selectedFigmaComponent?: {
|
|
@@ -147723,6 +148144,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
147723
148144
|
showComponentName?: boolean | null | undefined;
|
|
147724
148145
|
showComponentDescription?: boolean | null | undefined;
|
|
147725
148146
|
showPropertyList?: boolean | null | undefined;
|
|
148147
|
+
previewOrderIds?: string[] | null | undefined;
|
|
147726
148148
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
147727
148149
|
} | null | undefined;
|
|
147728
148150
|
selectedFigmaComponent?: {
|
|
@@ -147967,6 +148389,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
147967
148389
|
showComponentName?: boolean | null | undefined;
|
|
147968
148390
|
showComponentDescription?: boolean | null | undefined;
|
|
147969
148391
|
showPropertyList?: boolean | null | undefined;
|
|
148392
|
+
previewOrderIds?: string[] | null | undefined;
|
|
147970
148393
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
147971
148394
|
} | null | undefined;
|
|
147972
148395
|
selectedFigmaComponent?: {
|
|
@@ -148302,6 +148725,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148302
148725
|
showComponentName?: boolean | null | undefined;
|
|
148303
148726
|
showComponentDescription?: boolean | null | undefined;
|
|
148304
148727
|
showPropertyList?: boolean | null | undefined;
|
|
148728
|
+
previewOrderIds?: string[] | null | undefined;
|
|
148305
148729
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
148306
148730
|
} | null | undefined;
|
|
148307
148731
|
selectedFigmaComponent?: {
|
|
@@ -148546,6 +148970,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
148546
148970
|
showComponentName?: boolean | null | undefined;
|
|
148547
148971
|
showComponentDescription?: boolean | null | undefined;
|
|
148548
148972
|
showPropertyList?: boolean | null | undefined;
|
|
148973
|
+
previewOrderIds?: string[] | null | undefined;
|
|
148549
148974
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
148550
148975
|
} | null | undefined;
|
|
148551
148976
|
selectedFigmaComponent?: {
|
|
@@ -149292,6 +149717,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149292
149717
|
showComponentName?: boolean | null | undefined;
|
|
149293
149718
|
showComponentDescription?: boolean | null | undefined;
|
|
149294
149719
|
showPropertyList?: boolean | null | undefined;
|
|
149720
|
+
previewOrderIds?: string[] | null | undefined;
|
|
149295
149721
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
149296
149722
|
} | null | undefined;
|
|
149297
149723
|
selectedFigmaComponent?: {
|
|
@@ -149536,6 +149962,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149536
149962
|
showComponentName?: boolean | null | undefined;
|
|
149537
149963
|
showComponentDescription?: boolean | null | undefined;
|
|
149538
149964
|
showPropertyList?: boolean | null | undefined;
|
|
149965
|
+
previewOrderIds?: string[] | null | undefined;
|
|
149539
149966
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
149540
149967
|
} | null | undefined;
|
|
149541
149968
|
selectedFigmaComponent?: {
|
|
@@ -149848,6 +150275,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
149848
150275
|
showComponentName?: boolean | null | undefined;
|
|
149849
150276
|
showComponentDescription?: boolean | null | undefined;
|
|
149850
150277
|
showPropertyList?: boolean | null | undefined;
|
|
150278
|
+
previewOrderIds?: string[] | null | undefined;
|
|
149851
150279
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
149852
150280
|
} | null | undefined;
|
|
149853
150281
|
selectedFigmaComponent?: {
|
|
@@ -150092,6 +150520,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150092
150520
|
showComponentName?: boolean | null | undefined;
|
|
150093
150521
|
showComponentDescription?: boolean | null | undefined;
|
|
150094
150522
|
showPropertyList?: boolean | null | undefined;
|
|
150523
|
+
previewOrderIds?: string[] | null | undefined;
|
|
150095
150524
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
150096
150525
|
} | null | undefined;
|
|
150097
150526
|
selectedFigmaComponent?: {
|
|
@@ -150427,6 +150856,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150427
150856
|
showComponentName?: boolean | null | undefined;
|
|
150428
150857
|
showComponentDescription?: boolean | null | undefined;
|
|
150429
150858
|
showPropertyList?: boolean | null | undefined;
|
|
150859
|
+
previewOrderIds?: string[] | null | undefined;
|
|
150430
150860
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
150431
150861
|
} | null | undefined;
|
|
150432
150862
|
selectedFigmaComponent?: {
|
|
@@ -150671,6 +151101,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
150671
151101
|
showComponentName?: boolean | null | undefined;
|
|
150672
151102
|
showComponentDescription?: boolean | null | undefined;
|
|
150673
151103
|
showPropertyList?: boolean | null | undefined;
|
|
151104
|
+
previewOrderIds?: string[] | null | undefined;
|
|
150674
151105
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
150675
151106
|
} | null | undefined;
|
|
150676
151107
|
selectedFigmaComponent?: {
|
|
@@ -151035,6 +151466,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151035
151466
|
showComponentName?: boolean | null | undefined;
|
|
151036
151467
|
showComponentDescription?: boolean | null | undefined;
|
|
151037
151468
|
showPropertyList?: boolean | null | undefined;
|
|
151469
|
+
previewOrderIds?: string[] | null | undefined;
|
|
151038
151470
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
151039
151471
|
} | null | undefined;
|
|
151040
151472
|
selectedFigmaComponent?: {
|
|
@@ -151279,6 +151711,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
151279
151711
|
showComponentName?: boolean | null | undefined;
|
|
151280
151712
|
showComponentDescription?: boolean | null | undefined;
|
|
151281
151713
|
showPropertyList?: boolean | null | undefined;
|
|
151714
|
+
previewOrderIds?: string[] | null | undefined;
|
|
151282
151715
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
151283
151716
|
} | null | undefined;
|
|
151284
151717
|
selectedFigmaComponent?: {
|
|
@@ -152386,6 +152819,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152386
152819
|
showComponentName?: boolean | null | undefined;
|
|
152387
152820
|
showComponentDescription?: boolean | null | undefined;
|
|
152388
152821
|
showPropertyList?: boolean | null | undefined;
|
|
152822
|
+
previewOrderIds?: string[] | null | undefined;
|
|
152389
152823
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
152390
152824
|
} | null | undefined;
|
|
152391
152825
|
selectedFigmaComponent?: {
|
|
@@ -152630,6 +153064,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152630
153064
|
showComponentName?: boolean | null | undefined;
|
|
152631
153065
|
showComponentDescription?: boolean | null | undefined;
|
|
152632
153066
|
showPropertyList?: boolean | null | undefined;
|
|
153067
|
+
previewOrderIds?: string[] | null | undefined;
|
|
152633
153068
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
152634
153069
|
} | null | undefined;
|
|
152635
153070
|
selectedFigmaComponent?: {
|
|
@@ -152931,6 +153366,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
152931
153366
|
showComponentName?: boolean | null | undefined;
|
|
152932
153367
|
showComponentDescription?: boolean | null | undefined;
|
|
152933
153368
|
showPropertyList?: boolean | null | undefined;
|
|
153369
|
+
previewOrderIds?: string[] | null | undefined;
|
|
152934
153370
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
152935
153371
|
} | null | undefined;
|
|
152936
153372
|
selectedFigmaComponent?: {
|
|
@@ -153175,6 +153611,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
153175
153611
|
showComponentName?: boolean | null | undefined;
|
|
153176
153612
|
showComponentDescription?: boolean | null | undefined;
|
|
153177
153613
|
showPropertyList?: boolean | null | undefined;
|
|
153614
|
+
previewOrderIds?: string[] | null | undefined;
|
|
153178
153615
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
153179
153616
|
} | null | undefined;
|
|
153180
153617
|
selectedFigmaComponent?: {
|
|
@@ -153671,6 +154108,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
153671
154108
|
showComponentName?: boolean | null | undefined;
|
|
153672
154109
|
showComponentDescription?: boolean | null | undefined;
|
|
153673
154110
|
showPropertyList?: boolean | null | undefined;
|
|
154111
|
+
previewOrderIds?: string[] | null | undefined;
|
|
153674
154112
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
153675
154113
|
} | null | undefined;
|
|
153676
154114
|
selectedFigmaComponent?: {
|
|
@@ -153915,6 +154353,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
153915
154353
|
showComponentName?: boolean | null | undefined;
|
|
153916
154354
|
showComponentDescription?: boolean | null | undefined;
|
|
153917
154355
|
showPropertyList?: boolean | null | undefined;
|
|
154356
|
+
previewOrderIds?: string[] | null | undefined;
|
|
153918
154357
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
153919
154358
|
} | null | undefined;
|
|
153920
154359
|
selectedFigmaComponent?: {
|
|
@@ -154227,6 +154666,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
154227
154666
|
showComponentName?: boolean | null | undefined;
|
|
154228
154667
|
showComponentDescription?: boolean | null | undefined;
|
|
154229
154668
|
showPropertyList?: boolean | null | undefined;
|
|
154669
|
+
previewOrderIds?: string[] | null | undefined;
|
|
154230
154670
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
154231
154671
|
} | null | undefined;
|
|
154232
154672
|
selectedFigmaComponent?: {
|
|
@@ -154471,6 +154911,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
154471
154911
|
showComponentName?: boolean | null | undefined;
|
|
154472
154912
|
showComponentDescription?: boolean | null | undefined;
|
|
154473
154913
|
showPropertyList?: boolean | null | undefined;
|
|
154914
|
+
previewOrderIds?: string[] | null | undefined;
|
|
154474
154915
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
154475
154916
|
} | null | undefined;
|
|
154476
154917
|
selectedFigmaComponent?: {
|
|
@@ -154806,6 +155247,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
154806
155247
|
showComponentName?: boolean | null | undefined;
|
|
154807
155248
|
showComponentDescription?: boolean | null | undefined;
|
|
154808
155249
|
showPropertyList?: boolean | null | undefined;
|
|
155250
|
+
previewOrderIds?: string[] | null | undefined;
|
|
154809
155251
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
154810
155252
|
} | null | undefined;
|
|
154811
155253
|
selectedFigmaComponent?: {
|
|
@@ -155050,6 +155492,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155050
155492
|
showComponentName?: boolean | null | undefined;
|
|
155051
155493
|
showComponentDescription?: boolean | null | undefined;
|
|
155052
155494
|
showPropertyList?: boolean | null | undefined;
|
|
155495
|
+
previewOrderIds?: string[] | null | undefined;
|
|
155053
155496
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
155054
155497
|
} | null | undefined;
|
|
155055
155498
|
selectedFigmaComponent?: {
|
|
@@ -155798,6 +156241,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
155798
156241
|
showComponentName?: boolean | null | undefined;
|
|
155799
156242
|
showComponentDescription?: boolean | null | undefined;
|
|
155800
156243
|
showPropertyList?: boolean | null | undefined;
|
|
156244
|
+
previewOrderIds?: string[] | null | undefined;
|
|
155801
156245
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
155802
156246
|
} | null | undefined;
|
|
155803
156247
|
selectedFigmaComponent?: {
|
|
@@ -156042,6 +156486,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156042
156486
|
showComponentName?: boolean | null | undefined;
|
|
156043
156487
|
showComponentDescription?: boolean | null | undefined;
|
|
156044
156488
|
showPropertyList?: boolean | null | undefined;
|
|
156489
|
+
previewOrderIds?: string[] | null | undefined;
|
|
156045
156490
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
156046
156491
|
} | null | undefined;
|
|
156047
156492
|
selectedFigmaComponent?: {
|
|
@@ -156354,6 +156799,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156354
156799
|
showComponentName?: boolean | null | undefined;
|
|
156355
156800
|
showComponentDescription?: boolean | null | undefined;
|
|
156356
156801
|
showPropertyList?: boolean | null | undefined;
|
|
156802
|
+
previewOrderIds?: string[] | null | undefined;
|
|
156357
156803
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
156358
156804
|
} | null | undefined;
|
|
156359
156805
|
selectedFigmaComponent?: {
|
|
@@ -156598,6 +157044,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156598
157044
|
showComponentName?: boolean | null | undefined;
|
|
156599
157045
|
showComponentDescription?: boolean | null | undefined;
|
|
156600
157046
|
showPropertyList?: boolean | null | undefined;
|
|
157047
|
+
previewOrderIds?: string[] | null | undefined;
|
|
156601
157048
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
156602
157049
|
} | null | undefined;
|
|
156603
157050
|
selectedFigmaComponent?: {
|
|
@@ -156933,6 +157380,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
156933
157380
|
showComponentName?: boolean | null | undefined;
|
|
156934
157381
|
showComponentDescription?: boolean | null | undefined;
|
|
156935
157382
|
showPropertyList?: boolean | null | undefined;
|
|
157383
|
+
previewOrderIds?: string[] | null | undefined;
|
|
156936
157384
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
156937
157385
|
} | null | undefined;
|
|
156938
157386
|
selectedFigmaComponent?: {
|
|
@@ -157177,6 +157625,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157177
157625
|
showComponentName?: boolean | null | undefined;
|
|
157178
157626
|
showComponentDescription?: boolean | null | undefined;
|
|
157179
157627
|
showPropertyList?: boolean | null | undefined;
|
|
157628
|
+
previewOrderIds?: string[] | null | undefined;
|
|
157180
157629
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
157181
157630
|
} | null | undefined;
|
|
157182
157631
|
selectedFigmaComponent?: {
|
|
@@ -157541,6 +157990,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157541
157990
|
showComponentName?: boolean | null | undefined;
|
|
157542
157991
|
showComponentDescription?: boolean | null | undefined;
|
|
157543
157992
|
showPropertyList?: boolean | null | undefined;
|
|
157993
|
+
previewOrderIds?: string[] | null | undefined;
|
|
157544
157994
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
157545
157995
|
} | null | undefined;
|
|
157546
157996
|
selectedFigmaComponent?: {
|
|
@@ -157785,6 +158235,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
157785
158235
|
showComponentName?: boolean | null | undefined;
|
|
157786
158236
|
showComponentDescription?: boolean | null | undefined;
|
|
157787
158237
|
showPropertyList?: boolean | null | undefined;
|
|
158238
|
+
previewOrderIds?: string[] | null | undefined;
|
|
157788
158239
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
157789
158240
|
} | null | undefined;
|
|
157790
158241
|
selectedFigmaComponent?: {
|
|
@@ -158880,6 +159331,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
158880
159331
|
showComponentName?: boolean | null | undefined;
|
|
158881
159332
|
showComponentDescription?: boolean | null | undefined;
|
|
158882
159333
|
showPropertyList?: boolean | null | undefined;
|
|
159334
|
+
previewOrderIds?: string[] | null | undefined;
|
|
158883
159335
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
158884
159336
|
} | null | undefined;
|
|
158885
159337
|
selectedFigmaComponent?: {
|
|
@@ -159124,6 +159576,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
159124
159576
|
showComponentName?: boolean | null | undefined;
|
|
159125
159577
|
showComponentDescription?: boolean | null | undefined;
|
|
159126
159578
|
showPropertyList?: boolean | null | undefined;
|
|
159579
|
+
previewOrderIds?: string[] | null | undefined;
|
|
159127
159580
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
159128
159581
|
} | null | undefined;
|
|
159129
159582
|
selectedFigmaComponent?: {
|
|
@@ -159425,6 +159878,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
159425
159878
|
showComponentName?: boolean | null | undefined;
|
|
159426
159879
|
showComponentDescription?: boolean | null | undefined;
|
|
159427
159880
|
showPropertyList?: boolean | null | undefined;
|
|
159881
|
+
previewOrderIds?: string[] | null | undefined;
|
|
159428
159882
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
159429
159883
|
} | null | undefined;
|
|
159430
159884
|
selectedFigmaComponent?: {
|
|
@@ -159669,6 +160123,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
159669
160123
|
showComponentName?: boolean | null | undefined;
|
|
159670
160124
|
showComponentDescription?: boolean | null | undefined;
|
|
159671
160125
|
showPropertyList?: boolean | null | undefined;
|
|
160126
|
+
previewOrderIds?: string[] | null | undefined;
|
|
159672
160127
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
159673
160128
|
} | null | undefined;
|
|
159674
160129
|
selectedFigmaComponent?: {
|
|
@@ -161348,6 +161803,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
161348
161803
|
showComponentName?: boolean | null | undefined;
|
|
161349
161804
|
showComponentDescription?: boolean | null | undefined;
|
|
161350
161805
|
showPropertyList?: boolean | null | undefined;
|
|
161806
|
+
previewOrderIds?: string[] | null | undefined;
|
|
161351
161807
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
161352
161808
|
} | null | undefined;
|
|
161353
161809
|
selectedFigmaComponent?: {
|
|
@@ -161592,6 +162048,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
161592
162048
|
showComponentName?: boolean | null | undefined;
|
|
161593
162049
|
showComponentDescription?: boolean | null | undefined;
|
|
161594
162050
|
showPropertyList?: boolean | null | undefined;
|
|
162051
|
+
previewOrderIds?: string[] | null | undefined;
|
|
161595
162052
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
161596
162053
|
} | null | undefined;
|
|
161597
162054
|
selectedFigmaComponent?: {
|
|
@@ -161904,6 +162361,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
161904
162361
|
showComponentName?: boolean | null | undefined;
|
|
161905
162362
|
showComponentDescription?: boolean | null | undefined;
|
|
161906
162363
|
showPropertyList?: boolean | null | undefined;
|
|
162364
|
+
previewOrderIds?: string[] | null | undefined;
|
|
161907
162365
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
161908
162366
|
} | null | undefined;
|
|
161909
162367
|
selectedFigmaComponent?: {
|
|
@@ -162148,6 +162606,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
162148
162606
|
showComponentName?: boolean | null | undefined;
|
|
162149
162607
|
showComponentDescription?: boolean | null | undefined;
|
|
162150
162608
|
showPropertyList?: boolean | null | undefined;
|
|
162609
|
+
previewOrderIds?: string[] | null | undefined;
|
|
162151
162610
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
162152
162611
|
} | null | undefined;
|
|
162153
162612
|
selectedFigmaComponent?: {
|
|
@@ -162483,6 +162942,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
162483
162942
|
showComponentName?: boolean | null | undefined;
|
|
162484
162943
|
showComponentDescription?: boolean | null | undefined;
|
|
162485
162944
|
showPropertyList?: boolean | null | undefined;
|
|
162945
|
+
previewOrderIds?: string[] | null | undefined;
|
|
162486
162946
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
162487
162947
|
} | null | undefined;
|
|
162488
162948
|
selectedFigmaComponent?: {
|
|
@@ -162727,6 +163187,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
162727
163187
|
showComponentName?: boolean | null | undefined;
|
|
162728
163188
|
showComponentDescription?: boolean | null | undefined;
|
|
162729
163189
|
showPropertyList?: boolean | null | undefined;
|
|
163190
|
+
previewOrderIds?: string[] | null | undefined;
|
|
162730
163191
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
162731
163192
|
} | null | undefined;
|
|
162732
163193
|
selectedFigmaComponent?: {
|
|
@@ -163456,6 +163917,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163456
163917
|
showComponentName?: boolean | null | undefined;
|
|
163457
163918
|
showComponentDescription?: boolean | null | undefined;
|
|
163458
163919
|
showPropertyList?: boolean | null | undefined;
|
|
163920
|
+
previewOrderIds?: string[] | null | undefined;
|
|
163459
163921
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
163460
163922
|
} | null | undefined;
|
|
163461
163923
|
selectedFigmaComponent?: {
|
|
@@ -163700,6 +164162,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
163700
164162
|
showComponentName?: boolean | null | undefined;
|
|
163701
164163
|
showComponentDescription?: boolean | null | undefined;
|
|
163702
164164
|
showPropertyList?: boolean | null | undefined;
|
|
164165
|
+
previewOrderIds?: string[] | null | undefined;
|
|
163703
164166
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
163704
164167
|
} | null | undefined;
|
|
163705
164168
|
selectedFigmaComponent?: {
|
|
@@ -164165,6 +164628,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
164165
164628
|
showComponentName?: boolean | null | undefined;
|
|
164166
164629
|
showComponentDescription?: boolean | null | undefined;
|
|
164167
164630
|
showPropertyList?: boolean | null | undefined;
|
|
164631
|
+
previewOrderIds?: string[] | null | undefined;
|
|
164168
164632
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
164169
164633
|
} | null | undefined;
|
|
164170
164634
|
selectedFigmaComponent?: {
|
|
@@ -164409,6 +164873,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
164409
164873
|
showComponentName?: boolean | null | undefined;
|
|
164410
164874
|
showComponentDescription?: boolean | null | undefined;
|
|
164411
164875
|
showPropertyList?: boolean | null | undefined;
|
|
164876
|
+
previewOrderIds?: string[] | null | undefined;
|
|
164412
164877
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
164413
164878
|
} | null | undefined;
|
|
164414
164879
|
selectedFigmaComponent?: {
|
|
@@ -164721,6 +165186,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
164721
165186
|
showComponentName?: boolean | null | undefined;
|
|
164722
165187
|
showComponentDescription?: boolean | null | undefined;
|
|
164723
165188
|
showPropertyList?: boolean | null | undefined;
|
|
165189
|
+
previewOrderIds?: string[] | null | undefined;
|
|
164724
165190
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
164725
165191
|
} | null | undefined;
|
|
164726
165192
|
selectedFigmaComponent?: {
|
|
@@ -164965,6 +165431,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
164965
165431
|
showComponentName?: boolean | null | undefined;
|
|
164966
165432
|
showComponentDescription?: boolean | null | undefined;
|
|
164967
165433
|
showPropertyList?: boolean | null | undefined;
|
|
165434
|
+
previewOrderIds?: string[] | null | undefined;
|
|
164968
165435
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
164969
165436
|
} | null | undefined;
|
|
164970
165437
|
selectedFigmaComponent?: {
|
|
@@ -165300,6 +165767,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165300
165767
|
showComponentName?: boolean | null | undefined;
|
|
165301
165768
|
showComponentDescription?: boolean | null | undefined;
|
|
165302
165769
|
showPropertyList?: boolean | null | undefined;
|
|
165770
|
+
previewOrderIds?: string[] | null | undefined;
|
|
165303
165771
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
165304
165772
|
} | null | undefined;
|
|
165305
165773
|
selectedFigmaComponent?: {
|
|
@@ -165544,6 +166012,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
165544
166012
|
showComponentName?: boolean | null | undefined;
|
|
165545
166013
|
showComponentDescription?: boolean | null | undefined;
|
|
165546
166014
|
showPropertyList?: boolean | null | undefined;
|
|
166015
|
+
previewOrderIds?: string[] | null | undefined;
|
|
165547
166016
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
165548
166017
|
} | null | undefined;
|
|
165549
166018
|
selectedFigmaComponent?: {
|
|
@@ -167587,6 +168056,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
167587
168056
|
showComponentName?: boolean | null | undefined;
|
|
167588
168057
|
showComponentDescription?: boolean | null | undefined;
|
|
167589
168058
|
showPropertyList?: boolean | null | undefined;
|
|
168059
|
+
previewOrderIds?: string[] | null | undefined;
|
|
167590
168060
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
167591
168061
|
} | null | undefined;
|
|
167592
168062
|
selectedFigmaComponent?: {
|
|
@@ -167831,6 +168301,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
|
|
|
167831
168301
|
showComponentName?: boolean | null | undefined;
|
|
167832
168302
|
showComponentDescription?: boolean | null | undefined;
|
|
167833
168303
|
showPropertyList?: boolean | null | undefined;
|
|
168304
|
+
previewOrderIds?: string[] | null | undefined;
|
|
167834
168305
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
167835
168306
|
} | null | undefined;
|
|
167836
168307
|
selectedFigmaComponent?: {
|
|
@@ -168458,6 +168929,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
168458
168929
|
showComponentName?: boolean | null | undefined;
|
|
168459
168930
|
showComponentDescription?: boolean | null | undefined;
|
|
168460
168931
|
showPropertyList?: boolean | null | undefined;
|
|
168932
|
+
previewOrderIds?: string[] | null | undefined;
|
|
168461
168933
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
168462
168934
|
} | null | undefined;
|
|
168463
168935
|
selectedFigmaComponent?: {
|
|
@@ -168702,6 +169174,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
168702
169174
|
showComponentName?: boolean | null | undefined;
|
|
168703
169175
|
showComponentDescription?: boolean | null | undefined;
|
|
168704
169176
|
showPropertyList?: boolean | null | undefined;
|
|
169177
|
+
previewOrderIds?: string[] | null | undefined;
|
|
168705
169178
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
168706
169179
|
} | null | undefined;
|
|
168707
169180
|
selectedFigmaComponent?: {
|
|
@@ -169014,6 +169487,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
169014
169487
|
showComponentName?: boolean | null | undefined;
|
|
169015
169488
|
showComponentDescription?: boolean | null | undefined;
|
|
169016
169489
|
showPropertyList?: boolean | null | undefined;
|
|
169490
|
+
previewOrderIds?: string[] | null | undefined;
|
|
169017
169491
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
169018
169492
|
} | null | undefined;
|
|
169019
169493
|
selectedFigmaComponent?: {
|
|
@@ -169258,6 +169732,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
169258
169732
|
showComponentName?: boolean | null | undefined;
|
|
169259
169733
|
showComponentDescription?: boolean | null | undefined;
|
|
169260
169734
|
showPropertyList?: boolean | null | undefined;
|
|
169735
|
+
previewOrderIds?: string[] | null | undefined;
|
|
169261
169736
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
169262
169737
|
} | null | undefined;
|
|
169263
169738
|
selectedFigmaComponent?: {
|
|
@@ -169593,6 +170068,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
169593
170068
|
showComponentName?: boolean | null | undefined;
|
|
169594
170069
|
showComponentDescription?: boolean | null | undefined;
|
|
169595
170070
|
showPropertyList?: boolean | null | undefined;
|
|
170071
|
+
previewOrderIds?: string[] | null | undefined;
|
|
169596
170072
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
169597
170073
|
} | null | undefined;
|
|
169598
170074
|
selectedFigmaComponent?: {
|
|
@@ -169837,6 +170313,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
169837
170313
|
showComponentName?: boolean | null | undefined;
|
|
169838
170314
|
showComponentDescription?: boolean | null | undefined;
|
|
169839
170315
|
showPropertyList?: boolean | null | undefined;
|
|
170316
|
+
previewOrderIds?: string[] | null | undefined;
|
|
169840
170317
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
169841
170318
|
} | null | undefined;
|
|
169842
170319
|
selectedFigmaComponent?: {
|
|
@@ -171560,6 +172037,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
171560
172037
|
showComponentName?: boolean | null | undefined;
|
|
171561
172038
|
showComponentDescription?: boolean | null | undefined;
|
|
171562
172039
|
showPropertyList?: boolean | null | undefined;
|
|
172040
|
+
previewOrderIds?: string[] | null | undefined;
|
|
171563
172041
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
171564
172042
|
} | null | undefined;
|
|
171565
172043
|
selectedFigmaComponent?: {
|
|
@@ -171804,6 +172282,7 @@ declare const RestoredDocumentationPage: z.ZodObject<{
|
|
|
171804
172282
|
showComponentName?: boolean | null | undefined;
|
|
171805
172283
|
showComponentDescription?: boolean | null | undefined;
|
|
171806
172284
|
showPropertyList?: boolean | null | undefined;
|
|
172285
|
+
previewOrderIds?: string[] | null | undefined;
|
|
171807
172286
|
previewContainerSize?: "Centered" | "NaturalHeight" | null | undefined;
|
|
171808
172287
|
} | null | undefined;
|
|
171809
172288
|
selectedFigmaComponent?: {
|