@supernova-studio/model 1.37.3 → 1.37.5
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 +513 -417
- package/dist/index.d.ts +513 -417
- package/dist/index.js +26 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1885 -1881
- 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;
|
|
@@ -11947,6 +11959,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
11947
11959
|
} | null | undefined>;
|
|
11948
11960
|
seats: z.ZodNumber;
|
|
11949
11961
|
seatLimit: z.ZodNumber;
|
|
11962
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
11963
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
11950
11964
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
11951
11965
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
11952
11966
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11978,6 +11992,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
11978
11992
|
expiryYear?: string | null | undefined;
|
|
11979
11993
|
brand?: string | null | undefined;
|
|
11980
11994
|
} | undefined;
|
|
11995
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
11996
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
11981
11997
|
builderSeatLimit?: number | undefined;
|
|
11982
11998
|
fullSeatLimit?: number | undefined;
|
|
11983
11999
|
builderSeats?: number | undefined;
|
|
@@ -12005,6 +12021,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
12005
12021
|
expiryYear?: string | null | undefined;
|
|
12006
12022
|
brand?: string | null | undefined;
|
|
12007
12023
|
} | null | undefined;
|
|
12024
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
12025
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
12008
12026
|
builderSeatLimit?: number | undefined;
|
|
12009
12027
|
fullSeatLimit?: number | undefined;
|
|
12010
12028
|
builderSeats?: number | undefined;
|
|
@@ -12212,6 +12230,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
12212
12230
|
expiryYear?: string | null | undefined;
|
|
12213
12231
|
brand?: string | null | undefined;
|
|
12214
12232
|
} | undefined;
|
|
12233
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
12234
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
12215
12235
|
builderSeatLimit?: number | undefined;
|
|
12216
12236
|
fullSeatLimit?: number | undefined;
|
|
12217
12237
|
builderSeats?: number | undefined;
|
|
@@ -12308,6 +12328,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
12308
12328
|
expiryYear?: string | null | undefined;
|
|
12309
12329
|
brand?: string | null | undefined;
|
|
12310
12330
|
} | null | undefined;
|
|
12331
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
12332
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
12311
12333
|
builderSeatLimit?: number | undefined;
|
|
12312
12334
|
fullSeatLimit?: number | undefined;
|
|
12313
12335
|
builderSeats?: number | undefined;
|
|
@@ -19223,6 +19245,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19223
19245
|
expiryYear?: string | null | undefined;
|
|
19224
19246
|
brand?: string | null | undefined;
|
|
19225
19247
|
} | undefined;
|
|
19248
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
19249
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
19226
19250
|
builderSeatLimit?: number | undefined;
|
|
19227
19251
|
fullSeatLimit?: number | undefined;
|
|
19228
19252
|
builderSeats?: number | undefined;
|
|
@@ -20113,6 +20137,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20113
20137
|
expiryYear?: string | null | undefined;
|
|
20114
20138
|
brand?: string | null | undefined;
|
|
20115
20139
|
} | null | undefined;
|
|
20140
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
20141
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
20116
20142
|
builderSeatLimit?: number | undefined;
|
|
20117
20143
|
fullSeatLimit?: number | undefined;
|
|
20118
20144
|
builderSeats?: number | undefined;
|
|
@@ -21005,6 +21031,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
21005
21031
|
expiryYear?: string | null | undefined;
|
|
21006
21032
|
brand?: string | null | undefined;
|
|
21007
21033
|
} | undefined;
|
|
21034
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
21035
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
21008
21036
|
builderSeatLimit?: number | undefined;
|
|
21009
21037
|
fullSeatLimit?: number | undefined;
|
|
21010
21038
|
builderSeats?: number | undefined;
|
|
@@ -21937,6 +21965,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
21937
21965
|
expiryYear?: string | null | undefined;
|
|
21938
21966
|
brand?: string | null | undefined;
|
|
21939
21967
|
} | null | undefined;
|
|
21968
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
21969
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
21940
21970
|
builderSeatLimit?: number | undefined;
|
|
21941
21971
|
fullSeatLimit?: number | undefined;
|
|
21942
21972
|
builderSeats?: number | undefined;
|
|
@@ -22975,6 +23005,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
22975
23005
|
} | null | undefined>;
|
|
22976
23006
|
seats: z.ZodNumber;
|
|
22977
23007
|
seatLimit: z.ZodNumber;
|
|
23008
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23009
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
22978
23010
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
22979
23011
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
22980
23012
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -23006,6 +23038,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23006
23038
|
expiryYear?: string | null | undefined;
|
|
23007
23039
|
brand?: string | null | undefined;
|
|
23008
23040
|
} | undefined;
|
|
23041
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
23042
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
23009
23043
|
builderSeatLimit?: number | undefined;
|
|
23010
23044
|
fullSeatLimit?: number | undefined;
|
|
23011
23045
|
builderSeats?: number | undefined;
|
|
@@ -23033,6 +23067,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23033
23067
|
expiryYear?: string | null | undefined;
|
|
23034
23068
|
brand?: string | null | undefined;
|
|
23035
23069
|
} | null | undefined;
|
|
23070
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
23071
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
23036
23072
|
builderSeatLimit?: number | undefined;
|
|
23037
23073
|
fullSeatLimit?: number | undefined;
|
|
23038
23074
|
builderSeats?: number | undefined;
|
|
@@ -23240,6 +23276,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23240
23276
|
expiryYear?: string | null | undefined;
|
|
23241
23277
|
brand?: string | null | undefined;
|
|
23242
23278
|
} | undefined;
|
|
23279
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
23280
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
23243
23281
|
builderSeatLimit?: number | undefined;
|
|
23244
23282
|
fullSeatLimit?: number | undefined;
|
|
23245
23283
|
builderSeats?: number | undefined;
|
|
@@ -23336,6 +23374,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23336
23374
|
expiryYear?: string | null | undefined;
|
|
23337
23375
|
brand?: string | null | undefined;
|
|
23338
23376
|
} | null | undefined;
|
|
23377
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
23378
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
23339
23379
|
builderSeatLimit?: number | undefined;
|
|
23340
23380
|
fullSeatLimit?: number | undefined;
|
|
23341
23381
|
builderSeats?: number | undefined;
|
|
@@ -30251,6 +30291,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30251
30291
|
expiryYear?: string | null | undefined;
|
|
30252
30292
|
brand?: string | null | undefined;
|
|
30253
30293
|
} | undefined;
|
|
30294
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
30295
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
30254
30296
|
builderSeatLimit?: number | undefined;
|
|
30255
30297
|
fullSeatLimit?: number | undefined;
|
|
30256
30298
|
builderSeats?: number | undefined;
|
|
@@ -31141,6 +31183,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
31141
31183
|
expiryYear?: string | null | undefined;
|
|
31142
31184
|
brand?: string | null | undefined;
|
|
31143
31185
|
} | null | undefined;
|
|
31186
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
31187
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
31144
31188
|
builderSeatLimit?: number | undefined;
|
|
31145
31189
|
fullSeatLimit?: number | undefined;
|
|
31146
31190
|
builderSeats?: number | undefined;
|
|
@@ -34919,12 +34963,12 @@ declare const PageBlockDefinitionLayoutBase: z.ZodObject<{
|
|
|
34919
34963
|
columnResizing: z.ZodOptional<z.ZodEnum<["Fill", "Hug"]>>;
|
|
34920
34964
|
}, "strip", z.ZodTypeAny, {
|
|
34921
34965
|
type: "Column" | "Row";
|
|
34922
|
-
gap?: "
|
|
34966
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
34923
34967
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
34924
34968
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
34925
34969
|
}, {
|
|
34926
34970
|
type: "Column" | "Row";
|
|
34927
|
-
gap?: "
|
|
34971
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
34928
34972
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
34929
34973
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
34930
34974
|
}>;
|
|
@@ -34958,7 +35002,7 @@ declare const PageBlockDefinitionVariant: z.ZodObject<{
|
|
|
34958
35002
|
name: string;
|
|
34959
35003
|
layout: {
|
|
34960
35004
|
type: "Column" | "Row";
|
|
34961
|
-
gap?: "
|
|
35005
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
34962
35006
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
34963
35007
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
34964
35008
|
} & {
|
|
@@ -34980,7 +35024,7 @@ declare const PageBlockDefinitionVariant: z.ZodObject<{
|
|
|
34980
35024
|
name: string;
|
|
34981
35025
|
layout: {
|
|
34982
35026
|
type: "Column" | "Row";
|
|
34983
|
-
gap?: "
|
|
35027
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
34984
35028
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
34985
35029
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
34986
35030
|
} & {
|
|
@@ -35147,7 +35191,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35147
35191
|
name: string;
|
|
35148
35192
|
layout: {
|
|
35149
35193
|
type: "Column" | "Row";
|
|
35150
|
-
gap?: "
|
|
35194
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35151
35195
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35152
35196
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35153
35197
|
} & {
|
|
@@ -35169,7 +35213,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35169
35213
|
name: string;
|
|
35170
35214
|
layout: {
|
|
35171
35215
|
type: "Column" | "Row";
|
|
35172
|
-
gap?: "
|
|
35216
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35173
35217
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35174
35218
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35175
35219
|
} & {
|
|
@@ -35202,7 +35246,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35202
35246
|
name: string;
|
|
35203
35247
|
layout: {
|
|
35204
35248
|
type: "Column" | "Row";
|
|
35205
|
-
gap?: "
|
|
35249
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35206
35250
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35207
35251
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35208
35252
|
} & {
|
|
@@ -35241,7 +35285,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35241
35285
|
name: string;
|
|
35242
35286
|
layout: {
|
|
35243
35287
|
type: "Column" | "Row";
|
|
35244
|
-
gap?: "
|
|
35288
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35245
35289
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35246
35290
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35247
35291
|
} & {
|
|
@@ -35371,7 +35415,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35371
35415
|
name: string;
|
|
35372
35416
|
layout: {
|
|
35373
35417
|
type: "Column" | "Row";
|
|
35374
|
-
gap?: "
|
|
35418
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35375
35419
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35376
35420
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35377
35421
|
} & {
|
|
@@ -35444,7 +35488,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
35444
35488
|
name: string;
|
|
35445
35489
|
layout: {
|
|
35446
35490
|
type: "Column" | "Row";
|
|
35447
|
-
gap?: "
|
|
35491
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35448
35492
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35449
35493
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35450
35494
|
} & {
|
|
@@ -35647,12 +35691,12 @@ declare const PageBlockDefinitionImageOptions: z.ZodObject<{
|
|
|
35647
35691
|
allowCaption: z.ZodOptional<z.ZodBoolean>;
|
|
35648
35692
|
recommendation: z.ZodOptional<z.ZodString>;
|
|
35649
35693
|
}, "strip", z.ZodTypeAny, {
|
|
35650
|
-
width?: "
|
|
35694
|
+
width?: "Full" | "Small" | "Medium" | "Large" | "Icon" | "Poster" | undefined;
|
|
35651
35695
|
aspectRatio?: "Auto" | "Square" | "Landscape" | "Portrait" | "Wide" | undefined;
|
|
35652
35696
|
allowCaption?: boolean | undefined;
|
|
35653
35697
|
recommendation?: string | undefined;
|
|
35654
35698
|
}, {
|
|
35655
|
-
width?: "
|
|
35699
|
+
width?: "Full" | "Small" | "Medium" | "Large" | "Icon" | "Poster" | undefined;
|
|
35656
35700
|
aspectRatio?: "Auto" | "Square" | "Landscape" | "Portrait" | "Wide" | undefined;
|
|
35657
35701
|
allowCaption?: boolean | undefined;
|
|
35658
35702
|
recommendation?: string | undefined;
|
|
@@ -35803,7 +35847,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
35803
35847
|
name: string;
|
|
35804
35848
|
layout: {
|
|
35805
35849
|
type: "Column" | "Row";
|
|
35806
|
-
gap?: "
|
|
35850
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35807
35851
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35808
35852
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35809
35853
|
} & {
|
|
@@ -35825,7 +35869,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
35825
35869
|
name: string;
|
|
35826
35870
|
layout: {
|
|
35827
35871
|
type: "Column" | "Row";
|
|
35828
|
-
gap?: "
|
|
35872
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35829
35873
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35830
35874
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35831
35875
|
} & {
|
|
@@ -35858,7 +35902,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
35858
35902
|
name: string;
|
|
35859
35903
|
layout: {
|
|
35860
35904
|
type: "Column" | "Row";
|
|
35861
|
-
gap?: "
|
|
35905
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35862
35906
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35863
35907
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35864
35908
|
} & {
|
|
@@ -35897,7 +35941,7 @@ declare const PageBlockDefinitionItem: z.ZodObject<{
|
|
|
35897
35941
|
name: string;
|
|
35898
35942
|
layout: {
|
|
35899
35943
|
type: "Column" | "Row";
|
|
35900
|
-
gap?: "
|
|
35944
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
35901
35945
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
35902
35946
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
35903
35947
|
} & {
|
|
@@ -57539,12 +57583,12 @@ type TextDecorationValue = z.infer<typeof TextDecorationValue>;
|
|
|
57539
57583
|
declare const TextDecorationTokenData: z.ZodObject<{
|
|
57540
57584
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
57541
57585
|
} & {
|
|
57542
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
57586
|
+
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
57587
|
}, "strip", z.ZodTypeAny, {
|
|
57544
|
-
value?: "
|
|
57588
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57545
57589
|
aliasTo?: string | undefined;
|
|
57546
57590
|
}, {
|
|
57547
|
-
value?: "
|
|
57591
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
57548
57592
|
aliasTo?: string | null | undefined;
|
|
57549
57593
|
}>;
|
|
57550
57594
|
type TextDecorationTokenData = z.infer<typeof TextDecorationTokenData>;
|
|
@@ -57604,12 +57648,12 @@ declare const TypographyValue: z.ZodObject<{
|
|
|
57604
57648
|
textDecoration: z.ZodObject<{
|
|
57605
57649
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
57606
57650
|
} & {
|
|
57607
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
57651
|
+
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
57652
|
}, "strip", z.ZodTypeAny, {
|
|
57609
|
-
value?: "
|
|
57653
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57610
57654
|
aliasTo?: string | undefined;
|
|
57611
57655
|
}, {
|
|
57612
|
-
value?: "
|
|
57656
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
57613
57657
|
aliasTo?: string | null | undefined;
|
|
57614
57658
|
}>;
|
|
57615
57659
|
textCase: z.ZodObject<{
|
|
@@ -57756,7 +57800,7 @@ declare const TypographyValue: z.ZodObject<{
|
|
|
57756
57800
|
aliasTo?: string | undefined;
|
|
57757
57801
|
};
|
|
57758
57802
|
textDecoration: {
|
|
57759
|
-
value?: "
|
|
57803
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57760
57804
|
aliasTo?: string | undefined;
|
|
57761
57805
|
};
|
|
57762
57806
|
textCase: {
|
|
@@ -57808,7 +57852,7 @@ declare const TypographyValue: z.ZodObject<{
|
|
|
57808
57852
|
aliasTo?: string | null | undefined;
|
|
57809
57853
|
};
|
|
57810
57854
|
textDecoration: {
|
|
57811
|
-
value?: "
|
|
57855
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
57812
57856
|
aliasTo?: string | null | undefined;
|
|
57813
57857
|
};
|
|
57814
57858
|
textCase: {
|
|
@@ -57865,7 +57909,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
57865
57909
|
aliasTo?: string | undefined;
|
|
57866
57910
|
};
|
|
57867
57911
|
textDecoration: {
|
|
57868
|
-
value?: "
|
|
57912
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57869
57913
|
aliasTo?: string | undefined;
|
|
57870
57914
|
};
|
|
57871
57915
|
textCase: {
|
|
@@ -57917,7 +57961,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
57917
57961
|
aliasTo?: string | null | undefined;
|
|
57918
57962
|
};
|
|
57919
57963
|
textDecoration: {
|
|
57920
|
-
value?: "
|
|
57964
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
57921
57965
|
aliasTo?: string | null | undefined;
|
|
57922
57966
|
};
|
|
57923
57967
|
textCase: {
|
|
@@ -57969,7 +58013,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
57969
58013
|
aliasTo?: string | undefined;
|
|
57970
58014
|
};
|
|
57971
58015
|
textDecoration: {
|
|
57972
|
-
value?: "
|
|
58016
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
57973
58017
|
aliasTo?: string | undefined;
|
|
57974
58018
|
};
|
|
57975
58019
|
textCase: {
|
|
@@ -58021,7 +58065,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
58021
58065
|
aliasTo?: string | null | undefined;
|
|
58022
58066
|
};
|
|
58023
58067
|
textDecoration: {
|
|
58024
|
-
value?: "
|
|
58068
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
58025
58069
|
aliasTo?: string | null | undefined;
|
|
58026
58070
|
};
|
|
58027
58071
|
textCase: {
|
|
@@ -58075,7 +58119,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
58075
58119
|
aliasTo?: string | undefined;
|
|
58076
58120
|
};
|
|
58077
58121
|
textDecoration: {
|
|
58078
|
-
value?: "
|
|
58122
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
58079
58123
|
aliasTo?: string | undefined;
|
|
58080
58124
|
};
|
|
58081
58125
|
textCase: {
|
|
@@ -58130,7 +58174,7 @@ declare const TypographyTokenData: z.ZodObject<{
|
|
|
58130
58174
|
aliasTo?: string | null | undefined;
|
|
58131
58175
|
};
|
|
58132
58176
|
textDecoration: {
|
|
58133
|
-
value?: "
|
|
58177
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
58134
58178
|
aliasTo?: string | null | undefined;
|
|
58135
58179
|
};
|
|
58136
58180
|
textCase: {
|
|
@@ -67820,24 +67864,24 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
67820
67864
|
data: z.ZodObject<{
|
|
67821
67865
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
67822
67866
|
} & {
|
|
67823
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
67867
|
+
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
67868
|
}, "strip", z.ZodTypeAny, {
|
|
67825
|
-
value?: "
|
|
67869
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
67826
67870
|
aliasTo?: string | undefined;
|
|
67827
67871
|
}, {
|
|
67828
|
-
value?: "
|
|
67872
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
67829
67873
|
aliasTo?: string | null | undefined;
|
|
67830
67874
|
}>;
|
|
67831
67875
|
}, "strip", z.ZodTypeAny, {
|
|
67832
67876
|
type: "TextDecoration";
|
|
67833
67877
|
data: {
|
|
67834
|
-
value?: "
|
|
67878
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
67835
67879
|
aliasTo?: string | undefined;
|
|
67836
67880
|
};
|
|
67837
67881
|
}, {
|
|
67838
67882
|
type: "TextDecoration";
|
|
67839
67883
|
data: {
|
|
67840
|
-
value?: "
|
|
67884
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
67841
67885
|
aliasTo?: string | null | undefined;
|
|
67842
67886
|
};
|
|
67843
67887
|
}>, z.ZodObject<{
|
|
@@ -67862,7 +67906,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
67862
67906
|
aliasTo?: string | undefined;
|
|
67863
67907
|
};
|
|
67864
67908
|
textDecoration: {
|
|
67865
|
-
value?: "
|
|
67909
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
67866
67910
|
aliasTo?: string | undefined;
|
|
67867
67911
|
};
|
|
67868
67912
|
textCase: {
|
|
@@ -67914,7 +67958,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
67914
67958
|
aliasTo?: string | null | undefined;
|
|
67915
67959
|
};
|
|
67916
67960
|
textDecoration: {
|
|
67917
|
-
value?: "
|
|
67961
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
67918
67962
|
aliasTo?: string | null | undefined;
|
|
67919
67963
|
};
|
|
67920
67964
|
textCase: {
|
|
@@ -67966,7 +68010,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
67966
68010
|
aliasTo?: string | undefined;
|
|
67967
68011
|
};
|
|
67968
68012
|
textDecoration: {
|
|
67969
|
-
value?: "
|
|
68013
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
67970
68014
|
aliasTo?: string | undefined;
|
|
67971
68015
|
};
|
|
67972
68016
|
textCase: {
|
|
@@ -68018,7 +68062,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68018
68062
|
aliasTo?: string | null | undefined;
|
|
68019
68063
|
};
|
|
68020
68064
|
textDecoration: {
|
|
68021
|
-
value?: "
|
|
68065
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
68022
68066
|
aliasTo?: string | null | undefined;
|
|
68023
68067
|
};
|
|
68024
68068
|
textCase: {
|
|
@@ -68072,7 +68116,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68072
68116
|
aliasTo?: string | undefined;
|
|
68073
68117
|
};
|
|
68074
68118
|
textDecoration: {
|
|
68075
|
-
value?: "
|
|
68119
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
68076
68120
|
aliasTo?: string | undefined;
|
|
68077
68121
|
};
|
|
68078
68122
|
textCase: {
|
|
@@ -68127,7 +68171,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68127
68171
|
aliasTo?: string | null | undefined;
|
|
68128
68172
|
};
|
|
68129
68173
|
textDecoration: {
|
|
68130
|
-
value?: "
|
|
68174
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
68131
68175
|
aliasTo?: string | null | undefined;
|
|
68132
68176
|
};
|
|
68133
68177
|
textCase: {
|
|
@@ -68185,7 +68229,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68185
68229
|
aliasTo?: string | undefined;
|
|
68186
68230
|
};
|
|
68187
68231
|
textDecoration: {
|
|
68188
|
-
value?: "
|
|
68232
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
68189
68233
|
aliasTo?: string | undefined;
|
|
68190
68234
|
};
|
|
68191
68235
|
textCase: {
|
|
@@ -68243,7 +68287,7 @@ declare const ThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [
|
|
|
68243
68287
|
aliasTo?: string | null | undefined;
|
|
68244
68288
|
};
|
|
68245
68289
|
textDecoration: {
|
|
68246
|
-
value?: "
|
|
68290
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
68247
68291
|
aliasTo?: string | null | undefined;
|
|
68248
68292
|
};
|
|
68249
68293
|
textCase: {
|
|
@@ -70139,24 +70183,24 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70139
70183
|
data: z.ZodObject<{
|
|
70140
70184
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
70141
70185
|
} & {
|
|
70142
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
70186
|
+
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
70187
|
}, "strip", z.ZodTypeAny, {
|
|
70144
|
-
value?: "
|
|
70188
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70145
70189
|
aliasTo?: string | undefined;
|
|
70146
70190
|
}, {
|
|
70147
|
-
value?: "
|
|
70191
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70148
70192
|
aliasTo?: string | null | undefined;
|
|
70149
70193
|
}>;
|
|
70150
70194
|
}, "strip", z.ZodTypeAny, {
|
|
70151
70195
|
type: "TextDecoration";
|
|
70152
70196
|
data: {
|
|
70153
|
-
value?: "
|
|
70197
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70154
70198
|
aliasTo?: string | undefined;
|
|
70155
70199
|
};
|
|
70156
70200
|
}, {
|
|
70157
70201
|
type: "TextDecoration";
|
|
70158
70202
|
data: {
|
|
70159
|
-
value?: "
|
|
70203
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70160
70204
|
aliasTo?: string | null | undefined;
|
|
70161
70205
|
};
|
|
70162
70206
|
}>, z.ZodObject<{
|
|
@@ -70181,7 +70225,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70181
70225
|
aliasTo?: string | undefined;
|
|
70182
70226
|
};
|
|
70183
70227
|
textDecoration: {
|
|
70184
|
-
value?: "
|
|
70228
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70185
70229
|
aliasTo?: string | undefined;
|
|
70186
70230
|
};
|
|
70187
70231
|
textCase: {
|
|
@@ -70233,7 +70277,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70233
70277
|
aliasTo?: string | null | undefined;
|
|
70234
70278
|
};
|
|
70235
70279
|
textDecoration: {
|
|
70236
|
-
value?: "
|
|
70280
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70237
70281
|
aliasTo?: string | null | undefined;
|
|
70238
70282
|
};
|
|
70239
70283
|
textCase: {
|
|
@@ -70285,7 +70329,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70285
70329
|
aliasTo?: string | undefined;
|
|
70286
70330
|
};
|
|
70287
70331
|
textDecoration: {
|
|
70288
|
-
value?: "
|
|
70332
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70289
70333
|
aliasTo?: string | undefined;
|
|
70290
70334
|
};
|
|
70291
70335
|
textCase: {
|
|
@@ -70337,7 +70381,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70337
70381
|
aliasTo?: string | null | undefined;
|
|
70338
70382
|
};
|
|
70339
70383
|
textDecoration: {
|
|
70340
|
-
value?: "
|
|
70384
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70341
70385
|
aliasTo?: string | null | undefined;
|
|
70342
70386
|
};
|
|
70343
70387
|
textCase: {
|
|
@@ -70391,7 +70435,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70391
70435
|
aliasTo?: string | undefined;
|
|
70392
70436
|
};
|
|
70393
70437
|
textDecoration: {
|
|
70394
|
-
value?: "
|
|
70438
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70395
70439
|
aliasTo?: string | undefined;
|
|
70396
70440
|
};
|
|
70397
70441
|
textCase: {
|
|
@@ -70446,7 +70490,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70446
70490
|
aliasTo?: string | null | undefined;
|
|
70447
70491
|
};
|
|
70448
70492
|
textDecoration: {
|
|
70449
|
-
value?: "
|
|
70493
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70450
70494
|
aliasTo?: string | null | undefined;
|
|
70451
70495
|
};
|
|
70452
70496
|
textCase: {
|
|
@@ -70504,7 +70548,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70504
70548
|
aliasTo?: string | undefined;
|
|
70505
70549
|
};
|
|
70506
70550
|
textDecoration: {
|
|
70507
|
-
value?: "
|
|
70551
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70508
70552
|
aliasTo?: string | undefined;
|
|
70509
70553
|
};
|
|
70510
70554
|
textCase: {
|
|
@@ -70562,7 +70606,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70562
70606
|
aliasTo?: string | null | undefined;
|
|
70563
70607
|
};
|
|
70564
70608
|
textDecoration: {
|
|
70565
|
-
value?: "
|
|
70609
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
70566
70610
|
aliasTo?: string | null | undefined;
|
|
70567
70611
|
};
|
|
70568
70612
|
textCase: {
|
|
@@ -70931,7 +70975,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
70931
70975
|
aliasTo?: string | undefined;
|
|
70932
70976
|
};
|
|
70933
70977
|
textDecoration: {
|
|
70934
|
-
value?: "
|
|
70978
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
70935
70979
|
aliasTo?: string | undefined;
|
|
70936
70980
|
};
|
|
70937
70981
|
textCase: {
|
|
@@ -71041,7 +71085,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71041
71085
|
} | {
|
|
71042
71086
|
type: "TextDecoration";
|
|
71043
71087
|
data: {
|
|
71044
|
-
value?: "
|
|
71088
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
71045
71089
|
aliasTo?: string | undefined;
|
|
71046
71090
|
};
|
|
71047
71091
|
} | {
|
|
@@ -71300,7 +71344,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71300
71344
|
aliasTo?: string | null | undefined;
|
|
71301
71345
|
};
|
|
71302
71346
|
textDecoration: {
|
|
71303
|
-
value?: "
|
|
71347
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
71304
71348
|
aliasTo?: string | null | undefined;
|
|
71305
71349
|
};
|
|
71306
71350
|
textCase: {
|
|
@@ -71410,7 +71454,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71410
71454
|
} | {
|
|
71411
71455
|
type: "TextDecoration";
|
|
71412
71456
|
data: {
|
|
71413
|
-
value?: "
|
|
71457
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
71414
71458
|
aliasTo?: string | null | undefined;
|
|
71415
71459
|
};
|
|
71416
71460
|
} | {
|
|
@@ -71671,7 +71715,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71671
71715
|
aliasTo?: string | undefined;
|
|
71672
71716
|
};
|
|
71673
71717
|
textDecoration: {
|
|
71674
|
-
value?: "
|
|
71718
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
71675
71719
|
aliasTo?: string | undefined;
|
|
71676
71720
|
};
|
|
71677
71721
|
textCase: {
|
|
@@ -71781,7 +71825,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
71781
71825
|
} | {
|
|
71782
71826
|
type: "TextDecoration";
|
|
71783
71827
|
data: {
|
|
71784
|
-
value?: "
|
|
71828
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
71785
71829
|
aliasTo?: string | undefined;
|
|
71786
71830
|
};
|
|
71787
71831
|
} | {
|
|
@@ -72042,7 +72086,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
72042
72086
|
aliasTo?: string | null | undefined;
|
|
72043
72087
|
};
|
|
72044
72088
|
textDecoration: {
|
|
72045
|
-
value?: "
|
|
72089
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
72046
72090
|
aliasTo?: string | null | undefined;
|
|
72047
72091
|
};
|
|
72048
72092
|
textCase: {
|
|
@@ -72152,7 +72196,7 @@ declare const ThemeElementData: z.ZodObject<{
|
|
|
72152
72196
|
} | {
|
|
72153
72197
|
type: "TextDecoration";
|
|
72154
72198
|
data: {
|
|
72155
|
-
value?: "
|
|
72199
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
72156
72200
|
aliasTo?: string | null | undefined;
|
|
72157
72201
|
};
|
|
72158
72202
|
} | {
|
|
@@ -73998,24 +74042,24 @@ declare const Theme: z.ZodObject<{
|
|
|
73998
74042
|
data: z.ZodObject<{
|
|
73999
74043
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
74000
74044
|
} & {
|
|
74001
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
74045
|
+
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
74046
|
}, "strip", z.ZodTypeAny, {
|
|
74003
|
-
value?: "
|
|
74047
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74004
74048
|
aliasTo?: string | undefined;
|
|
74005
74049
|
}, {
|
|
74006
|
-
value?: "
|
|
74050
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74007
74051
|
aliasTo?: string | null | undefined;
|
|
74008
74052
|
}>;
|
|
74009
74053
|
}, "strip", z.ZodTypeAny, {
|
|
74010
74054
|
type: "TextDecoration";
|
|
74011
74055
|
data: {
|
|
74012
|
-
value?: "
|
|
74056
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74013
74057
|
aliasTo?: string | undefined;
|
|
74014
74058
|
};
|
|
74015
74059
|
}, {
|
|
74016
74060
|
type: "TextDecoration";
|
|
74017
74061
|
data: {
|
|
74018
|
-
value?: "
|
|
74062
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74019
74063
|
aliasTo?: string | null | undefined;
|
|
74020
74064
|
};
|
|
74021
74065
|
}>, z.ZodObject<{
|
|
@@ -74040,7 +74084,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74040
74084
|
aliasTo?: string | undefined;
|
|
74041
74085
|
};
|
|
74042
74086
|
textDecoration: {
|
|
74043
|
-
value?: "
|
|
74087
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74044
74088
|
aliasTo?: string | undefined;
|
|
74045
74089
|
};
|
|
74046
74090
|
textCase: {
|
|
@@ -74092,7 +74136,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74092
74136
|
aliasTo?: string | null | undefined;
|
|
74093
74137
|
};
|
|
74094
74138
|
textDecoration: {
|
|
74095
|
-
value?: "
|
|
74139
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74096
74140
|
aliasTo?: string | null | undefined;
|
|
74097
74141
|
};
|
|
74098
74142
|
textCase: {
|
|
@@ -74144,7 +74188,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74144
74188
|
aliasTo?: string | undefined;
|
|
74145
74189
|
};
|
|
74146
74190
|
textDecoration: {
|
|
74147
|
-
value?: "
|
|
74191
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74148
74192
|
aliasTo?: string | undefined;
|
|
74149
74193
|
};
|
|
74150
74194
|
textCase: {
|
|
@@ -74196,7 +74240,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74196
74240
|
aliasTo?: string | null | undefined;
|
|
74197
74241
|
};
|
|
74198
74242
|
textDecoration: {
|
|
74199
|
-
value?: "
|
|
74243
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74200
74244
|
aliasTo?: string | null | undefined;
|
|
74201
74245
|
};
|
|
74202
74246
|
textCase: {
|
|
@@ -74250,7 +74294,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74250
74294
|
aliasTo?: string | undefined;
|
|
74251
74295
|
};
|
|
74252
74296
|
textDecoration: {
|
|
74253
|
-
value?: "
|
|
74297
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74254
74298
|
aliasTo?: string | undefined;
|
|
74255
74299
|
};
|
|
74256
74300
|
textCase: {
|
|
@@ -74305,7 +74349,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74305
74349
|
aliasTo?: string | null | undefined;
|
|
74306
74350
|
};
|
|
74307
74351
|
textDecoration: {
|
|
74308
|
-
value?: "
|
|
74352
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74309
74353
|
aliasTo?: string | null | undefined;
|
|
74310
74354
|
};
|
|
74311
74355
|
textCase: {
|
|
@@ -74363,7 +74407,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74363
74407
|
aliasTo?: string | undefined;
|
|
74364
74408
|
};
|
|
74365
74409
|
textDecoration: {
|
|
74366
|
-
value?: "
|
|
74410
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74367
74411
|
aliasTo?: string | undefined;
|
|
74368
74412
|
};
|
|
74369
74413
|
textCase: {
|
|
@@ -74421,7 +74465,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74421
74465
|
aliasTo?: string | null | undefined;
|
|
74422
74466
|
};
|
|
74423
74467
|
textDecoration: {
|
|
74424
|
-
value?: "
|
|
74468
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
74425
74469
|
aliasTo?: string | null | undefined;
|
|
74426
74470
|
};
|
|
74427
74471
|
textCase: {
|
|
@@ -74802,7 +74846,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74802
74846
|
aliasTo?: string | undefined;
|
|
74803
74847
|
};
|
|
74804
74848
|
textDecoration: {
|
|
74805
|
-
value?: "
|
|
74849
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74806
74850
|
aliasTo?: string | undefined;
|
|
74807
74851
|
};
|
|
74808
74852
|
textCase: {
|
|
@@ -74912,7 +74956,7 @@ declare const Theme: z.ZodObject<{
|
|
|
74912
74956
|
} | {
|
|
74913
74957
|
type: "TextDecoration";
|
|
74914
74958
|
data: {
|
|
74915
|
-
value?: "
|
|
74959
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
74916
74960
|
aliasTo?: string | undefined;
|
|
74917
74961
|
};
|
|
74918
74962
|
} | {
|
|
@@ -75191,7 +75235,7 @@ declare const Theme: z.ZodObject<{
|
|
|
75191
75235
|
aliasTo?: string | null | undefined;
|
|
75192
75236
|
};
|
|
75193
75237
|
textDecoration: {
|
|
75194
|
-
value?: "
|
|
75238
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
75195
75239
|
aliasTo?: string | null | undefined;
|
|
75196
75240
|
};
|
|
75197
75241
|
textCase: {
|
|
@@ -75301,7 +75345,7 @@ declare const Theme: z.ZodObject<{
|
|
|
75301
75345
|
} | {
|
|
75302
75346
|
type: "TextDecoration";
|
|
75303
75347
|
data: {
|
|
75304
|
-
value?: "
|
|
75348
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
75305
75349
|
aliasTo?: string | null | undefined;
|
|
75306
75350
|
};
|
|
75307
75351
|
} | {
|
|
@@ -77366,24 +77410,24 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77366
77410
|
data: z.ZodObject<{
|
|
77367
77411
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
77368
77412
|
} & {
|
|
77369
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
77413
|
+
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
77414
|
}, "strip", z.ZodTypeAny, {
|
|
77371
|
-
value?: "
|
|
77415
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77372
77416
|
aliasTo?: string | undefined;
|
|
77373
77417
|
}, {
|
|
77374
|
-
value?: "
|
|
77418
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77375
77419
|
aliasTo?: string | null | undefined;
|
|
77376
77420
|
}>;
|
|
77377
77421
|
}, "strip", z.ZodTypeAny, {
|
|
77378
77422
|
type: "TextDecoration";
|
|
77379
77423
|
data: {
|
|
77380
|
-
value?: "
|
|
77424
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77381
77425
|
aliasTo?: string | undefined;
|
|
77382
77426
|
};
|
|
77383
77427
|
}, {
|
|
77384
77428
|
type: "TextDecoration";
|
|
77385
77429
|
data: {
|
|
77386
|
-
value?: "
|
|
77430
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77387
77431
|
aliasTo?: string | null | undefined;
|
|
77388
77432
|
};
|
|
77389
77433
|
}>, z.ZodObject<{
|
|
@@ -77408,7 +77452,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77408
77452
|
aliasTo?: string | undefined;
|
|
77409
77453
|
};
|
|
77410
77454
|
textDecoration: {
|
|
77411
|
-
value?: "
|
|
77455
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77412
77456
|
aliasTo?: string | undefined;
|
|
77413
77457
|
};
|
|
77414
77458
|
textCase: {
|
|
@@ -77460,7 +77504,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77460
77504
|
aliasTo?: string | null | undefined;
|
|
77461
77505
|
};
|
|
77462
77506
|
textDecoration: {
|
|
77463
|
-
value?: "
|
|
77507
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77464
77508
|
aliasTo?: string | null | undefined;
|
|
77465
77509
|
};
|
|
77466
77510
|
textCase: {
|
|
@@ -77512,7 +77556,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77512
77556
|
aliasTo?: string | undefined;
|
|
77513
77557
|
};
|
|
77514
77558
|
textDecoration: {
|
|
77515
|
-
value?: "
|
|
77559
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77516
77560
|
aliasTo?: string | undefined;
|
|
77517
77561
|
};
|
|
77518
77562
|
textCase: {
|
|
@@ -77564,7 +77608,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77564
77608
|
aliasTo?: string | null | undefined;
|
|
77565
77609
|
};
|
|
77566
77610
|
textDecoration: {
|
|
77567
|
-
value?: "
|
|
77611
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77568
77612
|
aliasTo?: string | null | undefined;
|
|
77569
77613
|
};
|
|
77570
77614
|
textCase: {
|
|
@@ -77618,7 +77662,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77618
77662
|
aliasTo?: string | undefined;
|
|
77619
77663
|
};
|
|
77620
77664
|
textDecoration: {
|
|
77621
|
-
value?: "
|
|
77665
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77622
77666
|
aliasTo?: string | undefined;
|
|
77623
77667
|
};
|
|
77624
77668
|
textCase: {
|
|
@@ -77673,7 +77717,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77673
77717
|
aliasTo?: string | null | undefined;
|
|
77674
77718
|
};
|
|
77675
77719
|
textDecoration: {
|
|
77676
|
-
value?: "
|
|
77720
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77677
77721
|
aliasTo?: string | null | undefined;
|
|
77678
77722
|
};
|
|
77679
77723
|
textCase: {
|
|
@@ -77731,7 +77775,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77731
77775
|
aliasTo?: string | undefined;
|
|
77732
77776
|
};
|
|
77733
77777
|
textDecoration: {
|
|
77734
|
-
value?: "
|
|
77778
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
77735
77779
|
aliasTo?: string | undefined;
|
|
77736
77780
|
};
|
|
77737
77781
|
textCase: {
|
|
@@ -77789,7 +77833,7 @@ declare const DesignTokenTypedData: z.ZodDiscriminatedUnion<"type", [z.ZodObject
|
|
|
77789
77833
|
aliasTo?: string | null | undefined;
|
|
77790
77834
|
};
|
|
77791
77835
|
textDecoration: {
|
|
77792
|
-
value?: "
|
|
77836
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
77793
77837
|
aliasTo?: string | null | undefined;
|
|
77794
77838
|
};
|
|
77795
77839
|
textCase: {
|
|
@@ -79589,24 +79633,24 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79589
79633
|
data: z.ZodObject<{
|
|
79590
79634
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
79591
79635
|
} & {
|
|
79592
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
79636
|
+
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
79637
|
}, "strip", z.ZodTypeAny, {
|
|
79594
|
-
value?: "
|
|
79638
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79595
79639
|
aliasTo?: string | undefined;
|
|
79596
79640
|
}, {
|
|
79597
|
-
value?: "
|
|
79641
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79598
79642
|
aliasTo?: string | null | undefined;
|
|
79599
79643
|
}>;
|
|
79600
79644
|
}, "strip", z.ZodTypeAny, {
|
|
79601
79645
|
type: "TextDecoration";
|
|
79602
79646
|
data: {
|
|
79603
|
-
value?: "
|
|
79647
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79604
79648
|
aliasTo?: string | undefined;
|
|
79605
79649
|
};
|
|
79606
79650
|
}, {
|
|
79607
79651
|
type: "TextDecoration";
|
|
79608
79652
|
data: {
|
|
79609
|
-
value?: "
|
|
79653
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79610
79654
|
aliasTo?: string | null | undefined;
|
|
79611
79655
|
};
|
|
79612
79656
|
}>, z.ZodObject<{
|
|
@@ -79631,7 +79675,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79631
79675
|
aliasTo?: string | undefined;
|
|
79632
79676
|
};
|
|
79633
79677
|
textDecoration: {
|
|
79634
|
-
value?: "
|
|
79678
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79635
79679
|
aliasTo?: string | undefined;
|
|
79636
79680
|
};
|
|
79637
79681
|
textCase: {
|
|
@@ -79683,7 +79727,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79683
79727
|
aliasTo?: string | null | undefined;
|
|
79684
79728
|
};
|
|
79685
79729
|
textDecoration: {
|
|
79686
|
-
value?: "
|
|
79730
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79687
79731
|
aliasTo?: string | null | undefined;
|
|
79688
79732
|
};
|
|
79689
79733
|
textCase: {
|
|
@@ -79735,7 +79779,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79735
79779
|
aliasTo?: string | undefined;
|
|
79736
79780
|
};
|
|
79737
79781
|
textDecoration: {
|
|
79738
|
-
value?: "
|
|
79782
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79739
79783
|
aliasTo?: string | undefined;
|
|
79740
79784
|
};
|
|
79741
79785
|
textCase: {
|
|
@@ -79787,7 +79831,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79787
79831
|
aliasTo?: string | null | undefined;
|
|
79788
79832
|
};
|
|
79789
79833
|
textDecoration: {
|
|
79790
|
-
value?: "
|
|
79834
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79791
79835
|
aliasTo?: string | null | undefined;
|
|
79792
79836
|
};
|
|
79793
79837
|
textCase: {
|
|
@@ -79841,7 +79885,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79841
79885
|
aliasTo?: string | undefined;
|
|
79842
79886
|
};
|
|
79843
79887
|
textDecoration: {
|
|
79844
|
-
value?: "
|
|
79888
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79845
79889
|
aliasTo?: string | undefined;
|
|
79846
79890
|
};
|
|
79847
79891
|
textCase: {
|
|
@@ -79896,7 +79940,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79896
79940
|
aliasTo?: string | null | undefined;
|
|
79897
79941
|
};
|
|
79898
79942
|
textDecoration: {
|
|
79899
|
-
value?: "
|
|
79943
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
79900
79944
|
aliasTo?: string | null | undefined;
|
|
79901
79945
|
};
|
|
79902
79946
|
textCase: {
|
|
@@ -79954,7 +79998,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
79954
79998
|
aliasTo?: string | undefined;
|
|
79955
79999
|
};
|
|
79956
80000
|
textDecoration: {
|
|
79957
|
-
value?: "
|
|
80001
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
79958
80002
|
aliasTo?: string | undefined;
|
|
79959
80003
|
};
|
|
79960
80004
|
textCase: {
|
|
@@ -80012,7 +80056,7 @@ declare const DesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.
|
|
|
80012
80056
|
aliasTo?: string | null | undefined;
|
|
80013
80057
|
};
|
|
80014
80058
|
textDecoration: {
|
|
80015
|
-
value?: "
|
|
80059
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
80016
80060
|
aliasTo?: string | null | undefined;
|
|
80017
80061
|
};
|
|
80018
80062
|
textCase: {
|
|
@@ -81934,24 +81978,24 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
81934
81978
|
data: z.ZodObject<{
|
|
81935
81979
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
81936
81980
|
} & {
|
|
81937
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
81981
|
+
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
81982
|
}, "strip", z.ZodTypeAny, {
|
|
81939
|
-
value?: "
|
|
81983
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
81940
81984
|
aliasTo?: string | undefined;
|
|
81941
81985
|
}, {
|
|
81942
|
-
value?: "
|
|
81986
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
81943
81987
|
aliasTo?: string | null | undefined;
|
|
81944
81988
|
}>;
|
|
81945
81989
|
}, "strip", z.ZodTypeAny, {
|
|
81946
81990
|
type: "TextDecoration";
|
|
81947
81991
|
data: {
|
|
81948
|
-
value?: "
|
|
81992
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
81949
81993
|
aliasTo?: string | undefined;
|
|
81950
81994
|
};
|
|
81951
81995
|
}, {
|
|
81952
81996
|
type: "TextDecoration";
|
|
81953
81997
|
data: {
|
|
81954
|
-
value?: "
|
|
81998
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
81955
81999
|
aliasTo?: string | null | undefined;
|
|
81956
82000
|
};
|
|
81957
82001
|
}>, z.ZodObject<{
|
|
@@ -81976,7 +82020,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
81976
82020
|
aliasTo?: string | undefined;
|
|
81977
82021
|
};
|
|
81978
82022
|
textDecoration: {
|
|
81979
|
-
value?: "
|
|
82023
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
81980
82024
|
aliasTo?: string | undefined;
|
|
81981
82025
|
};
|
|
81982
82026
|
textCase: {
|
|
@@ -82028,7 +82072,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82028
82072
|
aliasTo?: string | null | undefined;
|
|
82029
82073
|
};
|
|
82030
82074
|
textDecoration: {
|
|
82031
|
-
value?: "
|
|
82075
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
82032
82076
|
aliasTo?: string | null | undefined;
|
|
82033
82077
|
};
|
|
82034
82078
|
textCase: {
|
|
@@ -82080,7 +82124,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82080
82124
|
aliasTo?: string | undefined;
|
|
82081
82125
|
};
|
|
82082
82126
|
textDecoration: {
|
|
82083
|
-
value?: "
|
|
82127
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
82084
82128
|
aliasTo?: string | undefined;
|
|
82085
82129
|
};
|
|
82086
82130
|
textCase: {
|
|
@@ -82132,7 +82176,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82132
82176
|
aliasTo?: string | null | undefined;
|
|
82133
82177
|
};
|
|
82134
82178
|
textDecoration: {
|
|
82135
|
-
value?: "
|
|
82179
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
82136
82180
|
aliasTo?: string | null | undefined;
|
|
82137
82181
|
};
|
|
82138
82182
|
textCase: {
|
|
@@ -82186,7 +82230,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82186
82230
|
aliasTo?: string | undefined;
|
|
82187
82231
|
};
|
|
82188
82232
|
textDecoration: {
|
|
82189
|
-
value?: "
|
|
82233
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
82190
82234
|
aliasTo?: string | undefined;
|
|
82191
82235
|
};
|
|
82192
82236
|
textCase: {
|
|
@@ -82241,7 +82285,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82241
82285
|
aliasTo?: string | null | undefined;
|
|
82242
82286
|
};
|
|
82243
82287
|
textDecoration: {
|
|
82244
|
-
value?: "
|
|
82288
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
82245
82289
|
aliasTo?: string | null | undefined;
|
|
82246
82290
|
};
|
|
82247
82291
|
textCase: {
|
|
@@ -82299,7 +82343,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82299
82343
|
aliasTo?: string | undefined;
|
|
82300
82344
|
};
|
|
82301
82345
|
textDecoration: {
|
|
82302
|
-
value?: "
|
|
82346
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
82303
82347
|
aliasTo?: string | undefined;
|
|
82304
82348
|
};
|
|
82305
82349
|
textCase: {
|
|
@@ -82357,7 +82401,7 @@ declare const CreateDesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type
|
|
|
82357
82401
|
aliasTo?: string | null | undefined;
|
|
82358
82402
|
};
|
|
82359
82403
|
textDecoration: {
|
|
82360
|
-
value?: "
|
|
82404
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
82361
82405
|
aliasTo?: string | null | undefined;
|
|
82362
82406
|
};
|
|
82363
82407
|
textCase: {
|
|
@@ -90216,24 +90260,24 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90216
90260
|
data: z.ZodObject<{
|
|
90217
90261
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
90218
90262
|
} & {
|
|
90219
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
90263
|
+
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
90264
|
}, "strip", z.ZodTypeAny, {
|
|
90221
|
-
value?: "
|
|
90265
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90222
90266
|
aliasTo?: string | undefined;
|
|
90223
90267
|
}, {
|
|
90224
|
-
value?: "
|
|
90268
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90225
90269
|
aliasTo?: string | null | undefined;
|
|
90226
90270
|
}>;
|
|
90227
90271
|
}, "strip", z.ZodTypeAny, {
|
|
90228
90272
|
type: "TextDecoration";
|
|
90229
90273
|
data: {
|
|
90230
|
-
value?: "
|
|
90274
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90231
90275
|
aliasTo?: string | undefined;
|
|
90232
90276
|
};
|
|
90233
90277
|
}, {
|
|
90234
90278
|
type: "TextDecoration";
|
|
90235
90279
|
data: {
|
|
90236
|
-
value?: "
|
|
90280
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90237
90281
|
aliasTo?: string | null | undefined;
|
|
90238
90282
|
};
|
|
90239
90283
|
}>, z.ZodObject<{
|
|
@@ -90258,7 +90302,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90258
90302
|
aliasTo?: string | undefined;
|
|
90259
90303
|
};
|
|
90260
90304
|
textDecoration: {
|
|
90261
|
-
value?: "
|
|
90305
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90262
90306
|
aliasTo?: string | undefined;
|
|
90263
90307
|
};
|
|
90264
90308
|
textCase: {
|
|
@@ -90310,7 +90354,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90310
90354
|
aliasTo?: string | null | undefined;
|
|
90311
90355
|
};
|
|
90312
90356
|
textDecoration: {
|
|
90313
|
-
value?: "
|
|
90357
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90314
90358
|
aliasTo?: string | null | undefined;
|
|
90315
90359
|
};
|
|
90316
90360
|
textCase: {
|
|
@@ -90362,7 +90406,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90362
90406
|
aliasTo?: string | undefined;
|
|
90363
90407
|
};
|
|
90364
90408
|
textDecoration: {
|
|
90365
|
-
value?: "
|
|
90409
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90366
90410
|
aliasTo?: string | undefined;
|
|
90367
90411
|
};
|
|
90368
90412
|
textCase: {
|
|
@@ -90414,7 +90458,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90414
90458
|
aliasTo?: string | null | undefined;
|
|
90415
90459
|
};
|
|
90416
90460
|
textDecoration: {
|
|
90417
|
-
value?: "
|
|
90461
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90418
90462
|
aliasTo?: string | null | undefined;
|
|
90419
90463
|
};
|
|
90420
90464
|
textCase: {
|
|
@@ -90468,7 +90512,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90468
90512
|
aliasTo?: string | undefined;
|
|
90469
90513
|
};
|
|
90470
90514
|
textDecoration: {
|
|
90471
|
-
value?: "
|
|
90515
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90472
90516
|
aliasTo?: string | undefined;
|
|
90473
90517
|
};
|
|
90474
90518
|
textCase: {
|
|
@@ -90523,7 +90567,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90523
90567
|
aliasTo?: string | null | undefined;
|
|
90524
90568
|
};
|
|
90525
90569
|
textDecoration: {
|
|
90526
|
-
value?: "
|
|
90570
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90527
90571
|
aliasTo?: string | null | undefined;
|
|
90528
90572
|
};
|
|
90529
90573
|
textCase: {
|
|
@@ -90581,7 +90625,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90581
90625
|
aliasTo?: string | undefined;
|
|
90582
90626
|
};
|
|
90583
90627
|
textDecoration: {
|
|
90584
|
-
value?: "
|
|
90628
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
90585
90629
|
aliasTo?: string | undefined;
|
|
90586
90630
|
};
|
|
90587
90631
|
textCase: {
|
|
@@ -90639,7 +90683,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
90639
90683
|
aliasTo?: string | null | undefined;
|
|
90640
90684
|
};
|
|
90641
90685
|
textDecoration: {
|
|
90642
|
-
value?: "
|
|
90686
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
90643
90687
|
aliasTo?: string | null | undefined;
|
|
90644
90688
|
};
|
|
90645
90689
|
textCase: {
|
|
@@ -92937,24 +92981,24 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
92937
92981
|
data: z.ZodObject<{
|
|
92938
92982
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
92939
92983
|
} & {
|
|
92940
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
92984
|
+
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
92985
|
}, "strip", z.ZodTypeAny, {
|
|
92942
|
-
value?: "
|
|
92986
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
92943
92987
|
aliasTo?: string | undefined;
|
|
92944
92988
|
}, {
|
|
92945
|
-
value?: "
|
|
92989
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
92946
92990
|
aliasTo?: string | null | undefined;
|
|
92947
92991
|
}>;
|
|
92948
92992
|
}, "strip", z.ZodTypeAny, {
|
|
92949
92993
|
type: "TextDecoration";
|
|
92950
92994
|
data: {
|
|
92951
|
-
value?: "
|
|
92995
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
92952
92996
|
aliasTo?: string | undefined;
|
|
92953
92997
|
};
|
|
92954
92998
|
}, {
|
|
92955
92999
|
type: "TextDecoration";
|
|
92956
93000
|
data: {
|
|
92957
|
-
value?: "
|
|
93001
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
92958
93002
|
aliasTo?: string | null | undefined;
|
|
92959
93003
|
};
|
|
92960
93004
|
}>, z.ZodObject<{
|
|
@@ -92979,7 +93023,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
92979
93023
|
aliasTo?: string | undefined;
|
|
92980
93024
|
};
|
|
92981
93025
|
textDecoration: {
|
|
92982
|
-
value?: "
|
|
93026
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
92983
93027
|
aliasTo?: string | undefined;
|
|
92984
93028
|
};
|
|
92985
93029
|
textCase: {
|
|
@@ -93031,7 +93075,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93031
93075
|
aliasTo?: string | null | undefined;
|
|
93032
93076
|
};
|
|
93033
93077
|
textDecoration: {
|
|
93034
|
-
value?: "
|
|
93078
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
93035
93079
|
aliasTo?: string | null | undefined;
|
|
93036
93080
|
};
|
|
93037
93081
|
textCase: {
|
|
@@ -93083,7 +93127,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93083
93127
|
aliasTo?: string | undefined;
|
|
93084
93128
|
};
|
|
93085
93129
|
textDecoration: {
|
|
93086
|
-
value?: "
|
|
93130
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93087
93131
|
aliasTo?: string | undefined;
|
|
93088
93132
|
};
|
|
93089
93133
|
textCase: {
|
|
@@ -93135,7 +93179,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93135
93179
|
aliasTo?: string | null | undefined;
|
|
93136
93180
|
};
|
|
93137
93181
|
textDecoration: {
|
|
93138
|
-
value?: "
|
|
93182
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
93139
93183
|
aliasTo?: string | null | undefined;
|
|
93140
93184
|
};
|
|
93141
93185
|
textCase: {
|
|
@@ -93189,7 +93233,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93189
93233
|
aliasTo?: string | undefined;
|
|
93190
93234
|
};
|
|
93191
93235
|
textDecoration: {
|
|
93192
|
-
value?: "
|
|
93236
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93193
93237
|
aliasTo?: string | undefined;
|
|
93194
93238
|
};
|
|
93195
93239
|
textCase: {
|
|
@@ -93244,7 +93288,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93244
93288
|
aliasTo?: string | null | undefined;
|
|
93245
93289
|
};
|
|
93246
93290
|
textDecoration: {
|
|
93247
|
-
value?: "
|
|
93291
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
93248
93292
|
aliasTo?: string | null | undefined;
|
|
93249
93293
|
};
|
|
93250
93294
|
textCase: {
|
|
@@ -93302,7 +93346,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93302
93346
|
aliasTo?: string | undefined;
|
|
93303
93347
|
};
|
|
93304
93348
|
textDecoration: {
|
|
93305
|
-
value?: "
|
|
93349
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93306
93350
|
aliasTo?: string | undefined;
|
|
93307
93351
|
};
|
|
93308
93352
|
textCase: {
|
|
@@ -93360,7 +93404,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93360
93404
|
aliasTo?: string | null | undefined;
|
|
93361
93405
|
};
|
|
93362
93406
|
textDecoration: {
|
|
93363
|
-
value?: "
|
|
93407
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
93364
93408
|
aliasTo?: string | null | undefined;
|
|
93365
93409
|
};
|
|
93366
93410
|
textCase: {
|
|
@@ -93726,7 +93770,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93726
93770
|
aliasTo?: string | undefined;
|
|
93727
93771
|
};
|
|
93728
93772
|
textDecoration: {
|
|
93729
|
-
value?: "
|
|
93773
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93730
93774
|
aliasTo?: string | undefined;
|
|
93731
93775
|
};
|
|
93732
93776
|
textCase: {
|
|
@@ -93836,7 +93880,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
93836
93880
|
} | {
|
|
93837
93881
|
type: "TextDecoration";
|
|
93838
93882
|
data: {
|
|
93839
|
-
value?: "
|
|
93883
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
93840
93884
|
aliasTo?: string | undefined;
|
|
93841
93885
|
};
|
|
93842
93886
|
} | {
|
|
@@ -94101,7 +94145,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94101
94145
|
aliasTo?: string | null | undefined;
|
|
94102
94146
|
};
|
|
94103
94147
|
textDecoration: {
|
|
94104
|
-
value?: "
|
|
94148
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
94105
94149
|
aliasTo?: string | null | undefined;
|
|
94106
94150
|
};
|
|
94107
94151
|
textCase: {
|
|
@@ -94211,7 +94255,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
94211
94255
|
} | {
|
|
94212
94256
|
type: "TextDecoration";
|
|
94213
94257
|
data: {
|
|
94214
|
-
value?: "
|
|
94258
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
94215
94259
|
aliasTo?: string | null | undefined;
|
|
94216
94260
|
};
|
|
94217
94261
|
} | {
|
|
@@ -96035,24 +96079,24 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96035
96079
|
data: z.ZodObject<{
|
|
96036
96080
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
96037
96081
|
} & {
|
|
96038
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
96082
|
+
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
96083
|
}, "strip", z.ZodTypeAny, {
|
|
96040
|
-
value?: "
|
|
96084
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96041
96085
|
aliasTo?: string | undefined;
|
|
96042
96086
|
}, {
|
|
96043
|
-
value?: "
|
|
96087
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96044
96088
|
aliasTo?: string | null | undefined;
|
|
96045
96089
|
}>;
|
|
96046
96090
|
}, "strip", z.ZodTypeAny, {
|
|
96047
96091
|
type: "TextDecoration";
|
|
96048
96092
|
data: {
|
|
96049
|
-
value?: "
|
|
96093
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96050
96094
|
aliasTo?: string | undefined;
|
|
96051
96095
|
};
|
|
96052
96096
|
}, {
|
|
96053
96097
|
type: "TextDecoration";
|
|
96054
96098
|
data: {
|
|
96055
|
-
value?: "
|
|
96099
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96056
96100
|
aliasTo?: string | null | undefined;
|
|
96057
96101
|
};
|
|
96058
96102
|
}>, z.ZodObject<{
|
|
@@ -96077,7 +96121,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96077
96121
|
aliasTo?: string | undefined;
|
|
96078
96122
|
};
|
|
96079
96123
|
textDecoration: {
|
|
96080
|
-
value?: "
|
|
96124
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96081
96125
|
aliasTo?: string | undefined;
|
|
96082
96126
|
};
|
|
96083
96127
|
textCase: {
|
|
@@ -96129,7 +96173,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96129
96173
|
aliasTo?: string | null | undefined;
|
|
96130
96174
|
};
|
|
96131
96175
|
textDecoration: {
|
|
96132
|
-
value?: "
|
|
96176
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96133
96177
|
aliasTo?: string | null | undefined;
|
|
96134
96178
|
};
|
|
96135
96179
|
textCase: {
|
|
@@ -96181,7 +96225,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96181
96225
|
aliasTo?: string | undefined;
|
|
96182
96226
|
};
|
|
96183
96227
|
textDecoration: {
|
|
96184
|
-
value?: "
|
|
96228
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96185
96229
|
aliasTo?: string | undefined;
|
|
96186
96230
|
};
|
|
96187
96231
|
textCase: {
|
|
@@ -96233,7 +96277,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96233
96277
|
aliasTo?: string | null | undefined;
|
|
96234
96278
|
};
|
|
96235
96279
|
textDecoration: {
|
|
96236
|
-
value?: "
|
|
96280
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96237
96281
|
aliasTo?: string | null | undefined;
|
|
96238
96282
|
};
|
|
96239
96283
|
textCase: {
|
|
@@ -96287,7 +96331,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96287
96331
|
aliasTo?: string | undefined;
|
|
96288
96332
|
};
|
|
96289
96333
|
textDecoration: {
|
|
96290
|
-
value?: "
|
|
96334
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96291
96335
|
aliasTo?: string | undefined;
|
|
96292
96336
|
};
|
|
96293
96337
|
textCase: {
|
|
@@ -96342,7 +96386,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96342
96386
|
aliasTo?: string | null | undefined;
|
|
96343
96387
|
};
|
|
96344
96388
|
textDecoration: {
|
|
96345
|
-
value?: "
|
|
96389
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96346
96390
|
aliasTo?: string | null | undefined;
|
|
96347
96391
|
};
|
|
96348
96392
|
textCase: {
|
|
@@ -96400,7 +96444,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96400
96444
|
aliasTo?: string | undefined;
|
|
96401
96445
|
};
|
|
96402
96446
|
textDecoration: {
|
|
96403
|
-
value?: "
|
|
96447
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96404
96448
|
aliasTo?: string | undefined;
|
|
96405
96449
|
};
|
|
96406
96450
|
textCase: {
|
|
@@ -96458,7 +96502,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96458
96502
|
aliasTo?: string | null | undefined;
|
|
96459
96503
|
};
|
|
96460
96504
|
textDecoration: {
|
|
96461
|
-
value?: "
|
|
96505
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
96462
96506
|
aliasTo?: string | null | undefined;
|
|
96463
96507
|
};
|
|
96464
96508
|
textCase: {
|
|
@@ -96831,7 +96875,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96831
96875
|
aliasTo?: string | undefined;
|
|
96832
96876
|
};
|
|
96833
96877
|
textDecoration: {
|
|
96834
|
-
value?: "
|
|
96878
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96835
96879
|
aliasTo?: string | undefined;
|
|
96836
96880
|
};
|
|
96837
96881
|
textCase: {
|
|
@@ -96941,7 +96985,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
96941
96985
|
} | {
|
|
96942
96986
|
type: "TextDecoration";
|
|
96943
96987
|
data: {
|
|
96944
|
-
value?: "
|
|
96988
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
96945
96989
|
aliasTo?: string | undefined;
|
|
96946
96990
|
};
|
|
96947
96991
|
} | {
|
|
@@ -97218,7 +97262,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
97218
97262
|
aliasTo?: string | null | undefined;
|
|
97219
97263
|
};
|
|
97220
97264
|
textDecoration: {
|
|
97221
|
-
value?: "
|
|
97265
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
97222
97266
|
aliasTo?: string | null | undefined;
|
|
97223
97267
|
};
|
|
97224
97268
|
textCase: {
|
|
@@ -97328,7 +97372,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
97328
97372
|
} | {
|
|
97329
97373
|
type: "TextDecoration";
|
|
97330
97374
|
data: {
|
|
97331
|
-
value?: "
|
|
97375
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
97332
97376
|
aliasTo?: string | null | undefined;
|
|
97333
97377
|
};
|
|
97334
97378
|
} | {
|
|
@@ -97813,7 +97857,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
97813
97857
|
aliasTo?: string | undefined;
|
|
97814
97858
|
};
|
|
97815
97859
|
textDecoration: {
|
|
97816
|
-
value?: "
|
|
97860
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
97817
97861
|
aliasTo?: string | undefined;
|
|
97818
97862
|
};
|
|
97819
97863
|
textCase: {
|
|
@@ -97923,7 +97967,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
97923
97967
|
} | {
|
|
97924
97968
|
type: "TextDecoration";
|
|
97925
97969
|
data: {
|
|
97926
|
-
value?: "
|
|
97970
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
97927
97971
|
aliasTo?: string | undefined;
|
|
97928
97972
|
};
|
|
97929
97973
|
} | {
|
|
@@ -98280,7 +98324,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
98280
98324
|
aliasTo?: string | undefined;
|
|
98281
98325
|
};
|
|
98282
98326
|
textDecoration: {
|
|
98283
|
-
value?: "
|
|
98327
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98284
98328
|
aliasTo?: string | undefined;
|
|
98285
98329
|
};
|
|
98286
98330
|
textCase: {
|
|
@@ -98390,7 +98434,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
98390
98434
|
} | {
|
|
98391
98435
|
type: "TextDecoration";
|
|
98392
98436
|
data: {
|
|
98393
|
-
value?: "
|
|
98437
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98394
98438
|
aliasTo?: string | undefined;
|
|
98395
98439
|
};
|
|
98396
98440
|
} | {
|
|
@@ -98658,7 +98702,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
98658
98702
|
aliasTo?: string | undefined;
|
|
98659
98703
|
};
|
|
98660
98704
|
textDecoration: {
|
|
98661
|
-
value?: "
|
|
98705
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98662
98706
|
aliasTo?: string | undefined;
|
|
98663
98707
|
};
|
|
98664
98708
|
textCase: {
|
|
@@ -98768,7 +98812,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
98768
98812
|
} | {
|
|
98769
98813
|
type: "TextDecoration";
|
|
98770
98814
|
data: {
|
|
98771
|
-
value?: "
|
|
98815
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98772
98816
|
aliasTo?: string | undefined;
|
|
98773
98817
|
};
|
|
98774
98818
|
} | {
|
|
@@ -99135,7 +99179,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99135
99179
|
aliasTo?: string | null | undefined;
|
|
99136
99180
|
};
|
|
99137
99181
|
textDecoration: {
|
|
99138
|
-
value?: "
|
|
99182
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99139
99183
|
aliasTo?: string | null | undefined;
|
|
99140
99184
|
};
|
|
99141
99185
|
textCase: {
|
|
@@ -99245,7 +99289,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99245
99289
|
} | {
|
|
99246
99290
|
type: "TextDecoration";
|
|
99247
99291
|
data: {
|
|
99248
|
-
value?: "
|
|
99292
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99249
99293
|
aliasTo?: string | null | undefined;
|
|
99250
99294
|
};
|
|
99251
99295
|
} | {
|
|
@@ -99597,7 +99641,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99597
99641
|
aliasTo?: string | null | undefined;
|
|
99598
99642
|
};
|
|
99599
99643
|
textDecoration: {
|
|
99600
|
-
value?: "
|
|
99644
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99601
99645
|
aliasTo?: string | null | undefined;
|
|
99602
99646
|
};
|
|
99603
99647
|
textCase: {
|
|
@@ -99707,7 +99751,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99707
99751
|
} | {
|
|
99708
99752
|
type: "TextDecoration";
|
|
99709
99753
|
data: {
|
|
99710
|
-
value?: "
|
|
99754
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99711
99755
|
aliasTo?: string | null | undefined;
|
|
99712
99756
|
};
|
|
99713
99757
|
} | {
|
|
@@ -99975,7 +100019,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
99975
100019
|
aliasTo?: string | null | undefined;
|
|
99976
100020
|
};
|
|
99977
100021
|
textDecoration: {
|
|
99978
|
-
value?: "
|
|
100022
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99979
100023
|
aliasTo?: string | null | undefined;
|
|
99980
100024
|
};
|
|
99981
100025
|
textCase: {
|
|
@@ -100085,7 +100129,7 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
100085
100129
|
} | {
|
|
100086
100130
|
type: "TextDecoration";
|
|
100087
100131
|
data: {
|
|
100088
|
-
value?: "
|
|
100132
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
100089
100133
|
aliasTo?: string | null | undefined;
|
|
100090
100134
|
};
|
|
100091
100135
|
} | {
|
|
@@ -101888,24 +101932,24 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101888
101932
|
data: z.ZodObject<{
|
|
101889
101933
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
101890
101934
|
} & {
|
|
101891
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
101935
|
+
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
101936
|
}, "strip", z.ZodTypeAny, {
|
|
101893
|
-
value?: "
|
|
101937
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
101894
101938
|
aliasTo?: string | undefined;
|
|
101895
101939
|
}, {
|
|
101896
|
-
value?: "
|
|
101940
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
101897
101941
|
aliasTo?: string | null | undefined;
|
|
101898
101942
|
}>;
|
|
101899
101943
|
}, "strip", z.ZodTypeAny, {
|
|
101900
101944
|
type: "TextDecoration";
|
|
101901
101945
|
data: {
|
|
101902
|
-
value?: "
|
|
101946
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
101903
101947
|
aliasTo?: string | undefined;
|
|
101904
101948
|
};
|
|
101905
101949
|
}, {
|
|
101906
101950
|
type: "TextDecoration";
|
|
101907
101951
|
data: {
|
|
101908
|
-
value?: "
|
|
101952
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
101909
101953
|
aliasTo?: string | null | undefined;
|
|
101910
101954
|
};
|
|
101911
101955
|
}>, z.ZodObject<{
|
|
@@ -101930,7 +101974,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101930
101974
|
aliasTo?: string | undefined;
|
|
101931
101975
|
};
|
|
101932
101976
|
textDecoration: {
|
|
101933
|
-
value?: "
|
|
101977
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
101934
101978
|
aliasTo?: string | undefined;
|
|
101935
101979
|
};
|
|
101936
101980
|
textCase: {
|
|
@@ -101982,7 +102026,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
101982
102026
|
aliasTo?: string | null | undefined;
|
|
101983
102027
|
};
|
|
101984
102028
|
textDecoration: {
|
|
101985
|
-
value?: "
|
|
102029
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
101986
102030
|
aliasTo?: string | null | undefined;
|
|
101987
102031
|
};
|
|
101988
102032
|
textCase: {
|
|
@@ -102034,7 +102078,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102034
102078
|
aliasTo?: string | undefined;
|
|
102035
102079
|
};
|
|
102036
102080
|
textDecoration: {
|
|
102037
|
-
value?: "
|
|
102081
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
102038
102082
|
aliasTo?: string | undefined;
|
|
102039
102083
|
};
|
|
102040
102084
|
textCase: {
|
|
@@ -102086,7 +102130,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102086
102130
|
aliasTo?: string | null | undefined;
|
|
102087
102131
|
};
|
|
102088
102132
|
textDecoration: {
|
|
102089
|
-
value?: "
|
|
102133
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
102090
102134
|
aliasTo?: string | null | undefined;
|
|
102091
102135
|
};
|
|
102092
102136
|
textCase: {
|
|
@@ -102140,7 +102184,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102140
102184
|
aliasTo?: string | undefined;
|
|
102141
102185
|
};
|
|
102142
102186
|
textDecoration: {
|
|
102143
|
-
value?: "
|
|
102187
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
102144
102188
|
aliasTo?: string | undefined;
|
|
102145
102189
|
};
|
|
102146
102190
|
textCase: {
|
|
@@ -102195,7 +102239,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102195
102239
|
aliasTo?: string | null | undefined;
|
|
102196
102240
|
};
|
|
102197
102241
|
textDecoration: {
|
|
102198
|
-
value?: "
|
|
102242
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
102199
102243
|
aliasTo?: string | null | undefined;
|
|
102200
102244
|
};
|
|
102201
102245
|
textCase: {
|
|
@@ -102253,7 +102297,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102253
102297
|
aliasTo?: string | undefined;
|
|
102254
102298
|
};
|
|
102255
102299
|
textDecoration: {
|
|
102256
|
-
value?: "
|
|
102300
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
102257
102301
|
aliasTo?: string | undefined;
|
|
102258
102302
|
};
|
|
102259
102303
|
textCase: {
|
|
@@ -102311,7 +102355,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
102311
102355
|
aliasTo?: string | null | undefined;
|
|
102312
102356
|
};
|
|
102313
102357
|
textDecoration: {
|
|
102314
|
-
value?: "
|
|
102358
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
102315
102359
|
aliasTo?: string | null | undefined;
|
|
102316
102360
|
};
|
|
102317
102361
|
textCase: {
|
|
@@ -104948,24 +104992,24 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
104948
104992
|
data: z.ZodObject<{
|
|
104949
104993
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
104950
104994
|
} & {
|
|
104951
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
104995
|
+
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
104996
|
}, "strip", z.ZodTypeAny, {
|
|
104953
|
-
value?: "
|
|
104997
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
104954
104998
|
aliasTo?: string | undefined;
|
|
104955
104999
|
}, {
|
|
104956
|
-
value?: "
|
|
105000
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
104957
105001
|
aliasTo?: string | null | undefined;
|
|
104958
105002
|
}>;
|
|
104959
105003
|
}, "strip", z.ZodTypeAny, {
|
|
104960
105004
|
type: "TextDecoration";
|
|
104961
105005
|
data: {
|
|
104962
|
-
value?: "
|
|
105006
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
104963
105007
|
aliasTo?: string | undefined;
|
|
104964
105008
|
};
|
|
104965
105009
|
}, {
|
|
104966
105010
|
type: "TextDecoration";
|
|
104967
105011
|
data: {
|
|
104968
|
-
value?: "
|
|
105012
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
104969
105013
|
aliasTo?: string | null | undefined;
|
|
104970
105014
|
};
|
|
104971
105015
|
}>, z.ZodObject<{
|
|
@@ -104990,7 +105034,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
104990
105034
|
aliasTo?: string | undefined;
|
|
104991
105035
|
};
|
|
104992
105036
|
textDecoration: {
|
|
104993
|
-
value?: "
|
|
105037
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
104994
105038
|
aliasTo?: string | undefined;
|
|
104995
105039
|
};
|
|
104996
105040
|
textCase: {
|
|
@@ -105042,7 +105086,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105042
105086
|
aliasTo?: string | null | undefined;
|
|
105043
105087
|
};
|
|
105044
105088
|
textDecoration: {
|
|
105045
|
-
value?: "
|
|
105089
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
105046
105090
|
aliasTo?: string | null | undefined;
|
|
105047
105091
|
};
|
|
105048
105092
|
textCase: {
|
|
@@ -105094,7 +105138,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105094
105138
|
aliasTo?: string | undefined;
|
|
105095
105139
|
};
|
|
105096
105140
|
textDecoration: {
|
|
105097
|
-
value?: "
|
|
105141
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105098
105142
|
aliasTo?: string | undefined;
|
|
105099
105143
|
};
|
|
105100
105144
|
textCase: {
|
|
@@ -105146,7 +105190,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105146
105190
|
aliasTo?: string | null | undefined;
|
|
105147
105191
|
};
|
|
105148
105192
|
textDecoration: {
|
|
105149
|
-
value?: "
|
|
105193
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
105150
105194
|
aliasTo?: string | null | undefined;
|
|
105151
105195
|
};
|
|
105152
105196
|
textCase: {
|
|
@@ -105200,7 +105244,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105200
105244
|
aliasTo?: string | undefined;
|
|
105201
105245
|
};
|
|
105202
105246
|
textDecoration: {
|
|
105203
|
-
value?: "
|
|
105247
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105204
105248
|
aliasTo?: string | undefined;
|
|
105205
105249
|
};
|
|
105206
105250
|
textCase: {
|
|
@@ -105255,7 +105299,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105255
105299
|
aliasTo?: string | null | undefined;
|
|
105256
105300
|
};
|
|
105257
105301
|
textDecoration: {
|
|
105258
|
-
value?: "
|
|
105302
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
105259
105303
|
aliasTo?: string | null | undefined;
|
|
105260
105304
|
};
|
|
105261
105305
|
textCase: {
|
|
@@ -105313,7 +105357,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105313
105357
|
aliasTo?: string | undefined;
|
|
105314
105358
|
};
|
|
105315
105359
|
textDecoration: {
|
|
105316
|
-
value?: "
|
|
105360
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105317
105361
|
aliasTo?: string | undefined;
|
|
105318
105362
|
};
|
|
105319
105363
|
textCase: {
|
|
@@ -105371,7 +105415,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105371
105415
|
aliasTo?: string | null | undefined;
|
|
105372
105416
|
};
|
|
105373
105417
|
textDecoration: {
|
|
105374
|
-
value?: "
|
|
105418
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
105375
105419
|
aliasTo?: string | null | undefined;
|
|
105376
105420
|
};
|
|
105377
105421
|
textCase: {
|
|
@@ -105724,7 +105768,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105724
105768
|
aliasTo?: string | undefined;
|
|
105725
105769
|
};
|
|
105726
105770
|
textDecoration: {
|
|
105727
|
-
value?: "
|
|
105771
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105728
105772
|
aliasTo?: string | undefined;
|
|
105729
105773
|
};
|
|
105730
105774
|
textCase: {
|
|
@@ -105834,7 +105878,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
105834
105878
|
} | {
|
|
105835
105879
|
type: "TextDecoration";
|
|
105836
105880
|
data: {
|
|
105837
|
-
value?: "
|
|
105881
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
105838
105882
|
aliasTo?: string | undefined;
|
|
105839
105883
|
};
|
|
105840
105884
|
} | {
|
|
@@ -106097,7 +106141,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106097
106141
|
aliasTo?: string | null | undefined;
|
|
106098
106142
|
};
|
|
106099
106143
|
textDecoration: {
|
|
106100
|
-
value?: "
|
|
106144
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
106101
106145
|
aliasTo?: string | null | undefined;
|
|
106102
106146
|
};
|
|
106103
106147
|
textCase: {
|
|
@@ -106207,7 +106251,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
106207
106251
|
} | {
|
|
106208
106252
|
type: "TextDecoration";
|
|
106209
106253
|
data: {
|
|
106210
|
-
value?: "
|
|
106254
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
106211
106255
|
aliasTo?: string | null | undefined;
|
|
106212
106256
|
};
|
|
106213
106257
|
} | {
|
|
@@ -108013,24 +108057,24 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108013
108057
|
data: z.ZodObject<{
|
|
108014
108058
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
108015
108059
|
} & {
|
|
108016
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
108060
|
+
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
108061
|
}, "strip", z.ZodTypeAny, {
|
|
108018
|
-
value?: "
|
|
108062
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108019
108063
|
aliasTo?: string | undefined;
|
|
108020
108064
|
}, {
|
|
108021
|
-
value?: "
|
|
108065
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108022
108066
|
aliasTo?: string | null | undefined;
|
|
108023
108067
|
}>;
|
|
108024
108068
|
}, "strip", z.ZodTypeAny, {
|
|
108025
108069
|
type: "TextDecoration";
|
|
108026
108070
|
data: {
|
|
108027
|
-
value?: "
|
|
108071
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108028
108072
|
aliasTo?: string | undefined;
|
|
108029
108073
|
};
|
|
108030
108074
|
}, {
|
|
108031
108075
|
type: "TextDecoration";
|
|
108032
108076
|
data: {
|
|
108033
|
-
value?: "
|
|
108077
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108034
108078
|
aliasTo?: string | null | undefined;
|
|
108035
108079
|
};
|
|
108036
108080
|
}>, z.ZodObject<{
|
|
@@ -108055,7 +108099,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108055
108099
|
aliasTo?: string | undefined;
|
|
108056
108100
|
};
|
|
108057
108101
|
textDecoration: {
|
|
108058
|
-
value?: "
|
|
108102
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108059
108103
|
aliasTo?: string | undefined;
|
|
108060
108104
|
};
|
|
108061
108105
|
textCase: {
|
|
@@ -108107,7 +108151,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108107
108151
|
aliasTo?: string | null | undefined;
|
|
108108
108152
|
};
|
|
108109
108153
|
textDecoration: {
|
|
108110
|
-
value?: "
|
|
108154
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108111
108155
|
aliasTo?: string | null | undefined;
|
|
108112
108156
|
};
|
|
108113
108157
|
textCase: {
|
|
@@ -108159,7 +108203,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108159
108203
|
aliasTo?: string | undefined;
|
|
108160
108204
|
};
|
|
108161
108205
|
textDecoration: {
|
|
108162
|
-
value?: "
|
|
108206
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108163
108207
|
aliasTo?: string | undefined;
|
|
108164
108208
|
};
|
|
108165
108209
|
textCase: {
|
|
@@ -108211,7 +108255,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108211
108255
|
aliasTo?: string | null | undefined;
|
|
108212
108256
|
};
|
|
108213
108257
|
textDecoration: {
|
|
108214
|
-
value?: "
|
|
108258
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108215
108259
|
aliasTo?: string | null | undefined;
|
|
108216
108260
|
};
|
|
108217
108261
|
textCase: {
|
|
@@ -108265,7 +108309,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108265
108309
|
aliasTo?: string | undefined;
|
|
108266
108310
|
};
|
|
108267
108311
|
textDecoration: {
|
|
108268
|
-
value?: "
|
|
108312
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108269
108313
|
aliasTo?: string | undefined;
|
|
108270
108314
|
};
|
|
108271
108315
|
textCase: {
|
|
@@ -108320,7 +108364,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108320
108364
|
aliasTo?: string | null | undefined;
|
|
108321
108365
|
};
|
|
108322
108366
|
textDecoration: {
|
|
108323
|
-
value?: "
|
|
108367
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108324
108368
|
aliasTo?: string | null | undefined;
|
|
108325
108369
|
};
|
|
108326
108370
|
textCase: {
|
|
@@ -108378,7 +108422,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108378
108422
|
aliasTo?: string | undefined;
|
|
108379
108423
|
};
|
|
108380
108424
|
textDecoration: {
|
|
108381
|
-
value?: "
|
|
108425
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108382
108426
|
aliasTo?: string | undefined;
|
|
108383
108427
|
};
|
|
108384
108428
|
textCase: {
|
|
@@ -108436,7 +108480,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108436
108480
|
aliasTo?: string | null | undefined;
|
|
108437
108481
|
};
|
|
108438
108482
|
textDecoration: {
|
|
108439
|
-
value?: "
|
|
108483
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
108440
108484
|
aliasTo?: string | null | undefined;
|
|
108441
108485
|
};
|
|
108442
108486
|
textCase: {
|
|
@@ -108793,7 +108837,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108793
108837
|
aliasTo?: string | undefined;
|
|
108794
108838
|
};
|
|
108795
108839
|
textDecoration: {
|
|
108796
|
-
value?: "
|
|
108840
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108797
108841
|
aliasTo?: string | undefined;
|
|
108798
108842
|
};
|
|
108799
108843
|
textCase: {
|
|
@@ -108903,7 +108947,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
108903
108947
|
} | {
|
|
108904
108948
|
type: "TextDecoration";
|
|
108905
108949
|
data: {
|
|
108906
|
-
value?: "
|
|
108950
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
108907
108951
|
aliasTo?: string | undefined;
|
|
108908
108952
|
};
|
|
108909
108953
|
} | {
|
|
@@ -109173,7 +109217,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109173
109217
|
aliasTo?: string | null | undefined;
|
|
109174
109218
|
};
|
|
109175
109219
|
textDecoration: {
|
|
109176
|
-
value?: "
|
|
109220
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
109177
109221
|
aliasTo?: string | null | undefined;
|
|
109178
109222
|
};
|
|
109179
109223
|
textCase: {
|
|
@@ -109283,7 +109327,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109283
109327
|
} | {
|
|
109284
109328
|
type: "TextDecoration";
|
|
109285
109329
|
data: {
|
|
109286
|
-
value?: "
|
|
109330
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
109287
109331
|
aliasTo?: string | null | undefined;
|
|
109288
109332
|
};
|
|
109289
109333
|
} | {
|
|
@@ -109827,7 +109871,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109827
109871
|
aliasTo?: string | undefined;
|
|
109828
109872
|
};
|
|
109829
109873
|
textDecoration: {
|
|
109830
|
-
value?: "
|
|
109874
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
109831
109875
|
aliasTo?: string | undefined;
|
|
109832
109876
|
};
|
|
109833
109877
|
textCase: {
|
|
@@ -109937,7 +109981,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
109937
109981
|
} | {
|
|
109938
109982
|
type: "TextDecoration";
|
|
109939
109983
|
data: {
|
|
109940
|
-
value?: "
|
|
109984
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
109941
109985
|
aliasTo?: string | undefined;
|
|
109942
109986
|
};
|
|
109943
109987
|
} | {
|
|
@@ -110280,7 +110324,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
110280
110324
|
aliasTo?: string | undefined;
|
|
110281
110325
|
};
|
|
110282
110326
|
textDecoration: {
|
|
110283
|
-
value?: "
|
|
110327
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
110284
110328
|
aliasTo?: string | undefined;
|
|
110285
110329
|
};
|
|
110286
110330
|
textCase: {
|
|
@@ -110390,7 +110434,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
110390
110434
|
} | {
|
|
110391
110435
|
type: "TextDecoration";
|
|
110392
110436
|
data: {
|
|
110393
|
-
value?: "
|
|
110437
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
110394
110438
|
aliasTo?: string | undefined;
|
|
110395
110439
|
};
|
|
110396
110440
|
} | {
|
|
@@ -110654,7 +110698,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
110654
110698
|
aliasTo?: string | undefined;
|
|
110655
110699
|
};
|
|
110656
110700
|
textDecoration: {
|
|
110657
|
-
value?: "
|
|
110701
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
110658
110702
|
aliasTo?: string | undefined;
|
|
110659
110703
|
};
|
|
110660
110704
|
textCase: {
|
|
@@ -110764,7 +110808,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
110764
110808
|
} | {
|
|
110765
110809
|
type: "TextDecoration";
|
|
110766
110810
|
data: {
|
|
110767
|
-
value?: "
|
|
110811
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
110768
110812
|
aliasTo?: string | undefined;
|
|
110769
110813
|
};
|
|
110770
110814
|
} | {
|
|
@@ -111152,7 +111196,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111152
111196
|
aliasTo?: string | null | undefined;
|
|
111153
111197
|
};
|
|
111154
111198
|
textDecoration: {
|
|
111155
|
-
value?: "
|
|
111199
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111156
111200
|
aliasTo?: string | null | undefined;
|
|
111157
111201
|
};
|
|
111158
111202
|
textCase: {
|
|
@@ -111262,7 +111306,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111262
111306
|
} | {
|
|
111263
111307
|
type: "TextDecoration";
|
|
111264
111308
|
data: {
|
|
111265
|
-
value?: "
|
|
111309
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111266
111310
|
aliasTo?: string | null | undefined;
|
|
111267
111311
|
};
|
|
111268
111312
|
} | {
|
|
@@ -111605,7 +111649,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111605
111649
|
aliasTo?: string | null | undefined;
|
|
111606
111650
|
};
|
|
111607
111651
|
textDecoration: {
|
|
111608
|
-
value?: "
|
|
111652
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111609
111653
|
aliasTo?: string | null | undefined;
|
|
111610
111654
|
};
|
|
111611
111655
|
textCase: {
|
|
@@ -111715,7 +111759,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111715
111759
|
} | {
|
|
111716
111760
|
type: "TextDecoration";
|
|
111717
111761
|
data: {
|
|
111718
|
-
value?: "
|
|
111762
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111719
111763
|
aliasTo?: string | null | undefined;
|
|
111720
111764
|
};
|
|
111721
111765
|
} | {
|
|
@@ -111979,7 +112023,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
111979
112023
|
aliasTo?: string | null | undefined;
|
|
111980
112024
|
};
|
|
111981
112025
|
textDecoration: {
|
|
111982
|
-
value?: "
|
|
112026
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
111983
112027
|
aliasTo?: string | null | undefined;
|
|
111984
112028
|
};
|
|
111985
112029
|
textCase: {
|
|
@@ -112089,7 +112133,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
112089
112133
|
} | {
|
|
112090
112134
|
type: "TextDecoration";
|
|
112091
112135
|
data: {
|
|
112092
|
-
value?: "
|
|
112136
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
112093
112137
|
aliasTo?: string | null | undefined;
|
|
112094
112138
|
};
|
|
112095
112139
|
} | {
|
|
@@ -115483,24 +115527,24 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115483
115527
|
data: z.ZodObject<{
|
|
115484
115528
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
115485
115529
|
} & {
|
|
115486
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
115530
|
+
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
115531
|
}, "strip", z.ZodTypeAny, {
|
|
115488
|
-
value?: "
|
|
115532
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115489
115533
|
aliasTo?: string | undefined;
|
|
115490
115534
|
}, {
|
|
115491
|
-
value?: "
|
|
115535
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115492
115536
|
aliasTo?: string | null | undefined;
|
|
115493
115537
|
}>;
|
|
115494
115538
|
}, "strip", z.ZodTypeAny, {
|
|
115495
115539
|
type: "TextDecoration";
|
|
115496
115540
|
data: {
|
|
115497
|
-
value?: "
|
|
115541
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115498
115542
|
aliasTo?: string | undefined;
|
|
115499
115543
|
};
|
|
115500
115544
|
}, {
|
|
115501
115545
|
type: "TextDecoration";
|
|
115502
115546
|
data: {
|
|
115503
|
-
value?: "
|
|
115547
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115504
115548
|
aliasTo?: string | null | undefined;
|
|
115505
115549
|
};
|
|
115506
115550
|
}>, z.ZodObject<{
|
|
@@ -115525,7 +115569,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115525
115569
|
aliasTo?: string | undefined;
|
|
115526
115570
|
};
|
|
115527
115571
|
textDecoration: {
|
|
115528
|
-
value?: "
|
|
115572
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115529
115573
|
aliasTo?: string | undefined;
|
|
115530
115574
|
};
|
|
115531
115575
|
textCase: {
|
|
@@ -115577,7 +115621,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115577
115621
|
aliasTo?: string | null | undefined;
|
|
115578
115622
|
};
|
|
115579
115623
|
textDecoration: {
|
|
115580
|
-
value?: "
|
|
115624
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115581
115625
|
aliasTo?: string | null | undefined;
|
|
115582
115626
|
};
|
|
115583
115627
|
textCase: {
|
|
@@ -115629,7 +115673,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115629
115673
|
aliasTo?: string | undefined;
|
|
115630
115674
|
};
|
|
115631
115675
|
textDecoration: {
|
|
115632
|
-
value?: "
|
|
115676
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115633
115677
|
aliasTo?: string | undefined;
|
|
115634
115678
|
};
|
|
115635
115679
|
textCase: {
|
|
@@ -115681,7 +115725,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115681
115725
|
aliasTo?: string | null | undefined;
|
|
115682
115726
|
};
|
|
115683
115727
|
textDecoration: {
|
|
115684
|
-
value?: "
|
|
115728
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115685
115729
|
aliasTo?: string | null | undefined;
|
|
115686
115730
|
};
|
|
115687
115731
|
textCase: {
|
|
@@ -115735,7 +115779,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115735
115779
|
aliasTo?: string | undefined;
|
|
115736
115780
|
};
|
|
115737
115781
|
textDecoration: {
|
|
115738
|
-
value?: "
|
|
115782
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115739
115783
|
aliasTo?: string | undefined;
|
|
115740
115784
|
};
|
|
115741
115785
|
textCase: {
|
|
@@ -115790,7 +115834,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115790
115834
|
aliasTo?: string | null | undefined;
|
|
115791
115835
|
};
|
|
115792
115836
|
textDecoration: {
|
|
115793
|
-
value?: "
|
|
115837
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115794
115838
|
aliasTo?: string | null | undefined;
|
|
115795
115839
|
};
|
|
115796
115840
|
textCase: {
|
|
@@ -115848,7 +115892,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115848
115892
|
aliasTo?: string | undefined;
|
|
115849
115893
|
};
|
|
115850
115894
|
textDecoration: {
|
|
115851
|
-
value?: "
|
|
115895
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
115852
115896
|
aliasTo?: string | undefined;
|
|
115853
115897
|
};
|
|
115854
115898
|
textCase: {
|
|
@@ -115906,7 +115950,7 @@ declare const ThemeOverrideImportModelBase: z.ZodIntersection<z.ZodDiscriminated
|
|
|
115906
115950
|
aliasTo?: string | null | undefined;
|
|
115907
115951
|
};
|
|
115908
115952
|
textDecoration: {
|
|
115909
|
-
value?: "
|
|
115953
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
115910
115954
|
aliasTo?: string | null | undefined;
|
|
115911
115955
|
};
|
|
115912
115956
|
textCase: {
|
|
@@ -117726,24 +117770,24 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117726
117770
|
data: z.ZodObject<{
|
|
117727
117771
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
117728
117772
|
} & {
|
|
117729
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
117773
|
+
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
117774
|
}, "strip", z.ZodTypeAny, {
|
|
117731
|
-
value?: "
|
|
117775
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117732
117776
|
aliasTo?: string | undefined;
|
|
117733
117777
|
}, {
|
|
117734
|
-
value?: "
|
|
117778
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
117735
117779
|
aliasTo?: string | null | undefined;
|
|
117736
117780
|
}>;
|
|
117737
117781
|
}, "strip", z.ZodTypeAny, {
|
|
117738
117782
|
type: "TextDecoration";
|
|
117739
117783
|
data: {
|
|
117740
|
-
value?: "
|
|
117784
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117741
117785
|
aliasTo?: string | undefined;
|
|
117742
117786
|
};
|
|
117743
117787
|
}, {
|
|
117744
117788
|
type: "TextDecoration";
|
|
117745
117789
|
data: {
|
|
117746
|
-
value?: "
|
|
117790
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
117747
117791
|
aliasTo?: string | null | undefined;
|
|
117748
117792
|
};
|
|
117749
117793
|
}>, z.ZodObject<{
|
|
@@ -117768,7 +117812,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117768
117812
|
aliasTo?: string | undefined;
|
|
117769
117813
|
};
|
|
117770
117814
|
textDecoration: {
|
|
117771
|
-
value?: "
|
|
117815
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117772
117816
|
aliasTo?: string | undefined;
|
|
117773
117817
|
};
|
|
117774
117818
|
textCase: {
|
|
@@ -117820,7 +117864,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117820
117864
|
aliasTo?: string | null | undefined;
|
|
117821
117865
|
};
|
|
117822
117866
|
textDecoration: {
|
|
117823
|
-
value?: "
|
|
117867
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
117824
117868
|
aliasTo?: string | null | undefined;
|
|
117825
117869
|
};
|
|
117826
117870
|
textCase: {
|
|
@@ -117872,7 +117916,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117872
117916
|
aliasTo?: string | undefined;
|
|
117873
117917
|
};
|
|
117874
117918
|
textDecoration: {
|
|
117875
|
-
value?: "
|
|
117919
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117876
117920
|
aliasTo?: string | undefined;
|
|
117877
117921
|
};
|
|
117878
117922
|
textCase: {
|
|
@@ -117924,7 +117968,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117924
117968
|
aliasTo?: string | null | undefined;
|
|
117925
117969
|
};
|
|
117926
117970
|
textDecoration: {
|
|
117927
|
-
value?: "
|
|
117971
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
117928
117972
|
aliasTo?: string | null | undefined;
|
|
117929
117973
|
};
|
|
117930
117974
|
textCase: {
|
|
@@ -117978,7 +118022,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
117978
118022
|
aliasTo?: string | undefined;
|
|
117979
118023
|
};
|
|
117980
118024
|
textDecoration: {
|
|
117981
|
-
value?: "
|
|
118025
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
117982
118026
|
aliasTo?: string | undefined;
|
|
117983
118027
|
};
|
|
117984
118028
|
textCase: {
|
|
@@ -118033,7 +118077,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
118033
118077
|
aliasTo?: string | null | undefined;
|
|
118034
118078
|
};
|
|
118035
118079
|
textDecoration: {
|
|
118036
|
-
value?: "
|
|
118080
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
118037
118081
|
aliasTo?: string | null | undefined;
|
|
118038
118082
|
};
|
|
118039
118083
|
textCase: {
|
|
@@ -118091,7 +118135,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
118091
118135
|
aliasTo?: string | undefined;
|
|
118092
118136
|
};
|
|
118093
118137
|
textDecoration: {
|
|
118094
|
-
value?: "
|
|
118138
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
118095
118139
|
aliasTo?: string | undefined;
|
|
118096
118140
|
};
|
|
118097
118141
|
textCase: {
|
|
@@ -118149,7 +118193,7 @@ declare const ThemeOverrideImportModel: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
118149
118193
|
aliasTo?: string | null | undefined;
|
|
118150
118194
|
};
|
|
118151
118195
|
textDecoration: {
|
|
118152
|
-
value?: "
|
|
118196
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
118153
118197
|
aliasTo?: string | null | undefined;
|
|
118154
118198
|
};
|
|
118155
118199
|
textCase: {
|
|
@@ -120040,24 +120084,24 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120040
120084
|
data: z.ZodObject<{
|
|
120041
120085
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
120042
120086
|
} & {
|
|
120043
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
120087
|
+
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
120088
|
}, "strip", z.ZodTypeAny, {
|
|
120045
|
-
value?: "
|
|
120089
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120046
120090
|
aliasTo?: string | undefined;
|
|
120047
120091
|
}, {
|
|
120048
|
-
value?: "
|
|
120092
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120049
120093
|
aliasTo?: string | null | undefined;
|
|
120050
120094
|
}>;
|
|
120051
120095
|
}, "strip", z.ZodTypeAny, {
|
|
120052
120096
|
type: "TextDecoration";
|
|
120053
120097
|
data: {
|
|
120054
|
-
value?: "
|
|
120098
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120055
120099
|
aliasTo?: string | undefined;
|
|
120056
120100
|
};
|
|
120057
120101
|
}, {
|
|
120058
120102
|
type: "TextDecoration";
|
|
120059
120103
|
data: {
|
|
120060
|
-
value?: "
|
|
120104
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120061
120105
|
aliasTo?: string | null | undefined;
|
|
120062
120106
|
};
|
|
120063
120107
|
}>, z.ZodObject<{
|
|
@@ -120082,7 +120126,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120082
120126
|
aliasTo?: string | undefined;
|
|
120083
120127
|
};
|
|
120084
120128
|
textDecoration: {
|
|
120085
|
-
value?: "
|
|
120129
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120086
120130
|
aliasTo?: string | undefined;
|
|
120087
120131
|
};
|
|
120088
120132
|
textCase: {
|
|
@@ -120134,7 +120178,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120134
120178
|
aliasTo?: string | null | undefined;
|
|
120135
120179
|
};
|
|
120136
120180
|
textDecoration: {
|
|
120137
|
-
value?: "
|
|
120181
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120138
120182
|
aliasTo?: string | null | undefined;
|
|
120139
120183
|
};
|
|
120140
120184
|
textCase: {
|
|
@@ -120186,7 +120230,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120186
120230
|
aliasTo?: string | undefined;
|
|
120187
120231
|
};
|
|
120188
120232
|
textDecoration: {
|
|
120189
|
-
value?: "
|
|
120233
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120190
120234
|
aliasTo?: string | undefined;
|
|
120191
120235
|
};
|
|
120192
120236
|
textCase: {
|
|
@@ -120238,7 +120282,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120238
120282
|
aliasTo?: string | null | undefined;
|
|
120239
120283
|
};
|
|
120240
120284
|
textDecoration: {
|
|
120241
|
-
value?: "
|
|
120285
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120242
120286
|
aliasTo?: string | null | undefined;
|
|
120243
120287
|
};
|
|
120244
120288
|
textCase: {
|
|
@@ -120292,7 +120336,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120292
120336
|
aliasTo?: string | undefined;
|
|
120293
120337
|
};
|
|
120294
120338
|
textDecoration: {
|
|
120295
|
-
value?: "
|
|
120339
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120296
120340
|
aliasTo?: string | undefined;
|
|
120297
120341
|
};
|
|
120298
120342
|
textCase: {
|
|
@@ -120347,7 +120391,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120347
120391
|
aliasTo?: string | null | undefined;
|
|
120348
120392
|
};
|
|
120349
120393
|
textDecoration: {
|
|
120350
|
-
value?: "
|
|
120394
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120351
120395
|
aliasTo?: string | null | undefined;
|
|
120352
120396
|
};
|
|
120353
120397
|
textCase: {
|
|
@@ -120405,7 +120449,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120405
120449
|
aliasTo?: string | undefined;
|
|
120406
120450
|
};
|
|
120407
120451
|
textDecoration: {
|
|
120408
|
-
value?: "
|
|
120452
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
120409
120453
|
aliasTo?: string | undefined;
|
|
120410
120454
|
};
|
|
120411
120455
|
textCase: {
|
|
@@ -120463,7 +120507,7 @@ declare const ThemeOverrideImportModelInput: z.ZodIntersection<z.ZodIntersection
|
|
|
120463
120507
|
aliasTo?: string | null | undefined;
|
|
120464
120508
|
};
|
|
120465
120509
|
textDecoration: {
|
|
120466
|
-
value?: "
|
|
120510
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
120467
120511
|
aliasTo?: string | null | undefined;
|
|
120468
120512
|
};
|
|
120469
120513
|
textCase: {
|
|
@@ -122378,24 +122422,24 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122378
122422
|
data: z.ZodObject<{
|
|
122379
122423
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
122380
122424
|
} & {
|
|
122381
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
122425
|
+
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
122426
|
}, "strip", z.ZodTypeAny, {
|
|
122383
|
-
value?: "
|
|
122427
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122384
122428
|
aliasTo?: string | undefined;
|
|
122385
122429
|
}, {
|
|
122386
|
-
value?: "
|
|
122430
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122387
122431
|
aliasTo?: string | null | undefined;
|
|
122388
122432
|
}>;
|
|
122389
122433
|
}, "strip", z.ZodTypeAny, {
|
|
122390
122434
|
type: "TextDecoration";
|
|
122391
122435
|
data: {
|
|
122392
|
-
value?: "
|
|
122436
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122393
122437
|
aliasTo?: string | undefined;
|
|
122394
122438
|
};
|
|
122395
122439
|
}, {
|
|
122396
122440
|
type: "TextDecoration";
|
|
122397
122441
|
data: {
|
|
122398
|
-
value?: "
|
|
122442
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122399
122443
|
aliasTo?: string | null | undefined;
|
|
122400
122444
|
};
|
|
122401
122445
|
}>, z.ZodObject<{
|
|
@@ -122420,7 +122464,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122420
122464
|
aliasTo?: string | undefined;
|
|
122421
122465
|
};
|
|
122422
122466
|
textDecoration: {
|
|
122423
|
-
value?: "
|
|
122467
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122424
122468
|
aliasTo?: string | undefined;
|
|
122425
122469
|
};
|
|
122426
122470
|
textCase: {
|
|
@@ -122472,7 +122516,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122472
122516
|
aliasTo?: string | null | undefined;
|
|
122473
122517
|
};
|
|
122474
122518
|
textDecoration: {
|
|
122475
|
-
value?: "
|
|
122519
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122476
122520
|
aliasTo?: string | null | undefined;
|
|
122477
122521
|
};
|
|
122478
122522
|
textCase: {
|
|
@@ -122524,7 +122568,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122524
122568
|
aliasTo?: string | undefined;
|
|
122525
122569
|
};
|
|
122526
122570
|
textDecoration: {
|
|
122527
|
-
value?: "
|
|
122571
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122528
122572
|
aliasTo?: string | undefined;
|
|
122529
122573
|
};
|
|
122530
122574
|
textCase: {
|
|
@@ -122576,7 +122620,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122576
122620
|
aliasTo?: string | null | undefined;
|
|
122577
122621
|
};
|
|
122578
122622
|
textDecoration: {
|
|
122579
|
-
value?: "
|
|
122623
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122580
122624
|
aliasTo?: string | null | undefined;
|
|
122581
122625
|
};
|
|
122582
122626
|
textCase: {
|
|
@@ -122630,7 +122674,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122630
122674
|
aliasTo?: string | undefined;
|
|
122631
122675
|
};
|
|
122632
122676
|
textDecoration: {
|
|
122633
|
-
value?: "
|
|
122677
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122634
122678
|
aliasTo?: string | undefined;
|
|
122635
122679
|
};
|
|
122636
122680
|
textCase: {
|
|
@@ -122685,7 +122729,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122685
122729
|
aliasTo?: string | null | undefined;
|
|
122686
122730
|
};
|
|
122687
122731
|
textDecoration: {
|
|
122688
|
-
value?: "
|
|
122732
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122689
122733
|
aliasTo?: string | null | undefined;
|
|
122690
122734
|
};
|
|
122691
122735
|
textCase: {
|
|
@@ -122743,7 +122787,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122743
122787
|
aliasTo?: string | undefined;
|
|
122744
122788
|
};
|
|
122745
122789
|
textDecoration: {
|
|
122746
|
-
value?: "
|
|
122790
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
122747
122791
|
aliasTo?: string | undefined;
|
|
122748
122792
|
};
|
|
122749
122793
|
textCase: {
|
|
@@ -122801,7 +122845,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
122801
122845
|
aliasTo?: string | null | undefined;
|
|
122802
122846
|
};
|
|
122803
122847
|
textDecoration: {
|
|
122804
|
-
value?: "
|
|
122848
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
122805
122849
|
aliasTo?: string | null | undefined;
|
|
122806
122850
|
};
|
|
122807
122851
|
textCase: {
|
|
@@ -123174,7 +123218,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
123174
123218
|
aliasTo?: string | undefined;
|
|
123175
123219
|
};
|
|
123176
123220
|
textDecoration: {
|
|
123177
|
-
value?: "
|
|
123221
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
123178
123222
|
aliasTo?: string | undefined;
|
|
123179
123223
|
};
|
|
123180
123224
|
textCase: {
|
|
@@ -123284,7 +123328,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
123284
123328
|
} | {
|
|
123285
123329
|
type: "TextDecoration";
|
|
123286
123330
|
data: {
|
|
123287
|
-
value?: "
|
|
123331
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
123288
123332
|
aliasTo?: string | undefined;
|
|
123289
123333
|
};
|
|
123290
123334
|
} | {
|
|
@@ -123561,7 +123605,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
123561
123605
|
aliasTo?: string | null | undefined;
|
|
123562
123606
|
};
|
|
123563
123607
|
textDecoration: {
|
|
123564
|
-
value?: "
|
|
123608
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
123565
123609
|
aliasTo?: string | null | undefined;
|
|
123566
123610
|
};
|
|
123567
123611
|
textCase: {
|
|
@@ -123671,7 +123715,7 @@ declare const ThemeImportModel: z.ZodObject<{
|
|
|
123671
123715
|
} | {
|
|
123672
123716
|
type: "TextDecoration";
|
|
123673
123717
|
data: {
|
|
123674
|
-
value?: "
|
|
123718
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
123675
123719
|
aliasTo?: string | null | undefined;
|
|
123676
123720
|
};
|
|
123677
123721
|
} | {
|
|
@@ -125486,24 +125530,24 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125486
125530
|
data: z.ZodObject<{
|
|
125487
125531
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
125488
125532
|
} & {
|
|
125489
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
125533
|
+
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
125534
|
}, "strip", z.ZodTypeAny, {
|
|
125491
|
-
value?: "
|
|
125535
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125492
125536
|
aliasTo?: string | undefined;
|
|
125493
125537
|
}, {
|
|
125494
|
-
value?: "
|
|
125538
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125495
125539
|
aliasTo?: string | null | undefined;
|
|
125496
125540
|
}>;
|
|
125497
125541
|
}, "strip", z.ZodTypeAny, {
|
|
125498
125542
|
type: "TextDecoration";
|
|
125499
125543
|
data: {
|
|
125500
|
-
value?: "
|
|
125544
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125501
125545
|
aliasTo?: string | undefined;
|
|
125502
125546
|
};
|
|
125503
125547
|
}, {
|
|
125504
125548
|
type: "TextDecoration";
|
|
125505
125549
|
data: {
|
|
125506
|
-
value?: "
|
|
125550
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125507
125551
|
aliasTo?: string | null | undefined;
|
|
125508
125552
|
};
|
|
125509
125553
|
}>, z.ZodObject<{
|
|
@@ -125528,7 +125572,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125528
125572
|
aliasTo?: string | undefined;
|
|
125529
125573
|
};
|
|
125530
125574
|
textDecoration: {
|
|
125531
|
-
value?: "
|
|
125575
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125532
125576
|
aliasTo?: string | undefined;
|
|
125533
125577
|
};
|
|
125534
125578
|
textCase: {
|
|
@@ -125580,7 +125624,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125580
125624
|
aliasTo?: string | null | undefined;
|
|
125581
125625
|
};
|
|
125582
125626
|
textDecoration: {
|
|
125583
|
-
value?: "
|
|
125627
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125584
125628
|
aliasTo?: string | null | undefined;
|
|
125585
125629
|
};
|
|
125586
125630
|
textCase: {
|
|
@@ -125632,7 +125676,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125632
125676
|
aliasTo?: string | undefined;
|
|
125633
125677
|
};
|
|
125634
125678
|
textDecoration: {
|
|
125635
|
-
value?: "
|
|
125679
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125636
125680
|
aliasTo?: string | undefined;
|
|
125637
125681
|
};
|
|
125638
125682
|
textCase: {
|
|
@@ -125684,7 +125728,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125684
125728
|
aliasTo?: string | null | undefined;
|
|
125685
125729
|
};
|
|
125686
125730
|
textDecoration: {
|
|
125687
|
-
value?: "
|
|
125731
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125688
125732
|
aliasTo?: string | null | undefined;
|
|
125689
125733
|
};
|
|
125690
125734
|
textCase: {
|
|
@@ -125738,7 +125782,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125738
125782
|
aliasTo?: string | undefined;
|
|
125739
125783
|
};
|
|
125740
125784
|
textDecoration: {
|
|
125741
|
-
value?: "
|
|
125785
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125742
125786
|
aliasTo?: string | undefined;
|
|
125743
125787
|
};
|
|
125744
125788
|
textCase: {
|
|
@@ -125793,7 +125837,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125793
125837
|
aliasTo?: string | null | undefined;
|
|
125794
125838
|
};
|
|
125795
125839
|
textDecoration: {
|
|
125796
|
-
value?: "
|
|
125840
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125797
125841
|
aliasTo?: string | null | undefined;
|
|
125798
125842
|
};
|
|
125799
125843
|
textCase: {
|
|
@@ -125851,7 +125895,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125851
125895
|
aliasTo?: string | undefined;
|
|
125852
125896
|
};
|
|
125853
125897
|
textDecoration: {
|
|
125854
|
-
value?: "
|
|
125898
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
125855
125899
|
aliasTo?: string | undefined;
|
|
125856
125900
|
};
|
|
125857
125901
|
textCase: {
|
|
@@ -125909,7 +125953,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
125909
125953
|
aliasTo?: string | null | undefined;
|
|
125910
125954
|
};
|
|
125911
125955
|
textDecoration: {
|
|
125912
|
-
value?: "
|
|
125956
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
125913
125957
|
aliasTo?: string | null | undefined;
|
|
125914
125958
|
};
|
|
125915
125959
|
textCase: {
|
|
@@ -126266,7 +126310,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
126266
126310
|
aliasTo?: string | undefined;
|
|
126267
126311
|
};
|
|
126268
126312
|
textDecoration: {
|
|
126269
|
-
value?: "
|
|
126313
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
126270
126314
|
aliasTo?: string | undefined;
|
|
126271
126315
|
};
|
|
126272
126316
|
textCase: {
|
|
@@ -126376,7 +126420,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
126376
126420
|
} | {
|
|
126377
126421
|
type: "TextDecoration";
|
|
126378
126422
|
data: {
|
|
126379
|
-
value?: "
|
|
126423
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
126380
126424
|
aliasTo?: string | undefined;
|
|
126381
126425
|
};
|
|
126382
126426
|
} | {
|
|
@@ -126646,7 +126690,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
126646
126690
|
aliasTo?: string | null | undefined;
|
|
126647
126691
|
};
|
|
126648
126692
|
textDecoration: {
|
|
126649
|
-
value?: "
|
|
126693
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
126650
126694
|
aliasTo?: string | null | undefined;
|
|
126651
126695
|
};
|
|
126652
126696
|
textCase: {
|
|
@@ -126756,7 +126800,7 @@ declare const ThemeImportModelInput: z.ZodObject<{
|
|
|
126756
126800
|
} | {
|
|
126757
126801
|
type: "TextDecoration";
|
|
126758
126802
|
data: {
|
|
126759
|
-
value?: "
|
|
126803
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
126760
126804
|
aliasTo?: string | null | undefined;
|
|
126761
126805
|
};
|
|
126762
126806
|
} | {
|
|
@@ -128547,24 +128591,24 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128547
128591
|
data: z.ZodObject<{
|
|
128548
128592
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
128549
128593
|
} & {
|
|
128550
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
128594
|
+
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
128595
|
}, "strip", z.ZodTypeAny, {
|
|
128552
|
-
value?: "
|
|
128596
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128553
128597
|
aliasTo?: string | undefined;
|
|
128554
128598
|
}, {
|
|
128555
|
-
value?: "
|
|
128599
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128556
128600
|
aliasTo?: string | null | undefined;
|
|
128557
128601
|
}>;
|
|
128558
128602
|
}, "strip", z.ZodTypeAny, {
|
|
128559
128603
|
type: "TextDecoration";
|
|
128560
128604
|
data: {
|
|
128561
|
-
value?: "
|
|
128605
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128562
128606
|
aliasTo?: string | undefined;
|
|
128563
128607
|
};
|
|
128564
128608
|
}, {
|
|
128565
128609
|
type: "TextDecoration";
|
|
128566
128610
|
data: {
|
|
128567
|
-
value?: "
|
|
128611
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128568
128612
|
aliasTo?: string | null | undefined;
|
|
128569
128613
|
};
|
|
128570
128614
|
}>, z.ZodObject<{
|
|
@@ -128589,7 +128633,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128589
128633
|
aliasTo?: string | undefined;
|
|
128590
128634
|
};
|
|
128591
128635
|
textDecoration: {
|
|
128592
|
-
value?: "
|
|
128636
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128593
128637
|
aliasTo?: string | undefined;
|
|
128594
128638
|
};
|
|
128595
128639
|
textCase: {
|
|
@@ -128641,7 +128685,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128641
128685
|
aliasTo?: string | null | undefined;
|
|
128642
128686
|
};
|
|
128643
128687
|
textDecoration: {
|
|
128644
|
-
value?: "
|
|
128688
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128645
128689
|
aliasTo?: string | null | undefined;
|
|
128646
128690
|
};
|
|
128647
128691
|
textCase: {
|
|
@@ -128693,7 +128737,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128693
128737
|
aliasTo?: string | undefined;
|
|
128694
128738
|
};
|
|
128695
128739
|
textDecoration: {
|
|
128696
|
-
value?: "
|
|
128740
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128697
128741
|
aliasTo?: string | undefined;
|
|
128698
128742
|
};
|
|
128699
128743
|
textCase: {
|
|
@@ -128745,7 +128789,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128745
128789
|
aliasTo?: string | null | undefined;
|
|
128746
128790
|
};
|
|
128747
128791
|
textDecoration: {
|
|
128748
|
-
value?: "
|
|
128792
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128749
128793
|
aliasTo?: string | null | undefined;
|
|
128750
128794
|
};
|
|
128751
128795
|
textCase: {
|
|
@@ -128799,7 +128843,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128799
128843
|
aliasTo?: string | undefined;
|
|
128800
128844
|
};
|
|
128801
128845
|
textDecoration: {
|
|
128802
|
-
value?: "
|
|
128846
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128803
128847
|
aliasTo?: string | undefined;
|
|
128804
128848
|
};
|
|
128805
128849
|
textCase: {
|
|
@@ -128854,7 +128898,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128854
128898
|
aliasTo?: string | null | undefined;
|
|
128855
128899
|
};
|
|
128856
128900
|
textDecoration: {
|
|
128857
|
-
value?: "
|
|
128901
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128858
128902
|
aliasTo?: string | null | undefined;
|
|
128859
128903
|
};
|
|
128860
128904
|
textCase: {
|
|
@@ -128912,7 +128956,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128912
128956
|
aliasTo?: string | undefined;
|
|
128913
128957
|
};
|
|
128914
128958
|
textDecoration: {
|
|
128915
|
-
value?: "
|
|
128959
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
128916
128960
|
aliasTo?: string | undefined;
|
|
128917
128961
|
};
|
|
128918
128962
|
textCase: {
|
|
@@ -128970,7 +129014,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
128970
129014
|
aliasTo?: string | null | undefined;
|
|
128971
129015
|
};
|
|
128972
129016
|
textDecoration: {
|
|
128973
|
-
value?: "
|
|
129017
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
128974
129018
|
aliasTo?: string | null | undefined;
|
|
128975
129019
|
};
|
|
128976
129020
|
textCase: {
|
|
@@ -129336,7 +129380,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
129336
129380
|
aliasTo?: string | undefined;
|
|
129337
129381
|
};
|
|
129338
129382
|
textDecoration: {
|
|
129339
|
-
value?: "
|
|
129383
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
129340
129384
|
aliasTo?: string | undefined;
|
|
129341
129385
|
};
|
|
129342
129386
|
textCase: {
|
|
@@ -129446,7 +129490,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
129446
129490
|
} | {
|
|
129447
129491
|
type: "TextDecoration";
|
|
129448
129492
|
data: {
|
|
129449
|
-
value?: "
|
|
129493
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
129450
129494
|
aliasTo?: string | undefined;
|
|
129451
129495
|
};
|
|
129452
129496
|
} | {
|
|
@@ -129711,7 +129755,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
129711
129755
|
aliasTo?: string | null | undefined;
|
|
129712
129756
|
};
|
|
129713
129757
|
textDecoration: {
|
|
129714
|
-
value?: "
|
|
129758
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
129715
129759
|
aliasTo?: string | null | undefined;
|
|
129716
129760
|
};
|
|
129717
129761
|
textCase: {
|
|
@@ -129821,7 +129865,7 @@ declare const ThemeUpdateImportModel: z.ZodObject<{
|
|
|
129821
129865
|
} | {
|
|
129822
129866
|
type: "TextDecoration";
|
|
129823
129867
|
data: {
|
|
129824
|
-
value?: "
|
|
129868
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
129825
129869
|
aliasTo?: string | null | undefined;
|
|
129826
129870
|
};
|
|
129827
129871
|
} | {
|
|
@@ -131611,24 +131655,24 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131611
131655
|
data: z.ZodObject<{
|
|
131612
131656
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
131613
131657
|
} & {
|
|
131614
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
131658
|
+
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
131659
|
}, "strip", z.ZodTypeAny, {
|
|
131616
|
-
value?: "
|
|
131660
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131617
131661
|
aliasTo?: string | undefined;
|
|
131618
131662
|
}, {
|
|
131619
|
-
value?: "
|
|
131663
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131620
131664
|
aliasTo?: string | null | undefined;
|
|
131621
131665
|
}>;
|
|
131622
131666
|
}, "strip", z.ZodTypeAny, {
|
|
131623
131667
|
type: "TextDecoration";
|
|
131624
131668
|
data: {
|
|
131625
|
-
value?: "
|
|
131669
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131626
131670
|
aliasTo?: string | undefined;
|
|
131627
131671
|
};
|
|
131628
131672
|
}, {
|
|
131629
131673
|
type: "TextDecoration";
|
|
131630
131674
|
data: {
|
|
131631
|
-
value?: "
|
|
131675
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131632
131676
|
aliasTo?: string | null | undefined;
|
|
131633
131677
|
};
|
|
131634
131678
|
}>, z.ZodObject<{
|
|
@@ -131653,7 +131697,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131653
131697
|
aliasTo?: string | undefined;
|
|
131654
131698
|
};
|
|
131655
131699
|
textDecoration: {
|
|
131656
|
-
value?: "
|
|
131700
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131657
131701
|
aliasTo?: string | undefined;
|
|
131658
131702
|
};
|
|
131659
131703
|
textCase: {
|
|
@@ -131705,7 +131749,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131705
131749
|
aliasTo?: string | null | undefined;
|
|
131706
131750
|
};
|
|
131707
131751
|
textDecoration: {
|
|
131708
|
-
value?: "
|
|
131752
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131709
131753
|
aliasTo?: string | null | undefined;
|
|
131710
131754
|
};
|
|
131711
131755
|
textCase: {
|
|
@@ -131757,7 +131801,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131757
131801
|
aliasTo?: string | undefined;
|
|
131758
131802
|
};
|
|
131759
131803
|
textDecoration: {
|
|
131760
|
-
value?: "
|
|
131804
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131761
131805
|
aliasTo?: string | undefined;
|
|
131762
131806
|
};
|
|
131763
131807
|
textCase: {
|
|
@@ -131809,7 +131853,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131809
131853
|
aliasTo?: string | null | undefined;
|
|
131810
131854
|
};
|
|
131811
131855
|
textDecoration: {
|
|
131812
|
-
value?: "
|
|
131856
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131813
131857
|
aliasTo?: string | null | undefined;
|
|
131814
131858
|
};
|
|
131815
131859
|
textCase: {
|
|
@@ -131863,7 +131907,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131863
131907
|
aliasTo?: string | undefined;
|
|
131864
131908
|
};
|
|
131865
131909
|
textDecoration: {
|
|
131866
|
-
value?: "
|
|
131910
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131867
131911
|
aliasTo?: string | undefined;
|
|
131868
131912
|
};
|
|
131869
131913
|
textCase: {
|
|
@@ -131918,7 +131962,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131918
131962
|
aliasTo?: string | null | undefined;
|
|
131919
131963
|
};
|
|
131920
131964
|
textDecoration: {
|
|
131921
|
-
value?: "
|
|
131965
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
131922
131966
|
aliasTo?: string | null | undefined;
|
|
131923
131967
|
};
|
|
131924
131968
|
textCase: {
|
|
@@ -131976,7 +132020,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
131976
132020
|
aliasTo?: string | undefined;
|
|
131977
132021
|
};
|
|
131978
132022
|
textDecoration: {
|
|
131979
|
-
value?: "
|
|
132023
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
131980
132024
|
aliasTo?: string | undefined;
|
|
131981
132025
|
};
|
|
131982
132026
|
textCase: {
|
|
@@ -132034,7 +132078,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132034
132078
|
aliasTo?: string | null | undefined;
|
|
132035
132079
|
};
|
|
132036
132080
|
textDecoration: {
|
|
132037
|
-
value?: "
|
|
132081
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
132038
132082
|
aliasTo?: string | null | undefined;
|
|
132039
132083
|
};
|
|
132040
132084
|
textCase: {
|
|
@@ -132387,7 +132431,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132387
132431
|
aliasTo?: string | undefined;
|
|
132388
132432
|
};
|
|
132389
132433
|
textDecoration: {
|
|
132390
|
-
value?: "
|
|
132434
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
132391
132435
|
aliasTo?: string | undefined;
|
|
132392
132436
|
};
|
|
132393
132437
|
textCase: {
|
|
@@ -132497,7 +132541,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132497
132541
|
} | {
|
|
132498
132542
|
type: "TextDecoration";
|
|
132499
132543
|
data: {
|
|
132500
|
-
value?: "
|
|
132544
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
132501
132545
|
aliasTo?: string | undefined;
|
|
132502
132546
|
};
|
|
132503
132547
|
} | {
|
|
@@ -132760,7 +132804,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132760
132804
|
aliasTo?: string | null | undefined;
|
|
132761
132805
|
};
|
|
132762
132806
|
textDecoration: {
|
|
132763
|
-
value?: "
|
|
132807
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
132764
132808
|
aliasTo?: string | null | undefined;
|
|
132765
132809
|
};
|
|
132766
132810
|
textCase: {
|
|
@@ -132870,7 +132914,7 @@ declare const ThemeUpdateImportModelInput: z.ZodObject<{
|
|
|
132870
132914
|
} | {
|
|
132871
132915
|
type: "TextDecoration";
|
|
132872
132916
|
data: {
|
|
132873
|
-
value?: "
|
|
132917
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
132874
132918
|
aliasTo?: string | null | undefined;
|
|
132875
132919
|
};
|
|
132876
132920
|
} | {
|
|
@@ -134849,24 +134893,24 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
134849
134893
|
data: z.ZodObject<{
|
|
134850
134894
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
134851
134895
|
} & {
|
|
134852
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
134896
|
+
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
134897
|
}, "strip", z.ZodTypeAny, {
|
|
134854
|
-
value?: "
|
|
134898
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
134855
134899
|
aliasTo?: string | undefined;
|
|
134856
134900
|
}, {
|
|
134857
|
-
value?: "
|
|
134901
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
134858
134902
|
aliasTo?: string | null | undefined;
|
|
134859
134903
|
}>;
|
|
134860
134904
|
}, "strip", z.ZodTypeAny, {
|
|
134861
134905
|
type: "TextDecoration";
|
|
134862
134906
|
data: {
|
|
134863
|
-
value?: "
|
|
134907
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
134864
134908
|
aliasTo?: string | undefined;
|
|
134865
134909
|
};
|
|
134866
134910
|
}, {
|
|
134867
134911
|
type: "TextDecoration";
|
|
134868
134912
|
data: {
|
|
134869
|
-
value?: "
|
|
134913
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
134870
134914
|
aliasTo?: string | null | undefined;
|
|
134871
134915
|
};
|
|
134872
134916
|
}>, z.ZodObject<{
|
|
@@ -134891,7 +134935,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
134891
134935
|
aliasTo?: string | undefined;
|
|
134892
134936
|
};
|
|
134893
134937
|
textDecoration: {
|
|
134894
|
-
value?: "
|
|
134938
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
134895
134939
|
aliasTo?: string | undefined;
|
|
134896
134940
|
};
|
|
134897
134941
|
textCase: {
|
|
@@ -134943,7 +134987,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
134943
134987
|
aliasTo?: string | null | undefined;
|
|
134944
134988
|
};
|
|
134945
134989
|
textDecoration: {
|
|
134946
|
-
value?: "
|
|
134990
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
134947
134991
|
aliasTo?: string | null | undefined;
|
|
134948
134992
|
};
|
|
134949
134993
|
textCase: {
|
|
@@ -134995,7 +135039,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
134995
135039
|
aliasTo?: string | undefined;
|
|
134996
135040
|
};
|
|
134997
135041
|
textDecoration: {
|
|
134998
|
-
value?: "
|
|
135042
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
134999
135043
|
aliasTo?: string | undefined;
|
|
135000
135044
|
};
|
|
135001
135045
|
textCase: {
|
|
@@ -135047,7 +135091,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135047
135091
|
aliasTo?: string | null | undefined;
|
|
135048
135092
|
};
|
|
135049
135093
|
textDecoration: {
|
|
135050
|
-
value?: "
|
|
135094
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
135051
135095
|
aliasTo?: string | null | undefined;
|
|
135052
135096
|
};
|
|
135053
135097
|
textCase: {
|
|
@@ -135101,7 +135145,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135101
135145
|
aliasTo?: string | undefined;
|
|
135102
135146
|
};
|
|
135103
135147
|
textDecoration: {
|
|
135104
|
-
value?: "
|
|
135148
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
135105
135149
|
aliasTo?: string | undefined;
|
|
135106
135150
|
};
|
|
135107
135151
|
textCase: {
|
|
@@ -135156,7 +135200,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135156
135200
|
aliasTo?: string | null | undefined;
|
|
135157
135201
|
};
|
|
135158
135202
|
textDecoration: {
|
|
135159
|
-
value?: "
|
|
135203
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
135160
135204
|
aliasTo?: string | null | undefined;
|
|
135161
135205
|
};
|
|
135162
135206
|
textCase: {
|
|
@@ -135214,7 +135258,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135214
135258
|
aliasTo?: string | undefined;
|
|
135215
135259
|
};
|
|
135216
135260
|
textDecoration: {
|
|
135217
|
-
value?: "
|
|
135261
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
135218
135262
|
aliasTo?: string | undefined;
|
|
135219
135263
|
};
|
|
135220
135264
|
textCase: {
|
|
@@ -135272,7 +135316,7 @@ declare const DesignTokenImportModel: z.ZodIntersection<z.ZodDiscriminatedUnion<
|
|
|
135272
135316
|
aliasTo?: string | null | undefined;
|
|
135273
135317
|
};
|
|
135274
135318
|
textDecoration: {
|
|
135275
|
-
value?: "
|
|
135319
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
135276
135320
|
aliasTo?: string | null | undefined;
|
|
135277
135321
|
};
|
|
135278
135322
|
textCase: {
|
|
@@ -137176,24 +137220,24 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137176
137220
|
data: z.ZodObject<{
|
|
137177
137221
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
137178
137222
|
} & {
|
|
137179
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<"
|
|
137223
|
+
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
137224
|
}, "strip", z.ZodTypeAny, {
|
|
137181
|
-
value?: "
|
|
137225
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137182
137226
|
aliasTo?: string | undefined;
|
|
137183
137227
|
}, {
|
|
137184
|
-
value?: "
|
|
137228
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137185
137229
|
aliasTo?: string | null | undefined;
|
|
137186
137230
|
}>;
|
|
137187
137231
|
}, "strip", z.ZodTypeAny, {
|
|
137188
137232
|
type: "TextDecoration";
|
|
137189
137233
|
data: {
|
|
137190
|
-
value?: "
|
|
137234
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137191
137235
|
aliasTo?: string | undefined;
|
|
137192
137236
|
};
|
|
137193
137237
|
}, {
|
|
137194
137238
|
type: "TextDecoration";
|
|
137195
137239
|
data: {
|
|
137196
|
-
value?: "
|
|
137240
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137197
137241
|
aliasTo?: string | null | undefined;
|
|
137198
137242
|
};
|
|
137199
137243
|
}>, z.ZodObject<{
|
|
@@ -137218,7 +137262,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137218
137262
|
aliasTo?: string | undefined;
|
|
137219
137263
|
};
|
|
137220
137264
|
textDecoration: {
|
|
137221
|
-
value?: "
|
|
137265
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137222
137266
|
aliasTo?: string | undefined;
|
|
137223
137267
|
};
|
|
137224
137268
|
textCase: {
|
|
@@ -137270,7 +137314,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137270
137314
|
aliasTo?: string | null | undefined;
|
|
137271
137315
|
};
|
|
137272
137316
|
textDecoration: {
|
|
137273
|
-
value?: "
|
|
137317
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137274
137318
|
aliasTo?: string | null | undefined;
|
|
137275
137319
|
};
|
|
137276
137320
|
textCase: {
|
|
@@ -137322,7 +137366,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137322
137366
|
aliasTo?: string | undefined;
|
|
137323
137367
|
};
|
|
137324
137368
|
textDecoration: {
|
|
137325
|
-
value?: "
|
|
137369
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137326
137370
|
aliasTo?: string | undefined;
|
|
137327
137371
|
};
|
|
137328
137372
|
textCase: {
|
|
@@ -137374,7 +137418,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137374
137418
|
aliasTo?: string | null | undefined;
|
|
137375
137419
|
};
|
|
137376
137420
|
textDecoration: {
|
|
137377
|
-
value?: "
|
|
137421
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137378
137422
|
aliasTo?: string | null | undefined;
|
|
137379
137423
|
};
|
|
137380
137424
|
textCase: {
|
|
@@ -137428,7 +137472,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137428
137472
|
aliasTo?: string | undefined;
|
|
137429
137473
|
};
|
|
137430
137474
|
textDecoration: {
|
|
137431
|
-
value?: "
|
|
137475
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137432
137476
|
aliasTo?: string | undefined;
|
|
137433
137477
|
};
|
|
137434
137478
|
textCase: {
|
|
@@ -137483,7 +137527,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137483
137527
|
aliasTo?: string | null | undefined;
|
|
137484
137528
|
};
|
|
137485
137529
|
textDecoration: {
|
|
137486
|
-
value?: "
|
|
137530
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137487
137531
|
aliasTo?: string | null | undefined;
|
|
137488
137532
|
};
|
|
137489
137533
|
textCase: {
|
|
@@ -137541,7 +137585,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137541
137585
|
aliasTo?: string | undefined;
|
|
137542
137586
|
};
|
|
137543
137587
|
textDecoration: {
|
|
137544
|
-
value?: "
|
|
137588
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
137545
137589
|
aliasTo?: string | undefined;
|
|
137546
137590
|
};
|
|
137547
137591
|
textCase: {
|
|
@@ -137599,7 +137643,7 @@ declare const DesignTokenImportModelInput: z.ZodIntersection<z.ZodDiscriminatedU
|
|
|
137599
137643
|
aliasTo?: string | null | undefined;
|
|
137600
137644
|
};
|
|
137601
137645
|
textDecoration: {
|
|
137602
|
-
value?: "
|
|
137646
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
137603
137647
|
aliasTo?: string | null | undefined;
|
|
137604
137648
|
};
|
|
137605
137649
|
textCase: {
|
|
@@ -138552,18 +138596,18 @@ declare const WorkspaceInvitation: z.ZodObject<{
|
|
|
138552
138596
|
email: string;
|
|
138553
138597
|
id: string;
|
|
138554
138598
|
createdAt: Date;
|
|
138599
|
+
seatType: "Full" | "Builder" | "None";
|
|
138555
138600
|
workspaceId: string;
|
|
138556
138601
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138557
|
-
seatType: "None" | "Full" | "Builder";
|
|
138558
138602
|
invitedBy: string;
|
|
138559
138603
|
resentAt?: Date | null | undefined;
|
|
138560
138604
|
}, {
|
|
138561
138605
|
email: string;
|
|
138562
138606
|
id: string;
|
|
138563
138607
|
createdAt: Date;
|
|
138608
|
+
seatType: "Full" | "Builder" | "None";
|
|
138564
138609
|
workspaceId: string;
|
|
138565
138610
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138566
|
-
seatType: "None" | "Full" | "Builder";
|
|
138567
138611
|
invitedBy: string;
|
|
138568
138612
|
resentAt?: Date | null | undefined;
|
|
138569
138613
|
}>;
|
|
@@ -138599,9 +138643,9 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
138599
138643
|
isPrimaryOwner: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
138600
138644
|
}, "strip", z.ZodTypeAny, {
|
|
138601
138645
|
id: string;
|
|
138646
|
+
seatType: "Full" | "Builder" | "None";
|
|
138602
138647
|
userId: string;
|
|
138603
138648
|
workspaceId: string;
|
|
138604
|
-
seatType: "None" | "Full" | "Builder";
|
|
138605
138649
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138606
138650
|
notificationSettings: {
|
|
138607
138651
|
liveblocksNotificationSettings: {
|
|
@@ -138611,9 +138655,9 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
138611
138655
|
isPrimaryOwner?: boolean | null | undefined;
|
|
138612
138656
|
}, {
|
|
138613
138657
|
id: string;
|
|
138658
|
+
seatType: "Full" | "Builder" | "None";
|
|
138614
138659
|
userId: string;
|
|
138615
138660
|
workspaceId: string;
|
|
138616
|
-
seatType: "None" | "Full" | "Builder";
|
|
138617
138661
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138618
138662
|
notificationSettings: {
|
|
138619
138663
|
liveblocksNotificationSettings: {
|
|
@@ -138636,26 +138680,26 @@ declare const UpdateMembershipRolesInput: z.ZodObject<{
|
|
|
138636
138680
|
}, "strip", z.ZodTypeAny, {
|
|
138637
138681
|
userId: string;
|
|
138638
138682
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138639
|
-
seatType?: "
|
|
138683
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
138640
138684
|
isPrimaryOwner?: boolean | undefined;
|
|
138641
138685
|
}, {
|
|
138642
138686
|
userId: string;
|
|
138643
138687
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138644
|
-
seatType?: "
|
|
138688
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
138645
138689
|
isPrimaryOwner?: boolean | undefined;
|
|
138646
138690
|
}>, "many">;
|
|
138647
138691
|
}, "strip", z.ZodTypeAny, {
|
|
138648
138692
|
members: {
|
|
138649
138693
|
userId: string;
|
|
138650
138694
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138651
|
-
seatType?: "
|
|
138695
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
138652
138696
|
isPrimaryOwner?: boolean | undefined;
|
|
138653
138697
|
}[];
|
|
138654
138698
|
}, {
|
|
138655
138699
|
members: {
|
|
138656
138700
|
userId: string;
|
|
138657
138701
|
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
138658
|
-
seatType?: "
|
|
138702
|
+
seatType?: "Full" | "Builder" | "None" | undefined;
|
|
138659
138703
|
isPrimaryOwner?: boolean | undefined;
|
|
138660
138704
|
}[];
|
|
138661
138705
|
}>;
|
|
@@ -139072,6 +139116,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139072
139116
|
} | null | undefined>;
|
|
139073
139117
|
seats: z.ZodNumber;
|
|
139074
139118
|
seatLimit: z.ZodNumber;
|
|
139119
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139120
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
139075
139121
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
139076
139122
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
139077
139123
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -139103,6 +139149,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139103
139149
|
expiryYear?: string | null | undefined;
|
|
139104
139150
|
brand?: string | null | undefined;
|
|
139105
139151
|
} | undefined;
|
|
139152
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
139153
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
139106
139154
|
builderSeatLimit?: number | undefined;
|
|
139107
139155
|
fullSeatLimit?: number | undefined;
|
|
139108
139156
|
builderSeats?: number | undefined;
|
|
@@ -139130,6 +139178,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139130
139178
|
expiryYear?: string | null | undefined;
|
|
139131
139179
|
brand?: string | null | undefined;
|
|
139132
139180
|
} | null | undefined;
|
|
139181
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
139182
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
139133
139183
|
builderSeatLimit?: number | undefined;
|
|
139134
139184
|
fullSeatLimit?: number | undefined;
|
|
139135
139185
|
builderSeats?: number | undefined;
|
|
@@ -139337,6 +139387,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139337
139387
|
expiryYear?: string | null | undefined;
|
|
139338
139388
|
brand?: string | null | undefined;
|
|
139339
139389
|
} | undefined;
|
|
139390
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
139391
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
139340
139392
|
builderSeatLimit?: number | undefined;
|
|
139341
139393
|
fullSeatLimit?: number | undefined;
|
|
139342
139394
|
builderSeats?: number | undefined;
|
|
@@ -139433,6 +139485,8 @@ declare const Workspace: z.ZodObject<{
|
|
|
139433
139485
|
expiryYear?: string | null | undefined;
|
|
139434
139486
|
brand?: string | null | undefined;
|
|
139435
139487
|
} | null | undefined;
|
|
139488
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
139489
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
139436
139490
|
builderSeatLimit?: number | undefined;
|
|
139437
139491
|
fullSeatLimit?: number | undefined;
|
|
139438
139492
|
builderSeats?: number | undefined;
|
|
@@ -139636,6 +139690,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139636
139690
|
} | null | undefined>;
|
|
139637
139691
|
seats: z.ZodNumber;
|
|
139638
139692
|
seatLimit: z.ZodNumber;
|
|
139693
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
139694
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
139639
139695
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
139640
139696
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
139641
139697
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -139667,6 +139723,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139667
139723
|
expiryYear?: string | null | undefined;
|
|
139668
139724
|
brand?: string | null | undefined;
|
|
139669
139725
|
} | undefined;
|
|
139726
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
139727
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
139670
139728
|
builderSeatLimit?: number | undefined;
|
|
139671
139729
|
fullSeatLimit?: number | undefined;
|
|
139672
139730
|
builderSeats?: number | undefined;
|
|
@@ -139694,6 +139752,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139694
139752
|
expiryYear?: string | null | undefined;
|
|
139695
139753
|
brand?: string | null | undefined;
|
|
139696
139754
|
} | null | undefined;
|
|
139755
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
139756
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
139697
139757
|
builderSeatLimit?: number | undefined;
|
|
139698
139758
|
fullSeatLimit?: number | undefined;
|
|
139699
139759
|
builderSeats?: number | undefined;
|
|
@@ -139901,6 +139961,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139901
139961
|
expiryYear?: string | null | undefined;
|
|
139902
139962
|
brand?: string | null | undefined;
|
|
139903
139963
|
} | undefined;
|
|
139964
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
139965
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
139904
139966
|
builderSeatLimit?: number | undefined;
|
|
139905
139967
|
fullSeatLimit?: number | undefined;
|
|
139906
139968
|
builderSeats?: number | undefined;
|
|
@@ -139997,6 +140059,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139997
140059
|
expiryYear?: string | null | undefined;
|
|
139998
140060
|
brand?: string | null | undefined;
|
|
139999
140061
|
} | null | undefined;
|
|
140062
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
140063
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
140000
140064
|
builderSeatLimit?: number | undefined;
|
|
140001
140065
|
fullSeatLimit?: number | undefined;
|
|
140002
140066
|
builderSeats?: number | undefined;
|
|
@@ -140171,6 +140235,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
140171
140235
|
expiryYear?: string | null | undefined;
|
|
140172
140236
|
brand?: string | null | undefined;
|
|
140173
140237
|
} | undefined;
|
|
140238
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
140239
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
140174
140240
|
builderSeatLimit?: number | undefined;
|
|
140175
140241
|
fullSeatLimit?: number | undefined;
|
|
140176
140242
|
builderSeats?: number | undefined;
|
|
@@ -140292,6 +140358,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
140292
140358
|
expiryYear?: string | null | undefined;
|
|
140293
140359
|
brand?: string | null | undefined;
|
|
140294
140360
|
} | null | undefined;
|
|
140361
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
140362
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
140295
140363
|
builderSeatLimit?: number | undefined;
|
|
140296
140364
|
fullSeatLimit?: number | undefined;
|
|
140297
140365
|
builderSeats?: number | undefined;
|
|
@@ -141786,7 +141854,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141786
141854
|
aliasTo?: string | undefined;
|
|
141787
141855
|
};
|
|
141788
141856
|
textDecoration: {
|
|
141789
|
-
value?: "
|
|
141857
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
141790
141858
|
aliasTo?: string | undefined;
|
|
141791
141859
|
};
|
|
141792
141860
|
textCase: {
|
|
@@ -141838,7 +141906,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141838
141906
|
aliasTo?: string | null | undefined;
|
|
141839
141907
|
};
|
|
141840
141908
|
textDecoration: {
|
|
141841
|
-
value?: "
|
|
141909
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
141842
141910
|
aliasTo?: string | null | undefined;
|
|
141843
141911
|
};
|
|
141844
141912
|
textCase: {
|
|
@@ -141890,7 +141958,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141890
141958
|
aliasTo?: string | undefined;
|
|
141891
141959
|
};
|
|
141892
141960
|
textDecoration: {
|
|
141893
|
-
value?: "
|
|
141961
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
141894
141962
|
aliasTo?: string | undefined;
|
|
141895
141963
|
};
|
|
141896
141964
|
textCase: {
|
|
@@ -141942,7 +142010,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141942
142010
|
aliasTo?: string | null | undefined;
|
|
141943
142011
|
};
|
|
141944
142012
|
textDecoration: {
|
|
141945
|
-
value?: "
|
|
142013
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
141946
142014
|
aliasTo?: string | null | undefined;
|
|
141947
142015
|
};
|
|
141948
142016
|
textCase: {
|
|
@@ -141996,7 +142064,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
141996
142064
|
aliasTo?: string | undefined;
|
|
141997
142065
|
};
|
|
141998
142066
|
textDecoration: {
|
|
141999
|
-
value?: "
|
|
142067
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142000
142068
|
aliasTo?: string | undefined;
|
|
142001
142069
|
};
|
|
142002
142070
|
textCase: {
|
|
@@ -142051,7 +142119,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
142051
142119
|
aliasTo?: string | null | undefined;
|
|
142052
142120
|
};
|
|
142053
142121
|
textDecoration: {
|
|
142054
|
-
value?: "
|
|
142122
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142055
142123
|
aliasTo?: string | null | undefined;
|
|
142056
142124
|
};
|
|
142057
142125
|
textCase: {
|
|
@@ -142123,7 +142191,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
142123
142191
|
aliasTo?: string | undefined;
|
|
142124
142192
|
};
|
|
142125
142193
|
textDecoration: {
|
|
142126
|
-
value?: "
|
|
142194
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142127
142195
|
aliasTo?: string | undefined;
|
|
142128
142196
|
};
|
|
142129
142197
|
textCase: {
|
|
@@ -142224,7 +142292,7 @@ declare const ExporterConfigurationPropertyValue: z.ZodObject<{
|
|
|
142224
142292
|
aliasTo?: string | null | undefined;
|
|
142225
142293
|
};
|
|
142226
142294
|
textDecoration: {
|
|
142227
|
-
value?: "
|
|
142295
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142228
142296
|
aliasTo?: string | null | undefined;
|
|
142229
142297
|
};
|
|
142230
142298
|
textCase: {
|
|
@@ -142592,7 +142660,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142592
142660
|
aliasTo?: string | undefined;
|
|
142593
142661
|
};
|
|
142594
142662
|
textDecoration: {
|
|
142595
|
-
value?: "
|
|
142663
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142596
142664
|
aliasTo?: string | undefined;
|
|
142597
142665
|
};
|
|
142598
142666
|
textCase: {
|
|
@@ -142644,7 +142712,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142644
142712
|
aliasTo?: string | null | undefined;
|
|
142645
142713
|
};
|
|
142646
142714
|
textDecoration: {
|
|
142647
|
-
value?: "
|
|
142715
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142648
142716
|
aliasTo?: string | null | undefined;
|
|
142649
142717
|
};
|
|
142650
142718
|
textCase: {
|
|
@@ -142696,7 +142764,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142696
142764
|
aliasTo?: string | undefined;
|
|
142697
142765
|
};
|
|
142698
142766
|
textDecoration: {
|
|
142699
|
-
value?: "
|
|
142767
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142700
142768
|
aliasTo?: string | undefined;
|
|
142701
142769
|
};
|
|
142702
142770
|
textCase: {
|
|
@@ -142748,7 +142816,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142748
142816
|
aliasTo?: string | null | undefined;
|
|
142749
142817
|
};
|
|
142750
142818
|
textDecoration: {
|
|
142751
|
-
value?: "
|
|
142819
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142752
142820
|
aliasTo?: string | null | undefined;
|
|
142753
142821
|
};
|
|
142754
142822
|
textCase: {
|
|
@@ -142802,7 +142870,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142802
142870
|
aliasTo?: string | undefined;
|
|
142803
142871
|
};
|
|
142804
142872
|
textDecoration: {
|
|
142805
|
-
value?: "
|
|
142873
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142806
142874
|
aliasTo?: string | undefined;
|
|
142807
142875
|
};
|
|
142808
142876
|
textCase: {
|
|
@@ -142857,7 +142925,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142857
142925
|
aliasTo?: string | null | undefined;
|
|
142858
142926
|
};
|
|
142859
142927
|
textDecoration: {
|
|
142860
|
-
value?: "
|
|
142928
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
142861
142929
|
aliasTo?: string | null | undefined;
|
|
142862
142930
|
};
|
|
142863
142931
|
textCase: {
|
|
@@ -142929,7 +142997,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
142929
142997
|
aliasTo?: string | undefined;
|
|
142930
142998
|
};
|
|
142931
142999
|
textDecoration: {
|
|
142932
|
-
value?: "
|
|
143000
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
142933
143001
|
aliasTo?: string | undefined;
|
|
142934
143002
|
};
|
|
142935
143003
|
textCase: {
|
|
@@ -143030,7 +143098,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
143030
143098
|
aliasTo?: string | null | undefined;
|
|
143031
143099
|
};
|
|
143032
143100
|
textDecoration: {
|
|
143033
|
-
value?: "
|
|
143101
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
143034
143102
|
aliasTo?: string | null | undefined;
|
|
143035
143103
|
};
|
|
143036
143104
|
textCase: {
|
|
@@ -143133,7 +143201,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
143133
143201
|
aliasTo?: string | undefined;
|
|
143134
143202
|
};
|
|
143135
143203
|
textDecoration: {
|
|
143136
|
-
value?: "
|
|
143204
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
143137
143205
|
aliasTo?: string | undefined;
|
|
143138
143206
|
};
|
|
143139
143207
|
textCase: {
|
|
@@ -143239,7 +143307,7 @@ declare const ExporterPropertyValuesCollection: z.ZodObject<{
|
|
|
143239
143307
|
aliasTo?: string | null | undefined;
|
|
143240
143308
|
};
|
|
143241
143309
|
textDecoration: {
|
|
143242
|
-
value?: "
|
|
143310
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
143243
143311
|
aliasTo?: string | null | undefined;
|
|
143244
143312
|
};
|
|
143245
143313
|
textCase: {
|
|
@@ -143803,6 +143871,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143803
143871
|
} | null | undefined>;
|
|
143804
143872
|
seats: z.ZodNumber;
|
|
143805
143873
|
seatLimit: z.ZodNumber;
|
|
143874
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
143875
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
143806
143876
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
143807
143877
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
143808
143878
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -143834,6 +143904,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143834
143904
|
expiryYear?: string | null | undefined;
|
|
143835
143905
|
brand?: string | null | undefined;
|
|
143836
143906
|
} | undefined;
|
|
143907
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
143908
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
143837
143909
|
builderSeatLimit?: number | undefined;
|
|
143838
143910
|
fullSeatLimit?: number | undefined;
|
|
143839
143911
|
builderSeats?: number | undefined;
|
|
@@ -143861,6 +143933,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143861
143933
|
expiryYear?: string | null | undefined;
|
|
143862
143934
|
brand?: string | null | undefined;
|
|
143863
143935
|
} | null | undefined;
|
|
143936
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
143937
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
143864
143938
|
builderSeatLimit?: number | undefined;
|
|
143865
143939
|
fullSeatLimit?: number | undefined;
|
|
143866
143940
|
builderSeats?: number | undefined;
|
|
@@ -144068,6 +144142,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144068
144142
|
expiryYear?: string | null | undefined;
|
|
144069
144143
|
brand?: string | null | undefined;
|
|
144070
144144
|
} | undefined;
|
|
144145
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
144146
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
144071
144147
|
builderSeatLimit?: number | undefined;
|
|
144072
144148
|
fullSeatLimit?: number | undefined;
|
|
144073
144149
|
builderSeats?: number | undefined;
|
|
@@ -144164,6 +144240,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144164
144240
|
expiryYear?: string | null | undefined;
|
|
144165
144241
|
brand?: string | null | undefined;
|
|
144166
144242
|
} | null | undefined;
|
|
144243
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
144244
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
144167
144245
|
builderSeatLimit?: number | undefined;
|
|
144168
144246
|
fullSeatLimit?: number | undefined;
|
|
144169
144247
|
builderSeats?: number | undefined;
|
|
@@ -144618,6 +144696,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144618
144696
|
expiryYear?: string | null | undefined;
|
|
144619
144697
|
brand?: string | null | undefined;
|
|
144620
144698
|
} | undefined;
|
|
144699
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
144700
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
144621
144701
|
builderSeatLimit?: number | undefined;
|
|
144622
144702
|
fullSeatLimit?: number | undefined;
|
|
144623
144703
|
builderSeats?: number | undefined;
|
|
@@ -144787,6 +144867,8 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144787
144867
|
expiryYear?: string | null | undefined;
|
|
144788
144868
|
brand?: string | null | undefined;
|
|
144789
144869
|
} | null | undefined;
|
|
144870
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
144871
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
144790
144872
|
builderSeatLimit?: number | undefined;
|
|
144791
144873
|
fullSeatLimit?: number | undefined;
|
|
144792
144874
|
builderSeats?: number | undefined;
|
|
@@ -145085,6 +145167,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145085
145167
|
} | null | undefined>;
|
|
145086
145168
|
seats: z.ZodNumber;
|
|
145087
145169
|
seatLimit: z.ZodNumber;
|
|
145170
|
+
monthlyCreditGrantAnchor: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
145171
|
+
monthlyCreditGrantAmount: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
145088
145172
|
builderSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
145089
145173
|
fullSeatLimit: z.ZodOptional<z.ZodNumber>;
|
|
145090
145174
|
builderSeats: z.ZodOptional<z.ZodNumber>;
|
|
@@ -145116,6 +145200,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145116
145200
|
expiryYear?: string | null | undefined;
|
|
145117
145201
|
brand?: string | null | undefined;
|
|
145118
145202
|
} | undefined;
|
|
145203
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
145204
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
145119
145205
|
builderSeatLimit?: number | undefined;
|
|
145120
145206
|
fullSeatLimit?: number | undefined;
|
|
145121
145207
|
builderSeats?: number | undefined;
|
|
@@ -145143,6 +145229,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145143
145229
|
expiryYear?: string | null | undefined;
|
|
145144
145230
|
brand?: string | null | undefined;
|
|
145145
145231
|
} | null | undefined;
|
|
145232
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
145233
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
145146
145234
|
builderSeatLimit?: number | undefined;
|
|
145147
145235
|
fullSeatLimit?: number | undefined;
|
|
145148
145236
|
builderSeats?: number | undefined;
|
|
@@ -145350,6 +145438,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145350
145438
|
expiryYear?: string | null | undefined;
|
|
145351
145439
|
brand?: string | null | undefined;
|
|
145352
145440
|
} | undefined;
|
|
145441
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
145442
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
145353
145443
|
builderSeatLimit?: number | undefined;
|
|
145354
145444
|
fullSeatLimit?: number | undefined;
|
|
145355
145445
|
builderSeats?: number | undefined;
|
|
@@ -145446,6 +145536,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145446
145536
|
expiryYear?: string | null | undefined;
|
|
145447
145537
|
brand?: string | null | undefined;
|
|
145448
145538
|
} | null | undefined;
|
|
145539
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
145540
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
145449
145541
|
builderSeatLimit?: number | undefined;
|
|
145450
145542
|
fullSeatLimit?: number | undefined;
|
|
145451
145543
|
builderSeats?: number | undefined;
|
|
@@ -145824,6 +145916,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145824
145916
|
expiryYear?: string | null | undefined;
|
|
145825
145917
|
brand?: string | null | undefined;
|
|
145826
145918
|
} | undefined;
|
|
145919
|
+
monthlyCreditGrantAnchor?: string | undefined;
|
|
145920
|
+
monthlyCreditGrantAmount?: number | undefined;
|
|
145827
145921
|
builderSeatLimit?: number | undefined;
|
|
145828
145922
|
fullSeatLimit?: number | undefined;
|
|
145829
145923
|
builderSeats?: number | undefined;
|
|
@@ -145970,6 +146064,8 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145970
146064
|
expiryYear?: string | null | undefined;
|
|
145971
146065
|
brand?: string | null | undefined;
|
|
145972
146066
|
} | null | undefined;
|
|
146067
|
+
monthlyCreditGrantAnchor?: string | null | undefined;
|
|
146068
|
+
monthlyCreditGrantAmount?: number | null | undefined;
|
|
145973
146069
|
builderSeatLimit?: number | undefined;
|
|
145974
146070
|
fullSeatLimit?: number | undefined;
|
|
145975
146071
|
builderSeats?: number | undefined;
|
|
@@ -146512,7 +146608,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146512
146608
|
aliasTo?: string | undefined;
|
|
146513
146609
|
};
|
|
146514
146610
|
textDecoration: {
|
|
146515
|
-
value?: "
|
|
146611
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
146516
146612
|
aliasTo?: string | undefined;
|
|
146517
146613
|
};
|
|
146518
146614
|
textCase: {
|
|
@@ -146564,7 +146660,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146564
146660
|
aliasTo?: string | null | undefined;
|
|
146565
146661
|
};
|
|
146566
146662
|
textDecoration: {
|
|
146567
|
-
value?: "
|
|
146663
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
146568
146664
|
aliasTo?: string | null | undefined;
|
|
146569
146665
|
};
|
|
146570
146666
|
textCase: {
|
|
@@ -146616,7 +146712,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146616
146712
|
aliasTo?: string | undefined;
|
|
146617
146713
|
};
|
|
146618
146714
|
textDecoration: {
|
|
146619
|
-
value?: "
|
|
146715
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
146620
146716
|
aliasTo?: string | undefined;
|
|
146621
146717
|
};
|
|
146622
146718
|
textCase: {
|
|
@@ -146668,7 +146764,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146668
146764
|
aliasTo?: string | null | undefined;
|
|
146669
146765
|
};
|
|
146670
146766
|
textDecoration: {
|
|
146671
|
-
value?: "
|
|
146767
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
146672
146768
|
aliasTo?: string | null | undefined;
|
|
146673
146769
|
};
|
|
146674
146770
|
textCase: {
|
|
@@ -146722,7 +146818,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146722
146818
|
aliasTo?: string | undefined;
|
|
146723
146819
|
};
|
|
146724
146820
|
textDecoration: {
|
|
146725
|
-
value?: "
|
|
146821
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
146726
146822
|
aliasTo?: string | undefined;
|
|
146727
146823
|
};
|
|
146728
146824
|
textCase: {
|
|
@@ -146777,7 +146873,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146777
146873
|
aliasTo?: string | null | undefined;
|
|
146778
146874
|
};
|
|
146779
146875
|
textDecoration: {
|
|
146780
|
-
value?: "
|
|
146876
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
146781
146877
|
aliasTo?: string | null | undefined;
|
|
146782
146878
|
};
|
|
146783
146879
|
textCase: {
|
|
@@ -146849,7 +146945,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146849
146945
|
aliasTo?: string | undefined;
|
|
146850
146946
|
};
|
|
146851
146947
|
textDecoration: {
|
|
146852
|
-
value?: "
|
|
146948
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
146853
146949
|
aliasTo?: string | undefined;
|
|
146854
146950
|
};
|
|
146855
146951
|
textCase: {
|
|
@@ -146950,7 +147046,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
146950
147046
|
aliasTo?: string | null | undefined;
|
|
146951
147047
|
};
|
|
146952
147048
|
textDecoration: {
|
|
146953
|
-
value?: "
|
|
147049
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
146954
147050
|
aliasTo?: string | null | undefined;
|
|
146955
147051
|
};
|
|
146956
147052
|
textCase: {
|
|
@@ -147054,7 +147150,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
147054
147150
|
aliasTo?: string | undefined;
|
|
147055
147151
|
};
|
|
147056
147152
|
textDecoration: {
|
|
147057
|
-
value?: "
|
|
147153
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
147058
147154
|
aliasTo?: string | undefined;
|
|
147059
147155
|
};
|
|
147060
147156
|
textCase: {
|
|
@@ -147159,7 +147255,7 @@ declare const ExportJobExporterConfiguration: z.ZodObject<{
|
|
|
147159
147255
|
aliasTo?: string | null | undefined;
|
|
147160
147256
|
};
|
|
147161
147257
|
textDecoration: {
|
|
147162
|
-
value?: "
|
|
147258
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
147163
147259
|
aliasTo?: string | null | undefined;
|
|
147164
147260
|
};
|
|
147165
147261
|
textCase: {
|
|
@@ -150087,12 +150183,12 @@ declare const ExporterWorkspaceMembership: z.ZodObject<{
|
|
|
150087
150183
|
}, "strip", z.ZodTypeAny, {
|
|
150088
150184
|
id: string;
|
|
150089
150185
|
workspaceId: string;
|
|
150090
|
-
role: "
|
|
150186
|
+
role: "Owner" | "User" | "OwnerArchived";
|
|
150091
150187
|
exporterId: string;
|
|
150092
150188
|
}, {
|
|
150093
150189
|
id: string;
|
|
150094
150190
|
workspaceId: string;
|
|
150095
|
-
role: "
|
|
150191
|
+
role: "Owner" | "User" | "OwnerArchived";
|
|
150096
150192
|
exporterId: string;
|
|
150097
150193
|
}>;
|
|
150098
150194
|
type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
|
|
@@ -181273,7 +181369,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181273
181369
|
name: string;
|
|
181274
181370
|
layout: {
|
|
181275
181371
|
type: "Column" | "Row";
|
|
181276
|
-
gap?: "
|
|
181372
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181277
181373
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181278
181374
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181279
181375
|
} & {
|
|
@@ -181295,7 +181391,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181295
181391
|
name: string;
|
|
181296
181392
|
layout: {
|
|
181297
181393
|
type: "Column" | "Row";
|
|
181298
|
-
gap?: "
|
|
181394
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181299
181395
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181300
181396
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181301
181397
|
} & {
|
|
@@ -181328,7 +181424,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181328
181424
|
name: string;
|
|
181329
181425
|
layout: {
|
|
181330
181426
|
type: "Column" | "Row";
|
|
181331
|
-
gap?: "
|
|
181427
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181332
181428
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181333
181429
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181334
181430
|
} & {
|
|
@@ -181367,7 +181463,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181367
181463
|
name: string;
|
|
181368
181464
|
layout: {
|
|
181369
181465
|
type: "Column" | "Row";
|
|
181370
|
-
gap?: "
|
|
181466
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181371
181467
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181372
181468
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181373
181469
|
} & {
|
|
@@ -181497,7 +181593,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181497
181593
|
name: string;
|
|
181498
181594
|
layout: {
|
|
181499
181595
|
type: "Column" | "Row";
|
|
181500
|
-
gap?: "
|
|
181596
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181501
181597
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181502
181598
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181503
181599
|
} & {
|
|
@@ -181570,7 +181666,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181570
181666
|
name: string;
|
|
181571
181667
|
layout: {
|
|
181572
181668
|
type: "Column" | "Row";
|
|
181573
|
-
gap?: "
|
|
181669
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181574
181670
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181575
181671
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181576
181672
|
} & {
|
|
@@ -181837,7 +181933,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
181837
181933
|
name: string;
|
|
181838
181934
|
layout: {
|
|
181839
181935
|
type: "Column" | "Row";
|
|
181840
|
-
gap?: "
|
|
181936
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
181841
181937
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
181842
181938
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
181843
181939
|
} & {
|
|
@@ -182680,7 +182776,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
182680
182776
|
name: string;
|
|
182681
182777
|
layout: {
|
|
182682
182778
|
type: "Column" | "Row";
|
|
182683
|
-
gap?: "
|
|
182779
|
+
gap?: "None" | "Small" | "Medium" | "Large" | undefined;
|
|
182684
182780
|
columnAlign?: "Center" | "Start" | "End" | undefined;
|
|
182685
182781
|
columnResizing?: "Fill" | "Hug" | undefined;
|
|
182686
182782
|
} & {
|