@supernova-studio/model 1.37.4 → 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 +572 -437
- package/dist/index.d.ts +572 -437
- package/dist/index.js +37 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1893 -1880
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1364,6 +1364,8 @@ declare const PriceSchema: z.ZodObject<{
|
|
|
1364
1364
|
featuresSet: z.ZodOptional<z.ZodString>;
|
|
1365
1365
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1366
1366
|
stripeProductAdditionalFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1367
|
+
seatType: z.ZodOptional<z.ZodEnum<["Full", "Builder", "None"]>>;
|
|
1368
|
+
monthlyCreditGrant: z.ZodOptional<z.ZodNumber>;
|
|
1367
1369
|
}, "strip", z.ZodTypeAny, {
|
|
1368
1370
|
amount: number;
|
|
1369
1371
|
stripePriceId: string;
|
|
@@ -1380,6 +1382,8 @@ declare const PriceSchema: z.ZodObject<{
|
|
|
1380
1382
|
featuresSet?: string | undefined;
|
|
1381
1383
|
stripeProductFeatures?: string[] | undefined;
|
|
1382
1384
|
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
1385
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
1386
|
+
monthlyCreditGrant?: number | undefined;
|
|
1383
1387
|
}, {
|
|
1384
1388
|
amount: number;
|
|
1385
1389
|
stripePriceId: string;
|
|
@@ -1396,6 +1400,8 @@ declare const PriceSchema: z.ZodObject<{
|
|
|
1396
1400
|
featuresSet?: string | undefined;
|
|
1397
1401
|
stripeProductFeatures?: string[] | undefined;
|
|
1398
1402
|
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
1403
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
1404
|
+
monthlyCreditGrant?: number | undefined;
|
|
1399
1405
|
}>;
|
|
1400
1406
|
type BillingInterval = z.infer<typeof BillingIntervalSchema>;
|
|
1401
1407
|
type Price = z.infer<typeof PriceSchema>;
|
|
@@ -1445,6 +1451,8 @@ declare const Subscription: z.ZodObject<{
|
|
|
1445
1451
|
} | null | undefined>;
|
|
1446
1452
|
seats: z.ZodNumber;
|
|
1447
1453
|
seatLimit: z.ZodNumber;
|
|
1454
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
1455
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
1448
1456
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
1449
1457
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
1450
1458
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1476,6 +1484,8 @@ declare const Subscription: z.ZodObject<{
|
|
|
1476
1484
|
expiryYear?: string | null | undefined;
|
|
1477
1485
|
brand?: string | null | undefined;
|
|
1478
1486
|
} | undefined;
|
|
1487
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
1488
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
1479
1489
|
builderSeatLimit?: number | undefined;
|
|
1480
1490
|
fullSeatLimit?: number | undefined;
|
|
1481
1491
|
builderSeats?: number | undefined;
|
|
@@ -1503,6 +1513,8 @@ declare const Subscription: z.ZodObject<{
|
|
|
1503
1513
|
expiryYear?: string | null | undefined;
|
|
1504
1514
|
brand?: string | null | undefined;
|
|
1505
1515
|
} | null | undefined;
|
|
1516
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
1517
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
1506
1518
|
builderSeatLimit?: number | undefined;
|
|
1507
1519
|
fullSeatLimit?: number | undefined;
|
|
1508
1520
|
builderSeats?: number | undefined;
|
|
@@ -1562,6 +1574,22 @@ declare const ForgeChatMessageSender: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
1562
1574
|
type: "FunctionCallOutput";
|
|
1563
1575
|
}>]>;
|
|
1564
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>;
|
|
1565
1593
|
declare const ForgeChatMessage: z.ZodObject<{
|
|
1566
1594
|
id: z.ZodString;
|
|
1567
1595
|
threadId: z.ZodString;
|
|
@@ -1606,6 +1634,19 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1606
1634
|
}, {
|
|
1607
1635
|
type: "FunctionCallOutput";
|
|
1608
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
|
+
}>>;
|
|
1609
1650
|
}, "strip", z.ZodTypeAny, {
|
|
1610
1651
|
id: string;
|
|
1611
1652
|
createdAt: Date;
|
|
@@ -1626,6 +1667,11 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1626
1667
|
type: "FunctionCallOutput";
|
|
1627
1668
|
};
|
|
1628
1669
|
opikTraceId?: string | undefined;
|
|
1670
|
+
userScore?: {
|
|
1671
|
+
type: "Positive" | "Negative";
|
|
1672
|
+
tags: string[];
|
|
1673
|
+
comment?: string | undefined;
|
|
1674
|
+
} | undefined;
|
|
1629
1675
|
}, {
|
|
1630
1676
|
id: string;
|
|
1631
1677
|
createdAt: Date;
|
|
@@ -1646,6 +1692,11 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
1646
1692
|
type: "FunctionCallOutput";
|
|
1647
1693
|
};
|
|
1648
1694
|
opikTraceId?: string | undefined;
|
|
1695
|
+
userScore?: {
|
|
1696
|
+
type: "Positive" | "Negative";
|
|
1697
|
+
tags: string[];
|
|
1698
|
+
comment?: string | undefined;
|
|
1699
|
+
} | undefined;
|
|
1649
1700
|
}>;
|
|
1650
1701
|
type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
|
|
1651
1702
|
|
|
@@ -2320,6 +2371,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2320
2371
|
homepage?: string | null | undefined;
|
|
2321
2372
|
organization?: string | null | undefined;
|
|
2322
2373
|
readme?: string | null | undefined;
|
|
2374
|
+
tags?: string[] | null | undefined;
|
|
2323
2375
|
iconURL?: string | null | undefined;
|
|
2324
2376
|
properties?: ({
|
|
2325
2377
|
key: string;
|
|
@@ -2393,7 +2445,6 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2393
2445
|
})[] | null | undefined;
|
|
2394
2446
|
routingVersion?: string | null | undefined;
|
|
2395
2447
|
author?: string | null | undefined;
|
|
2396
|
-
tags?: string[] | null | undefined;
|
|
2397
2448
|
packageId?: string | null | undefined;
|
|
2398
2449
|
configurationProperties?: {
|
|
2399
2450
|
key: string;
|
|
@@ -2939,6 +2990,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2939
2990
|
homepage?: string | null | undefined;
|
|
2940
2991
|
organization?: string | null | undefined;
|
|
2941
2992
|
readme?: string | null | undefined;
|
|
2993
|
+
tags?: string[] | null | undefined;
|
|
2942
2994
|
iconURL?: string | null | undefined;
|
|
2943
2995
|
properties?: ({
|
|
2944
2996
|
key: string;
|
|
@@ -3012,7 +3064,6 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3012
3064
|
})[] | null | undefined;
|
|
3013
3065
|
routingVersion?: string | null | undefined;
|
|
3014
3066
|
author?: string | null | undefined;
|
|
3015
|
-
tags?: string[] | null | undefined;
|
|
3016
3067
|
packageId?: string | null | undefined;
|
|
3017
3068
|
configurationProperties?: {
|
|
3018
3069
|
key: string;
|
|
@@ -3943,6 +3994,7 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
3943
3994
|
homepage?: string | null | undefined;
|
|
3944
3995
|
organization?: string | null | undefined;
|
|
3945
3996
|
readme?: string | null | undefined;
|
|
3997
|
+
tags?: string[] | null | undefined;
|
|
3946
3998
|
iconURL?: string | null | undefined;
|
|
3947
3999
|
properties?: ({
|
|
3948
4000
|
key: string;
|
|
@@ -4016,7 +4068,6 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4016
4068
|
})[] | null | undefined;
|
|
4017
4069
|
routingVersion?: string | null | undefined;
|
|
4018
4070
|
author?: string | null | undefined;
|
|
4019
|
-
tags?: string[] | null | undefined;
|
|
4020
4071
|
packageId?: string | null | undefined;
|
|
4021
4072
|
configurationProperties?: {
|
|
4022
4073
|
key: string;
|
|
@@ -11947,6 +11998,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
11947
11998
|
} | null | undefined>;
|
|
11948
11999
|
seats: z.ZodNumber;
|
|
11949
12000
|
seatLimit: z.ZodNumber;
|
|
12001
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
12002
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
11950
12003
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
11951
12004
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
11952
12005
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11978,6 +12031,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
11978
12031
|
expiryYear?: string | null | undefined;
|
|
11979
12032
|
brand?: string | null | undefined;
|
|
11980
12033
|
} | undefined;
|
|
12034
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
12035
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
11981
12036
|
builderSeatLimit?: number | undefined;
|
|
11982
12037
|
fullSeatLimit?: number | undefined;
|
|
11983
12038
|
builderSeats?: number | undefined;
|
|
@@ -12005,6 +12060,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
12005
12060
|
expiryYear?: string | null | undefined;
|
|
12006
12061
|
brand?: string | null | undefined;
|
|
12007
12062
|
} | null | undefined;
|
|
12063
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
12064
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
12008
12065
|
builderSeatLimit?: number | undefined;
|
|
12009
12066
|
fullSeatLimit?: number | undefined;
|
|
12010
12067
|
builderSeats?: number | undefined;
|
|
@@ -12212,6 +12269,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
12212
12269
|
expiryYear?: string | null | undefined;
|
|
12213
12270
|
brand?: string | null | undefined;
|
|
12214
12271
|
} | undefined;
|
|
12272
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
12273
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
12215
12274
|
builderSeatLimit?: number | undefined;
|
|
12216
12275
|
fullSeatLimit?: number | undefined;
|
|
12217
12276
|
builderSeats?: number | undefined;
|
|
@@ -12308,6 +12367,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
12308
12367
|
expiryYear?: string | null | undefined;
|
|
12309
12368
|
brand?: string | null | undefined;
|
|
12310
12369
|
} | null | undefined;
|
|
12370
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
12371
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
12311
12372
|
builderSeatLimit?: number | undefined;
|
|
12312
12373
|
fullSeatLimit?: number | undefined;
|
|
12313
12374
|
builderSeats?: number | undefined;
|
|
@@ -17064,6 +17125,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
17064
17125
|
homepage?: string | null | undefined;
|
|
17065
17126
|
organization?: string | null | undefined;
|
|
17066
17127
|
readme?: string | null | undefined;
|
|
17128
|
+
tags?: string[] | null | undefined;
|
|
17067
17129
|
iconURL?: string | null | undefined;
|
|
17068
17130
|
properties?: ({
|
|
17069
17131
|
key: string;
|
|
@@ -17137,7 +17199,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
17137
17199
|
})[] | null | undefined;
|
|
17138
17200
|
routingVersion?: string | null | undefined;
|
|
17139
17201
|
author?: string | null | undefined;
|
|
17140
|
-
tags?: string[] | null | undefined;
|
|
17141
17202
|
packageId?: string | null | undefined;
|
|
17142
17203
|
configurationProperties?: {
|
|
17143
17204
|
key: string;
|
|
@@ -17683,6 +17744,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
17683
17744
|
homepage?: string | null | undefined;
|
|
17684
17745
|
organization?: string | null | undefined;
|
|
17685
17746
|
readme?: string | null | undefined;
|
|
17747
|
+
tags?: string[] | null | undefined;
|
|
17686
17748
|
iconURL?: string | null | undefined;
|
|
17687
17749
|
properties?: ({
|
|
17688
17750
|
key: string;
|
|
@@ -17756,7 +17818,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
17756
17818
|
})[] | null | undefined;
|
|
17757
17819
|
routingVersion?: string | null | undefined;
|
|
17758
17820
|
author?: string | null | undefined;
|
|
17759
|
-
tags?: string[] | null | undefined;
|
|
17760
17821
|
packageId?: string | null | undefined;
|
|
17761
17822
|
configurationProperties?: {
|
|
17762
17823
|
key: string;
|
|
@@ -18687,6 +18748,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
18687
18748
|
homepage?: string | null | undefined;
|
|
18688
18749
|
organization?: string | null | undefined;
|
|
18689
18750
|
readme?: string | null | undefined;
|
|
18751
|
+
tags?: string[] | null | undefined;
|
|
18690
18752
|
iconURL?: string | null | undefined;
|
|
18691
18753
|
properties?: ({
|
|
18692
18754
|
key: string;
|
|
@@ -18760,7 +18822,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
18760
18822
|
})[] | null | undefined;
|
|
18761
18823
|
routingVersion?: string | null | undefined;
|
|
18762
18824
|
author?: string | null | undefined;
|
|
18763
|
-
tags?: string[] | null | undefined;
|
|
18764
18825
|
packageId?: string | null | undefined;
|
|
18765
18826
|
configurationProperties?: {
|
|
18766
18827
|
key: string;
|
|
@@ -19223,6 +19284,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19223
19284
|
expiryYear?: string | null | undefined;
|
|
19224
19285
|
brand?: string | null | undefined;
|
|
19225
19286
|
} | undefined;
|
|
19287
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
19288
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
19226
19289
|
builderSeatLimit?: number | undefined;
|
|
19227
19290
|
fullSeatLimit?: number | undefined;
|
|
19228
19291
|
builderSeats?: number | undefined;
|
|
@@ -20113,6 +20176,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20113
20176
|
expiryYear?: string | null | undefined;
|
|
20114
20177
|
brand?: string | null | undefined;
|
|
20115
20178
|
} | null | undefined;
|
|
20179
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
20180
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
20116
20181
|
builderSeatLimit?: number | undefined;
|
|
20117
20182
|
fullSeatLimit?: number | undefined;
|
|
20118
20183
|
builderSeats?: number | undefined;
|
|
@@ -20625,6 +20690,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
20625
20690
|
homepage?: string | null | undefined;
|
|
20626
20691
|
organization?: string | null | undefined;
|
|
20627
20692
|
readme?: string | null | undefined;
|
|
20693
|
+
tags?: string[] | null | undefined;
|
|
20628
20694
|
iconURL?: string | null | undefined;
|
|
20629
20695
|
properties?: ({
|
|
20630
20696
|
key: string;
|
|
@@ -20698,7 +20764,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
20698
20764
|
})[] | null | undefined;
|
|
20699
20765
|
routingVersion?: string | null | undefined;
|
|
20700
20766
|
author?: string | null | undefined;
|
|
20701
|
-
tags?: string[] | null | undefined;
|
|
20702
20767
|
packageId?: string | null | undefined;
|
|
20703
20768
|
configurationProperties?: {
|
|
20704
20769
|
key: string;
|
|
@@ -21005,6 +21070,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
21005
21070
|
expiryYear?: string | null | undefined;
|
|
21006
21071
|
brand?: string | null | undefined;
|
|
21007
21072
|
} | undefined;
|
|
21073
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
21074
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
21008
21075
|
builderSeatLimit?: number | undefined;
|
|
21009
21076
|
fullSeatLimit?: number | undefined;
|
|
21010
21077
|
builderSeats?: number | undefined;
|
|
@@ -21937,6 +22004,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
21937
22004
|
expiryYear?: string | null | undefined;
|
|
21938
22005
|
brand?: string | null | undefined;
|
|
21939
22006
|
} | null | undefined;
|
|
22007
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
22008
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
21940
22009
|
builderSeatLimit?: number | undefined;
|
|
21941
22010
|
fullSeatLimit?: number | undefined;
|
|
21942
22011
|
builderSeats?: number | undefined;
|
|
@@ -22442,6 +22511,7 @@ declare const UserDump: z.ZodObject<{
|
|
|
22442
22511
|
homepage?: string | null | undefined;
|
|
22443
22512
|
organization?: string | null | undefined;
|
|
22444
22513
|
readme?: string | null | undefined;
|
|
22514
|
+
tags?: string[] | null | undefined;
|
|
22445
22515
|
iconURL?: string | null | undefined;
|
|
22446
22516
|
properties?: ({
|
|
22447
22517
|
key: string;
|
|
@@ -22515,7 +22585,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
22515
22585
|
})[] | null | undefined;
|
|
22516
22586
|
routingVersion?: string | null | undefined;
|
|
22517
22587
|
author?: string | null | undefined;
|
|
22518
|
-
tags?: string[] | null | undefined;
|
|
22519
22588
|
packageId?: string | null | undefined;
|
|
22520
22589
|
configurationProperties?: {
|
|
22521
22590
|
key: string;
|
|
@@ -22975,6 +23044,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
22975
23044
|
} | null | undefined>;
|
|
22976
23045
|
seats: z.ZodNumber;
|
|
22977
23046
|
seatLimit: z.ZodNumber;
|
|
23047
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23048
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
22978
23049
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
22979
23050
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
22980
23051
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23006,6 +23077,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23006
23077
|
expiryYear?: string | null | undefined;
|
|
23007
23078
|
brand?: string | null | undefined;
|
|
23008
23079
|
} | undefined;
|
|
23080
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
23081
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
23009
23082
|
builderSeatLimit?: number | undefined;
|
|
23010
23083
|
fullSeatLimit?: number | undefined;
|
|
23011
23084
|
builderSeats?: number | undefined;
|
|
@@ -23033,6 +23106,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23033
23106
|
expiryYear?: string | null | undefined;
|
|
23034
23107
|
brand?: string | null | undefined;
|
|
23035
23108
|
} | null | undefined;
|
|
23109
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
23110
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
23036
23111
|
builderSeatLimit?: number | undefined;
|
|
23037
23112
|
fullSeatLimit?: number | undefined;
|
|
23038
23113
|
builderSeats?: number | undefined;
|
|
@@ -23240,6 +23315,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23240
23315
|
expiryYear?: string | null | undefined;
|
|
23241
23316
|
brand?: string | null | undefined;
|
|
23242
23317
|
} | undefined;
|
|
23318
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
23319
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
23243
23320
|
builderSeatLimit?: number | undefined;
|
|
23244
23321
|
fullSeatLimit?: number | undefined;
|
|
23245
23322
|
builderSeats?: number | undefined;
|
|
@@ -23336,6 +23413,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23336
23413
|
expiryYear?: string | null | undefined;
|
|
23337
23414
|
brand?: string | null | undefined;
|
|
23338
23415
|
} | null | undefined;
|
|
23416
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
23417
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
23339
23418
|
builderSeatLimit?: number | undefined;
|
|
23340
23419
|
fullSeatLimit?: number | undefined;
|
|
23341
23420
|
builderSeats?: number | undefined;
|
|
@@ -28092,6 +28171,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28092
28171
|
homepage?: string | null | undefined;
|
|
28093
28172
|
organization?: string | null | undefined;
|
|
28094
28173
|
readme?: string | null | undefined;
|
|
28174
|
+
tags?: string[] | null | undefined;
|
|
28095
28175
|
iconURL?: string | null | undefined;
|
|
28096
28176
|
properties?: ({
|
|
28097
28177
|
key: string;
|
|
@@ -28165,7 +28245,6 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28165
28245
|
})[] | null | undefined;
|
|
28166
28246
|
routingVersion?: string | null | undefined;
|
|
28167
28247
|
author?: string | null | undefined;
|
|
28168
|
-
tags?: string[] | null | undefined;
|
|
28169
28248
|
packageId?: string | null | undefined;
|
|
28170
28249
|
configurationProperties?: {
|
|
28171
28250
|
key: string;
|
|
@@ -28711,6 +28790,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28711
28790
|
homepage?: string | null | undefined;
|
|
28712
28791
|
organization?: string | null | undefined;
|
|
28713
28792
|
readme?: string | null | undefined;
|
|
28793
|
+
tags?: string[] | null | undefined;
|
|
28714
28794
|
iconURL?: string | null | undefined;
|
|
28715
28795
|
properties?: ({
|
|
28716
28796
|
key: string;
|
|
@@ -28784,7 +28864,6 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28784
28864
|
})[] | null | undefined;
|
|
28785
28865
|
routingVersion?: string | null | undefined;
|
|
28786
28866
|
author?: string | null | undefined;
|
|
28787
|
-
tags?: string[] | null | undefined;
|
|
28788
28867
|
packageId?: string | null | undefined;
|
|
28789
28868
|
configurationProperties?: {
|
|
28790
28869
|
key: string;
|
|
@@ -29715,6 +29794,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
29715
29794
|
homepage?: string | null | undefined;
|
|
29716
29795
|
organization?: string | null | undefined;
|
|
29717
29796
|
readme?: string | null | undefined;
|
|
29797
|
+
tags?: string[] | null | undefined;
|
|
29718
29798
|
iconURL?: string | null | undefined;
|
|
29719
29799
|
properties?: ({
|
|
29720
29800
|
key: string;
|
|
@@ -29788,7 +29868,6 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
29788
29868
|
})[] | null | undefined;
|
|
29789
29869
|
routingVersion?: string | null | undefined;
|
|
29790
29870
|
author?: string | null | undefined;
|
|
29791
|
-
tags?: string[] | null | undefined;
|
|
29792
29871
|
packageId?: string | null | undefined;
|
|
29793
29872
|
configurationProperties?: {
|
|
29794
29873
|
key: string;
|
|
@@ -30251,6 +30330,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30251
30330
|
expiryYear?: string | null | undefined;
|
|
30252
30331
|
brand?: string | null | undefined;
|
|
30253
30332
|
} | undefined;
|
|
30333
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
30334
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
30254
30335
|
builderSeatLimit?: number | undefined;
|
|
30255
30336
|
fullSeatLimit?: number | undefined;
|
|
30256
30337
|
builderSeats?: number | undefined;
|
|
@@ -31141,6 +31222,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31141
31222
|
expiryYear?: string | null | undefined;
|
|
31142
31223
|
brand?: string | null | undefined;
|
|
31143
31224
|
} | null | undefined;
|
|
31225
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
31226
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
31144
31227
|
builderSeatLimit?: number | undefined;
|
|
31145
31228
|
fullSeatLimit?: number | undefined;
|
|
31146
31229
|
builderSeats?: number | undefined;
|
|
@@ -31653,6 +31736,7 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31653
31736
|
homepage?: string | null | undefined;
|
|
31654
31737
|
organization?: string | null | undefined;
|
|
31655
31738
|
readme?: string | null | undefined;
|
|
31739
|
+
tags?: string[] | null | undefined;
|
|
31656
31740
|
iconURL?: string | null | undefined;
|
|
31657
31741
|
properties?: ({
|
|
31658
31742
|
key: string;
|
|
@@ -31726,7 +31810,6 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31726
31810
|
})[] | null | undefined;
|
|
31727
31811
|
routingVersion?: string | null | undefined;
|
|
31728
31812
|
author?: string | null | undefined;
|
|
31729
|
-
tags?: string[] | null | undefined;
|
|
31730
31813
|
packageId?: string | null | undefined;
|
|
31731
31814
|
configurationProperties?: {
|
|
31732
31815
|
key: string;
|
|
@@ -32950,6 +33033,7 @@ declare const CodeComponent: z.ZodObject<{
|
|
|
32950
33033
|
updatedAt: Date;
|
|
32951
33034
|
persistentId: string;
|
|
32952
33035
|
description: string;
|
|
33036
|
+
tags: Record<string, string> | null;
|
|
32953
33037
|
properties: Record<string, {
|
|
32954
33038
|
name: string;
|
|
32955
33039
|
description: string;
|
|
@@ -32962,7 +33046,6 @@ declare const CodeComponent: z.ZodObject<{
|
|
|
32962
33046
|
fileName: string;
|
|
32963
33047
|
}[] | undefined;
|
|
32964
33048
|
}>;
|
|
32965
|
-
tags: Record<string, string> | null;
|
|
32966
33049
|
designSystemVersionId: string;
|
|
32967
33050
|
exportName: string;
|
|
32968
33051
|
componentPath: string;
|
|
@@ -32972,6 +33055,7 @@ declare const CodeComponent: z.ZodObject<{
|
|
|
32972
33055
|
updatedAt: Date;
|
|
32973
33056
|
persistentId: string;
|
|
32974
33057
|
description: string;
|
|
33058
|
+
tags: Record<string, string> | null;
|
|
32975
33059
|
properties: Record<string, {
|
|
32976
33060
|
name: string;
|
|
32977
33061
|
description: string;
|
|
@@ -32984,7 +33068,6 @@ declare const CodeComponent: z.ZodObject<{
|
|
|
32984
33068
|
fileName: string;
|
|
32985
33069
|
}[] | undefined;
|
|
32986
33070
|
}>;
|
|
32987
|
-
tags: Record<string, string> | null;
|
|
32988
33071
|
designSystemVersionId: string;
|
|
32989
33072
|
exportName: string;
|
|
32990
33073
|
componentPath: string;
|
|
@@ -34919,12 +35002,12 @@ declare const PageBlockDefinitionLayoutBase: z.ZodObject<{
|
|
|
34919
35002
|
columnResizing: z.ZodOptional<z.ZodEnum<["Fill", "Hug"]>>;
|
|
34920
35003
|
}, "strip", z.ZodTypeAny, {
|
|
34921
35004
|
type: "Column" | "Row";
|
|
34922
|
-
gap?: "
|
|
35005
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
34923
35006
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
34924
35007
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
34925
35008
|
}, {
|
|
34926
35009
|
type: "Column" | "Row";
|
|
34927
|
-
gap?: "
|
|
35010
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
34928
35011
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
34929
35012
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
34930
35013
|
}>;
|
|
@@ -34958,7 +35041,7 @@ declare const PageBlockDefinitionVariant: z.ZodObject<{
|
|
|
34958
35041
|
name: string;
|
|
34959
35042
|
layout: {
|
|
34960
35043
|
type: "Column" | "Row";
|
|
34961
|
-
gap?: "
|
|
35044
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
34962
35045
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
34963
35046
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
34964
35047
|
} & {
|
|
@@ -34980,7 +35063,7 @@ declare const PageBlockDefinitionVariant: z.ZodObject<{
|
|
|
34980
35063
|
name: string;
|
|
34981
35064
|
layout: {
|
|
34982
35065
|
type: "Column" | "Row";
|
|
34983
|
-
gap?: "
|
|
35066
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
34984
35067
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
34985
35068
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
34986
35069
|
} & {
|
|
@@ -35147,7 +35230,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35147
35230
|
name: string;
|
|
35148
35231
|
layout: {
|
|
35149
35232
|
type: "Column" | "Row";
|
|
35150
|
-
gap?: "
|
|
35233
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35151
35234
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35152
35235
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35153
35236
|
} & {
|
|
@@ -35169,7 +35252,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35169
35252
|
name: string;
|
|
35170
35253
|
layout: {
|
|
35171
35254
|
type: "Column" | "Row";
|
|
35172
|
-
gap?: "
|
|
35255
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35173
35256
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35174
35257
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35175
35258
|
} & {
|
|
@@ -35202,7 +35285,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35202
35285
|
name: string;
|
|
35203
35286
|
layout: {
|
|
35204
35287
|
type: "Column" | "Row";
|
|
35205
|
-
gap?: "
|
|
35288
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35206
35289
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35207
35290
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35208
35291
|
} & {
|
|
@@ -35241,7 +35324,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35241
35324
|
name: string;
|
|
35242
35325
|
layout: {
|
|
35243
35326
|
type: "Column" | "Row";
|
|
35244
|
-
gap?: "
|
|
35327
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35245
35328
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35246
35329
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35247
35330
|
} & {
|
|
@@ -35371,7 +35454,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35371
35454
|
name: string;
|
|
35372
35455
|
layout: {
|
|
35373
35456
|
type: "Column" | "Row";
|
|
35374
|
-
gap?: "
|
|
35457
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35375
35458
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35376
35459
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35377
35460
|
} & {
|
|
@@ -35444,7 +35527,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35444
35527
|
name: string;
|
|
35445
35528
|
layout: {
|
|
35446
35529
|
type: "Column" | "Row";
|
|
35447
|
-
gap?: "
|
|
35530
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35448
35531
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35449
35532
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35450
35533
|
} & {
|
|
@@ -35647,12 +35730,12 @@ declare const PageBlockDefinitionImageOptions: z.ZodObject<{
|
|
|
35647
35730
|
allowCaption: z.ZodOptional<z.ZodBoolean>;
|
|
35648
35731
|
recommendation: z.ZodOptional<z.ZodString>;
|
|
35649
35732
|
}, "strip", z.ZodTypeAny, {
|
|
35650
|
-
width?: "
|
|
35733
|
+
width?: "Full" | "Small" | "Medium" | "Large" | "Icon" | "Poster" | undefined;
|
|
35651
35734
|
aspectRatio?: "Auto" | "Square" | "Landscape" | "Portrait" | "Wide" | undefined;
|
|
35652
35735
|
allowCaption?: boolean | undefined;
|
|
35653
35736
|
recommendation?: string | undefined;
|
|
35654
35737
|
}, {
|
|
35655
|
-
width?: "
|
|
35738
|
+
width?: "Full" | "Small" | "Medium" | "Large" | "Icon" | "Poster" | undefined;
|
|
35656
35739
|
aspectRatio?: "Auto" | "Square" | "Landscape" | "Portrait" | "Wide" | undefined;
|
|
35657
35740
|
allowCaption?: boolean | undefined;
|
|
35658
35741
|
recommendation?: string | undefined;
|
|
@@ -35803,7 +35886,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
35803
35886
|
name: string;
|
|
35804
35887
|
layout: {
|
|
35805
35888
|
type: "Column" | "Row";
|
|
35806
|
-
gap?: "
|
|
35889
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35807
35890
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35808
35891
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35809
35892
|
} & {
|
|
@@ -35825,7 +35908,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
35825
35908
|
name: string;
|
|
35826
35909
|
layout: {
|
|
35827
35910
|
type: "Column" | "Row";
|
|
35828
|
-
gap?: "
|
|
35911
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35829
35912
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35830
35913
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35831
35914
|
} & {
|
|
@@ -35858,7 +35941,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
35858
35941
|
name: string;
|
|
35859
35942
|
layout: {
|
|
35860
35943
|
type: "Column" | "Row";
|
|
35861
|
-
gap?: "
|
|
35944
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35862
35945
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35863
35946
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35864
35947
|
} & {
|
|
@@ -35897,7 +35980,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
35897
35980
|
name: string;
|
|
35898
35981
|
layout: {
|
|
35899
35982
|
type: "Column" | "Row";
|
|
35900
|
-
gap?: "
|
|
35983
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35901
35984
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35902
35985
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35903
35986
|
} & {
|
|
@@ -57539,12 +57622,12 @@ type TextDecorationValue = z.infer<typeof TextDecorationValue>;
|
|
|
57539
57622
|
declare const TextDecorationTokenData: z.ZodObject<{
|
|
57540
57623
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
57541
57624
|
} & {
|
|
57542
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
57625
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
57543
57626
|
}, "strip", z.ZodTypeAny, {
|
|
57544
|
-
value?: "
|
|
57627
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57545
57628
|
aliasTo?: string | undefined;
|
|
57546
57629
|
}, {
|
|
57547
|
-
value?: "
|
|
57630
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
57548
57631
|
aliasTo?: string | null | undefined;
|
|
57549
57632
|
}>;
|
|
57550
57633
|
type TextDecorationTokenData = z.infer<typeof TextDecorationTokenData>;
|
|
@@ -57604,12 +57687,12 @@ declare const TypographyValue: z.ZodObject<{
|
|
|
57604
57687
|
textDecoration: z.ZodObject<{
|
|
57605
57688
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
57606
57689
|
} & {
|
|
57607
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
57690
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
57608
57691
|
}, "strip", z.ZodTypeAny, {
|
|
57609
|
-
value?: "
|
|
57692
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57610
57693
|
aliasTo?: string | undefined;
|
|
57611
57694
|
}, {
|
|
57612
|
-
value?: "
|
|
57695
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
57613
57696
|
aliasTo?: string | null | undefined;
|
|
57614
57697
|
}>;
|
|
57615
57698
|
textCase: z.ZodObject<{
|
|
@@ -57756,7 +57839,7 @@ declare const TypographyValue: z.ZodObject<{
|
|
|
57756
57839
|
aliasTo?: string | undefined;
|
|
57757
57840
|
};
|
|
57758
57841
|
textDecoration: {
|
|
57759
|
-
value?: "
|
|
57842
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57760
57843
|
aliasTo?: string | undefined;
|
|
57761
57844
|
};
|
|
57762
57845
|
textCase: {
|
|
@@ -57808,7 +57891,7 @@ declare const TypographyValue: z.ZodObject<{
|
|
|
57808
57891
|
aliasTo?: string | null | undefined;
|
|
57809
57892
|
};
|
|
57810
57893
|
textDecoration: {
|
|
57811
|
-
value?: "
|
|
57894
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
57812
57895
|
aliasTo?: string | null | undefined;
|
|
57813
57896
|
};
|
|
57814
57897
|
textCase: {
|
|
@@ -57865,7 +57948,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
57865
57948
|
aliasTo?: string | undefined;
|
|
57866
57949
|
};
|
|
57867
57950
|
textDecoration: {
|
|
57868
|
-
value?: "
|
|
57951
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57869
57952
|
aliasTo?: string | undefined;
|
|
57870
57953
|
};
|
|
57871
57954
|
textCase: {
|
|
@@ -57917,7 +58000,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
57917
58000
|
aliasTo?: string | null | undefined;
|
|
57918
58001
|
};
|
|
57919
58002
|
textDecoration: {
|
|
57920
|
-
value?: "
|
|
58003
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
57921
58004
|
aliasTo?: string | null | undefined;
|
|
57922
58005
|
};
|
|
57923
58006
|
textCase: {
|
|
@@ -57969,7 +58052,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
57969
58052
|
aliasTo?: string | undefined;
|
|
57970
58053
|
};
|
|
57971
58054
|
textDecoration: {
|
|
57972
|
-
value?: "
|
|
58055
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57973
58056
|
aliasTo?: string | undefined;
|
|
57974
58057
|
};
|
|
57975
58058
|
textCase: {
|
|
@@ -58021,7 +58104,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
58021
58104
|
aliasTo?: string | null | undefined;
|
|
58022
58105
|
};
|
|
58023
58106
|
textDecoration: {
|
|
58024
|
-
value?: "
|
|
58107
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
58025
58108
|
aliasTo?: string | null | undefined;
|
|
58026
58109
|
};
|
|
58027
58110
|
textCase: {
|
|
@@ -58075,7 +58158,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
58075
58158
|
aliasTo?: string | undefined;
|
|
58076
58159
|
};
|
|
58077
58160
|
textDecoration: {
|
|
58078
|
-
value?: "
|
|
58161
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
58079
58162
|
aliasTo?: string | undefined;
|
|
58080
58163
|
};
|
|
58081
58164
|
textCase: {
|
|
@@ -58130,7 +58213,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
58130
58213
|
aliasTo?: string | null | undefined;
|
|
58131
58214
|
};
|
|
58132
58215
|
textDecoration: {
|
|
58133
|
-
value?: "
|
|
58216
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
58134
58217
|
aliasTo?: string | null | undefined;
|
|
58135
58218
|
};
|
|
58136
58219
|
textCase: {
|
|
@@ -67820,24 +67903,24 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
67820
67903
|
data: z.ZodObject<{
|
|
67821
67904
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
67822
67905
|
} & {
|
|
67823
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
67906
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
67824
67907
|
}, "strip", z.ZodTypeAny, {
|
|
67825
|
-
value?: "
|
|
67908
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
67826
67909
|
aliasTo?: string | undefined;
|
|
67827
67910
|
}, {
|
|
67828
|
-
value?: "
|
|
67911
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
67829
67912
|
aliasTo?: string | null | undefined;
|
|
67830
67913
|
}>;
|
|
67831
67914
|
}, "strip", z.ZodTypeAny, {
|
|
67832
67915
|
type: "TextDecoration";
|
|
67833
67916
|
data: {
|
|
67834
|
-
value?: "
|
|
67917
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
67835
67918
|
aliasTo?: string | undefined;
|
|
67836
67919
|
};
|
|
67837
67920
|
}, {
|
|
67838
67921
|
type: "TextDecoration";
|
|
67839
67922
|
data: {
|
|
67840
|
-
value?: "
|
|
67923
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
67841
67924
|
aliasTo?: string | null | undefined;
|
|
67842
67925
|
};
|
|
67843
67926
|
}>, z.ZodObject<{
|
|
@@ -67862,7 +67945,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
67862
67945
|
aliasTo?: string | undefined;
|
|
67863
67946
|
};
|
|
67864
67947
|
textDecoration: {
|
|
67865
|
-
value?: "
|
|
67948
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
67866
67949
|
aliasTo?: string | undefined;
|
|
67867
67950
|
};
|
|
67868
67951
|
textCase: {
|
|
@@ -67914,7 +67997,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
67914
67997
|
aliasTo?: string | null | undefined;
|
|
67915
67998
|
};
|
|
67916
67999
|
textDecoration: {
|
|
67917
|
-
value?: "
|
|
68000
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
67918
68001
|
aliasTo?: string | null | undefined;
|
|
67919
68002
|
};
|
|
67920
68003
|
textCase: {
|
|
@@ -67966,7 +68049,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
67966
68049
|
aliasTo?: string | undefined;
|
|
67967
68050
|
};
|
|
67968
68051
|
textDecoration: {
|
|
67969
|
-
value?: "
|
|
68052
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
67970
68053
|
aliasTo?: string | undefined;
|
|
67971
68054
|
};
|
|
67972
68055
|
textCase: {
|
|
@@ -68018,7 +68101,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68018
68101
|
aliasTo?: string | null | undefined;
|
|
68019
68102
|
};
|
|
68020
68103
|
textDecoration: {
|
|
68021
|
-
value?: "
|
|
68104
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
68022
68105
|
aliasTo?: string | null | undefined;
|
|
68023
68106
|
};
|
|
68024
68107
|
textCase: {
|
|
@@ -68072,7 +68155,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68072
68155
|
aliasTo?: string | undefined;
|
|
68073
68156
|
};
|
|
68074
68157
|
textDecoration: {
|
|
68075
|
-
value?: "
|
|
68158
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
68076
68159
|
aliasTo?: string | undefined;
|
|
68077
68160
|
};
|
|
68078
68161
|
textCase: {
|
|
@@ -68127,7 +68210,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68127
68210
|
aliasTo?: string | null | undefined;
|
|
68128
68211
|
};
|
|
68129
68212
|
textDecoration: {
|
|
68130
|
-
value?: "
|
|
68213
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
68131
68214
|
aliasTo?: string | null | undefined;
|
|
68132
68215
|
};
|
|
68133
68216
|
textCase: {
|
|
@@ -68185,7 +68268,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68185
68268
|
aliasTo?: string | undefined;
|
|
68186
68269
|
};
|
|
68187
68270
|
textDecoration: {
|
|
68188
|
-
value?: "
|
|
68271
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
68189
68272
|
aliasTo?: string | undefined;
|
|
68190
68273
|
};
|
|
68191
68274
|
textCase: {
|
|
@@ -68243,7 +68326,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68243
68326
|
aliasTo?: string | null | undefined;
|
|
68244
68327
|
};
|
|
68245
68328
|
textDecoration: {
|
|
68246
|
-
value?: "
|
|
68329
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
68247
68330
|
aliasTo?: string | null | undefined;
|
|
68248
68331
|
};
|
|
68249
68332
|
textCase: {
|
|
@@ -70139,24 +70222,24 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70139
70222
|
data: z.ZodObject<{
|
|
70140
70223
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
70141
70224
|
} & {
|
|
70142
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
70225
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
70143
70226
|
}, "strip", z.ZodTypeAny, {
|
|
70144
|
-
value?: "
|
|
70227
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70145
70228
|
aliasTo?: string | undefined;
|
|
70146
70229
|
}, {
|
|
70147
|
-
value?: "
|
|
70230
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70148
70231
|
aliasTo?: string | null | undefined;
|
|
70149
70232
|
}>;
|
|
70150
70233
|
}, "strip", z.ZodTypeAny, {
|
|
70151
70234
|
type: "TextDecoration";
|
|
70152
70235
|
data: {
|
|
70153
|
-
value?: "
|
|
70236
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70154
70237
|
aliasTo?: string | undefined;
|
|
70155
70238
|
};
|
|
70156
70239
|
}, {
|
|
70157
70240
|
type: "TextDecoration";
|
|
70158
70241
|
data: {
|
|
70159
|
-
value?: "
|
|
70242
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70160
70243
|
aliasTo?: string | null | undefined;
|
|
70161
70244
|
};
|
|
70162
70245
|
}>, z.ZodObject<{
|
|
@@ -70181,7 +70264,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70181
70264
|
aliasTo?: string | undefined;
|
|
70182
70265
|
};
|
|
70183
70266
|
textDecoration: {
|
|
70184
|
-
value?: "
|
|
70267
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70185
70268
|
aliasTo?: string | undefined;
|
|
70186
70269
|
};
|
|
70187
70270
|
textCase: {
|
|
@@ -70233,7 +70316,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70233
70316
|
aliasTo?: string | null | undefined;
|
|
70234
70317
|
};
|
|
70235
70318
|
textDecoration: {
|
|
70236
|
-
value?: "
|
|
70319
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70237
70320
|
aliasTo?: string | null | undefined;
|
|
70238
70321
|
};
|
|
70239
70322
|
textCase: {
|
|
@@ -70285,7 +70368,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70285
70368
|
aliasTo?: string | undefined;
|
|
70286
70369
|
};
|
|
70287
70370
|
textDecoration: {
|
|
70288
|
-
value?: "
|
|
70371
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70289
70372
|
aliasTo?: string | undefined;
|
|
70290
70373
|
};
|
|
70291
70374
|
textCase: {
|
|
@@ -70337,7 +70420,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70337
70420
|
aliasTo?: string | null | undefined;
|
|
70338
70421
|
};
|
|
70339
70422
|
textDecoration: {
|
|
70340
|
-
value?: "
|
|
70423
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70341
70424
|
aliasTo?: string | null | undefined;
|
|
70342
70425
|
};
|
|
70343
70426
|
textCase: {
|
|
@@ -70391,7 +70474,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70391
70474
|
aliasTo?: string | undefined;
|
|
70392
70475
|
};
|
|
70393
70476
|
textDecoration: {
|
|
70394
|
-
value?: "
|
|
70477
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70395
70478
|
aliasTo?: string | undefined;
|
|
70396
70479
|
};
|
|
70397
70480
|
textCase: {
|
|
@@ -70446,7 +70529,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70446
70529
|
aliasTo?: string | null | undefined;
|
|
70447
70530
|
};
|
|
70448
70531
|
textDecoration: {
|
|
70449
|
-
value?: "
|
|
70532
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70450
70533
|
aliasTo?: string | null | undefined;
|
|
70451
70534
|
};
|
|
70452
70535
|
textCase: {
|
|
@@ -70504,7 +70587,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70504
70587
|
aliasTo?: string | undefined;
|
|
70505
70588
|
};
|
|
70506
70589
|
textDecoration: {
|
|
70507
|
-
value?: "
|
|
70590
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70508
70591
|
aliasTo?: string | undefined;
|
|
70509
70592
|
};
|
|
70510
70593
|
textCase: {
|
|
@@ -70562,7 +70645,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70562
70645
|
aliasTo?: string | null | undefined;
|
|
70563
70646
|
};
|
|
70564
70647
|
textDecoration: {
|
|
70565
|
-
value?: "
|
|
70648
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70566
70649
|
aliasTo?: string | null | undefined;
|
|
70567
70650
|
};
|
|
70568
70651
|
textCase: {
|
|
@@ -70931,7 +71014,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70931
71014
|
aliasTo?: string | undefined;
|
|
70932
71015
|
};
|
|
70933
71016
|
textDecoration: {
|
|
70934
|
-
value?: "
|
|
71017
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70935
71018
|
aliasTo?: string | undefined;
|
|
70936
71019
|
};
|
|
70937
71020
|
textCase: {
|
|
@@ -71041,7 +71124,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71041
71124
|
} | {
|
|
71042
71125
|
type: "TextDecoration";
|
|
71043
71126
|
data: {
|
|
71044
|
-
value?: "
|
|
71127
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
71045
71128
|
aliasTo?: string | undefined;
|
|
71046
71129
|
};
|
|
71047
71130
|
} | {
|
|
@@ -71300,7 +71383,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71300
71383
|
aliasTo?: string | null | undefined;
|
|
71301
71384
|
};
|
|
71302
71385
|
textDecoration: {
|
|
71303
|
-
value?: "
|
|
71386
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
71304
71387
|
aliasTo?: string | null | undefined;
|
|
71305
71388
|
};
|
|
71306
71389
|
textCase: {
|
|
@@ -71410,7 +71493,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71410
71493
|
} | {
|
|
71411
71494
|
type: "TextDecoration";
|
|
71412
71495
|
data: {
|
|
71413
|
-
value?: "
|
|
71496
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
71414
71497
|
aliasTo?: string | null | undefined;
|
|
71415
71498
|
};
|
|
71416
71499
|
} | {
|
|
@@ -71671,7 +71754,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71671
71754
|
aliasTo?: string | undefined;
|
|
71672
71755
|
};
|
|
71673
71756
|
textDecoration: {
|
|
71674
|
-
value?: "
|
|
71757
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
71675
71758
|
aliasTo?: string | undefined;
|
|
71676
71759
|
};
|
|
71677
71760
|
textCase: {
|
|
@@ -71781,7 +71864,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71781
71864
|
} | {
|
|
71782
71865
|
type: "TextDecoration";
|
|
71783
71866
|
data: {
|
|
71784
|
-
value?: "
|
|
71867
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
71785
71868
|
aliasTo?: string | undefined;
|
|
71786
71869
|
};
|
|
71787
71870
|
} | {
|
|
@@ -72042,7 +72125,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
72042
72125
|
aliasTo?: string | null | undefined;
|
|
72043
72126
|
};
|
|
72044
72127
|
textDecoration: {
|
|
72045
|
-
value?: "
|
|
72128
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
72046
72129
|
aliasTo?: string | null | undefined;
|
|
72047
72130
|
};
|
|
72048
72131
|
textCase: {
|
|
@@ -72152,7 +72235,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
72152
72235
|
} | {
|
|
72153
72236
|
type: "TextDecoration";
|
|
72154
72237
|
data: {
|
|
72155
|
-
value?: "
|
|
72238
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
72156
72239
|
aliasTo?: string | null | undefined;
|
|
72157
72240
|
};
|
|
72158
72241
|
} | {
|
|
@@ -73998,24 +74081,24 @@ declare const Theme: z.ZodObject<{
|
|
|
73998
74081
|
data: z.ZodObject<{
|
|
73999
74082
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
74000
74083
|
} & {
|
|
74001
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
74084
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
74002
74085
|
}, "strip", z.ZodTypeAny, {
|
|
74003
|
-
value?: "
|
|
74086
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74004
74087
|
aliasTo?: string | undefined;
|
|
74005
74088
|
}, {
|
|
74006
|
-
value?: "
|
|
74089
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74007
74090
|
aliasTo?: string | null | undefined;
|
|
74008
74091
|
}>;
|
|
74009
74092
|
}, "strip", z.ZodTypeAny, {
|
|
74010
74093
|
type: "TextDecoration";
|
|
74011
74094
|
data: {
|
|
74012
|
-
value?: "
|
|
74095
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74013
74096
|
aliasTo?: string | undefined;
|
|
74014
74097
|
};
|
|
74015
74098
|
}, {
|
|
74016
74099
|
type: "TextDecoration";
|
|
74017
74100
|
data: {
|
|
74018
|
-
value?: "
|
|
74101
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74019
74102
|
aliasTo?: string | null | undefined;
|
|
74020
74103
|
};
|
|
74021
74104
|
}>, z.ZodObject<{
|
|
@@ -74040,7 +74123,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74040
74123
|
aliasTo?: string | undefined;
|
|
74041
74124
|
};
|
|
74042
74125
|
textDecoration: {
|
|
74043
|
-
value?: "
|
|
74126
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74044
74127
|
aliasTo?: string | undefined;
|
|
74045
74128
|
};
|
|
74046
74129
|
textCase: {
|
|
@@ -74092,7 +74175,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74092
74175
|
aliasTo?: string | null | undefined;
|
|
74093
74176
|
};
|
|
74094
74177
|
textDecoration: {
|
|
74095
|
-
value?: "
|
|
74178
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74096
74179
|
aliasTo?: string | null | undefined;
|
|
74097
74180
|
};
|
|
74098
74181
|
textCase: {
|
|
@@ -74144,7 +74227,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74144
74227
|
aliasTo?: string | undefined;
|
|
74145
74228
|
};
|
|
74146
74229
|
textDecoration: {
|
|
74147
|
-
value?: "
|
|
74230
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74148
74231
|
aliasTo?: string | undefined;
|
|
74149
74232
|
};
|
|
74150
74233
|
textCase: {
|
|
@@ -74196,7 +74279,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74196
74279
|
aliasTo?: string | null | undefined;
|
|
74197
74280
|
};
|
|
74198
74281
|
textDecoration: {
|
|
74199
|
-
value?: "
|
|
74282
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74200
74283
|
aliasTo?: string | null | undefined;
|
|
74201
74284
|
};
|
|
74202
74285
|
textCase: {
|
|
@@ -74250,7 +74333,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74250
74333
|
aliasTo?: string | undefined;
|
|
74251
74334
|
};
|
|
74252
74335
|
textDecoration: {
|
|
74253
|
-
value?: "
|
|
74336
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74254
74337
|
aliasTo?: string | undefined;
|
|
74255
74338
|
};
|
|
74256
74339
|
textCase: {
|
|
@@ -74305,7 +74388,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74305
74388
|
aliasTo?: string | null | undefined;
|
|
74306
74389
|
};
|
|
74307
74390
|
textDecoration: {
|
|
74308
|
-
value?: "
|
|
74391
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74309
74392
|
aliasTo?: string | null | undefined;
|
|
74310
74393
|
};
|
|
74311
74394
|
textCase: {
|
|
@@ -74363,7 +74446,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74363
74446
|
aliasTo?: string | undefined;
|
|
74364
74447
|
};
|
|
74365
74448
|
textDecoration: {
|
|
74366
|
-
value?: "
|
|
74449
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74367
74450
|
aliasTo?: string | undefined;
|
|
74368
74451
|
};
|
|
74369
74452
|
textCase: {
|
|
@@ -74421,7 +74504,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74421
74504
|
aliasTo?: string | null | undefined;
|
|
74422
74505
|
};
|
|
74423
74506
|
textDecoration: {
|
|
74424
|
-
value?: "
|
|
74507
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74425
74508
|
aliasTo?: string | null | undefined;
|
|
74426
74509
|
};
|
|
74427
74510
|
textCase: {
|
|
@@ -74802,7 +74885,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74802
74885
|
aliasTo?: string | undefined;
|
|
74803
74886
|
};
|
|
74804
74887
|
textDecoration: {
|
|
74805
|
-
value?: "
|
|
74888
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74806
74889
|
aliasTo?: string | undefined;
|
|
74807
74890
|
};
|
|
74808
74891
|
textCase: {
|
|
@@ -74912,7 +74995,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74912
74995
|
} | {
|
|
74913
74996
|
type: "TextDecoration";
|
|
74914
74997
|
data: {
|
|
74915
|
-
value?: "
|
|
74998
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74916
74999
|
aliasTo?: string | undefined;
|
|
74917
75000
|
};
|
|
74918
75001
|
} | {
|
|
@@ -75191,7 +75274,7 @@ declare const Theme: z.ZodObject<{
|
|
|
75191
75274
|
aliasTo?: string | null | undefined;
|
|
75192
75275
|
};
|
|
75193
75276
|
textDecoration: {
|
|
75194
|
-
value?: "
|
|
75277
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
75195
75278
|
aliasTo?: string | null | undefined;
|
|
75196
75279
|
};
|
|
75197
75280
|
textCase: {
|
|
@@ -75301,7 +75384,7 @@ declare const Theme: z.ZodObject<{
|
|
|
75301
75384
|
} | {
|
|
75302
75385
|
type: "TextDecoration";
|
|
75303
75386
|
data: {
|
|
75304
|
-
value?: "
|
|
75387
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
75305
75388
|
aliasTo?: string | null | undefined;
|
|
75306
75389
|
};
|
|
75307
75390
|
} | {
|
|
@@ -77366,24 +77449,24 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77366
77449
|
data: z.ZodObject<{
|
|
77367
77450
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
77368
77451
|
} & {
|
|
77369
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
77452
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
77370
77453
|
}, "strip", z.ZodTypeAny, {
|
|
77371
|
-
value?: "
|
|
77454
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77372
77455
|
aliasTo?: string | undefined;
|
|
77373
77456
|
}, {
|
|
77374
|
-
value?: "
|
|
77457
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77375
77458
|
aliasTo?: string | null | undefined;
|
|
77376
77459
|
}>;
|
|
77377
77460
|
}, "strip", z.ZodTypeAny, {
|
|
77378
77461
|
type: "TextDecoration";
|
|
77379
77462
|
data: {
|
|
77380
|
-
value?: "
|
|
77463
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77381
77464
|
aliasTo?: string | undefined;
|
|
77382
77465
|
};
|
|
77383
77466
|
}, {
|
|
77384
77467
|
type: "TextDecoration";
|
|
77385
77468
|
data: {
|
|
77386
|
-
value?: "
|
|
77469
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77387
77470
|
aliasTo?: string | null | undefined;
|
|
77388
77471
|
};
|
|
77389
77472
|
}>, z.ZodObject<{
|
|
@@ -77408,7 +77491,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77408
77491
|
aliasTo?: string | undefined;
|
|
77409
77492
|
};
|
|
77410
77493
|
textDecoration: {
|
|
77411
|
-
value?: "
|
|
77494
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77412
77495
|
aliasTo?: string | undefined;
|
|
77413
77496
|
};
|
|
77414
77497
|
textCase: {
|
|
@@ -77460,7 +77543,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77460
77543
|
aliasTo?: string | null | undefined;
|
|
77461
77544
|
};
|
|
77462
77545
|
textDecoration: {
|
|
77463
|
-
value?: "
|
|
77546
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77464
77547
|
aliasTo?: string | null | undefined;
|
|
77465
77548
|
};
|
|
77466
77549
|
textCase: {
|
|
@@ -77512,7 +77595,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77512
77595
|
aliasTo?: string | undefined;
|
|
77513
77596
|
};
|
|
77514
77597
|
textDecoration: {
|
|
77515
|
-
value?: "
|
|
77598
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77516
77599
|
aliasTo?: string | undefined;
|
|
77517
77600
|
};
|
|
77518
77601
|
textCase: {
|
|
@@ -77564,7 +77647,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77564
77647
|
aliasTo?: string | null | undefined;
|
|
77565
77648
|
};
|
|
77566
77649
|
textDecoration: {
|
|
77567
|
-
value?: "
|
|
77650
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77568
77651
|
aliasTo?: string | null | undefined;
|
|
77569
77652
|
};
|
|
77570
77653
|
textCase: {
|
|
@@ -77618,7 +77701,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77618
77701
|
aliasTo?: string | undefined;
|
|
77619
77702
|
};
|
|
77620
77703
|
textDecoration: {
|
|
77621
|
-
value?: "
|
|
77704
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77622
77705
|
aliasTo?: string | undefined;
|
|
77623
77706
|
};
|
|
77624
77707
|
textCase: {
|
|
@@ -77673,7 +77756,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77673
77756
|
aliasTo?: string | null | undefined;
|
|
77674
77757
|
};
|
|
77675
77758
|
textDecoration: {
|
|
77676
|
-
value?: "
|
|
77759
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77677
77760
|
aliasTo?: string | null | undefined;
|
|
77678
77761
|
};
|
|
77679
77762
|
textCase: {
|
|
@@ -77731,7 +77814,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77731
77814
|
aliasTo?: string | undefined;
|
|
77732
77815
|
};
|
|
77733
77816
|
textDecoration: {
|
|
77734
|
-
value?: "
|
|
77817
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77735
77818
|
aliasTo?: string | undefined;
|
|
77736
77819
|
};
|
|
77737
77820
|
textCase: {
|
|
@@ -77789,7 +77872,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77789
77872
|
aliasTo?: string | null | undefined;
|
|
77790
77873
|
};
|
|
77791
77874
|
textDecoration: {
|
|
77792
|
-
value?: "
|
|
77875
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77793
77876
|
aliasTo?: string | null | undefined;
|
|
77794
77877
|
};
|
|
77795
77878
|
textCase: {
|
|
@@ -79589,24 +79672,24 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79589
79672
|
data: z.ZodObject<{
|
|
79590
79673
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
79591
79674
|
} & {
|
|
79592
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
79675
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
79593
79676
|
}, "strip", z.ZodTypeAny, {
|
|
79594
|
-
value?: "
|
|
79677
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79595
79678
|
aliasTo?: string | undefined;
|
|
79596
79679
|
}, {
|
|
79597
|
-
value?: "
|
|
79680
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79598
79681
|
aliasTo?: string | null | undefined;
|
|
79599
79682
|
}>;
|
|
79600
79683
|
}, "strip", z.ZodTypeAny, {
|
|
79601
79684
|
type: "TextDecoration";
|
|
79602
79685
|
data: {
|
|
79603
|
-
value?: "
|
|
79686
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79604
79687
|
aliasTo?: string | undefined;
|
|
79605
79688
|
};
|
|
79606
79689
|
}, {
|
|
79607
79690
|
type: "TextDecoration";
|
|
79608
79691
|
data: {
|
|
79609
|
-
value?: "
|
|
79692
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79610
79693
|
aliasTo?: string | null | undefined;
|
|
79611
79694
|
};
|
|
79612
79695
|
}>, z.ZodObject<{
|
|
@@ -79631,7 +79714,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79631
79714
|
aliasTo?: string | undefined;
|
|
79632
79715
|
};
|
|
79633
79716
|
textDecoration: {
|
|
79634
|
-
value?: "
|
|
79717
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79635
79718
|
aliasTo?: string | undefined;
|
|
79636
79719
|
};
|
|
79637
79720
|
textCase: {
|
|
@@ -79683,7 +79766,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79683
79766
|
aliasTo?: string | null | undefined;
|
|
79684
79767
|
};
|
|
79685
79768
|
textDecoration: {
|
|
79686
|
-
value?: "
|
|
79769
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79687
79770
|
aliasTo?: string | null | undefined;
|
|
79688
79771
|
};
|
|
79689
79772
|
textCase: {
|
|
@@ -79735,7 +79818,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79735
79818
|
aliasTo?: string | undefined;
|
|
79736
79819
|
};
|
|
79737
79820
|
textDecoration: {
|
|
79738
|
-
value?: "
|
|
79821
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79739
79822
|
aliasTo?: string | undefined;
|
|
79740
79823
|
};
|
|
79741
79824
|
textCase: {
|
|
@@ -79787,7 +79870,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79787
79870
|
aliasTo?: string | null | undefined;
|
|
79788
79871
|
};
|
|
79789
79872
|
textDecoration: {
|
|
79790
|
-
value?: "
|
|
79873
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79791
79874
|
aliasTo?: string | null | undefined;
|
|
79792
79875
|
};
|
|
79793
79876
|
textCase: {
|
|
@@ -79841,7 +79924,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79841
79924
|
aliasTo?: string | undefined;
|
|
79842
79925
|
};
|
|
79843
79926
|
textDecoration: {
|
|
79844
|
-
value?: "
|
|
79927
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79845
79928
|
aliasTo?: string | undefined;
|
|
79846
79929
|
};
|
|
79847
79930
|
textCase: {
|
|
@@ -79896,7 +79979,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79896
79979
|
aliasTo?: string | null | undefined;
|
|
79897
79980
|
};
|
|
79898
79981
|
textDecoration: {
|
|
79899
|
-
value?: "
|
|
79982
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79900
79983
|
aliasTo?: string | null | undefined;
|
|
79901
79984
|
};
|
|
79902
79985
|
textCase: {
|
|
@@ -79954,7 +80037,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79954
80037
|
aliasTo?: string | undefined;
|
|
79955
80038
|
};
|
|
79956
80039
|
textDecoration: {
|
|
79957
|
-
value?: "
|
|
80040
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79958
80041
|
aliasTo?: string | undefined;
|
|
79959
80042
|
};
|
|
79960
80043
|
textCase: {
|
|
@@ -80012,7 +80095,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
80012
80095
|
aliasTo?: string | null | undefined;
|
|
80013
80096
|
};
|
|
80014
80097
|
textDecoration: {
|
|
80015
|
-
value?: "
|
|
80098
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
80016
80099
|
aliasTo?: string | null | undefined;
|
|
80017
80100
|
};
|
|
80018
80101
|
textCase: {
|
|
@@ -81934,24 +82017,24 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
81934
82017
|
data: z.ZodObject<{
|
|
81935
82018
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
81936
82019
|
} & {
|
|
81937
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
82020
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
81938
82021
|
}, "strip", z.ZodTypeAny, {
|
|
81939
|
-
value?: "
|
|
82022
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
81940
82023
|
aliasTo?: string | undefined;
|
|
81941
82024
|
}, {
|
|
81942
|
-
value?: "
|
|
82025
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
81943
82026
|
aliasTo?: string | null | undefined;
|
|
81944
82027
|
}>;
|
|
81945
82028
|
}, "strip", z.ZodTypeAny, {
|
|
81946
82029
|
type: "TextDecoration";
|
|
81947
82030
|
data: {
|
|
81948
|
-
value?: "
|
|
82031
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
81949
82032
|
aliasTo?: string | undefined;
|
|
81950
82033
|
};
|
|
81951
82034
|
}, {
|
|
81952
82035
|
type: "TextDecoration";
|
|
81953
82036
|
data: {
|
|
81954
|
-
value?: "
|
|
82037
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
81955
82038
|
aliasTo?: string | null | undefined;
|
|
81956
82039
|
};
|
|
81957
82040
|
}>, z.ZodObject<{
|
|
@@ -81976,7 +82059,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
81976
82059
|
aliasTo?: string | undefined;
|
|
81977
82060
|
};
|
|
81978
82061
|
textDecoration: {
|
|
81979
|
-
value?: "
|
|
82062
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
81980
82063
|
aliasTo?: string | undefined;
|
|
81981
82064
|
};
|
|
81982
82065
|
textCase: {
|
|
@@ -82028,7 +82111,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82028
82111
|
aliasTo?: string | null | undefined;
|
|
82029
82112
|
};
|
|
82030
82113
|
textDecoration: {
|
|
82031
|
-
value?: "
|
|
82114
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
82032
82115
|
aliasTo?: string | null | undefined;
|
|
82033
82116
|
};
|
|
82034
82117
|
textCase: {
|
|
@@ -82080,7 +82163,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82080
82163
|
aliasTo?: string | undefined;
|
|
82081
82164
|
};
|
|
82082
82165
|
textDecoration: {
|
|
82083
|
-
value?: "
|
|
82166
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
82084
82167
|
aliasTo?: string | undefined;
|
|
82085
82168
|
};
|
|
82086
82169
|
textCase: {
|
|
@@ -82132,7 +82215,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82132
82215
|
aliasTo?: string | null | undefined;
|
|
82133
82216
|
};
|
|
82134
82217
|
textDecoration: {
|
|
82135
|
-
value?: "
|
|
82218
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
82136
82219
|
aliasTo?: string | null | undefined;
|
|
82137
82220
|
};
|
|
82138
82221
|
textCase: {
|
|
@@ -82186,7 +82269,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82186
82269
|
aliasTo?: string | undefined;
|
|
82187
82270
|
};
|
|
82188
82271
|
textDecoration: {
|
|
82189
|
-
value?: "
|
|
82272
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
82190
82273
|
aliasTo?: string | undefined;
|
|
82191
82274
|
};
|
|
82192
82275
|
textCase: {
|
|
@@ -82241,7 +82324,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82241
82324
|
aliasTo?: string | null | undefined;
|
|
82242
82325
|
};
|
|
82243
82326
|
textDecoration: {
|
|
82244
|
-
value?: "
|
|
82327
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
82245
82328
|
aliasTo?: string | null | undefined;
|
|
82246
82329
|
};
|
|
82247
82330
|
textCase: {
|
|
@@ -82299,7 +82382,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82299
82382
|
aliasTo?: string | undefined;
|
|
82300
82383
|
};
|
|
82301
82384
|
textDecoration: {
|
|
82302
|
-
value?: "
|
|
82385
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
82303
82386
|
aliasTo?: string | undefined;
|
|
82304
82387
|
};
|
|
82305
82388
|
textCase: {
|
|
@@ -82357,7 +82440,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82357
82440
|
aliasTo?: string | null | undefined;
|
|
82358
82441
|
};
|
|
82359
82442
|
textDecoration: {
|
|
82360
|
-
value?: "
|
|
82443
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
82361
82444
|
aliasTo?: string | null | undefined;
|
|
82362
82445
|
};
|
|
82363
82446
|
textCase: {
|
|
@@ -90216,24 +90299,24 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90216
90299
|
data: z.ZodObject<{
|
|
90217
90300
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
90218
90301
|
} & {
|
|
90219
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
90302
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
90220
90303
|
}, "strip", z.ZodTypeAny, {
|
|
90221
|
-
value?: "
|
|
90304
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90222
90305
|
aliasTo?: string | undefined;
|
|
90223
90306
|
}, {
|
|
90224
|
-
value?: "
|
|
90307
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90225
90308
|
aliasTo?: string | null | undefined;
|
|
90226
90309
|
}>;
|
|
90227
90310
|
}, "strip", z.ZodTypeAny, {
|
|
90228
90311
|
type: "TextDecoration";
|
|
90229
90312
|
data: {
|
|
90230
|
-
value?: "
|
|
90313
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90231
90314
|
aliasTo?: string | undefined;
|
|
90232
90315
|
};
|
|
90233
90316
|
}, {
|
|
90234
90317
|
type: "TextDecoration";
|
|
90235
90318
|
data: {
|
|
90236
|
-
value?: "
|
|
90319
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90237
90320
|
aliasTo?: string | null | undefined;
|
|
90238
90321
|
};
|
|
90239
90322
|
}>, z.ZodObject<{
|
|
@@ -90258,7 +90341,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90258
90341
|
aliasTo?: string | undefined;
|
|
90259
90342
|
};
|
|
90260
90343
|
textDecoration: {
|
|
90261
|
-
value?: "
|
|
90344
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90262
90345
|
aliasTo?: string | undefined;
|
|
90263
90346
|
};
|
|
90264
90347
|
textCase: {
|
|
@@ -90310,7 +90393,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90310
90393
|
aliasTo?: string | null | undefined;
|
|
90311
90394
|
};
|
|
90312
90395
|
textDecoration: {
|
|
90313
|
-
value?: "
|
|
90396
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90314
90397
|
aliasTo?: string | null | undefined;
|
|
90315
90398
|
};
|
|
90316
90399
|
textCase: {
|
|
@@ -90362,7 +90445,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90362
90445
|
aliasTo?: string | undefined;
|
|
90363
90446
|
};
|
|
90364
90447
|
textDecoration: {
|
|
90365
|
-
value?: "
|
|
90448
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90366
90449
|
aliasTo?: string | undefined;
|
|
90367
90450
|
};
|
|
90368
90451
|
textCase: {
|
|
@@ -90414,7 +90497,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90414
90497
|
aliasTo?: string | null | undefined;
|
|
90415
90498
|
};
|
|
90416
90499
|
textDecoration: {
|
|
90417
|
-
value?: "
|
|
90500
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90418
90501
|
aliasTo?: string | null | undefined;
|
|
90419
90502
|
};
|
|
90420
90503
|
textCase: {
|
|
@@ -90468,7 +90551,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90468
90551
|
aliasTo?: string | undefined;
|
|
90469
90552
|
};
|
|
90470
90553
|
textDecoration: {
|
|
90471
|
-
value?: "
|
|
90554
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90472
90555
|
aliasTo?: string | undefined;
|
|
90473
90556
|
};
|
|
90474
90557
|
textCase: {
|
|
@@ -90523,7 +90606,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90523
90606
|
aliasTo?: string | null | undefined;
|
|
90524
90607
|
};
|
|
90525
90608
|
textDecoration: {
|
|
90526
|
-
value?: "
|
|
90609
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90527
90610
|
aliasTo?: string | null | undefined;
|
|
90528
90611
|
};
|
|
90529
90612
|
textCase: {
|
|
@@ -90581,7 +90664,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90581
90664
|
aliasTo?: string | undefined;
|
|
90582
90665
|
};
|
|
90583
90666
|
textDecoration: {
|
|
90584
|
-
value?: "
|
|
90667
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90585
90668
|
aliasTo?: string | undefined;
|
|
90586
90669
|
};
|
|
90587
90670
|
textCase: {
|
|
@@ -90639,7 +90722,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90639
90722
|
aliasTo?: string | null | undefined;
|
|
90640
90723
|
};
|
|
90641
90724
|
textDecoration: {
|
|
90642
|
-
value?: "
|
|
90725
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90643
90726
|
aliasTo?: string | null | undefined;
|
|
90644
90727
|
};
|
|
90645
90728
|
textCase: {
|
|
@@ -92937,24 +93020,24 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
92937
93020
|
data: z.ZodObject<{
|
|
92938
93021
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
92939
93022
|
} & {
|
|
92940
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
93023
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
92941
93024
|
}, "strip", z.ZodTypeAny, {
|
|
92942
|
-
value?: "
|
|
93025
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
92943
93026
|
aliasTo?: string | undefined;
|
|
92944
93027
|
}, {
|
|
92945
|
-
value?: "
|
|
93028
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
92946
93029
|
aliasTo?: string | null | undefined;
|
|
92947
93030
|
}>;
|
|
92948
93031
|
}, "strip", z.ZodTypeAny, {
|
|
92949
93032
|
type: "TextDecoration";
|
|
92950
93033
|
data: {
|
|
92951
|
-
value?: "
|
|
93034
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
92952
93035
|
aliasTo?: string | undefined;
|
|
92953
93036
|
};
|
|
92954
93037
|
}, {
|
|
92955
93038
|
type: "TextDecoration";
|
|
92956
93039
|
data: {
|
|
92957
|
-
value?: "
|
|
93040
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
92958
93041
|
aliasTo?: string | null | undefined;
|
|
92959
93042
|
};
|
|
92960
93043
|
}>, z.ZodObject<{
|
|
@@ -92979,7 +93062,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
92979
93062
|
aliasTo?: string | undefined;
|
|
92980
93063
|
};
|
|
92981
93064
|
textDecoration: {
|
|
92982
|
-
value?: "
|
|
93065
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
92983
93066
|
aliasTo?: string | undefined;
|
|
92984
93067
|
};
|
|
92985
93068
|
textCase: {
|
|
@@ -93031,7 +93114,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93031
93114
|
aliasTo?: string | null | undefined;
|
|
93032
93115
|
};
|
|
93033
93116
|
textDecoration: {
|
|
93034
|
-
value?: "
|
|
93117
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
93035
93118
|
aliasTo?: string | null | undefined;
|
|
93036
93119
|
};
|
|
93037
93120
|
textCase: {
|
|
@@ -93083,7 +93166,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93083
93166
|
aliasTo?: string | undefined;
|
|
93084
93167
|
};
|
|
93085
93168
|
textDecoration: {
|
|
93086
|
-
value?: "
|
|
93169
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93087
93170
|
aliasTo?: string | undefined;
|
|
93088
93171
|
};
|
|
93089
93172
|
textCase: {
|
|
@@ -93135,7 +93218,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93135
93218
|
aliasTo?: string | null | undefined;
|
|
93136
93219
|
};
|
|
93137
93220
|
textDecoration: {
|
|
93138
|
-
value?: "
|
|
93221
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
93139
93222
|
aliasTo?: string | null | undefined;
|
|
93140
93223
|
};
|
|
93141
93224
|
textCase: {
|
|
@@ -93189,7 +93272,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93189
93272
|
aliasTo?: string | undefined;
|
|
93190
93273
|
};
|
|
93191
93274
|
textDecoration: {
|
|
93192
|
-
value?: "
|
|
93275
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93193
93276
|
aliasTo?: string | undefined;
|
|
93194
93277
|
};
|
|
93195
93278
|
textCase: {
|
|
@@ -93244,7 +93327,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93244
93327
|
aliasTo?: string | null | undefined;
|
|
93245
93328
|
};
|
|
93246
93329
|
textDecoration: {
|
|
93247
|
-
value?: "
|
|
93330
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
93248
93331
|
aliasTo?: string | null | undefined;
|
|
93249
93332
|
};
|
|
93250
93333
|
textCase: {
|
|
@@ -93302,7 +93385,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93302
93385
|
aliasTo?: string | undefined;
|
|
93303
93386
|
};
|
|
93304
93387
|
textDecoration: {
|
|
93305
|
-
value?: "
|
|
93388
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93306
93389
|
aliasTo?: string | undefined;
|
|
93307
93390
|
};
|
|
93308
93391
|
textCase: {
|
|
@@ -93360,7 +93443,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93360
93443
|
aliasTo?: string | null | undefined;
|
|
93361
93444
|
};
|
|
93362
93445
|
textDecoration: {
|
|
93363
|
-
value?: "
|
|
93446
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
93364
93447
|
aliasTo?: string | null | undefined;
|
|
93365
93448
|
};
|
|
93366
93449
|
textCase: {
|
|
@@ -93726,7 +93809,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93726
93809
|
aliasTo?: string | undefined;
|
|
93727
93810
|
};
|
|
93728
93811
|
textDecoration: {
|
|
93729
|
-
value?: "
|
|
93812
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93730
93813
|
aliasTo?: string | undefined;
|
|
93731
93814
|
};
|
|
93732
93815
|
textCase: {
|
|
@@ -93836,7 +93919,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93836
93919
|
} | {
|
|
93837
93920
|
type: "TextDecoration";
|
|
93838
93921
|
data: {
|
|
93839
|
-
value?: "
|
|
93922
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93840
93923
|
aliasTo?: string | undefined;
|
|
93841
93924
|
};
|
|
93842
93925
|
} | {
|
|
@@ -94101,7 +94184,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94101
94184
|
aliasTo?: string | null | undefined;
|
|
94102
94185
|
};
|
|
94103
94186
|
textDecoration: {
|
|
94104
|
-
value?: "
|
|
94187
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
94105
94188
|
aliasTo?: string | null | undefined;
|
|
94106
94189
|
};
|
|
94107
94190
|
textCase: {
|
|
@@ -94211,7 +94294,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94211
94294
|
} | {
|
|
94212
94295
|
type: "TextDecoration";
|
|
94213
94296
|
data: {
|
|
94214
|
-
value?: "
|
|
94297
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
94215
94298
|
aliasTo?: string | null | undefined;
|
|
94216
94299
|
};
|
|
94217
94300
|
} | {
|
|
@@ -96035,24 +96118,24 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96035
96118
|
data: z.ZodObject<{
|
|
96036
96119
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
96037
96120
|
} & {
|
|
96038
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
96121
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
96039
96122
|
}, "strip", z.ZodTypeAny, {
|
|
96040
|
-
value?: "
|
|
96123
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96041
96124
|
aliasTo?: string | undefined;
|
|
96042
96125
|
}, {
|
|
96043
|
-
value?: "
|
|
96126
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96044
96127
|
aliasTo?: string | null | undefined;
|
|
96045
96128
|
}>;
|
|
96046
96129
|
}, "strip", z.ZodTypeAny, {
|
|
96047
96130
|
type: "TextDecoration";
|
|
96048
96131
|
data: {
|
|
96049
|
-
value?: "
|
|
96132
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96050
96133
|
aliasTo?: string | undefined;
|
|
96051
96134
|
};
|
|
96052
96135
|
}, {
|
|
96053
96136
|
type: "TextDecoration";
|
|
96054
96137
|
data: {
|
|
96055
|
-
value?: "
|
|
96138
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96056
96139
|
aliasTo?: string | null | undefined;
|
|
96057
96140
|
};
|
|
96058
96141
|
}>, z.ZodObject<{
|
|
@@ -96077,7 +96160,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96077
96160
|
aliasTo?: string | undefined;
|
|
96078
96161
|
};
|
|
96079
96162
|
textDecoration: {
|
|
96080
|
-
value?: "
|
|
96163
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96081
96164
|
aliasTo?: string | undefined;
|
|
96082
96165
|
};
|
|
96083
96166
|
textCase: {
|
|
@@ -96129,7 +96212,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96129
96212
|
aliasTo?: string | null | undefined;
|
|
96130
96213
|
};
|
|
96131
96214
|
textDecoration: {
|
|
96132
|
-
value?: "
|
|
96215
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96133
96216
|
aliasTo?: string | null | undefined;
|
|
96134
96217
|
};
|
|
96135
96218
|
textCase: {
|
|
@@ -96181,7 +96264,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96181
96264
|
aliasTo?: string | undefined;
|
|
96182
96265
|
};
|
|
96183
96266
|
textDecoration: {
|
|
96184
|
-
value?: "
|
|
96267
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96185
96268
|
aliasTo?: string | undefined;
|
|
96186
96269
|
};
|
|
96187
96270
|
textCase: {
|
|
@@ -96233,7 +96316,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96233
96316
|
aliasTo?: string | null | undefined;
|
|
96234
96317
|
};
|
|
96235
96318
|
textDecoration: {
|
|
96236
|
-
value?: "
|
|
96319
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96237
96320
|
aliasTo?: string | null | undefined;
|
|
96238
96321
|
};
|
|
96239
96322
|
textCase: {
|
|
@@ -96287,7 +96370,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96287
96370
|
aliasTo?: string | undefined;
|
|
96288
96371
|
};
|
|
96289
96372
|
textDecoration: {
|
|
96290
|
-
value?: "
|
|
96373
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96291
96374
|
aliasTo?: string | undefined;
|
|
96292
96375
|
};
|
|
96293
96376
|
textCase: {
|
|
@@ -96342,7 +96425,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96342
96425
|
aliasTo?: string | null | undefined;
|
|
96343
96426
|
};
|
|
96344
96427
|
textDecoration: {
|
|
96345
|
-
value?: "
|
|
96428
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96346
96429
|
aliasTo?: string | null | undefined;
|
|
96347
96430
|
};
|
|
96348
96431
|
textCase: {
|
|
@@ -96400,7 +96483,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96400
96483
|
aliasTo?: string | undefined;
|
|
96401
96484
|
};
|
|
96402
96485
|
textDecoration: {
|
|
96403
|
-
value?: "
|
|
96486
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96404
96487
|
aliasTo?: string | undefined;
|
|
96405
96488
|
};
|
|
96406
96489
|
textCase: {
|
|
@@ -96458,7 +96541,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96458
96541
|
aliasTo?: string | null | undefined;
|
|
96459
96542
|
};
|
|
96460
96543
|
textDecoration: {
|
|
96461
|
-
value?: "
|
|
96544
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96462
96545
|
aliasTo?: string | null | undefined;
|
|
96463
96546
|
};
|
|
96464
96547
|
textCase: {
|
|
@@ -96831,7 +96914,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96831
96914
|
aliasTo?: string | undefined;
|
|
96832
96915
|
};
|
|
96833
96916
|
textDecoration: {
|
|
96834
|
-
value?: "
|
|
96917
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96835
96918
|
aliasTo?: string | undefined;
|
|
96836
96919
|
};
|
|
96837
96920
|
textCase: {
|
|
@@ -96941,7 +97024,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96941
97024
|
} | {
|
|
96942
97025
|
type: "TextDecoration";
|
|
96943
97026
|
data: {
|
|
96944
|
-
value?: "
|
|
97027
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96945
97028
|
aliasTo?: string | undefined;
|
|
96946
97029
|
};
|
|
96947
97030
|
} | {
|
|
@@ -97218,7 +97301,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
97218
97301
|
aliasTo?: string | null | undefined;
|
|
97219
97302
|
};
|
|
97220
97303
|
textDecoration: {
|
|
97221
|
-
value?: "
|
|
97304
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
97222
97305
|
aliasTo?: string | null | undefined;
|
|
97223
97306
|
};
|
|
97224
97307
|
textCase: {
|
|
@@ -97328,7 +97411,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
97328
97411
|
} | {
|
|
97329
97412
|
type: "TextDecoration";
|
|
97330
97413
|
data: {
|
|
97331
|
-
value?: "
|
|
97414
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
97332
97415
|
aliasTo?: string | null | undefined;
|
|
97333
97416
|
};
|
|
97334
97417
|
} | {
|
|
@@ -97813,7 +97896,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
97813
97896
|
aliasTo?: string | undefined;
|
|
97814
97897
|
};
|
|
97815
97898
|
textDecoration: {
|
|
97816
|
-
value?: "
|
|
97899
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
97817
97900
|
aliasTo?: string | undefined;
|
|
97818
97901
|
};
|
|
97819
97902
|
textCase: {
|
|
@@ -97923,7 +98006,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
97923
98006
|
} | {
|
|
97924
98007
|
type: "TextDecoration";
|
|
97925
98008
|
data: {
|
|
97926
|
-
value?: "
|
|
98009
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
97927
98010
|
aliasTo?: string | undefined;
|
|
97928
98011
|
};
|
|
97929
98012
|
} | {
|
|
@@ -98280,7 +98363,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
98280
98363
|
aliasTo?: string | undefined;
|
|
98281
98364
|
};
|
|
98282
98365
|
textDecoration: {
|
|
98283
|
-
value?: "
|
|
98366
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98284
98367
|
aliasTo?: string | undefined;
|
|
98285
98368
|
};
|
|
98286
98369
|
textCase: {
|
|
@@ -98390,7 +98473,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
98390
98473
|
} | {
|
|
98391
98474
|
type: "TextDecoration";
|
|
98392
98475
|
data: {
|
|
98393
|
-
value?: "
|
|
98476
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98394
98477
|
aliasTo?: string | undefined;
|
|
98395
98478
|
};
|
|
98396
98479
|
} | {
|
|
@@ -98658,7 +98741,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
98658
98741
|
aliasTo?: string | undefined;
|
|
98659
98742
|
};
|
|
98660
98743
|
textDecoration: {
|
|
98661
|
-
value?: "
|
|
98744
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98662
98745
|
aliasTo?: string | undefined;
|
|
98663
98746
|
};
|
|
98664
98747
|
textCase: {
|
|
@@ -98768,7 +98851,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
98768
98851
|
} | {
|
|
98769
98852
|
type: "TextDecoration";
|
|
98770
98853
|
data: {
|
|
98771
|
-
value?: "
|
|
98854
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98772
98855
|
aliasTo?: string | undefined;
|
|
98773
98856
|
};
|
|
98774
98857
|
} | {
|
|
@@ -99135,7 +99218,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99135
99218
|
aliasTo?: string | null | undefined;
|
|
99136
99219
|
};
|
|
99137
99220
|
textDecoration: {
|
|
99138
|
-
value?: "
|
|
99221
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99139
99222
|
aliasTo?: string | null | undefined;
|
|
99140
99223
|
};
|
|
99141
99224
|
textCase: {
|
|
@@ -99245,7 +99328,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99245
99328
|
} | {
|
|
99246
99329
|
type: "TextDecoration";
|
|
99247
99330
|
data: {
|
|
99248
|
-
value?: "
|
|
99331
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99249
99332
|
aliasTo?: string | null | undefined;
|
|
99250
99333
|
};
|
|
99251
99334
|
} | {
|
|
@@ -99597,7 +99680,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99597
99680
|
aliasTo?: string | null | undefined;
|
|
99598
99681
|
};
|
|
99599
99682
|
textDecoration: {
|
|
99600
|
-
value?: "
|
|
99683
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99601
99684
|
aliasTo?: string | null | undefined;
|
|
99602
99685
|
};
|
|
99603
99686
|
textCase: {
|
|
@@ -99707,7 +99790,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99707
99790
|
} | {
|
|
99708
99791
|
type: "TextDecoration";
|
|
99709
99792
|
data: {
|
|
99710
|
-
value?: "
|
|
99793
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99711
99794
|
aliasTo?: string | null | undefined;
|
|
99712
99795
|
};
|
|
99713
99796
|
} | {
|
|
@@ -99975,7 +100058,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99975
100058
|
aliasTo?: string | null | undefined;
|
|
99976
100059
|
};
|
|
99977
100060
|
textDecoration: {
|
|
99978
|
-
value?: "
|
|
100061
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99979
100062
|
aliasTo?: string | null | undefined;
|
|
99980
100063
|
};
|
|
99981
100064
|
textCase: {
|
|
@@ -100085,7 +100168,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
100085
100168
|
} | {
|
|
100086
100169
|
type: "TextDecoration";
|
|
100087
100170
|
data: {
|
|
100088
|
-
value?: "
|
|
100171
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
100089
100172
|
aliasTo?: string | null | undefined;
|
|
100090
100173
|
};
|
|
100091
100174
|
} | {
|
|
@@ -101888,24 +101971,24 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101888
101971
|
data: z.ZodObject<{
|
|
101889
101972
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
101890
101973
|
} & {
|
|
101891
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
101974
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
101892
101975
|
}, "strip", z.ZodTypeAny, {
|
|
101893
|
-
value?: "
|
|
101976
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
101894
101977
|
aliasTo?: string | undefined;
|
|
101895
101978
|
}, {
|
|
101896
|
-
value?: "
|
|
101979
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
101897
101980
|
aliasTo?: string | null | undefined;
|
|
101898
101981
|
}>;
|
|
101899
101982
|
}, "strip", z.ZodTypeAny, {
|
|
101900
101983
|
type: "TextDecoration";
|
|
101901
101984
|
data: {
|
|
101902
|
-
value?: "
|
|
101985
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
101903
101986
|
aliasTo?: string | undefined;
|
|
101904
101987
|
};
|
|
101905
101988
|
}, {
|
|
101906
101989
|
type: "TextDecoration";
|
|
101907
101990
|
data: {
|
|
101908
|
-
value?: "
|
|
101991
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
101909
101992
|
aliasTo?: string | null | undefined;
|
|
101910
101993
|
};
|
|
101911
101994
|
}>, z.ZodObject<{
|
|
@@ -101930,7 +102013,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101930
102013
|
aliasTo?: string | undefined;
|
|
101931
102014
|
};
|
|
101932
102015
|
textDecoration: {
|
|
101933
|
-
value?: "
|
|
102016
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
101934
102017
|
aliasTo?: string | undefined;
|
|
101935
102018
|
};
|
|
101936
102019
|
textCase: {
|
|
@@ -101982,7 +102065,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101982
102065
|
aliasTo?: string | null | undefined;
|
|
101983
102066
|
};
|
|
101984
102067
|
textDecoration: {
|
|
101985
|
-
value?: "
|
|
102068
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
101986
102069
|
aliasTo?: string | null | undefined;
|
|
101987
102070
|
};
|
|
101988
102071
|
textCase: {
|
|
@@ -102034,7 +102117,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102034
102117
|
aliasTo?: string | undefined;
|
|
102035
102118
|
};
|
|
102036
102119
|
textDecoration: {
|
|
102037
|
-
value?: "
|
|
102120
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
102038
102121
|
aliasTo?: string | undefined;
|
|
102039
102122
|
};
|
|
102040
102123
|
textCase: {
|
|
@@ -102086,7 +102169,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102086
102169
|
aliasTo?: string | null | undefined;
|
|
102087
102170
|
};
|
|
102088
102171
|
textDecoration: {
|
|
102089
|
-
value?: "
|
|
102172
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
102090
102173
|
aliasTo?: string | null | undefined;
|
|
102091
102174
|
};
|
|
102092
102175
|
textCase: {
|
|
@@ -102140,7 +102223,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102140
102223
|
aliasTo?: string | undefined;
|
|
102141
102224
|
};
|
|
102142
102225
|
textDecoration: {
|
|
102143
|
-
value?: "
|
|
102226
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
102144
102227
|
aliasTo?: string | undefined;
|
|
102145
102228
|
};
|
|
102146
102229
|
textCase: {
|
|
@@ -102195,7 +102278,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102195
102278
|
aliasTo?: string | null | undefined;
|
|
102196
102279
|
};
|
|
102197
102280
|
textDecoration: {
|
|
102198
|
-
value?: "
|
|
102281
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
102199
102282
|
aliasTo?: string | null | undefined;
|
|
102200
102283
|
};
|
|
102201
102284
|
textCase: {
|
|
@@ -102253,7 +102336,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102253
102336
|
aliasTo?: string | undefined;
|
|
102254
102337
|
};
|
|
102255
102338
|
textDecoration: {
|
|
102256
|
-
value?: "
|
|
102339
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
102257
102340
|
aliasTo?: string | undefined;
|
|
102258
102341
|
};
|
|
102259
102342
|
textCase: {
|
|
@@ -102311,7 +102394,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102311
102394
|
aliasTo?: string | null | undefined;
|
|
102312
102395
|
};
|
|
102313
102396
|
textDecoration: {
|
|
102314
|
-
value?: "
|
|
102397
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
102315
102398
|
aliasTo?: string | null | undefined;
|
|
102316
102399
|
};
|
|
102317
102400
|
textCase: {
|
|
@@ -104948,24 +105031,24 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
104948
105031
|
data: z.ZodObject<{
|
|
104949
105032
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
104950
105033
|
} & {
|
|
104951
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
105034
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
104952
105035
|
}, "strip", z.ZodTypeAny, {
|
|
104953
|
-
value?: "
|
|
105036
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
104954
105037
|
aliasTo?: string | undefined;
|
|
104955
105038
|
}, {
|
|
104956
|
-
value?: "
|
|
105039
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
104957
105040
|
aliasTo?: string | null | undefined;
|
|
104958
105041
|
}>;
|
|
104959
105042
|
}, "strip", z.ZodTypeAny, {
|
|
104960
105043
|
type: "TextDecoration";
|
|
104961
105044
|
data: {
|
|
104962
|
-
value?: "
|
|
105045
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
104963
105046
|
aliasTo?: string | undefined;
|
|
104964
105047
|
};
|
|
104965
105048
|
}, {
|
|
104966
105049
|
type: "TextDecoration";
|
|
104967
105050
|
data: {
|
|
104968
|
-
value?: "
|
|
105051
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
104969
105052
|
aliasTo?: string | null | undefined;
|
|
104970
105053
|
};
|
|
104971
105054
|
}>, z.ZodObject<{
|
|
@@ -104990,7 +105073,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
104990
105073
|
aliasTo?: string | undefined;
|
|
104991
105074
|
};
|
|
104992
105075
|
textDecoration: {
|
|
104993
|
-
value?: "
|
|
105076
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
104994
105077
|
aliasTo?: string | undefined;
|
|
104995
105078
|
};
|
|
104996
105079
|
textCase: {
|
|
@@ -105042,7 +105125,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105042
105125
|
aliasTo?: string | null | undefined;
|
|
105043
105126
|
};
|
|
105044
105127
|
textDecoration: {
|
|
105045
|
-
value?: "
|
|
105128
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
105046
105129
|
aliasTo?: string | null | undefined;
|
|
105047
105130
|
};
|
|
105048
105131
|
textCase: {
|
|
@@ -105094,7 +105177,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105094
105177
|
aliasTo?: string | undefined;
|
|
105095
105178
|
};
|
|
105096
105179
|
textDecoration: {
|
|
105097
|
-
value?: "
|
|
105180
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105098
105181
|
aliasTo?: string | undefined;
|
|
105099
105182
|
};
|
|
105100
105183
|
textCase: {
|
|
@@ -105146,7 +105229,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105146
105229
|
aliasTo?: string | null | undefined;
|
|
105147
105230
|
};
|
|
105148
105231
|
textDecoration: {
|
|
105149
|
-
value?: "
|
|
105232
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
105150
105233
|
aliasTo?: string | null | undefined;
|
|
105151
105234
|
};
|
|
105152
105235
|
textCase: {
|
|
@@ -105200,7 +105283,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105200
105283
|
aliasTo?: string | undefined;
|
|
105201
105284
|
};
|
|
105202
105285
|
textDecoration: {
|
|
105203
|
-
value?: "
|
|
105286
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105204
105287
|
aliasTo?: string | undefined;
|
|
105205
105288
|
};
|
|
105206
105289
|
textCase: {
|
|
@@ -105255,7 +105338,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105255
105338
|
aliasTo?: string | null | undefined;
|
|
105256
105339
|
};
|
|
105257
105340
|
textDecoration: {
|
|
105258
|
-
value?: "
|
|
105341
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
105259
105342
|
aliasTo?: string | null | undefined;
|
|
105260
105343
|
};
|
|
105261
105344
|
textCase: {
|
|
@@ -105313,7 +105396,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105313
105396
|
aliasTo?: string | undefined;
|
|
105314
105397
|
};
|
|
105315
105398
|
textDecoration: {
|
|
105316
|
-
value?: "
|
|
105399
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105317
105400
|
aliasTo?: string | undefined;
|
|
105318
105401
|
};
|
|
105319
105402
|
textCase: {
|
|
@@ -105371,7 +105454,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105371
105454
|
aliasTo?: string | null | undefined;
|
|
105372
105455
|
};
|
|
105373
105456
|
textDecoration: {
|
|
105374
|
-
value?: "
|
|
105457
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
105375
105458
|
aliasTo?: string | null | undefined;
|
|
105376
105459
|
};
|
|
105377
105460
|
textCase: {
|
|
@@ -105724,7 +105807,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105724
105807
|
aliasTo?: string | undefined;
|
|
105725
105808
|
};
|
|
105726
105809
|
textDecoration: {
|
|
105727
|
-
value?: "
|
|
105810
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105728
105811
|
aliasTo?: string | undefined;
|
|
105729
105812
|
};
|
|
105730
105813
|
textCase: {
|
|
@@ -105834,7 +105917,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105834
105917
|
} | {
|
|
105835
105918
|
type: "TextDecoration";
|
|
105836
105919
|
data: {
|
|
105837
|
-
value?: "
|
|
105920
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105838
105921
|
aliasTo?: string | undefined;
|
|
105839
105922
|
};
|
|
105840
105923
|
} | {
|
|
@@ -106097,7 +106180,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106097
106180
|
aliasTo?: string | null | undefined;
|
|
106098
106181
|
};
|
|
106099
106182
|
textDecoration: {
|
|
106100
|
-
value?: "
|
|
106183
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
106101
106184
|
aliasTo?: string | null | undefined;
|
|
106102
106185
|
};
|
|
106103
106186
|
textCase: {
|
|
@@ -106207,7 +106290,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106207
106290
|
} | {
|
|
106208
106291
|
type: "TextDecoration";
|
|
106209
106292
|
data: {
|
|
106210
|
-
value?: "
|
|
106293
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
106211
106294
|
aliasTo?: string | null | undefined;
|
|
106212
106295
|
};
|
|
106213
106296
|
} | {
|
|
@@ -108013,24 +108096,24 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108013
108096
|
data: z.ZodObject<{
|
|
108014
108097
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
108015
108098
|
} & {
|
|
108016
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
108099
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
108017
108100
|
}, "strip", z.ZodTypeAny, {
|
|
108018
|
-
value?: "
|
|
108101
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108019
108102
|
aliasTo?: string | undefined;
|
|
108020
108103
|
}, {
|
|
108021
|
-
value?: "
|
|
108104
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108022
108105
|
aliasTo?: string | null | undefined;
|
|
108023
108106
|
}>;
|
|
108024
108107
|
}, "strip", z.ZodTypeAny, {
|
|
108025
108108
|
type: "TextDecoration";
|
|
108026
108109
|
data: {
|
|
108027
|
-
value?: "
|
|
108110
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108028
108111
|
aliasTo?: string | undefined;
|
|
108029
108112
|
};
|
|
108030
108113
|
}, {
|
|
108031
108114
|
type: "TextDecoration";
|
|
108032
108115
|
data: {
|
|
108033
|
-
value?: "
|
|
108116
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108034
108117
|
aliasTo?: string | null | undefined;
|
|
108035
108118
|
};
|
|
108036
108119
|
}>, z.ZodObject<{
|
|
@@ -108055,7 +108138,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108055
108138
|
aliasTo?: string | undefined;
|
|
108056
108139
|
};
|
|
108057
108140
|
textDecoration: {
|
|
108058
|
-
value?: "
|
|
108141
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108059
108142
|
aliasTo?: string | undefined;
|
|
108060
108143
|
};
|
|
108061
108144
|
textCase: {
|
|
@@ -108107,7 +108190,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108107
108190
|
aliasTo?: string | null | undefined;
|
|
108108
108191
|
};
|
|
108109
108192
|
textDecoration: {
|
|
108110
|
-
value?: "
|
|
108193
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108111
108194
|
aliasTo?: string | null | undefined;
|
|
108112
108195
|
};
|
|
108113
108196
|
textCase: {
|
|
@@ -108159,7 +108242,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108159
108242
|
aliasTo?: string | undefined;
|
|
108160
108243
|
};
|
|
108161
108244
|
textDecoration: {
|
|
108162
|
-
value?: "
|
|
108245
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108163
108246
|
aliasTo?: string | undefined;
|
|
108164
108247
|
};
|
|
108165
108248
|
textCase: {
|
|
@@ -108211,7 +108294,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108211
108294
|
aliasTo?: string | null | undefined;
|
|
108212
108295
|
};
|
|
108213
108296
|
textDecoration: {
|
|
108214
|
-
value?: "
|
|
108297
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108215
108298
|
aliasTo?: string | null | undefined;
|
|
108216
108299
|
};
|
|
108217
108300
|
textCase: {
|
|
@@ -108265,7 +108348,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108265
108348
|
aliasTo?: string | undefined;
|
|
108266
108349
|
};
|
|
108267
108350
|
textDecoration: {
|
|
108268
|
-
value?: "
|
|
108351
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108269
108352
|
aliasTo?: string | undefined;
|
|
108270
108353
|
};
|
|
108271
108354
|
textCase: {
|
|
@@ -108320,7 +108403,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108320
108403
|
aliasTo?: string | null | undefined;
|
|
108321
108404
|
};
|
|
108322
108405
|
textDecoration: {
|
|
108323
|
-
value?: "
|
|
108406
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108324
108407
|
aliasTo?: string | null | undefined;
|
|
108325
108408
|
};
|
|
108326
108409
|
textCase: {
|
|
@@ -108378,7 +108461,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108378
108461
|
aliasTo?: string | undefined;
|
|
108379
108462
|
};
|
|
108380
108463
|
textDecoration: {
|
|
108381
|
-
value?: "
|
|
108464
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108382
108465
|
aliasTo?: string | undefined;
|
|
108383
108466
|
};
|
|
108384
108467
|
textCase: {
|
|
@@ -108436,7 +108519,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108436
108519
|
aliasTo?: string | null | undefined;
|
|
108437
108520
|
};
|
|
108438
108521
|
textDecoration: {
|
|
108439
|
-
value?: "
|
|
108522
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108440
108523
|
aliasTo?: string | null | undefined;
|
|
108441
108524
|
};
|
|
108442
108525
|
textCase: {
|
|
@@ -108793,7 +108876,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108793
108876
|
aliasTo?: string | undefined;
|
|
108794
108877
|
};
|
|
108795
108878
|
textDecoration: {
|
|
108796
|
-
value?: "
|
|
108879
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108797
108880
|
aliasTo?: string | undefined;
|
|
108798
108881
|
};
|
|
108799
108882
|
textCase: {
|
|
@@ -108903,7 +108986,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108903
108986
|
} | {
|
|
108904
108987
|
type: "TextDecoration";
|
|
108905
108988
|
data: {
|
|
108906
|
-
value?: "
|
|
108989
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108907
108990
|
aliasTo?: string | undefined;
|
|
108908
108991
|
};
|
|
108909
108992
|
} | {
|
|
@@ -109173,7 +109256,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109173
109256
|
aliasTo?: string | null | undefined;
|
|
109174
109257
|
};
|
|
109175
109258
|
textDecoration: {
|
|
109176
|
-
value?: "
|
|
109259
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
109177
109260
|
aliasTo?: string | null | undefined;
|
|
109178
109261
|
};
|
|
109179
109262
|
textCase: {
|
|
@@ -109283,7 +109366,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109283
109366
|
} | {
|
|
109284
109367
|
type: "TextDecoration";
|
|
109285
109368
|
data: {
|
|
109286
|
-
value?: "
|
|
109369
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
109287
109370
|
aliasTo?: string | null | undefined;
|
|
109288
109371
|
};
|
|
109289
109372
|
} | {
|
|
@@ -109827,7 +109910,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109827
109910
|
aliasTo?: string | undefined;
|
|
109828
109911
|
};
|
|
109829
109912
|
textDecoration: {
|
|
109830
|
-
value?: "
|
|
109913
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
109831
109914
|
aliasTo?: string | undefined;
|
|
109832
109915
|
};
|
|
109833
109916
|
textCase: {
|
|
@@ -109937,7 +110020,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109937
110020
|
} | {
|
|
109938
110021
|
type: "TextDecoration";
|
|
109939
110022
|
data: {
|
|
109940
|
-
value?: "
|
|
110023
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
109941
110024
|
aliasTo?: string | undefined;
|
|
109942
110025
|
};
|
|
109943
110026
|
} | {
|
|
@@ -110280,7 +110363,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
110280
110363
|
aliasTo?: string | undefined;
|
|
110281
110364
|
};
|
|
110282
110365
|
textDecoration: {
|
|
110283
|
-
value?: "
|
|
110366
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
110284
110367
|
aliasTo?: string | undefined;
|
|
110285
110368
|
};
|
|
110286
110369
|
textCase: {
|
|
@@ -110390,7 +110473,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
110390
110473
|
} | {
|
|
110391
110474
|
type: "TextDecoration";
|
|
110392
110475
|
data: {
|
|
110393
|
-
value?: "
|
|
110476
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
110394
110477
|
aliasTo?: string | undefined;
|
|
110395
110478
|
};
|
|
110396
110479
|
} | {
|
|
@@ -110654,7 +110737,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
110654
110737
|
aliasTo?: string | undefined;
|
|
110655
110738
|
};
|
|
110656
110739
|
textDecoration: {
|
|
110657
|
-
value?: "
|
|
110740
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
110658
110741
|
aliasTo?: string | undefined;
|
|
110659
110742
|
};
|
|
110660
110743
|
textCase: {
|
|
@@ -110764,7 +110847,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
110764
110847
|
} | {
|
|
110765
110848
|
type: "TextDecoration";
|
|
110766
110849
|
data: {
|
|
110767
|
-
value?: "
|
|
110850
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
110768
110851
|
aliasTo?: string | undefined;
|
|
110769
110852
|
};
|
|
110770
110853
|
} | {
|
|
@@ -111152,7 +111235,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111152
111235
|
aliasTo?: string | null | undefined;
|
|
111153
111236
|
};
|
|
111154
111237
|
textDecoration: {
|
|
111155
|
-
value?: "
|
|
111238
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111156
111239
|
aliasTo?: string | null | undefined;
|
|
111157
111240
|
};
|
|
111158
111241
|
textCase: {
|
|
@@ -111262,7 +111345,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111262
111345
|
} | {
|
|
111263
111346
|
type: "TextDecoration";
|
|
111264
111347
|
data: {
|
|
111265
|
-
value?: "
|
|
111348
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111266
111349
|
aliasTo?: string | null | undefined;
|
|
111267
111350
|
};
|
|
111268
111351
|
} | {
|
|
@@ -111605,7 +111688,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111605
111688
|
aliasTo?: string | null | undefined;
|
|
111606
111689
|
};
|
|
111607
111690
|
textDecoration: {
|
|
111608
|
-
value?: "
|
|
111691
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111609
111692
|
aliasTo?: string | null | undefined;
|
|
111610
111693
|
};
|
|
111611
111694
|
textCase: {
|
|
@@ -111715,7 +111798,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111715
111798
|
} | {
|
|
111716
111799
|
type: "TextDecoration";
|
|
111717
111800
|
data: {
|
|
111718
|
-
value?: "
|
|
111801
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111719
111802
|
aliasTo?: string | null | undefined;
|
|
111720
111803
|
};
|
|
111721
111804
|
} | {
|
|
@@ -111979,7 +112062,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111979
112062
|
aliasTo?: string | null | undefined;
|
|
111980
112063
|
};
|
|
111981
112064
|
textDecoration: {
|
|
111982
|
-
value?: "
|
|
112065
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111983
112066
|
aliasTo?: string | null | undefined;
|
|
111984
112067
|
};
|
|
111985
112068
|
textCase: {
|
|
@@ -112089,7 +112172,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
112089
112172
|
} | {
|
|
112090
112173
|
type: "TextDecoration";
|
|
112091
112174
|
data: {
|
|
112092
|
-
value?: "
|
|
112175
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
112093
112176
|
aliasTo?: string | null | undefined;
|
|
112094
112177
|
};
|
|
112095
112178
|
} | {
|
|
@@ -115483,24 +115566,24 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115483
115566
|
data: z.ZodObject<{
|
|
115484
115567
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
115485
115568
|
} & {
|
|
115486
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
115569
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
115487
115570
|
}, "strip", z.ZodTypeAny, {
|
|
115488
|
-
value?: "
|
|
115571
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115489
115572
|
aliasTo?: string | undefined;
|
|
115490
115573
|
}, {
|
|
115491
|
-
value?: "
|
|
115574
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115492
115575
|
aliasTo?: string | null | undefined;
|
|
115493
115576
|
}>;
|
|
115494
115577
|
}, "strip", z.ZodTypeAny, {
|
|
115495
115578
|
type: "TextDecoration";
|
|
115496
115579
|
data: {
|
|
115497
|
-
value?: "
|
|
115580
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115498
115581
|
aliasTo?: string | undefined;
|
|
115499
115582
|
};
|
|
115500
115583
|
}, {
|
|
115501
115584
|
type: "TextDecoration";
|
|
115502
115585
|
data: {
|
|
115503
|
-
value?: "
|
|
115586
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115504
115587
|
aliasTo?: string | null | undefined;
|
|
115505
115588
|
};
|
|
115506
115589
|
}>, z.ZodObject<{
|
|
@@ -115525,7 +115608,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115525
115608
|
aliasTo?: string | undefined;
|
|
115526
115609
|
};
|
|
115527
115610
|
textDecoration: {
|
|
115528
|
-
value?: "
|
|
115611
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115529
115612
|
aliasTo?: string | undefined;
|
|
115530
115613
|
};
|
|
115531
115614
|
textCase: {
|
|
@@ -115577,7 +115660,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115577
115660
|
aliasTo?: string | null | undefined;
|
|
115578
115661
|
};
|
|
115579
115662
|
textDecoration: {
|
|
115580
|
-
value?: "
|
|
115663
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115581
115664
|
aliasTo?: string | null | undefined;
|
|
115582
115665
|
};
|
|
115583
115666
|
textCase: {
|
|
@@ -115629,7 +115712,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115629
115712
|
aliasTo?: string | undefined;
|
|
115630
115713
|
};
|
|
115631
115714
|
textDecoration: {
|
|
115632
|
-
value?: "
|
|
115715
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115633
115716
|
aliasTo?: string | undefined;
|
|
115634
115717
|
};
|
|
115635
115718
|
textCase: {
|
|
@@ -115681,7 +115764,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115681
115764
|
aliasTo?: string | null | undefined;
|
|
115682
115765
|
};
|
|
115683
115766
|
textDecoration: {
|
|
115684
|
-
value?: "
|
|
115767
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115685
115768
|
aliasTo?: string | null | undefined;
|
|
115686
115769
|
};
|
|
115687
115770
|
textCase: {
|
|
@@ -115735,7 +115818,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115735
115818
|
aliasTo?: string | undefined;
|
|
115736
115819
|
};
|
|
115737
115820
|
textDecoration: {
|
|
115738
|
-
value?: "
|
|
115821
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115739
115822
|
aliasTo?: string | undefined;
|
|
115740
115823
|
};
|
|
115741
115824
|
textCase: {
|
|
@@ -115790,7 +115873,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115790
115873
|
aliasTo?: string | null | undefined;
|
|
115791
115874
|
};
|
|
115792
115875
|
textDecoration: {
|
|
115793
|
-
value?: "
|
|
115876
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115794
115877
|
aliasTo?: string | null | undefined;
|
|
115795
115878
|
};
|
|
115796
115879
|
textCase: {
|
|
@@ -115848,7 +115931,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115848
115931
|
aliasTo?: string | undefined;
|
|
115849
115932
|
};
|
|
115850
115933
|
textDecoration: {
|
|
115851
|
-
value?: "
|
|
115934
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115852
115935
|
aliasTo?: string | undefined;
|
|
115853
115936
|
};
|
|
115854
115937
|
textCase: {
|
|
@@ -115906,7 +115989,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115906
115989
|
aliasTo?: string | null | undefined;
|
|
115907
115990
|
};
|
|
115908
115991
|
textDecoration: {
|
|
115909
|
-
value?: "
|
|
115992
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115910
115993
|
aliasTo?: string | null | undefined;
|
|
115911
115994
|
};
|
|
115912
115995
|
textCase: {
|
|
@@ -117726,24 +117809,24 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117726
117809
|
data: z.ZodObject<{
|
|
117727
117810
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
117728
117811
|
} & {
|
|
117729
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
117812
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
117730
117813
|
}, "strip", z.ZodTypeAny, {
|
|
117731
|
-
value?: "
|
|
117814
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117732
117815
|
aliasTo?: string | undefined;
|
|
117733
117816
|
}, {
|
|
117734
|
-
value?: "
|
|
117817
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
117735
117818
|
aliasTo?: string | null | undefined;
|
|
117736
117819
|
}>;
|
|
117737
117820
|
}, "strip", z.ZodTypeAny, {
|
|
117738
117821
|
type: "TextDecoration";
|
|
117739
117822
|
data: {
|
|
117740
|
-
value?: "
|
|
117823
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117741
117824
|
aliasTo?: string | undefined;
|
|
117742
117825
|
};
|
|
117743
117826
|
}, {
|
|
117744
117827
|
type: "TextDecoration";
|
|
117745
117828
|
data: {
|
|
117746
|
-
value?: "
|
|
117829
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
117747
117830
|
aliasTo?: string | null | undefined;
|
|
117748
117831
|
};
|
|
117749
117832
|
}>, z.ZodObject<{
|
|
@@ -117768,7 +117851,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117768
117851
|
aliasTo?: string | undefined;
|
|
117769
117852
|
};
|
|
117770
117853
|
textDecoration: {
|
|
117771
|
-
value?: "
|
|
117854
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117772
117855
|
aliasTo?: string | undefined;
|
|
117773
117856
|
};
|
|
117774
117857
|
textCase: {
|
|
@@ -117820,7 +117903,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117820
117903
|
aliasTo?: string | null | undefined;
|
|
117821
117904
|
};
|
|
117822
117905
|
textDecoration: {
|
|
117823
|
-
value?: "
|
|
117906
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
117824
117907
|
aliasTo?: string | null | undefined;
|
|
117825
117908
|
};
|
|
117826
117909
|
textCase: {
|
|
@@ -117872,7 +117955,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117872
117955
|
aliasTo?: string | undefined;
|
|
117873
117956
|
};
|
|
117874
117957
|
textDecoration: {
|
|
117875
|
-
value?: "
|
|
117958
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117876
117959
|
aliasTo?: string | undefined;
|
|
117877
117960
|
};
|
|
117878
117961
|
textCase: {
|
|
@@ -117924,7 +118007,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117924
118007
|
aliasTo?: string | null | undefined;
|
|
117925
118008
|
};
|
|
117926
118009
|
textDecoration: {
|
|
117927
|
-
value?: "
|
|
118010
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
117928
118011
|
aliasTo?: string | null | undefined;
|
|
117929
118012
|
};
|
|
117930
118013
|
textCase: {
|
|
@@ -117978,7 +118061,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117978
118061
|
aliasTo?: string | undefined;
|
|
117979
118062
|
};
|
|
117980
118063
|
textDecoration: {
|
|
117981
|
-
value?: "
|
|
118064
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117982
118065
|
aliasTo?: string | undefined;
|
|
117983
118066
|
};
|
|
117984
118067
|
textCase: {
|
|
@@ -118033,7 +118116,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
118033
118116
|
aliasTo?: string | null | undefined;
|
|
118034
118117
|
};
|
|
118035
118118
|
textDecoration: {
|
|
118036
|
-
value?: "
|
|
118119
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
118037
118120
|
aliasTo?: string | null | undefined;
|
|
118038
118121
|
};
|
|
118039
118122
|
textCase: {
|
|
@@ -118091,7 +118174,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
118091
118174
|
aliasTo?: string | undefined;
|
|
118092
118175
|
};
|
|
118093
118176
|
textDecoration: {
|
|
118094
|
-
value?: "
|
|
118177
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
118095
118178
|
aliasTo?: string | undefined;
|
|
118096
118179
|
};
|
|
118097
118180
|
textCase: {
|
|
@@ -118149,7 +118232,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
118149
118232
|
aliasTo?: string | null | undefined;
|
|
118150
118233
|
};
|
|
118151
118234
|
textDecoration: {
|
|
118152
|
-
value?: "
|
|
118235
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
118153
118236
|
aliasTo?: string | null | undefined;
|
|
118154
118237
|
};
|
|
118155
118238
|
textCase: {
|
|
@@ -120040,24 +120123,24 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120040
120123
|
data: z.ZodObject<{
|
|
120041
120124
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
120042
120125
|
} & {
|
|
120043
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
120126
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
120044
120127
|
}, "strip", z.ZodTypeAny, {
|
|
120045
|
-
value?: "
|
|
120128
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120046
120129
|
aliasTo?: string | undefined;
|
|
120047
120130
|
}, {
|
|
120048
|
-
value?: "
|
|
120131
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120049
120132
|
aliasTo?: string | null | undefined;
|
|
120050
120133
|
}>;
|
|
120051
120134
|
}, "strip", z.ZodTypeAny, {
|
|
120052
120135
|
type: "TextDecoration";
|
|
120053
120136
|
data: {
|
|
120054
|
-
value?: "
|
|
120137
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120055
120138
|
aliasTo?: string | undefined;
|
|
120056
120139
|
};
|
|
120057
120140
|
}, {
|
|
120058
120141
|
type: "TextDecoration";
|
|
120059
120142
|
data: {
|
|
120060
|
-
value?: "
|
|
120143
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120061
120144
|
aliasTo?: string | null | undefined;
|
|
120062
120145
|
};
|
|
120063
120146
|
}>, z.ZodObject<{
|
|
@@ -120082,7 +120165,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120082
120165
|
aliasTo?: string | undefined;
|
|
120083
120166
|
};
|
|
120084
120167
|
textDecoration: {
|
|
120085
|
-
value?: "
|
|
120168
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120086
120169
|
aliasTo?: string | undefined;
|
|
120087
120170
|
};
|
|
120088
120171
|
textCase: {
|
|
@@ -120134,7 +120217,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120134
120217
|
aliasTo?: string | null | undefined;
|
|
120135
120218
|
};
|
|
120136
120219
|
textDecoration: {
|
|
120137
|
-
value?: "
|
|
120220
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120138
120221
|
aliasTo?: string | null | undefined;
|
|
120139
120222
|
};
|
|
120140
120223
|
textCase: {
|
|
@@ -120186,7 +120269,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120186
120269
|
aliasTo?: string | undefined;
|
|
120187
120270
|
};
|
|
120188
120271
|
textDecoration: {
|
|
120189
|
-
value?: "
|
|
120272
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120190
120273
|
aliasTo?: string | undefined;
|
|
120191
120274
|
};
|
|
120192
120275
|
textCase: {
|
|
@@ -120238,7 +120321,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120238
120321
|
aliasTo?: string | null | undefined;
|
|
120239
120322
|
};
|
|
120240
120323
|
textDecoration: {
|
|
120241
|
-
value?: "
|
|
120324
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120242
120325
|
aliasTo?: string | null | undefined;
|
|
120243
120326
|
};
|
|
120244
120327
|
textCase: {
|
|
@@ -120292,7 +120375,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120292
120375
|
aliasTo?: string | undefined;
|
|
120293
120376
|
};
|
|
120294
120377
|
textDecoration: {
|
|
120295
|
-
value?: "
|
|
120378
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120296
120379
|
aliasTo?: string | undefined;
|
|
120297
120380
|
};
|
|
120298
120381
|
textCase: {
|
|
@@ -120347,7 +120430,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120347
120430
|
aliasTo?: string | null | undefined;
|
|
120348
120431
|
};
|
|
120349
120432
|
textDecoration: {
|
|
120350
|
-
value?: "
|
|
120433
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120351
120434
|
aliasTo?: string | null | undefined;
|
|
120352
120435
|
};
|
|
120353
120436
|
textCase: {
|
|
@@ -120405,7 +120488,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120405
120488
|
aliasTo?: string | undefined;
|
|
120406
120489
|
};
|
|
120407
120490
|
textDecoration: {
|
|
120408
|
-
value?: "
|
|
120491
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120409
120492
|
aliasTo?: string | undefined;
|
|
120410
120493
|
};
|
|
120411
120494
|
textCase: {
|
|
@@ -120463,7 +120546,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120463
120546
|
aliasTo?: string | null | undefined;
|
|
120464
120547
|
};
|
|
120465
120548
|
textDecoration: {
|
|
120466
|
-
value?: "
|
|
120549
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120467
120550
|
aliasTo?: string | null | undefined;
|
|
120468
120551
|
};
|
|
120469
120552
|
textCase: {
|
|
@@ -122378,24 +122461,24 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122378
122461
|
data: z.ZodObject<{
|
|
122379
122462
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
122380
122463
|
} & {
|
|
122381
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
122464
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
122382
122465
|
}, "strip", z.ZodTypeAny, {
|
|
122383
|
-
value?: "
|
|
122466
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122384
122467
|
aliasTo?: string | undefined;
|
|
122385
122468
|
}, {
|
|
122386
|
-
value?: "
|
|
122469
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122387
122470
|
aliasTo?: string | null | undefined;
|
|
122388
122471
|
}>;
|
|
122389
122472
|
}, "strip", z.ZodTypeAny, {
|
|
122390
122473
|
type: "TextDecoration";
|
|
122391
122474
|
data: {
|
|
122392
|
-
value?: "
|
|
122475
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122393
122476
|
aliasTo?: string | undefined;
|
|
122394
122477
|
};
|
|
122395
122478
|
}, {
|
|
122396
122479
|
type: "TextDecoration";
|
|
122397
122480
|
data: {
|
|
122398
|
-
value?: "
|
|
122481
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122399
122482
|
aliasTo?: string | null | undefined;
|
|
122400
122483
|
};
|
|
122401
122484
|
}>, z.ZodObject<{
|
|
@@ -122420,7 +122503,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122420
122503
|
aliasTo?: string | undefined;
|
|
122421
122504
|
};
|
|
122422
122505
|
textDecoration: {
|
|
122423
|
-
value?: "
|
|
122506
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122424
122507
|
aliasTo?: string | undefined;
|
|
122425
122508
|
};
|
|
122426
122509
|
textCase: {
|
|
@@ -122472,7 +122555,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122472
122555
|
aliasTo?: string | null | undefined;
|
|
122473
122556
|
};
|
|
122474
122557
|
textDecoration: {
|
|
122475
|
-
value?: "
|
|
122558
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122476
122559
|
aliasTo?: string | null | undefined;
|
|
122477
122560
|
};
|
|
122478
122561
|
textCase: {
|
|
@@ -122524,7 +122607,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122524
122607
|
aliasTo?: string | undefined;
|
|
122525
122608
|
};
|
|
122526
122609
|
textDecoration: {
|
|
122527
|
-
value?: "
|
|
122610
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122528
122611
|
aliasTo?: string | undefined;
|
|
122529
122612
|
};
|
|
122530
122613
|
textCase: {
|
|
@@ -122576,7 +122659,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122576
122659
|
aliasTo?: string | null | undefined;
|
|
122577
122660
|
};
|
|
122578
122661
|
textDecoration: {
|
|
122579
|
-
value?: "
|
|
122662
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122580
122663
|
aliasTo?: string | null | undefined;
|
|
122581
122664
|
};
|
|
122582
122665
|
textCase: {
|
|
@@ -122630,7 +122713,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122630
122713
|
aliasTo?: string | undefined;
|
|
122631
122714
|
};
|
|
122632
122715
|
textDecoration: {
|
|
122633
|
-
value?: "
|
|
122716
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122634
122717
|
aliasTo?: string | undefined;
|
|
122635
122718
|
};
|
|
122636
122719
|
textCase: {
|
|
@@ -122685,7 +122768,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122685
122768
|
aliasTo?: string | null | undefined;
|
|
122686
122769
|
};
|
|
122687
122770
|
textDecoration: {
|
|
122688
|
-
value?: "
|
|
122771
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122689
122772
|
aliasTo?: string | null | undefined;
|
|
122690
122773
|
};
|
|
122691
122774
|
textCase: {
|
|
@@ -122743,7 +122826,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122743
122826
|
aliasTo?: string | undefined;
|
|
122744
122827
|
};
|
|
122745
122828
|
textDecoration: {
|
|
122746
|
-
value?: "
|
|
122829
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122747
122830
|
aliasTo?: string | undefined;
|
|
122748
122831
|
};
|
|
122749
122832
|
textCase: {
|
|
@@ -122801,7 +122884,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122801
122884
|
aliasTo?: string | null | undefined;
|
|
122802
122885
|
};
|
|
122803
122886
|
textDecoration: {
|
|
122804
|
-
value?: "
|
|
122887
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122805
122888
|
aliasTo?: string | null | undefined;
|
|
122806
122889
|
};
|
|
122807
122890
|
textCase: {
|
|
@@ -123174,7 +123257,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
123174
123257
|
aliasTo?: string | undefined;
|
|
123175
123258
|
};
|
|
123176
123259
|
textDecoration: {
|
|
123177
|
-
value?: "
|
|
123260
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
123178
123261
|
aliasTo?: string | undefined;
|
|
123179
123262
|
};
|
|
123180
123263
|
textCase: {
|
|
@@ -123284,7 +123367,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
123284
123367
|
} | {
|
|
123285
123368
|
type: "TextDecoration";
|
|
123286
123369
|
data: {
|
|
123287
|
-
value?: "
|
|
123370
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
123288
123371
|
aliasTo?: string | undefined;
|
|
123289
123372
|
};
|
|
123290
123373
|
} | {
|
|
@@ -123561,7 +123644,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
123561
123644
|
aliasTo?: string | null | undefined;
|
|
123562
123645
|
};
|
|
123563
123646
|
textDecoration: {
|
|
123564
|
-
value?: "
|
|
123647
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
123565
123648
|
aliasTo?: string | null | undefined;
|
|
123566
123649
|
};
|
|
123567
123650
|
textCase: {
|
|
@@ -123671,7 +123754,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
123671
123754
|
} | {
|
|
123672
123755
|
type: "TextDecoration";
|
|
123673
123756
|
data: {
|
|
123674
|
-
value?: "
|
|
123757
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
123675
123758
|
aliasTo?: string | null | undefined;
|
|
123676
123759
|
};
|
|
123677
123760
|
} | {
|
|
@@ -125486,24 +125569,24 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125486
125569
|
data: z.ZodObject<{
|
|
125487
125570
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
125488
125571
|
} & {
|
|
125489
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
125572
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
125490
125573
|
}, "strip", z.ZodTypeAny, {
|
|
125491
|
-
value?: "
|
|
125574
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125492
125575
|
aliasTo?: string | undefined;
|
|
125493
125576
|
}, {
|
|
125494
|
-
value?: "
|
|
125577
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125495
125578
|
aliasTo?: string | null | undefined;
|
|
125496
125579
|
}>;
|
|
125497
125580
|
}, "strip", z.ZodTypeAny, {
|
|
125498
125581
|
type: "TextDecoration";
|
|
125499
125582
|
data: {
|
|
125500
|
-
value?: "
|
|
125583
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125501
125584
|
aliasTo?: string | undefined;
|
|
125502
125585
|
};
|
|
125503
125586
|
}, {
|
|
125504
125587
|
type: "TextDecoration";
|
|
125505
125588
|
data: {
|
|
125506
|
-
value?: "
|
|
125589
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125507
125590
|
aliasTo?: string | null | undefined;
|
|
125508
125591
|
};
|
|
125509
125592
|
}>, z.ZodObject<{
|
|
@@ -125528,7 +125611,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125528
125611
|
aliasTo?: string | undefined;
|
|
125529
125612
|
};
|
|
125530
125613
|
textDecoration: {
|
|
125531
|
-
value?: "
|
|
125614
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125532
125615
|
aliasTo?: string | undefined;
|
|
125533
125616
|
};
|
|
125534
125617
|
textCase: {
|
|
@@ -125580,7 +125663,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125580
125663
|
aliasTo?: string | null | undefined;
|
|
125581
125664
|
};
|
|
125582
125665
|
textDecoration: {
|
|
125583
|
-
value?: "
|
|
125666
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125584
125667
|
aliasTo?: string | null | undefined;
|
|
125585
125668
|
};
|
|
125586
125669
|
textCase: {
|
|
@@ -125632,7 +125715,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125632
125715
|
aliasTo?: string | undefined;
|
|
125633
125716
|
};
|
|
125634
125717
|
textDecoration: {
|
|
125635
|
-
value?: "
|
|
125718
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125636
125719
|
aliasTo?: string | undefined;
|
|
125637
125720
|
};
|
|
125638
125721
|
textCase: {
|
|
@@ -125684,7 +125767,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125684
125767
|
aliasTo?: string | null | undefined;
|
|
125685
125768
|
};
|
|
125686
125769
|
textDecoration: {
|
|
125687
|
-
value?: "
|
|
125770
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125688
125771
|
aliasTo?: string | null | undefined;
|
|
125689
125772
|
};
|
|
125690
125773
|
textCase: {
|
|
@@ -125738,7 +125821,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125738
125821
|
aliasTo?: string | undefined;
|
|
125739
125822
|
};
|
|
125740
125823
|
textDecoration: {
|
|
125741
|
-
value?: "
|
|
125824
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125742
125825
|
aliasTo?: string | undefined;
|
|
125743
125826
|
};
|
|
125744
125827
|
textCase: {
|
|
@@ -125793,7 +125876,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125793
125876
|
aliasTo?: string | null | undefined;
|
|
125794
125877
|
};
|
|
125795
125878
|
textDecoration: {
|
|
125796
|
-
value?: "
|
|
125879
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125797
125880
|
aliasTo?: string | null | undefined;
|
|
125798
125881
|
};
|
|
125799
125882
|
textCase: {
|
|
@@ -125851,7 +125934,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125851
125934
|
aliasTo?: string | undefined;
|
|
125852
125935
|
};
|
|
125853
125936
|
textDecoration: {
|
|
125854
|
-
value?: "
|
|
125937
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125855
125938
|
aliasTo?: string | undefined;
|
|
125856
125939
|
};
|
|
125857
125940
|
textCase: {
|
|
@@ -125909,7 +125992,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125909
125992
|
aliasTo?: string | null | undefined;
|
|
125910
125993
|
};
|
|
125911
125994
|
textDecoration: {
|
|
125912
|
-
value?: "
|
|
125995
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125913
125996
|
aliasTo?: string | null | undefined;
|
|
125914
125997
|
};
|
|
125915
125998
|
textCase: {
|
|
@@ -126266,7 +126349,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
126266
126349
|
aliasTo?: string | undefined;
|
|
126267
126350
|
};
|
|
126268
126351
|
textDecoration: {
|
|
126269
|
-
value?: "
|
|
126352
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
126270
126353
|
aliasTo?: string | undefined;
|
|
126271
126354
|
};
|
|
126272
126355
|
textCase: {
|
|
@@ -126376,7 +126459,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
126376
126459
|
} | {
|
|
126377
126460
|
type: "TextDecoration";
|
|
126378
126461
|
data: {
|
|
126379
|
-
value?: "
|
|
126462
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
126380
126463
|
aliasTo?: string | undefined;
|
|
126381
126464
|
};
|
|
126382
126465
|
} | {
|
|
@@ -126646,7 +126729,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
126646
126729
|
aliasTo?: string | null | undefined;
|
|
126647
126730
|
};
|
|
126648
126731
|
textDecoration: {
|
|
126649
|
-
value?: "
|
|
126732
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
126650
126733
|
aliasTo?: string | null | undefined;
|
|
126651
126734
|
};
|
|
126652
126735
|
textCase: {
|
|
@@ -126756,7 +126839,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
126756
126839
|
} | {
|
|
126757
126840
|
type: "TextDecoration";
|
|
126758
126841
|
data: {
|
|
126759
|
-
value?: "
|
|
126842
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
126760
126843
|
aliasTo?: string | null | undefined;
|
|
126761
126844
|
};
|
|
126762
126845
|
} | {
|
|
@@ -128547,24 +128630,24 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128547
128630
|
data: z.ZodObject<{
|
|
128548
128631
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
128549
128632
|
} & {
|
|
128550
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
128633
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
128551
128634
|
}, "strip", z.ZodTypeAny, {
|
|
128552
|
-
value?: "
|
|
128635
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128553
128636
|
aliasTo?: string | undefined;
|
|
128554
128637
|
}, {
|
|
128555
|
-
value?: "
|
|
128638
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128556
128639
|
aliasTo?: string | null | undefined;
|
|
128557
128640
|
}>;
|
|
128558
128641
|
}, "strip", z.ZodTypeAny, {
|
|
128559
128642
|
type: "TextDecoration";
|
|
128560
128643
|
data: {
|
|
128561
|
-
value?: "
|
|
128644
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128562
128645
|
aliasTo?: string | undefined;
|
|
128563
128646
|
};
|
|
128564
128647
|
}, {
|
|
128565
128648
|
type: "TextDecoration";
|
|
128566
128649
|
data: {
|
|
128567
|
-
value?: "
|
|
128650
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128568
128651
|
aliasTo?: string | null | undefined;
|
|
128569
128652
|
};
|
|
128570
128653
|
}>, z.ZodObject<{
|
|
@@ -128589,7 +128672,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128589
128672
|
aliasTo?: string | undefined;
|
|
128590
128673
|
};
|
|
128591
128674
|
textDecoration: {
|
|
128592
|
-
value?: "
|
|
128675
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128593
128676
|
aliasTo?: string | undefined;
|
|
128594
128677
|
};
|
|
128595
128678
|
textCase: {
|
|
@@ -128641,7 +128724,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128641
128724
|
aliasTo?: string | null | undefined;
|
|
128642
128725
|
};
|
|
128643
128726
|
textDecoration: {
|
|
128644
|
-
value?: "
|
|
128727
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128645
128728
|
aliasTo?: string | null | undefined;
|
|
128646
128729
|
};
|
|
128647
128730
|
textCase: {
|
|
@@ -128693,7 +128776,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128693
128776
|
aliasTo?: string | undefined;
|
|
128694
128777
|
};
|
|
128695
128778
|
textDecoration: {
|
|
128696
|
-
value?: "
|
|
128779
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128697
128780
|
aliasTo?: string | undefined;
|
|
128698
128781
|
};
|
|
128699
128782
|
textCase: {
|
|
@@ -128745,7 +128828,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128745
128828
|
aliasTo?: string | null | undefined;
|
|
128746
128829
|
};
|
|
128747
128830
|
textDecoration: {
|
|
128748
|
-
value?: "
|
|
128831
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128749
128832
|
aliasTo?: string | null | undefined;
|
|
128750
128833
|
};
|
|
128751
128834
|
textCase: {
|
|
@@ -128799,7 +128882,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128799
128882
|
aliasTo?: string | undefined;
|
|
128800
128883
|
};
|
|
128801
128884
|
textDecoration: {
|
|
128802
|
-
value?: "
|
|
128885
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128803
128886
|
aliasTo?: string | undefined;
|
|
128804
128887
|
};
|
|
128805
128888
|
textCase: {
|
|
@@ -128854,7 +128937,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128854
128937
|
aliasTo?: string | null | undefined;
|
|
128855
128938
|
};
|
|
128856
128939
|
textDecoration: {
|
|
128857
|
-
value?: "
|
|
128940
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128858
128941
|
aliasTo?: string | null | undefined;
|
|
128859
128942
|
};
|
|
128860
128943
|
textCase: {
|
|
@@ -128912,7 +128995,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128912
128995
|
aliasTo?: string | undefined;
|
|
128913
128996
|
};
|
|
128914
128997
|
textDecoration: {
|
|
128915
|
-
value?: "
|
|
128998
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128916
128999
|
aliasTo?: string | undefined;
|
|
128917
129000
|
};
|
|
128918
129001
|
textCase: {
|
|
@@ -128970,7 +129053,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128970
129053
|
aliasTo?: string | null | undefined;
|
|
128971
129054
|
};
|
|
128972
129055
|
textDecoration: {
|
|
128973
|
-
value?: "
|
|
129056
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128974
129057
|
aliasTo?: string | null | undefined;
|
|
128975
129058
|
};
|
|
128976
129059
|
textCase: {
|
|
@@ -129336,7 +129419,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
129336
129419
|
aliasTo?: string | undefined;
|
|
129337
129420
|
};
|
|
129338
129421
|
textDecoration: {
|
|
129339
|
-
value?: "
|
|
129422
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
129340
129423
|
aliasTo?: string | undefined;
|
|
129341
129424
|
};
|
|
129342
129425
|
textCase: {
|
|
@@ -129446,7 +129529,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
129446
129529
|
} | {
|
|
129447
129530
|
type: "TextDecoration";
|
|
129448
129531
|
data: {
|
|
129449
|
-
value?: "
|
|
129532
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
129450
129533
|
aliasTo?: string | undefined;
|
|
129451
129534
|
};
|
|
129452
129535
|
} | {
|
|
@@ -129711,7 +129794,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
129711
129794
|
aliasTo?: string | null | undefined;
|
|
129712
129795
|
};
|
|
129713
129796
|
textDecoration: {
|
|
129714
|
-
value?: "
|
|
129797
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
129715
129798
|
aliasTo?: string | null | undefined;
|
|
129716
129799
|
};
|
|
129717
129800
|
textCase: {
|
|
@@ -129821,7 +129904,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
129821
129904
|
} | {
|
|
129822
129905
|
type: "TextDecoration";
|
|
129823
129906
|
data: {
|
|
129824
|
-
value?: "
|
|
129907
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
129825
129908
|
aliasTo?: string | null | undefined;
|
|
129826
129909
|
};
|
|
129827
129910
|
} | {
|
|
@@ -131611,24 +131694,24 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131611
131694
|
data: z.ZodObject<{
|
|
131612
131695
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
131613
131696
|
} & {
|
|
131614
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
131697
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
131615
131698
|
}, "strip", z.ZodTypeAny, {
|
|
131616
|
-
value?: "
|
|
131699
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131617
131700
|
aliasTo?: string | undefined;
|
|
131618
131701
|
}, {
|
|
131619
|
-
value?: "
|
|
131702
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131620
131703
|
aliasTo?: string | null | undefined;
|
|
131621
131704
|
}>;
|
|
131622
131705
|
}, "strip", z.ZodTypeAny, {
|
|
131623
131706
|
type: "TextDecoration";
|
|
131624
131707
|
data: {
|
|
131625
|
-
value?: "
|
|
131708
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131626
131709
|
aliasTo?: string | undefined;
|
|
131627
131710
|
};
|
|
131628
131711
|
}, {
|
|
131629
131712
|
type: "TextDecoration";
|
|
131630
131713
|
data: {
|
|
131631
|
-
value?: "
|
|
131714
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131632
131715
|
aliasTo?: string | null | undefined;
|
|
131633
131716
|
};
|
|
131634
131717
|
}>, z.ZodObject<{
|
|
@@ -131653,7 +131736,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131653
131736
|
aliasTo?: string | undefined;
|
|
131654
131737
|
};
|
|
131655
131738
|
textDecoration: {
|
|
131656
|
-
value?: "
|
|
131739
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131657
131740
|
aliasTo?: string | undefined;
|
|
131658
131741
|
};
|
|
131659
131742
|
textCase: {
|
|
@@ -131705,7 +131788,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131705
131788
|
aliasTo?: string | null | undefined;
|
|
131706
131789
|
};
|
|
131707
131790
|
textDecoration: {
|
|
131708
|
-
value?: "
|
|
131791
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131709
131792
|
aliasTo?: string | null | undefined;
|
|
131710
131793
|
};
|
|
131711
131794
|
textCase: {
|
|
@@ -131757,7 +131840,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131757
131840
|
aliasTo?: string | undefined;
|
|
131758
131841
|
};
|
|
131759
131842
|
textDecoration: {
|
|
131760
|
-
value?: "
|
|
131843
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131761
131844
|
aliasTo?: string | undefined;
|
|
131762
131845
|
};
|
|
131763
131846
|
textCase: {
|
|
@@ -131809,7 +131892,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131809
131892
|
aliasTo?: string | null | undefined;
|
|
131810
131893
|
};
|
|
131811
131894
|
textDecoration: {
|
|
131812
|
-
value?: "
|
|
131895
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131813
131896
|
aliasTo?: string | null | undefined;
|
|
131814
131897
|
};
|
|
131815
131898
|
textCase: {
|
|
@@ -131863,7 +131946,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131863
131946
|
aliasTo?: string | undefined;
|
|
131864
131947
|
};
|
|
131865
131948
|
textDecoration: {
|
|
131866
|
-
value?: "
|
|
131949
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131867
131950
|
aliasTo?: string | undefined;
|
|
131868
131951
|
};
|
|
131869
131952
|
textCase: {
|
|
@@ -131918,7 +132001,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131918
132001
|
aliasTo?: string | null | undefined;
|
|
131919
132002
|
};
|
|
131920
132003
|
textDecoration: {
|
|
131921
|
-
value?: "
|
|
132004
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131922
132005
|
aliasTo?: string | null | undefined;
|
|
131923
132006
|
};
|
|
131924
132007
|
textCase: {
|
|
@@ -131976,7 +132059,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131976
132059
|
aliasTo?: string | undefined;
|
|
131977
132060
|
};
|
|
131978
132061
|
textDecoration: {
|
|
131979
|
-
value?: "
|
|
132062
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131980
132063
|
aliasTo?: string | undefined;
|
|
131981
132064
|
};
|
|
131982
132065
|
textCase: {
|
|
@@ -132034,7 +132117,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132034
132117
|
aliasTo?: string | null | undefined;
|
|
132035
132118
|
};
|
|
132036
132119
|
textDecoration: {
|
|
132037
|
-
value?: "
|
|
132120
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
132038
132121
|
aliasTo?: string | null | undefined;
|
|
132039
132122
|
};
|
|
132040
132123
|
textCase: {
|
|
@@ -132387,7 +132470,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132387
132470
|
aliasTo?: string | undefined;
|
|
132388
132471
|
};
|
|
132389
132472
|
textDecoration: {
|
|
132390
|
-
value?: "
|
|
132473
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
132391
132474
|
aliasTo?: string | undefined;
|
|
132392
132475
|
};
|
|
132393
132476
|
textCase: {
|
|
@@ -132497,7 +132580,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132497
132580
|
} | {
|
|
132498
132581
|
type: "TextDecoration";
|
|
132499
132582
|
data: {
|
|
132500
|
-
value?: "
|
|
132583
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
132501
132584
|
aliasTo?: string | undefined;
|
|
132502
132585
|
};
|
|
132503
132586
|
} | {
|
|
@@ -132760,7 +132843,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132760
132843
|
aliasTo?: string | null | undefined;
|
|
132761
132844
|
};
|
|
132762
132845
|
textDecoration: {
|
|
132763
|
-
value?: "
|
|
132846
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
132764
132847
|
aliasTo?: string | null | undefined;
|
|
132765
132848
|
};
|
|
132766
132849
|
textCase: {
|
|
@@ -132870,7 +132953,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132870
132953
|
} | {
|
|
132871
132954
|
type: "TextDecoration";
|
|
132872
132955
|
data: {
|
|
132873
|
-
value?: "
|
|
132956
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
132874
132957
|
aliasTo?: string | null | undefined;
|
|
132875
132958
|
};
|
|
132876
132959
|
} | {
|
|
@@ -134849,24 +134932,24 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
134849
134932
|
data: z.ZodObject<{
|
|
134850
134933
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
134851
134934
|
} & {
|
|
134852
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
134935
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
134853
134936
|
}, "strip", z.ZodTypeAny, {
|
|
134854
|
-
value?: "
|
|
134937
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
134855
134938
|
aliasTo?: string | undefined;
|
|
134856
134939
|
}, {
|
|
134857
|
-
value?: "
|
|
134940
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
134858
134941
|
aliasTo?: string | null | undefined;
|
|
134859
134942
|
}>;
|
|
134860
134943
|
}, "strip", z.ZodTypeAny, {
|
|
134861
134944
|
type: "TextDecoration";
|
|
134862
134945
|
data: {
|
|
134863
|
-
value?: "
|
|
134946
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
134864
134947
|
aliasTo?: string | undefined;
|
|
134865
134948
|
};
|
|
134866
134949
|
}, {
|
|
134867
134950
|
type: "TextDecoration";
|
|
134868
134951
|
data: {
|
|
134869
|
-
value?: "
|
|
134952
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
134870
134953
|
aliasTo?: string | null | undefined;
|
|
134871
134954
|
};
|
|
134872
134955
|
}>, z.ZodObject<{
|
|
@@ -134891,7 +134974,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
134891
134974
|
aliasTo?: string | undefined;
|
|
134892
134975
|
};
|
|
134893
134976
|
textDecoration: {
|
|
134894
|
-
value?: "
|
|
134977
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
134895
134978
|
aliasTo?: string | undefined;
|
|
134896
134979
|
};
|
|
134897
134980
|
textCase: {
|
|
@@ -134943,7 +135026,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
134943
135026
|
aliasTo?: string | null | undefined;
|
|
134944
135027
|
};
|
|
134945
135028
|
textDecoration: {
|
|
134946
|
-
value?: "
|
|
135029
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
134947
135030
|
aliasTo?: string | null | undefined;
|
|
134948
135031
|
};
|
|
134949
135032
|
textCase: {
|
|
@@ -134995,7 +135078,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
134995
135078
|
aliasTo?: string | undefined;
|
|
134996
135079
|
};
|
|
134997
135080
|
textDecoration: {
|
|
134998
|
-
value?: "
|
|
135081
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
134999
135082
|
aliasTo?: string | undefined;
|
|
135000
135083
|
};
|
|
135001
135084
|
textCase: {
|
|
@@ -135047,7 +135130,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135047
135130
|
aliasTo?: string | null | undefined;
|
|
135048
135131
|
};
|
|
135049
135132
|
textDecoration: {
|
|
135050
|
-
value?: "
|
|
135133
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
135051
135134
|
aliasTo?: string | null | undefined;
|
|
135052
135135
|
};
|
|
135053
135136
|
textCase: {
|
|
@@ -135101,7 +135184,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135101
135184
|
aliasTo?: string | undefined;
|
|
135102
135185
|
};
|
|
135103
135186
|
textDecoration: {
|
|
135104
|
-
value?: "
|
|
135187
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
135105
135188
|
aliasTo?: string | undefined;
|
|
135106
135189
|
};
|
|
135107
135190
|
textCase: {
|
|
@@ -135156,7 +135239,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135156
135239
|
aliasTo?: string | null | undefined;
|
|
135157
135240
|
};
|
|
135158
135241
|
textDecoration: {
|
|
135159
|
-
value?: "
|
|
135242
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
135160
135243
|
aliasTo?: string | null | undefined;
|
|
135161
135244
|
};
|
|
135162
135245
|
textCase: {
|
|
@@ -135214,7 +135297,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135214
135297
|
aliasTo?: string | undefined;
|
|
135215
135298
|
};
|
|
135216
135299
|
textDecoration: {
|
|
135217
|
-
value?: "
|
|
135300
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
135218
135301
|
aliasTo?: string | undefined;
|
|
135219
135302
|
};
|
|
135220
135303
|
textCase: {
|
|
@@ -135272,7 +135355,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135272
135355
|
aliasTo?: string | null | undefined;
|
|
135273
135356
|
};
|
|
135274
135357
|
textDecoration: {
|
|
135275
|
-
value?: "
|
|
135358
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
135276
135359
|
aliasTo?: string | null | undefined;
|
|
135277
135360
|
};
|
|
135278
135361
|
textCase: {
|
|
@@ -137176,24 +137259,24 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137176
137259
|
data: z.ZodObject<{
|
|
137177
137260
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
137178
137261
|
} & {
|
|
137179
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
137262
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"None" | "Strikethrough" | "Underline", z.ZodTypeDef, "None" | "Strikethrough" | "Underline">>>, "None" | "Strikethrough" | "Underline" | undefined, "None" | "Strikethrough" | "Underline" | null | undefined>;
|
|
137180
137263
|
}, "strip", z.ZodTypeAny, {
|
|
137181
|
-
value?: "
|
|
137264
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137182
137265
|
aliasTo?: string | undefined;
|
|
137183
137266
|
}, {
|
|
137184
|
-
value?: "
|
|
137267
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137185
137268
|
aliasTo?: string | null | undefined;
|
|
137186
137269
|
}>;
|
|
137187
137270
|
}, "strip", z.ZodTypeAny, {
|
|
137188
137271
|
type: "TextDecoration";
|
|
137189
137272
|
data: {
|
|
137190
|
-
value?: "
|
|
137273
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137191
137274
|
aliasTo?: string | undefined;
|
|
137192
137275
|
};
|
|
137193
137276
|
}, {
|
|
137194
137277
|
type: "TextDecoration";
|
|
137195
137278
|
data: {
|
|
137196
|
-
value?: "
|
|
137279
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137197
137280
|
aliasTo?: string | null | undefined;
|
|
137198
137281
|
};
|
|
137199
137282
|
}>, z.ZodObject<{
|
|
@@ -137218,7 +137301,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137218
137301
|
aliasTo?: string | undefined;
|
|
137219
137302
|
};
|
|
137220
137303
|
textDecoration: {
|
|
137221
|
-
value?: "
|
|
137304
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137222
137305
|
aliasTo?: string | undefined;
|
|
137223
137306
|
};
|
|
137224
137307
|
textCase: {
|
|
@@ -137270,7 +137353,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137270
137353
|
aliasTo?: string | null | undefined;
|
|
137271
137354
|
};
|
|
137272
137355
|
textDecoration: {
|
|
137273
|
-
value?: "
|
|
137356
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137274
137357
|
aliasTo?: string | null | undefined;
|
|
137275
137358
|
};
|
|
137276
137359
|
textCase: {
|
|
@@ -137322,7 +137405,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137322
137405
|
aliasTo?: string | undefined;
|
|
137323
137406
|
};
|
|
137324
137407
|
textDecoration: {
|
|
137325
|
-
value?: "
|
|
137408
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137326
137409
|
aliasTo?: string | undefined;
|
|
137327
137410
|
};
|
|
137328
137411
|
textCase: {
|
|
@@ -137374,7 +137457,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137374
137457
|
aliasTo?: string | null | undefined;
|
|
137375
137458
|
};
|
|
137376
137459
|
textDecoration: {
|
|
137377
|
-
value?: "
|
|
137460
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137378
137461
|
aliasTo?: string | null | undefined;
|
|
137379
137462
|
};
|
|
137380
137463
|
textCase: {
|
|
@@ -137428,7 +137511,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137428
137511
|
aliasTo?: string | undefined;
|
|
137429
137512
|
};
|
|
137430
137513
|
textDecoration: {
|
|
137431
|
-
value?: "
|
|
137514
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137432
137515
|
aliasTo?: string | undefined;
|
|
137433
137516
|
};
|
|
137434
137517
|
textCase: {
|
|
@@ -137483,7 +137566,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137483
137566
|
aliasTo?: string | null | undefined;
|
|
137484
137567
|
};
|
|
137485
137568
|
textDecoration: {
|
|
137486
|
-
value?: "
|
|
137569
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137487
137570
|
aliasTo?: string | null | undefined;
|
|
137488
137571
|
};
|
|
137489
137572
|
textCase: {
|
|
@@ -137541,7 +137624,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137541
137624
|
aliasTo?: string | undefined;
|
|
137542
137625
|
};
|
|
137543
137626
|
textDecoration: {
|
|
137544
|
-
value?: "
|
|
137627
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137545
137628
|
aliasTo?: string | undefined;
|
|
137546
137629
|
};
|
|
137547
137630
|
textCase: {
|
|
@@ -137599,7 +137682,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137599
137682
|
aliasTo?: string | null | undefined;
|
|
137600
137683
|
};
|
|
137601
137684
|
textDecoration: {
|
|
137602
|
-
value?: "
|
|
137685
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137603
137686
|
aliasTo?: string | null | undefined;
|
|
137604
137687
|
};
|
|
137605
137688
|
textCase: {
|
|
@@ -138552,18 +138635,18 @@ declare const WorkspaceInvitation: z.ZodObject<{
|
|
|
138552
138635
|
email: string;
|
|
138553
138636
|
id: string;
|
|
138554
138637
|
createdAt: Date;
|
|
138638
|
+
seatType: "Full" | "Builder" | "None";
|
|
138555
138639
|
workspaceId: string;
|
|
138556
138640
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138557
|
-
seatType: "None" | "Full" | "Builder";
|
|
138558
138641
|
invitedBy: string;
|
|
138559
138642
|
resentAt?: Date | null | undefined;
|
|
138560
138643
|
}, {
|
|
138561
138644
|
email: string;
|
|
138562
138645
|
id: string;
|
|
138563
138646
|
createdAt: Date;
|
|
138647
|
+
seatType: "Full" | "Builder" | "None";
|
|
138564
138648
|
workspaceId: string;
|
|
138565
138649
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138566
|
-
seatType: "None" | "Full" | "Builder";
|
|
138567
138650
|
invitedBy: string;
|
|
138568
138651
|
resentAt?: Date | null | undefined;
|
|
138569
138652
|
}>;
|
|
@@ -138599,9 +138682,9 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
138599
138682
|
isPrimaryOwner: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
138600
138683
|
}, "strip", z.ZodTypeAny, {
|
|
138601
138684
|
id: string;
|
|
138685
|
+
seatType: "Full" | "Builder" | "None";
|
|
138602
138686
|
userId: string;
|
|
138603
138687
|
workspaceId: string;
|
|
138604
|
-
seatType: "None" | "Full" | "Builder";
|
|
138605
138688
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138606
138689
|
notificationSettings: {
|
|
138607
138690
|
liveblocksNotificationSettings: {
|
|
@@ -138611,9 +138694,9 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
138611
138694
|
isPrimaryOwner?: boolean | null | undefined;
|
|
138612
138695
|
}, {
|
|
138613
138696
|
id: string;
|
|
138697
|
+
seatType: "Full" | "Builder" | "None";
|
|
138614
138698
|
userId: string;
|
|
138615
138699
|
workspaceId: string;
|
|
138616
|
-
seatType: "None" | "Full" | "Builder";
|
|
138617
138700
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138618
138701
|
notificationSettings: {
|
|
138619
138702
|
liveblocksNotificationSettings: {
|
|
@@ -138636,26 +138719,26 @@ declare const UpdateMembershipRolesInput: z.ZodObject<{
|
|
|
138636
138719
|
}, "strip", z.ZodTypeAny, {
|
|
138637
138720
|
userId: string;
|
|
138638
138721
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138639
|
-
seatType?: "
|
|
138722
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
138640
138723
|
isPrimaryOwner?: boolean | undefined;
|
|
138641
138724
|
}, {
|
|
138642
138725
|
userId: string;
|
|
138643
138726
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138644
|
-
seatType?: "
|
|
138727
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
138645
138728
|
isPrimaryOwner?: boolean | undefined;
|
|
138646
138729
|
}>, "many">;
|
|
138647
138730
|
}, "strip", z.ZodTypeAny, {
|
|
138648
138731
|
members: {
|
|
138649
138732
|
userId: string;
|
|
138650
138733
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138651
|
-
seatType?: "
|
|
138734
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
138652
138735
|
isPrimaryOwner?: boolean | undefined;
|
|
138653
138736
|
}[];
|
|
138654
138737
|
}, {
|
|
138655
138738
|
members: {
|
|
138656
138739
|
userId: string;
|
|
138657
138740
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138658
|
-
seatType?: "
|
|
138741
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
138659
138742
|
isPrimaryOwner?: boolean | undefined;
|
|
138660
138743
|
}[];
|
|
138661
138744
|
}>;
|
|
@@ -139072,6 +139155,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139072
139155
|
} | null | undefined>;
|
|
139073
139156
|
seats: z.ZodNumber;
|
|
139074
139157
|
seatLimit: z.ZodNumber;
|
|
139158
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139159
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
139075
139160
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
139076
139161
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
139077
139162
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -139103,6 +139188,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139103
139188
|
expiryYear?: string | null | undefined;
|
|
139104
139189
|
brand?: string | null | undefined;
|
|
139105
139190
|
} | undefined;
|
|
139191
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
139192
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
139106
139193
|
builderSeatLimit?: number | undefined;
|
|
139107
139194
|
fullSeatLimit?: number | undefined;
|
|
139108
139195
|
builderSeats?: number | undefined;
|
|
@@ -139130,6 +139217,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139130
139217
|
expiryYear?: string | null | undefined;
|
|
139131
139218
|
brand?: string | null | undefined;
|
|
139132
139219
|
} | null | undefined;
|
|
139220
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
139221
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
139133
139222
|
builderSeatLimit?: number | undefined;
|
|
139134
139223
|
fullSeatLimit?: number | undefined;
|
|
139135
139224
|
builderSeats?: number | undefined;
|
|
@@ -139337,6 +139426,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139337
139426
|
expiryYear?: string | null | undefined;
|
|
139338
139427
|
brand?: string | null | undefined;
|
|
139339
139428
|
} | undefined;
|
|
139429
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
139430
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
139340
139431
|
builderSeatLimit?: number | undefined;
|
|
139341
139432
|
fullSeatLimit?: number | undefined;
|
|
139342
139433
|
builderSeats?: number | undefined;
|
|
@@ -139433,6 +139524,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139433
139524
|
expiryYear?: string | null | undefined;
|
|
139434
139525
|
brand?: string | null | undefined;
|
|
139435
139526
|
} | null | undefined;
|
|
139527
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
139528
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
139436
139529
|
builderSeatLimit?: number | undefined;
|
|
139437
139530
|
fullSeatLimit?: number | undefined;
|
|
139438
139531
|
builderSeats?: number | undefined;
|
|
@@ -139636,6 +139729,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139636
139729
|
} | null | undefined>;
|
|
139637
139730
|
seats: z.ZodNumber;
|
|
139638
139731
|
seatLimit: z.ZodNumber;
|
|
139732
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139733
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
139639
139734
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
139640
139735
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
139641
139736
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -139667,6 +139762,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139667
139762
|
expiryYear?: string | null | undefined;
|
|
139668
139763
|
brand?: string | null | undefined;
|
|
139669
139764
|
} | undefined;
|
|
139765
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
139766
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
139670
139767
|
builderSeatLimit?: number | undefined;
|
|
139671
139768
|
fullSeatLimit?: number | undefined;
|
|
139672
139769
|
builderSeats?: number | undefined;
|
|
@@ -139694,6 +139791,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139694
139791
|
expiryYear?: string | null | undefined;
|
|
139695
139792
|
brand?: string | null | undefined;
|
|
139696
139793
|
} | null | undefined;
|
|
139794
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
139795
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
139697
139796
|
builderSeatLimit?: number | undefined;
|
|
139698
139797
|
fullSeatLimit?: number | undefined;
|
|
139699
139798
|
builderSeats?: number | undefined;
|
|
@@ -139901,6 +140000,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139901
140000
|
expiryYear?: string | null | undefined;
|
|
139902
140001
|
brand?: string | null | undefined;
|
|
139903
140002
|
} | undefined;
|
|
140003
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
140004
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
139904
140005
|
builderSeatLimit?: number | undefined;
|
|
139905
140006
|
fullSeatLimit?: number | undefined;
|
|
139906
140007
|
builderSeats?: number | undefined;
|
|
@@ -139997,6 +140098,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139997
140098
|
expiryYear?: string | null | undefined;
|
|
139998
140099
|
brand?: string | null | undefined;
|
|
139999
140100
|
} | null | undefined;
|
|
140101
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
140102
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
140000
140103
|
builderSeatLimit?: number | undefined;
|
|
140001
140104
|
fullSeatLimit?: number | undefined;
|
|
140002
140105
|
builderSeats?: number | undefined;
|
|
@@ -140171,6 +140274,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
140171
140274
|
expiryYear?: string | null | undefined;
|
|
140172
140275
|
brand?: string | null | undefined;
|
|
140173
140276
|
} | undefined;
|
|
140277
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
140278
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
140174
140279
|
builderSeatLimit?: number | undefined;
|
|
140175
140280
|
fullSeatLimit?: number | undefined;
|
|
140176
140281
|
builderSeats?: number | undefined;
|
|
@@ -140292,6 +140397,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
140292
140397
|
expiryYear?: string | null | undefined;
|
|
140293
140398
|
brand?: string | null | undefined;
|
|
140294
140399
|
} | null | undefined;
|
|
140400
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
140401
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
140295
140402
|
builderSeatLimit?: number | undefined;
|
|
140296
140403
|
fullSeatLimit?: number | undefined;
|
|
140297
140404
|
builderSeats?: number | undefined;
|
|
@@ -141786,7 +141893,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141786
141893
|
aliasTo?: string | undefined;
|
|
141787
141894
|
};
|
|
141788
141895
|
textDecoration: {
|
|
141789
|
-
value?: "
|
|
141896
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
141790
141897
|
aliasTo?: string | undefined;
|
|
141791
141898
|
};
|
|
141792
141899
|
textCase: {
|
|
@@ -141838,7 +141945,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141838
141945
|
aliasTo?: string | null | undefined;
|
|
141839
141946
|
};
|
|
141840
141947
|
textDecoration: {
|
|
141841
|
-
value?: "
|
|
141948
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
141842
141949
|
aliasTo?: string | null | undefined;
|
|
141843
141950
|
};
|
|
141844
141951
|
textCase: {
|
|
@@ -141890,7 +141997,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141890
141997
|
aliasTo?: string | undefined;
|
|
141891
141998
|
};
|
|
141892
141999
|
textDecoration: {
|
|
141893
|
-
value?: "
|
|
142000
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
141894
142001
|
aliasTo?: string | undefined;
|
|
141895
142002
|
};
|
|
141896
142003
|
textCase: {
|
|
@@ -141942,7 +142049,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141942
142049
|
aliasTo?: string | null | undefined;
|
|
141943
142050
|
};
|
|
141944
142051
|
textDecoration: {
|
|
141945
|
-
value?: "
|
|
142052
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
141946
142053
|
aliasTo?: string | null | undefined;
|
|
141947
142054
|
};
|
|
141948
142055
|
textCase: {
|
|
@@ -141996,7 +142103,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141996
142103
|
aliasTo?: string | undefined;
|
|
141997
142104
|
};
|
|
141998
142105
|
textDecoration: {
|
|
141999
|
-
value?: "
|
|
142106
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142000
142107
|
aliasTo?: string | undefined;
|
|
142001
142108
|
};
|
|
142002
142109
|
textCase: {
|
|
@@ -142051,7 +142158,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
142051
142158
|
aliasTo?: string | null | undefined;
|
|
142052
142159
|
};
|
|
142053
142160
|
textDecoration: {
|
|
142054
|
-
value?: "
|
|
142161
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142055
142162
|
aliasTo?: string | null | undefined;
|
|
142056
142163
|
};
|
|
142057
142164
|
textCase: {
|
|
@@ -142123,7 +142230,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
142123
142230
|
aliasTo?: string | undefined;
|
|
142124
142231
|
};
|
|
142125
142232
|
textDecoration: {
|
|
142126
|
-
value?: "
|
|
142233
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142127
142234
|
aliasTo?: string | undefined;
|
|
142128
142235
|
};
|
|
142129
142236
|
textCase: {
|
|
@@ -142224,7 +142331,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
142224
142331
|
aliasTo?: string | null | undefined;
|
|
142225
142332
|
};
|
|
142226
142333
|
textDecoration: {
|
|
142227
|
-
value?: "
|
|
142334
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142228
142335
|
aliasTo?: string | null | undefined;
|
|
142229
142336
|
};
|
|
142230
142337
|
textCase: {
|
|
@@ -142592,7 +142699,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142592
142699
|
aliasTo?: string | undefined;
|
|
142593
142700
|
};
|
|
142594
142701
|
textDecoration: {
|
|
142595
|
-
value?: "
|
|
142702
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142596
142703
|
aliasTo?: string | undefined;
|
|
142597
142704
|
};
|
|
142598
142705
|
textCase: {
|
|
@@ -142644,7 +142751,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142644
142751
|
aliasTo?: string | null | undefined;
|
|
142645
142752
|
};
|
|
142646
142753
|
textDecoration: {
|
|
142647
|
-
value?: "
|
|
142754
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142648
142755
|
aliasTo?: string | null | undefined;
|
|
142649
142756
|
};
|
|
142650
142757
|
textCase: {
|
|
@@ -142696,7 +142803,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142696
142803
|
aliasTo?: string | undefined;
|
|
142697
142804
|
};
|
|
142698
142805
|
textDecoration: {
|
|
142699
|
-
value?: "
|
|
142806
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142700
142807
|
aliasTo?: string | undefined;
|
|
142701
142808
|
};
|
|
142702
142809
|
textCase: {
|
|
@@ -142748,7 +142855,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142748
142855
|
aliasTo?: string | null | undefined;
|
|
142749
142856
|
};
|
|
142750
142857
|
textDecoration: {
|
|
142751
|
-
value?: "
|
|
142858
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142752
142859
|
aliasTo?: string | null | undefined;
|
|
142753
142860
|
};
|
|
142754
142861
|
textCase: {
|
|
@@ -142802,7 +142909,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142802
142909
|
aliasTo?: string | undefined;
|
|
142803
142910
|
};
|
|
142804
142911
|
textDecoration: {
|
|
142805
|
-
value?: "
|
|
142912
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142806
142913
|
aliasTo?: string | undefined;
|
|
142807
142914
|
};
|
|
142808
142915
|
textCase: {
|
|
@@ -142857,7 +142964,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142857
142964
|
aliasTo?: string | null | undefined;
|
|
142858
142965
|
};
|
|
142859
142966
|
textDecoration: {
|
|
142860
|
-
value?: "
|
|
142967
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142861
142968
|
aliasTo?: string | null | undefined;
|
|
142862
142969
|
};
|
|
142863
142970
|
textCase: {
|
|
@@ -142929,7 +143036,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142929
143036
|
aliasTo?: string | undefined;
|
|
142930
143037
|
};
|
|
142931
143038
|
textDecoration: {
|
|
142932
|
-
value?: "
|
|
143039
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142933
143040
|
aliasTo?: string | undefined;
|
|
142934
143041
|
};
|
|
142935
143042
|
textCase: {
|
|
@@ -143030,7 +143137,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
143030
143137
|
aliasTo?: string | null | undefined;
|
|
143031
143138
|
};
|
|
143032
143139
|
textDecoration: {
|
|
143033
|
-
value?: "
|
|
143140
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
143034
143141
|
aliasTo?: string | null | undefined;
|
|
143035
143142
|
};
|
|
143036
143143
|
textCase: {
|
|
@@ -143133,7 +143240,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
143133
143240
|
aliasTo?: string | undefined;
|
|
143134
143241
|
};
|
|
143135
143242
|
textDecoration: {
|
|
143136
|
-
value?: "
|
|
143243
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
143137
143244
|
aliasTo?: string | undefined;
|
|
143138
143245
|
};
|
|
143139
143246
|
textCase: {
|
|
@@ -143239,7 +143346,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
143239
143346
|
aliasTo?: string | null | undefined;
|
|
143240
143347
|
};
|
|
143241
143348
|
textDecoration: {
|
|
143242
|
-
value?: "
|
|
143349
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
143243
143350
|
aliasTo?: string | null | undefined;
|
|
143244
143351
|
};
|
|
143245
143352
|
textCase: {
|
|
@@ -143803,6 +143910,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143803
143910
|
} | null | undefined>;
|
|
143804
143911
|
seats: z.ZodNumber;
|
|
143805
143912
|
seatLimit: z.ZodNumber;
|
|
143913
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
143914
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
143806
143915
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
143807
143916
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
143808
143917
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -143834,6 +143943,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143834
143943
|
expiryYear?: string | null | undefined;
|
|
143835
143944
|
brand?: string | null | undefined;
|
|
143836
143945
|
} | undefined;
|
|
143946
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
143947
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
143837
143948
|
builderSeatLimit?: number | undefined;
|
|
143838
143949
|
fullSeatLimit?: number | undefined;
|
|
143839
143950
|
builderSeats?: number | undefined;
|
|
@@ -143861,6 +143972,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143861
143972
|
expiryYear?: string | null | undefined;
|
|
143862
143973
|
brand?: string | null | undefined;
|
|
143863
143974
|
} | null | undefined;
|
|
143975
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
143976
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
143864
143977
|
builderSeatLimit?: number | undefined;
|
|
143865
143978
|
fullSeatLimit?: number | undefined;
|
|
143866
143979
|
builderSeats?: number | undefined;
|
|
@@ -144068,6 +144181,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144068
144181
|
expiryYear?: string | null | undefined;
|
|
144069
144182
|
brand?: string | null | undefined;
|
|
144070
144183
|
} | undefined;
|
|
144184
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
144185
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
144071
144186
|
builderSeatLimit?: number | undefined;
|
|
144072
144187
|
fullSeatLimit?: number | undefined;
|
|
144073
144188
|
builderSeats?: number | undefined;
|
|
@@ -144164,6 +144279,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144164
144279
|
expiryYear?: string | null | undefined;
|
|
144165
144280
|
brand?: string | null | undefined;
|
|
144166
144281
|
} | null | undefined;
|
|
144282
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
144283
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
144167
144284
|
builderSeatLimit?: number | undefined;
|
|
144168
144285
|
fullSeatLimit?: number | undefined;
|
|
144169
144286
|
builderSeats?: number | undefined;
|
|
@@ -144618,6 +144735,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144618
144735
|
expiryYear?: string | null | undefined;
|
|
144619
144736
|
brand?: string | null | undefined;
|
|
144620
144737
|
} | undefined;
|
|
144738
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
144739
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
144621
144740
|
builderSeatLimit?: number | undefined;
|
|
144622
144741
|
fullSeatLimit?: number | undefined;
|
|
144623
144742
|
builderSeats?: number | undefined;
|
|
@@ -144787,6 +144906,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144787
144906
|
expiryYear?: string | null | undefined;
|
|
144788
144907
|
brand?: string | null | undefined;
|
|
144789
144908
|
} | null | undefined;
|
|
144909
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
144910
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
144790
144911
|
builderSeatLimit?: number | undefined;
|
|
144791
144912
|
fullSeatLimit?: number | undefined;
|
|
144792
144913
|
builderSeats?: number | undefined;
|
|
@@ -145085,6 +145206,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145085
145206
|
} | null | undefined>;
|
|
145086
145207
|
seats: z.ZodNumber;
|
|
145087
145208
|
seatLimit: z.ZodNumber;
|
|
145209
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
145210
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
145088
145211
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
145089
145212
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
145090
145213
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -145116,6 +145239,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145116
145239
|
expiryYear?: string | null | undefined;
|
|
145117
145240
|
brand?: string | null | undefined;
|
|
145118
145241
|
} | undefined;
|
|
145242
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
145243
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
145119
145244
|
builderSeatLimit?: number | undefined;
|
|
145120
145245
|
fullSeatLimit?: number | undefined;
|
|
145121
145246
|
builderSeats?: number | undefined;
|
|
@@ -145143,6 +145268,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145143
145268
|
expiryYear?: string | null | undefined;
|
|
145144
145269
|
brand?: string | null | undefined;
|
|
145145
145270
|
} | null | undefined;
|
|
145271
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
145272
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
145146
145273
|
builderSeatLimit?: number | undefined;
|
|
145147
145274
|
fullSeatLimit?: number | undefined;
|
|
145148
145275
|
builderSeats?: number | undefined;
|
|
@@ -145350,6 +145477,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145350
145477
|
expiryYear?: string | null | undefined;
|
|
145351
145478
|
brand?: string | null | undefined;
|
|
145352
145479
|
} | undefined;
|
|
145480
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
145481
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
145353
145482
|
builderSeatLimit?: number | undefined;
|
|
145354
145483
|
fullSeatLimit?: number | undefined;
|
|
145355
145484
|
builderSeats?: number | undefined;
|
|
@@ -145446,6 +145575,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145446
145575
|
expiryYear?: string | null | undefined;
|
|
145447
145576
|
brand?: string | null | undefined;
|
|
145448
145577
|
} | null | undefined;
|
|
145578
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
145579
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
145449
145580
|
builderSeatLimit?: number | undefined;
|
|
145450
145581
|
fullSeatLimit?: number | undefined;
|
|
145451
145582
|
builderSeats?: number | undefined;
|
|
@@ -145824,6 +145955,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145824
145955
|
expiryYear?: string | null | undefined;
|
|
145825
145956
|
brand?: string | null | undefined;
|
|
145826
145957
|
} | undefined;
|
|
145958
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
145959
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
145827
145960
|
builderSeatLimit?: number | undefined;
|
|
145828
145961
|
fullSeatLimit?: number | undefined;
|
|
145829
145962
|
builderSeats?: number | undefined;
|
|
@@ -145970,6 +146103,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145970
146103
|
expiryYear?: string | null | undefined;
|
|
145971
146104
|
brand?: string | null | undefined;
|
|
145972
146105
|
} | null | undefined;
|
|
146106
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
146107
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
145973
146108
|
builderSeatLimit?: number | undefined;
|
|
145974
146109
|
fullSeatLimit?: number | undefined;
|
|
145975
146110
|
builderSeats?: number | undefined;
|
|
@@ -146512,7 +146647,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146512
146647
|
aliasTo?: string | undefined;
|
|
146513
146648
|
};
|
|
146514
146649
|
textDecoration: {
|
|
146515
|
-
value?: "
|
|
146650
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
146516
146651
|
aliasTo?: string | undefined;
|
|
146517
146652
|
};
|
|
146518
146653
|
textCase: {
|
|
@@ -146564,7 +146699,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146564
146699
|
aliasTo?: string | null | undefined;
|
|
146565
146700
|
};
|
|
146566
146701
|
textDecoration: {
|
|
146567
|
-
value?: "
|
|
146702
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
146568
146703
|
aliasTo?: string | null | undefined;
|
|
146569
146704
|
};
|
|
146570
146705
|
textCase: {
|
|
@@ -146616,7 +146751,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146616
146751
|
aliasTo?: string | undefined;
|
|
146617
146752
|
};
|
|
146618
146753
|
textDecoration: {
|
|
146619
|
-
value?: "
|
|
146754
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
146620
146755
|
aliasTo?: string | undefined;
|
|
146621
146756
|
};
|
|
146622
146757
|
textCase: {
|
|
@@ -146668,7 +146803,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146668
146803
|
aliasTo?: string | null | undefined;
|
|
146669
146804
|
};
|
|
146670
146805
|
textDecoration: {
|
|
146671
|
-
value?: "
|
|
146806
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
146672
146807
|
aliasTo?: string | null | undefined;
|
|
146673
146808
|
};
|
|
146674
146809
|
textCase: {
|
|
@@ -146722,7 +146857,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146722
146857
|
aliasTo?: string | undefined;
|
|
146723
146858
|
};
|
|
146724
146859
|
textDecoration: {
|
|
146725
|
-
value?: "
|
|
146860
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
146726
146861
|
aliasTo?: string | undefined;
|
|
146727
146862
|
};
|
|
146728
146863
|
textCase: {
|
|
@@ -146777,7 +146912,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146777
146912
|
aliasTo?: string | null | undefined;
|
|
146778
146913
|
};
|
|
146779
146914
|
textDecoration: {
|
|
146780
|
-
value?: "
|
|
146915
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
146781
146916
|
aliasTo?: string | null | undefined;
|
|
146782
146917
|
};
|
|
146783
146918
|
textCase: {
|
|
@@ -146849,7 +146984,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146849
146984
|
aliasTo?: string | undefined;
|
|
146850
146985
|
};
|
|
146851
146986
|
textDecoration: {
|
|
146852
|
-
value?: "
|
|
146987
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
146853
146988
|
aliasTo?: string | undefined;
|
|
146854
146989
|
};
|
|
146855
146990
|
textCase: {
|
|
@@ -146950,7 +147085,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146950
147085
|
aliasTo?: string | null | undefined;
|
|
146951
147086
|
};
|
|
146952
147087
|
textDecoration: {
|
|
146953
|
-
value?: "
|
|
147088
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
146954
147089
|
aliasTo?: string | null | undefined;
|
|
146955
147090
|
};
|
|
146956
147091
|
textCase: {
|
|
@@ -147054,7 +147189,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
147054
147189
|
aliasTo?: string | undefined;
|
|
147055
147190
|
};
|
|
147056
147191
|
textDecoration: {
|
|
147057
|
-
value?: "
|
|
147192
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
147058
147193
|
aliasTo?: string | undefined;
|
|
147059
147194
|
};
|
|
147060
147195
|
textCase: {
|
|
@@ -147159,7 +147294,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
147159
147294
|
aliasTo?: string | null | undefined;
|
|
147160
147295
|
};
|
|
147161
147296
|
textDecoration: {
|
|
147162
|
-
value?: "
|
|
147297
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
147163
147298
|
aliasTo?: string | null | undefined;
|
|
147164
147299
|
};
|
|
147165
147300
|
textCase: {
|
|
@@ -150087,12 +150222,12 @@ declare const ExporterWorkspaceMembership: z.ZodObject<{
|
|
|
150087
150222
|
}, "strip", z.ZodTypeAny, {
|
|
150088
150223
|
id: string;
|
|
150089
150224
|
workspaceId: string;
|
|
150090
|
-
role: "
|
|
150225
|
+
role: "Owner" | "User" | "OwnerArchived";
|
|
150091
150226
|
exporterId: string;
|
|
150092
150227
|
}, {
|
|
150093
150228
|
id: string;
|
|
150094
150229
|
workspaceId: string;
|
|
150095
|
-
role: "
|
|
150230
|
+
role: "Owner" | "User" | "OwnerArchived";
|
|
150096
150231
|
exporterId: string;
|
|
150097
150232
|
}>;
|
|
150098
150233
|
type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
|
|
@@ -150665,6 +150800,7 @@ declare const ExporterPulsarDetails: z.ZodObject<{
|
|
|
150665
150800
|
homepage?: string | null | undefined;
|
|
150666
150801
|
organization?: string | null | undefined;
|
|
150667
150802
|
readme?: string | null | undefined;
|
|
150803
|
+
tags?: string[] | null | undefined;
|
|
150668
150804
|
iconURL?: string | null | undefined;
|
|
150669
150805
|
properties?: ({
|
|
150670
150806
|
key: string;
|
|
@@ -150738,7 +150874,6 @@ declare const ExporterPulsarDetails: z.ZodObject<{
|
|
|
150738
150874
|
})[] | null | undefined;
|
|
150739
150875
|
routingVersion?: string | null | undefined;
|
|
150740
150876
|
author?: string | null | undefined;
|
|
150741
|
-
tags?: string[] | null | undefined;
|
|
150742
150877
|
packageId?: string | null | undefined;
|
|
150743
150878
|
configurationProperties?: {
|
|
150744
150879
|
key: string;
|
|
@@ -151345,6 +151480,7 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
151345
151480
|
homepage?: string | null | undefined;
|
|
151346
151481
|
organization?: string | null | undefined;
|
|
151347
151482
|
readme?: string | null | undefined;
|
|
151483
|
+
tags?: string[] | null | undefined;
|
|
151348
151484
|
iconURL?: string | null | undefined;
|
|
151349
151485
|
properties?: ({
|
|
151350
151486
|
key: string;
|
|
@@ -151418,7 +151554,6 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
151418
151554
|
})[] | null | undefined;
|
|
151419
151555
|
routingVersion?: string | null | undefined;
|
|
151420
151556
|
author?: string | null | undefined;
|
|
151421
|
-
tags?: string[] | null | undefined;
|
|
151422
151557
|
packageId?: string | null | undefined;
|
|
151423
151558
|
configurationProperties?: {
|
|
151424
151559
|
key: string;
|
|
@@ -152034,6 +152169,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
152034
152169
|
homepage?: string | null | undefined;
|
|
152035
152170
|
organization?: string | null | undefined;
|
|
152036
152171
|
readme?: string | null | undefined;
|
|
152172
|
+
tags?: string[] | null | undefined;
|
|
152037
152173
|
iconURL?: string | null | undefined;
|
|
152038
152174
|
properties?: ({
|
|
152039
152175
|
key: string;
|
|
@@ -152107,7 +152243,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
152107
152243
|
})[] | null | undefined;
|
|
152108
152244
|
routingVersion?: string | null | undefined;
|
|
152109
152245
|
author?: string | null | undefined;
|
|
152110
|
-
tags?: string[] | null | undefined;
|
|
152111
152246
|
packageId?: string | null | undefined;
|
|
152112
152247
|
configurationProperties?: {
|
|
152113
152248
|
key: string;
|
|
@@ -152653,6 +152788,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
152653
152788
|
homepage?: string | null | undefined;
|
|
152654
152789
|
organization?: string | null | undefined;
|
|
152655
152790
|
readme?: string | null | undefined;
|
|
152791
|
+
tags?: string[] | null | undefined;
|
|
152656
152792
|
iconURL?: string | null | undefined;
|
|
152657
152793
|
properties?: ({
|
|
152658
152794
|
key: string;
|
|
@@ -152726,7 +152862,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
152726
152862
|
})[] | null | undefined;
|
|
152727
152863
|
routingVersion?: string | null | undefined;
|
|
152728
152864
|
author?: string | null | undefined;
|
|
152729
|
-
tags?: string[] | null | undefined;
|
|
152730
152865
|
packageId?: string | null | undefined;
|
|
152731
152866
|
configurationProperties?: {
|
|
152732
152867
|
key: string;
|
|
@@ -158698,8 +158833,8 @@ declare const ForgeProject: z.ZodObject<{
|
|
|
158698
158833
|
id: string;
|
|
158699
158834
|
name: string;
|
|
158700
158835
|
createdAt: Date;
|
|
158701
|
-
workspaceId: string;
|
|
158702
158836
|
tags: string[];
|
|
158837
|
+
workspaceId: string;
|
|
158703
158838
|
meta: {
|
|
158704
158839
|
name: string;
|
|
158705
158840
|
description?: string | undefined;
|
|
@@ -181273,7 +181408,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181273
181408
|
name: string;
|
|
181274
181409
|
layout: {
|
|
181275
181410
|
type: "Column" | "Row";
|
|
181276
|
-
gap?: "
|
|
181411
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181277
181412
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181278
181413
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181279
181414
|
} & {
|
|
@@ -181295,7 +181430,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181295
181430
|
name: string;
|
|
181296
181431
|
layout: {
|
|
181297
181432
|
type: "Column" | "Row";
|
|
181298
|
-
gap?: "
|
|
181433
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181299
181434
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181300
181435
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181301
181436
|
} & {
|
|
@@ -181328,7 +181463,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181328
181463
|
name: string;
|
|
181329
181464
|
layout: {
|
|
181330
181465
|
type: "Column" | "Row";
|
|
181331
|
-
gap?: "
|
|
181466
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181332
181467
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181333
181468
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181334
181469
|
} & {
|
|
@@ -181367,7 +181502,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181367
181502
|
name: string;
|
|
181368
181503
|
layout: {
|
|
181369
181504
|
type: "Column" | "Row";
|
|
181370
|
-
gap?: "
|
|
181505
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181371
181506
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181372
181507
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181373
181508
|
} & {
|
|
@@ -181497,7 +181632,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181497
181632
|
name: string;
|
|
181498
181633
|
layout: {
|
|
181499
181634
|
type: "Column" | "Row";
|
|
181500
|
-
gap?: "
|
|
181635
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181501
181636
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181502
181637
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181503
181638
|
} & {
|
|
@@ -181570,7 +181705,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181570
181705
|
name: string;
|
|
181571
181706
|
layout: {
|
|
181572
181707
|
type: "Column" | "Row";
|
|
181573
|
-
gap?: "
|
|
181708
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181574
181709
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181575
181710
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181576
181711
|
} & {
|
|
@@ -181837,7 +181972,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181837
181972
|
name: string;
|
|
181838
181973
|
layout: {
|
|
181839
181974
|
type: "Column" | "Row";
|
|
181840
|
-
gap?: "
|
|
181975
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181841
181976
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181842
181977
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181843
181978
|
} & {
|
|
@@ -182680,7 +182815,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
182680
182815
|
name: string;
|
|
182681
182816
|
layout: {
|
|
182682
182817
|
type: "Column" | "Row";
|
|
182683
|
-
gap?: "
|
|
182818
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
182684
182819
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
182685
182820
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
182686
182821
|
} & {
|
|
@@ -189938,4 +190073,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
189938
190073
|
token: PersonalAccessToken;
|
|
189939
190074
|
};
|
|
189940
190075
|
|
|
189941
|
-
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 };
|