@supernova-studio/model 1.37.5 → 1.37.6
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 +59 -20
- package/dist/index.d.ts +59 -20
- package/dist/index.js +11 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1574,6 +1574,22 @@ declare const ForgeChatMessageSender: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
1574
1574
|
type: "FunctionCallOutput";
|
|
1575
1575
|
}>]>;
|
|
1576
1576
|
type ForgeChatMessageSender = z.infer<typeof ForgeChatMessageSender>;
|
|
1577
|
+
declare const ForgeChatMessageUserScoreType: z.ZodEnum<["Positive", "Negative"]>;
|
|
1578
|
+
type ForgeChatMessageUserScoreType = z.infer<typeof ForgeChatMessageUserScoreType>;
|
|
1579
|
+
declare const ForgeChatMessageUserScore: z.ZodObject<{
|
|
1580
|
+
type: z.ZodEnum<["Positive", "Negative"]>;
|
|
1581
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
1582
|
+
comment: z.ZodOptional<z.ZodString>;
|
|
1583
|
+
}, "strip", z.ZodTypeAny, {
|
|
1584
|
+
type: "Positive" | "Negative";
|
|
1585
|
+
tags: string[];
|
|
1586
|
+
comment?: string | undefined;
|
|
1587
|
+
}, {
|
|
1588
|
+
type: "Positive" | "Negative";
|
|
1589
|
+
tags: string[];
|
|
1590
|
+
comment?: string | undefined;
|
|
1591
|
+
}>;
|
|
1592
|
+
type ForgeChatMessageUserScore = z.infer<typeof ForgeChatMessageUserScore>;
|
|
1577
1593
|
declare const ForgeChatMessage: z.ZodObject<{
|
|
1578
1594
|
id: z.ZodString;
|
|
1579
1595
|
threadId: z.ZodString;
|
|
@@ -1618,6 +1634,19 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1618
1634
|
}, {
|
|
1619
1635
|
type: "FunctionCallOutput";
|
|
1620
1636
|
}>]>;
|
|
1637
|
+
userScore: z.ZodOptional<z.ZodObject<{
|
|
1638
|
+
type: z.ZodEnum<["Positive", "Negative"]>;
|
|
1639
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
1640
|
+
comment: z.ZodOptional<z.ZodString>;
|
|
1641
|
+
}, "strip", z.ZodTypeAny, {
|
|
1642
|
+
type: "Positive" | "Negative";
|
|
1643
|
+
tags: string[];
|
|
1644
|
+
comment?: string | undefined;
|
|
1645
|
+
}, {
|
|
1646
|
+
type: "Positive" | "Negative";
|
|
1647
|
+
tags: string[];
|
|
1648
|
+
comment?: string | undefined;
|
|
1649
|
+
}>>;
|
|
1621
1650
|
}, "strip", z.ZodTypeAny, {
|
|
1622
1651
|
id: string;
|
|
1623
1652
|
createdAt: Date;
|
|
@@ -1638,6 +1667,11 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1638
1667
|
type: "FunctionCallOutput";
|
|
1639
1668
|
};
|
|
1640
1669
|
opikTraceId?: string | undefined;
|
|
1670
|
+
userScore?: {
|
|
1671
|
+
type: "Positive" | "Negative";
|
|
1672
|
+
tags: string[];
|
|
1673
|
+
comment?: string | undefined;
|
|
1674
|
+
} | undefined;
|
|
1641
1675
|
}, {
|
|
1642
1676
|
id: string;
|
|
1643
1677
|
createdAt: Date;
|
|
@@ -1658,6 +1692,11 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1658
1692
|
type: "FunctionCallOutput";
|
|
1659
1693
|
};
|
|
1660
1694
|
opikTraceId?: string | undefined;
|
|
1695
|
+
userScore?: {
|
|
1696
|
+
type: "Positive" | "Negative";
|
|
1697
|
+
tags: string[];
|
|
1698
|
+
comment?: string | undefined;
|
|
1699
|
+
} | undefined;
|
|
1661
1700
|
}>;
|
|
1662
1701
|
type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
|
|
1663
1702
|
|
|
@@ -2332,6 +2371,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2332
2371
|
homepage?: string | null | undefined;
|
|
2333
2372
|
organization?: string | null | undefined;
|
|
2334
2373
|
readme?: string | null | undefined;
|
|
2374
|
+
tags?: string[] | null | undefined;
|
|
2335
2375
|
iconURL?: string | null | undefined;
|
|
2336
2376
|
properties?: ({
|
|
2337
2377
|
key: string;
|
|
@@ -2405,7 +2445,6 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2405
2445
|
})[] | null | undefined;
|
|
2406
2446
|
routingVersion?: string | null | undefined;
|
|
2407
2447
|
author?: string | null | undefined;
|
|
2408
|
-
tags?: string[] | null | undefined;
|
|
2409
2448
|
packageId?: string | null | undefined;
|
|
2410
2449
|
configurationProperties?: {
|
|
2411
2450
|
key: string;
|
|
@@ -2951,6 +2990,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2951
2990
|
homepage?: string | null | undefined;
|
|
2952
2991
|
organization?: string | null | undefined;
|
|
2953
2992
|
readme?: string | null | undefined;
|
|
2993
|
+
tags?: string[] | null | undefined;
|
|
2954
2994
|
iconURL?: string | null | undefined;
|
|
2955
2995
|
properties?: ({
|
|
2956
2996
|
key: string;
|
|
@@ -3024,7 +3064,6 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3024
3064
|
})[] | null | undefined;
|
|
3025
3065
|
routingVersion?: string | null | undefined;
|
|
3026
3066
|
author?: string | null | undefined;
|
|
3027
|
-
tags?: string[] | null | undefined;
|
|
3028
3067
|
packageId?: string | null | undefined;
|
|
3029
3068
|
configurationProperties?: {
|
|
3030
3069
|
key: string;
|
|
@@ -3955,6 +3994,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3955
3994
|
homepage?: string | null | undefined;
|
|
3956
3995
|
organization?: string | null | undefined;
|
|
3957
3996
|
readme?: string | null | undefined;
|
|
3997
|
+
tags?: string[] | null | undefined;
|
|
3958
3998
|
iconURL?: string | null | undefined;
|
|
3959
3999
|
properties?: ({
|
|
3960
4000
|
key: string;
|
|
@@ -4028,7 +4068,6 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4028
4068
|
})[] | null | undefined;
|
|
4029
4069
|
routingVersion?: string | null | undefined;
|
|
4030
4070
|
author?: string | null | undefined;
|
|
4031
|
-
tags?: string[] | null | undefined;
|
|
4032
4071
|
packageId?: string | null | undefined;
|
|
4033
4072
|
configurationProperties?: {
|
|
4034
4073
|
key: string;
|
|
@@ -17086,6 +17125,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
17086
17125
|
homepage?: string | null | undefined;
|
|
17087
17126
|
organization?: string | null | undefined;
|
|
17088
17127
|
readme?: string | null | undefined;
|
|
17128
|
+
tags?: string[] | null | undefined;
|
|
17089
17129
|
iconURL?: string | null | undefined;
|
|
17090
17130
|
properties?: ({
|
|
17091
17131
|
key: string;
|
|
@@ -17159,7 +17199,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
17159
17199
|
})[] | null | undefined;
|
|
17160
17200
|
routingVersion?: string | null | undefined;
|
|
17161
17201
|
author?: string | null | undefined;
|
|
17162
|
-
tags?: string[] | null | undefined;
|
|
17163
17202
|
packageId?: string | null | undefined;
|
|
17164
17203
|
configurationProperties?: {
|
|
17165
17204
|
key: string;
|
|
@@ -17705,6 +17744,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
17705
17744
|
homepage?: string | null | undefined;
|
|
17706
17745
|
organization?: string | null | undefined;
|
|
17707
17746
|
readme?: string | null | undefined;
|
|
17747
|
+
tags?: string[] | null | undefined;
|
|
17708
17748
|
iconURL?: string | null | undefined;
|
|
17709
17749
|
properties?: ({
|
|
17710
17750
|
key: string;
|
|
@@ -17778,7 +17818,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
17778
17818
|
})[] | null | undefined;
|
|
17779
17819
|
routingVersion?: string | null | undefined;
|
|
17780
17820
|
author?: string | null | undefined;
|
|
17781
|
-
tags?: string[] | null | undefined;
|
|
17782
17821
|
packageId?: string | null | undefined;
|
|
17783
17822
|
configurationProperties?: {
|
|
17784
17823
|
key: string;
|
|
@@ -18709,6 +18748,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18709
18748
|
homepage?: string | null | undefined;
|
|
18710
18749
|
organization?: string | null | undefined;
|
|
18711
18750
|
readme?: string | null | undefined;
|
|
18751
|
+
tags?: string[] | null | undefined;
|
|
18712
18752
|
iconURL?: string | null | undefined;
|
|
18713
18753
|
properties?: ({
|
|
18714
18754
|
key: string;
|
|
@@ -18782,7 +18822,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
18782
18822
|
})[] | null | undefined;
|
|
18783
18823
|
routingVersion?: string | null | undefined;
|
|
18784
18824
|
author?: string | null | undefined;
|
|
18785
|
-
tags?: string[] | null | undefined;
|
|
18786
18825
|
packageId?: string | null | undefined;
|
|
18787
18826
|
configurationProperties?: {
|
|
18788
18827
|
key: string;
|
|
@@ -20651,6 +20690,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
20651
20690
|
homepage?: string | null | undefined;
|
|
20652
20691
|
organization?: string | null | undefined;
|
|
20653
20692
|
readme?: string | null | undefined;
|
|
20693
|
+
tags?: string[] | null | undefined;
|
|
20654
20694
|
iconURL?: string | null | undefined;
|
|
20655
20695
|
properties?: ({
|
|
20656
20696
|
key: string;
|
|
@@ -20724,7 +20764,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
20724
20764
|
})[] | null | undefined;
|
|
20725
20765
|
routingVersion?: string | null | undefined;
|
|
20726
20766
|
author?: string | null | undefined;
|
|
20727
|
-
tags?: string[] | null | undefined;
|
|
20728
20767
|
packageId?: string | null | undefined;
|
|
20729
20768
|
configurationProperties?: {
|
|
20730
20769
|
key: string;
|
|
@@ -22472,6 +22511,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
22472
22511
|
homepage?: string | null | undefined;
|
|
22473
22512
|
organization?: string | null | undefined;
|
|
22474
22513
|
readme?: string | null | undefined;
|
|
22514
|
+
tags?: string[] | null | undefined;
|
|
22475
22515
|
iconURL?: string | null | undefined;
|
|
22476
22516
|
properties?: ({
|
|
22477
22517
|
key: string;
|
|
@@ -22545,7 +22585,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
22545
22585
|
})[] | null | undefined;
|
|
22546
22586
|
routingVersion?: string | null | undefined;
|
|
22547
22587
|
author?: string | null | undefined;
|
|
22548
|
-
tags?: string[] | null | undefined;
|
|
22549
22588
|
packageId?: string | null | undefined;
|
|
22550
22589
|
configurationProperties?: {
|
|
22551
22590
|
key: string;
|
|
@@ -28132,6 +28171,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28132
28171
|
homepage?: string | null | undefined;
|
|
28133
28172
|
organization?: string | null | undefined;
|
|
28134
28173
|
readme?: string | null | undefined;
|
|
28174
|
+
tags?: string[] | null | undefined;
|
|
28135
28175
|
iconURL?: string | null | undefined;
|
|
28136
28176
|
properties?: ({
|
|
28137
28177
|
key: string;
|
|
@@ -28205,7 +28245,6 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28205
28245
|
})[] | null | undefined;
|
|
28206
28246
|
routingVersion?: string | null | undefined;
|
|
28207
28247
|
author?: string | null | undefined;
|
|
28208
|
-
tags?: string[] | null | undefined;
|
|
28209
28248
|
packageId?: string | null | undefined;
|
|
28210
28249
|
configurationProperties?: {
|
|
28211
28250
|
key: string;
|
|
@@ -28751,6 +28790,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28751
28790
|
homepage?: string | null | undefined;
|
|
28752
28791
|
organization?: string | null | undefined;
|
|
28753
28792
|
readme?: string | null | undefined;
|
|
28793
|
+
tags?: string[] | null | undefined;
|
|
28754
28794
|
iconURL?: string | null | undefined;
|
|
28755
28795
|
properties?: ({
|
|
28756
28796
|
key: string;
|
|
@@ -28824,7 +28864,6 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28824
28864
|
})[] | null | undefined;
|
|
28825
28865
|
routingVersion?: string | null | undefined;
|
|
28826
28866
|
author?: string | null | undefined;
|
|
28827
|
-
tags?: string[] | null | undefined;
|
|
28828
28867
|
packageId?: string | null | undefined;
|
|
28829
28868
|
configurationProperties?: {
|
|
28830
28869
|
key: string;
|
|
@@ -29755,6 +29794,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
29755
29794
|
homepage?: string | null | undefined;
|
|
29756
29795
|
organization?: string | null | undefined;
|
|
29757
29796
|
readme?: string | null | undefined;
|
|
29797
|
+
tags?: string[] | null | undefined;
|
|
29758
29798
|
iconURL?: string | null | undefined;
|
|
29759
29799
|
properties?: ({
|
|
29760
29800
|
key: string;
|
|
@@ -29828,7 +29868,6 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
29828
29868
|
})[] | null | undefined;
|
|
29829
29869
|
routingVersion?: string | null | undefined;
|
|
29830
29870
|
author?: string | null | undefined;
|
|
29831
|
-
tags?: string[] | null | undefined;
|
|
29832
29871
|
packageId?: string | null | undefined;
|
|
29833
29872
|
configurationProperties?: {
|
|
29834
29873
|
key: string;
|
|
@@ -31697,6 +31736,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31697
31736
|
homepage?: string | null | undefined;
|
|
31698
31737
|
organization?: string | null | undefined;
|
|
31699
31738
|
readme?: string | null | undefined;
|
|
31739
|
+
tags?: string[] | null | undefined;
|
|
31700
31740
|
iconURL?: string | null | undefined;
|
|
31701
31741
|
properties?: ({
|
|
31702
31742
|
key: string;
|
|
@@ -31770,7 +31810,6 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31770
31810
|
})[] | null | undefined;
|
|
31771
31811
|
routingVersion?: string | null | undefined;
|
|
31772
31812
|
author?: string | null | undefined;
|
|
31773
|
-
tags?: string[] | null | undefined;
|
|
31774
31813
|
packageId?: string | null | undefined;
|
|
31775
31814
|
configurationProperties?: {
|
|
31776
31815
|
key: string;
|
|
@@ -32994,6 +33033,7 @@ declare const CodeComponent: z.ZodObject<{
|
|
|
32994
33033
|
updatedAt: Date;
|
|
32995
33034
|
persistentId: string;
|
|
32996
33035
|
description: string;
|
|
33036
|
+
tags: Record<string, string> | null;
|
|
32997
33037
|
properties: Record<string, {
|
|
32998
33038
|
name: string;
|
|
32999
33039
|
description: string;
|
|
@@ -33006,7 +33046,6 @@ declare const CodeComponent: z.ZodObject<{
|
|
|
33006
33046
|
fileName: string;
|
|
33007
33047
|
}[] | undefined;
|
|
33008
33048
|
}>;
|
|
33009
|
-
tags: Record<string, string> | null;
|
|
33010
33049
|
designSystemVersionId: string;
|
|
33011
33050
|
exportName: string;
|
|
33012
33051
|
componentPath: string;
|
|
@@ -33016,6 +33055,7 @@ declare const CodeComponent: z.ZodObject<{
|
|
|
33016
33055
|
updatedAt: Date;
|
|
33017
33056
|
persistentId: string;
|
|
33018
33057
|
description: string;
|
|
33058
|
+
tags: Record<string, string> | null;
|
|
33019
33059
|
properties: Record<string, {
|
|
33020
33060
|
name: string;
|
|
33021
33061
|
description: string;
|
|
@@ -33028,7 +33068,6 @@ declare const CodeComponent: z.ZodObject<{
|
|
|
33028
33068
|
fileName: string;
|
|
33029
33069
|
}[] | undefined;
|
|
33030
33070
|
}>;
|
|
33031
|
-
tags: Record<string, string> | null;
|
|
33032
33071
|
designSystemVersionId: string;
|
|
33033
33072
|
exportName: string;
|
|
33034
33073
|
componentPath: string;
|
|
@@ -150761,6 +150800,7 @@ declare const ExporterPulsarDetails: z.ZodObject<{
|
|
|
150761
150800
|
homepage?: string | null | undefined;
|
|
150762
150801
|
organization?: string | null | undefined;
|
|
150763
150802
|
readme?: string | null | undefined;
|
|
150803
|
+
tags?: string[] | null | undefined;
|
|
150764
150804
|
iconURL?: string | null | undefined;
|
|
150765
150805
|
properties?: ({
|
|
150766
150806
|
key: string;
|
|
@@ -150834,7 +150874,6 @@ declare const ExporterPulsarDetails: z.ZodObject<{
|
|
|
150834
150874
|
})[] | null | undefined;
|
|
150835
150875
|
routingVersion?: string | null | undefined;
|
|
150836
150876
|
author?: string | null | undefined;
|
|
150837
|
-
tags?: string[] | null | undefined;
|
|
150838
150877
|
packageId?: string | null | undefined;
|
|
150839
150878
|
configurationProperties?: {
|
|
150840
150879
|
key: string;
|
|
@@ -151441,6 +151480,7 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
151441
151480
|
homepage?: string | null | undefined;
|
|
151442
151481
|
organization?: string | null | undefined;
|
|
151443
151482
|
readme?: string | null | undefined;
|
|
151483
|
+
tags?: string[] | null | undefined;
|
|
151444
151484
|
iconURL?: string | null | undefined;
|
|
151445
151485
|
properties?: ({
|
|
151446
151486
|
key: string;
|
|
@@ -151514,7 +151554,6 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
151514
151554
|
})[] | null | undefined;
|
|
151515
151555
|
routingVersion?: string | null | undefined;
|
|
151516
151556
|
author?: string | null | undefined;
|
|
151517
|
-
tags?: string[] | null | undefined;
|
|
151518
151557
|
packageId?: string | null | undefined;
|
|
151519
151558
|
configurationProperties?: {
|
|
151520
151559
|
key: string;
|
|
@@ -152130,6 +152169,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
152130
152169
|
homepage?: string | null | undefined;
|
|
152131
152170
|
organization?: string | null | undefined;
|
|
152132
152171
|
readme?: string | null | undefined;
|
|
152172
|
+
tags?: string[] | null | undefined;
|
|
152133
152173
|
iconURL?: string | null | undefined;
|
|
152134
152174
|
properties?: ({
|
|
152135
152175
|
key: string;
|
|
@@ -152203,7 +152243,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
152203
152243
|
})[] | null | undefined;
|
|
152204
152244
|
routingVersion?: string | null | undefined;
|
|
152205
152245
|
author?: string | null | undefined;
|
|
152206
|
-
tags?: string[] | null | undefined;
|
|
152207
152246
|
packageId?: string | null | undefined;
|
|
152208
152247
|
configurationProperties?: {
|
|
152209
152248
|
key: string;
|
|
@@ -152749,6 +152788,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
152749
152788
|
homepage?: string | null | undefined;
|
|
152750
152789
|
organization?: string | null | undefined;
|
|
152751
152790
|
readme?: string | null | undefined;
|
|
152791
|
+
tags?: string[] | null | undefined;
|
|
152752
152792
|
iconURL?: string | null | undefined;
|
|
152753
152793
|
properties?: ({
|
|
152754
152794
|
key: string;
|
|
@@ -152822,7 +152862,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
152822
152862
|
})[] | null | undefined;
|
|
152823
152863
|
routingVersion?: string | null | undefined;
|
|
152824
152864
|
author?: string | null | undefined;
|
|
152825
|
-
tags?: string[] | null | undefined;
|
|
152826
152865
|
packageId?: string | null | undefined;
|
|
152827
152866
|
configurationProperties?: {
|
|
152828
152867
|
key: string;
|
|
@@ -158794,8 +158833,8 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
158794
158833
|
id: string;
|
|
158795
158834
|
name: string;
|
|
158796
158835
|
createdAt: Date;
|
|
158797
|
-
workspaceId: string;
|
|
158798
158836
|
tags: string[];
|
|
158837
|
+
workspaceId: string;
|
|
158799
158838
|
meta: {
|
|
158800
158839
|
name: string;
|
|
158801
158840
|
description?: string | undefined;
|
|
@@ -190034,4 +190073,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
190034
190073
|
token: PersonalAccessToken;
|
|
190035
190074
|
};
|
|
190036
190075
|
|
|
190037
|
-
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectDefaultRole, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
190076
|
+
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectDefaultRole, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|