@shotstack/schemas 1.9.3 → 1.9.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/api.bundled.json +17 -3
- package/dist/json-schema/asset.json +30 -4
- package/dist/json-schema/clip.json +30 -4
- package/dist/json-schema/edit.json +30 -4
- package/dist/json-schema/rich-caption-active-font.json +14 -0
- package/dist/json-schema/rich-caption-active.json +14 -0
- package/dist/json-schema/{rich-caption-word-animation.json → rich-caption-animation.json} +1 -1
- package/dist/json-schema/rich-caption-asset.json +30 -4
- package/dist/json-schema/schemas.json +32 -4
- package/dist/json-schema/timeline.json +30 -4
- package/dist/json-schema/track.json +30 -4
- package/dist/schema.d.ts +12 -2
- package/dist/zod/zod.gen.cjs +38 -24
- package/dist/zod/zod.gen.d.ts +225 -82
- package/dist/zod/zod.gen.js +37 -23
- package/dist/zod/zod.gen.ts +17 -15
- package/package.json +1 -1
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -4654,6 +4654,7 @@ export declare const richcaptionpropertiesRichCaptionActiveFontSchema: z.ZodObje
|
|
|
4654
4654
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4655
4655
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4656
4656
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4657
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4657
4658
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
4658
4659
|
none: "none";
|
|
4659
4660
|
underline: "underline";
|
|
@@ -4664,27 +4665,17 @@ export declare const richCaptionActiveFontSchema: z.ZodObject<{
|
|
|
4664
4665
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4665
4666
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4666
4667
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4668
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4667
4669
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
4668
4670
|
none: "none";
|
|
4669
4671
|
underline: "underline";
|
|
4670
4672
|
"line-through": "line-through";
|
|
4671
4673
|
}>>;
|
|
4672
4674
|
}, z.core.$strict>;
|
|
4673
|
-
/**
|
|
4674
|
-
* Font properties for rich captions. Defaults to Roboto.
|
|
4675
|
-
*/
|
|
4676
|
-
export declare const richcaptionpropertiesRichCaptionFontSchema: z.ZodObject<{
|
|
4677
|
-
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4678
|
-
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4679
|
-
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
4680
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4681
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4682
|
-
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4683
|
-
}, z.core.$strict>;
|
|
4684
4675
|
/**
|
|
4685
4676
|
* Word-level animation properties for caption effects.
|
|
4686
4677
|
*/
|
|
4687
|
-
export declare const
|
|
4678
|
+
export declare const richcaptionpropertiesRichCaptionAnimationSchema: z.ZodObject<{
|
|
4688
4679
|
style: z.ZodEnum<{
|
|
4689
4680
|
none: "none";
|
|
4690
4681
|
karaoke: "karaoke";
|
|
@@ -4702,7 +4693,7 @@ export declare const richcaptionpropertiesRichCaptionWordAnimationSchema: z.ZodO
|
|
|
4702
4693
|
down: "down";
|
|
4703
4694
|
}>>;
|
|
4704
4695
|
}, z.core.$strict>;
|
|
4705
|
-
export declare const
|
|
4696
|
+
export declare const richCaptionAnimationSchema: z.ZodObject<{
|
|
4706
4697
|
style: z.ZodEnum<{
|
|
4707
4698
|
none: "none";
|
|
4708
4699
|
karaoke: "karaoke";
|
|
@@ -4720,6 +4711,17 @@ export declare const richCaptionWordAnimationSchema: z.ZodObject<{
|
|
|
4720
4711
|
down: "down";
|
|
4721
4712
|
}>>;
|
|
4722
4713
|
}, z.core.$strict>;
|
|
4714
|
+
/**
|
|
4715
|
+
* Font properties for rich captions. Defaults to Roboto.
|
|
4716
|
+
*/
|
|
4717
|
+
export declare const richcaptionpropertiesRichCaptionFontSchema: z.ZodObject<{
|
|
4718
|
+
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4719
|
+
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4720
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
4721
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4722
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4723
|
+
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4724
|
+
}, z.core.$strict>;
|
|
4723
4725
|
/**
|
|
4724
4726
|
* Text alignment properties (horizontal and vertical).
|
|
4725
4727
|
*/
|
|
@@ -4851,6 +4853,7 @@ export declare const richcaptionpropertiesRichCaptionStyleSchema: z.ZodObject<{
|
|
|
4851
4853
|
lowercase: "lowercase";
|
|
4852
4854
|
capitalize: "capitalize";
|
|
4853
4855
|
}>>;
|
|
4856
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4854
4857
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
4855
4858
|
none: "none";
|
|
4856
4859
|
underline: "underline";
|
|
@@ -4915,6 +4918,7 @@ export declare const richcaptionpropertiesRichCaptionActiveSchema: z.ZodObject<{
|
|
|
4915
4918
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4916
4919
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4917
4920
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4921
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4918
4922
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
4919
4923
|
none: "none";
|
|
4920
4924
|
underline: "underline";
|
|
@@ -4944,6 +4948,7 @@ export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
|
4944
4948
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4945
4949
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4946
4950
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4951
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4947
4952
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
4948
4953
|
none: "none";
|
|
4949
4954
|
underline: "underline";
|
|
@@ -4996,6 +5001,7 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
4996
5001
|
lowercase: "lowercase";
|
|
4997
5002
|
capitalize: "capitalize";
|
|
4998
5003
|
}>>;
|
|
5004
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4999
5005
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
5000
5006
|
none: "none";
|
|
5001
5007
|
underline: "underline";
|
|
@@ -5059,6 +5065,7 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5059
5065
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5060
5066
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5061
5067
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5068
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
5062
5069
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
5063
5070
|
none: "none";
|
|
5064
5071
|
underline: "underline";
|
|
@@ -5083,7 +5090,7 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5083
5090
|
}>]>>;
|
|
5084
5091
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5085
5092
|
}, z.core.$strict>>;
|
|
5086
|
-
|
|
5093
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
5087
5094
|
style: z.ZodEnum<{
|
|
5088
5095
|
none: "none";
|
|
5089
5096
|
karaoke: "karaoke";
|
|
@@ -5124,6 +5131,7 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5124
5131
|
lowercase: "lowercase";
|
|
5125
5132
|
capitalize: "capitalize";
|
|
5126
5133
|
}>>;
|
|
5134
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
5127
5135
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
5128
5136
|
none: "none";
|
|
5129
5137
|
underline: "underline";
|
|
@@ -5187,6 +5195,7 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5187
5195
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5188
5196
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5189
5197
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5198
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
5190
5199
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
5191
5200
|
none: "none";
|
|
5192
5201
|
underline: "underline";
|
|
@@ -5211,7 +5220,7 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5211
5220
|
}>]>>;
|
|
5212
5221
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5213
5222
|
}, z.core.$strict>>;
|
|
5214
|
-
|
|
5223
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
5215
5224
|
style: z.ZodEnum<{
|
|
5216
5225
|
none: "none";
|
|
5217
5226
|
karaoke: "karaoke";
|
|
@@ -11206,6 +11215,7 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11206
11215
|
lowercase: "lowercase";
|
|
11207
11216
|
capitalize: "capitalize";
|
|
11208
11217
|
}>>;
|
|
11218
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
11209
11219
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
11210
11220
|
none: "none";
|
|
11211
11221
|
underline: "underline";
|
|
@@ -11269,6 +11279,7 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11269
11279
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11270
11280
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11271
11281
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11282
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
11272
11283
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
11273
11284
|
none: "none";
|
|
11274
11285
|
underline: "underline";
|
|
@@ -11293,7 +11304,7 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11293
11304
|
}>]>>;
|
|
11294
11305
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11295
11306
|
}, z.core.$strict>>;
|
|
11296
|
-
|
|
11307
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
11297
11308
|
style: z.ZodEnum<{
|
|
11298
11309
|
none: "none";
|
|
11299
11310
|
karaoke: "karaoke";
|
|
@@ -12050,6 +12061,7 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12050
12061
|
lowercase: "lowercase";
|
|
12051
12062
|
capitalize: "capitalize";
|
|
12052
12063
|
}>>;
|
|
12064
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
12053
12065
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
12054
12066
|
none: "none";
|
|
12055
12067
|
underline: "underline";
|
|
@@ -12113,6 +12125,7 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12113
12125
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12114
12126
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12115
12127
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12128
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
12116
12129
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
12117
12130
|
none: "none";
|
|
12118
12131
|
underline: "underline";
|
|
@@ -12137,7 +12150,7 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12137
12150
|
}>]>>;
|
|
12138
12151
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12139
12152
|
}, z.core.$strict>>;
|
|
12140
|
-
|
|
12153
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
12141
12154
|
style: z.ZodEnum<{
|
|
12142
12155
|
none: "none";
|
|
12143
12156
|
karaoke: "karaoke";
|
|
@@ -12898,6 +12911,7 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12898
12911
|
lowercase: "lowercase";
|
|
12899
12912
|
capitalize: "capitalize";
|
|
12900
12913
|
}>>;
|
|
12914
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
12901
12915
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
12902
12916
|
none: "none";
|
|
12903
12917
|
underline: "underline";
|
|
@@ -12961,6 +12975,7 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12961
12975
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12962
12976
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12963
12977
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12978
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
12964
12979
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
12965
12980
|
none: "none";
|
|
12966
12981
|
underline: "underline";
|
|
@@ -12985,7 +13000,7 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12985
13000
|
}>]>>;
|
|
12986
13001
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12987
13002
|
}, z.core.$strict>>;
|
|
12988
|
-
|
|
13003
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
12989
13004
|
style: z.ZodEnum<{
|
|
12990
13005
|
none: "none";
|
|
12991
13006
|
karaoke: "karaoke";
|
|
@@ -14226,6 +14241,7 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14226
14241
|
lowercase: "lowercase";
|
|
14227
14242
|
capitalize: "capitalize";
|
|
14228
14243
|
}>>;
|
|
14244
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
14229
14245
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
14230
14246
|
none: "none";
|
|
14231
14247
|
underline: "underline";
|
|
@@ -14289,6 +14305,7 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14289
14305
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14290
14306
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
14291
14307
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14308
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
14292
14309
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
14293
14310
|
none: "none";
|
|
14294
14311
|
underline: "underline";
|
|
@@ -14313,7 +14330,7 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14313
14330
|
}>]>>;
|
|
14314
14331
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14315
14332
|
}, z.core.$strict>>;
|
|
14316
|
-
|
|
14333
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
14317
14334
|
style: z.ZodEnum<{
|
|
14318
14335
|
none: "none";
|
|
14319
14336
|
karaoke: "karaoke";
|
|
@@ -15558,6 +15575,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15558
15575
|
lowercase: "lowercase";
|
|
15559
15576
|
capitalize: "capitalize";
|
|
15560
15577
|
}>>;
|
|
15578
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
15561
15579
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
15562
15580
|
none: "none";
|
|
15563
15581
|
underline: "underline";
|
|
@@ -15621,6 +15639,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15621
15639
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15622
15640
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15623
15641
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15642
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
15624
15643
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
15625
15644
|
none: "none";
|
|
15626
15645
|
underline: "underline";
|
|
@@ -15645,7 +15664,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15645
15664
|
}>]>>;
|
|
15646
15665
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15647
15666
|
}, z.core.$strict>>;
|
|
15648
|
-
|
|
15667
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
15649
15668
|
style: z.ZodEnum<{
|
|
15650
15669
|
none: "none";
|
|
15651
15670
|
karaoke: "karaoke";
|
|
@@ -16840,6 +16859,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16840
16859
|
letterSpacing: string | number;
|
|
16841
16860
|
lineHeight: string | number;
|
|
16842
16861
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
16862
|
+
size?: string | number;
|
|
16843
16863
|
textDecoration?: "none" | "underline" | "line-through";
|
|
16844
16864
|
gradient?: {
|
|
16845
16865
|
angle: string | number;
|
|
@@ -16889,6 +16909,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16889
16909
|
color: string;
|
|
16890
16910
|
opacity: string | number;
|
|
16891
16911
|
background?: string;
|
|
16912
|
+
size?: string | number;
|
|
16892
16913
|
textDecoration?: "none" | "underline" | "line-through";
|
|
16893
16914
|
};
|
|
16894
16915
|
stroke?: "none" | {
|
|
@@ -16904,7 +16925,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16904
16925
|
opacity: string | number;
|
|
16905
16926
|
};
|
|
16906
16927
|
};
|
|
16907
|
-
|
|
16928
|
+
animation?: {
|
|
16908
16929
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
16909
16930
|
direction?: "left" | "right" | "up" | "down";
|
|
16910
16931
|
};
|
|
@@ -17381,6 +17402,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17381
17402
|
letterSpacing: string | number;
|
|
17382
17403
|
lineHeight: string | number;
|
|
17383
17404
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
17405
|
+
size?: string | number;
|
|
17384
17406
|
textDecoration?: "none" | "underline" | "line-through";
|
|
17385
17407
|
gradient?: {
|
|
17386
17408
|
angle: string | number;
|
|
@@ -17430,6 +17452,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17430
17452
|
color: string;
|
|
17431
17453
|
opacity: string | number;
|
|
17432
17454
|
background?: string;
|
|
17455
|
+
size?: string | number;
|
|
17433
17456
|
textDecoration?: "none" | "underline" | "line-through";
|
|
17434
17457
|
};
|
|
17435
17458
|
stroke?: "none" | {
|
|
@@ -17445,7 +17468,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17445
17468
|
opacity: string | number;
|
|
17446
17469
|
};
|
|
17447
17470
|
};
|
|
17448
|
-
|
|
17471
|
+
animation?: {
|
|
17449
17472
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
17450
17473
|
direction?: "left" | "right" | "up" | "down";
|
|
17451
17474
|
};
|
|
@@ -17971,6 +17994,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17971
17994
|
lowercase: "lowercase";
|
|
17972
17995
|
capitalize: "capitalize";
|
|
17973
17996
|
}>>;
|
|
17997
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
17974
17998
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
17975
17999
|
none: "none";
|
|
17976
18000
|
underline: "underline";
|
|
@@ -18034,6 +18058,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
18034
18058
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
18035
18059
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18036
18060
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18061
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
18037
18062
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
18038
18063
|
none: "none";
|
|
18039
18064
|
underline: "underline";
|
|
@@ -18058,7 +18083,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
18058
18083
|
}>]>>;
|
|
18059
18084
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18060
18085
|
}, z.core.$strict>>;
|
|
18061
|
-
|
|
18086
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
18062
18087
|
style: z.ZodEnum<{
|
|
18063
18088
|
none: "none";
|
|
18064
18089
|
karaoke: "karaoke";
|
|
@@ -19253,6 +19278,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19253
19278
|
letterSpacing: string | number;
|
|
19254
19279
|
lineHeight: string | number;
|
|
19255
19280
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
19281
|
+
size?: string | number;
|
|
19256
19282
|
textDecoration?: "none" | "underline" | "line-through";
|
|
19257
19283
|
gradient?: {
|
|
19258
19284
|
angle: string | number;
|
|
@@ -19302,6 +19328,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19302
19328
|
color: string;
|
|
19303
19329
|
opacity: string | number;
|
|
19304
19330
|
background?: string;
|
|
19331
|
+
size?: string | number;
|
|
19305
19332
|
textDecoration?: "none" | "underline" | "line-through";
|
|
19306
19333
|
};
|
|
19307
19334
|
stroke?: "none" | {
|
|
@@ -19317,7 +19344,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19317
19344
|
opacity: string | number;
|
|
19318
19345
|
};
|
|
19319
19346
|
};
|
|
19320
|
-
|
|
19347
|
+
animation?: {
|
|
19321
19348
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
19322
19349
|
direction?: "left" | "right" | "up" | "down";
|
|
19323
19350
|
};
|
|
@@ -19794,6 +19821,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19794
19821
|
letterSpacing: string | number;
|
|
19795
19822
|
lineHeight: string | number;
|
|
19796
19823
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
19824
|
+
size?: string | number;
|
|
19797
19825
|
textDecoration?: "none" | "underline" | "line-through";
|
|
19798
19826
|
gradient?: {
|
|
19799
19827
|
angle: string | number;
|
|
@@ -19843,6 +19871,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19843
19871
|
color: string;
|
|
19844
19872
|
opacity: string | number;
|
|
19845
19873
|
background?: string;
|
|
19874
|
+
size?: string | number;
|
|
19846
19875
|
textDecoration?: "none" | "underline" | "line-through";
|
|
19847
19876
|
};
|
|
19848
19877
|
stroke?: "none" | {
|
|
@@ -19858,7 +19887,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19858
19887
|
opacity: string | number;
|
|
19859
19888
|
};
|
|
19860
19889
|
};
|
|
19861
|
-
|
|
19890
|
+
animation?: {
|
|
19862
19891
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
19863
19892
|
direction?: "left" | "right" | "up" | "down";
|
|
19864
19893
|
};
|
|
@@ -20401,6 +20430,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20401
20430
|
lowercase: "lowercase";
|
|
20402
20431
|
capitalize: "capitalize";
|
|
20403
20432
|
}>>;
|
|
20433
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
20404
20434
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
20405
20435
|
none: "none";
|
|
20406
20436
|
underline: "underline";
|
|
@@ -20464,6 +20494,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20464
20494
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20465
20495
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20466
20496
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20497
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
20467
20498
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
20468
20499
|
none: "none";
|
|
20469
20500
|
underline: "underline";
|
|
@@ -20488,7 +20519,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20488
20519
|
}>]>>;
|
|
20489
20520
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20490
20521
|
}, z.core.$strict>>;
|
|
20491
|
-
|
|
20522
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
20492
20523
|
style: z.ZodEnum<{
|
|
20493
20524
|
none: "none";
|
|
20494
20525
|
karaoke: "karaoke";
|
|
@@ -21683,6 +21714,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21683
21714
|
letterSpacing: string | number;
|
|
21684
21715
|
lineHeight: string | number;
|
|
21685
21716
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
21717
|
+
size?: string | number;
|
|
21686
21718
|
textDecoration?: "none" | "underline" | "line-through";
|
|
21687
21719
|
gradient?: {
|
|
21688
21720
|
angle: string | number;
|
|
@@ -21732,6 +21764,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21732
21764
|
color: string;
|
|
21733
21765
|
opacity: string | number;
|
|
21734
21766
|
background?: string;
|
|
21767
|
+
size?: string | number;
|
|
21735
21768
|
textDecoration?: "none" | "underline" | "line-through";
|
|
21736
21769
|
};
|
|
21737
21770
|
stroke?: "none" | {
|
|
@@ -21747,7 +21780,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21747
21780
|
opacity: string | number;
|
|
21748
21781
|
};
|
|
21749
21782
|
};
|
|
21750
|
-
|
|
21783
|
+
animation?: {
|
|
21751
21784
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
21752
21785
|
direction?: "left" | "right" | "up" | "down";
|
|
21753
21786
|
};
|
|
@@ -22224,6 +22257,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22224
22257
|
letterSpacing: string | number;
|
|
22225
22258
|
lineHeight: string | number;
|
|
22226
22259
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
22260
|
+
size?: string | number;
|
|
22227
22261
|
textDecoration?: "none" | "underline" | "line-through";
|
|
22228
22262
|
gradient?: {
|
|
22229
22263
|
angle: string | number;
|
|
@@ -22273,6 +22307,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22273
22307
|
color: string;
|
|
22274
22308
|
opacity: string | number;
|
|
22275
22309
|
background?: string;
|
|
22310
|
+
size?: string | number;
|
|
22276
22311
|
textDecoration?: "none" | "underline" | "line-through";
|
|
22277
22312
|
};
|
|
22278
22313
|
stroke?: "none" | {
|
|
@@ -22288,7 +22323,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22288
22323
|
opacity: string | number;
|
|
22289
22324
|
};
|
|
22290
22325
|
};
|
|
22291
|
-
|
|
22326
|
+
animation?: {
|
|
22292
22327
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
22293
22328
|
direction?: "left" | "right" | "up" | "down";
|
|
22294
22329
|
};
|
|
@@ -22830,6 +22865,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22830
22865
|
lowercase: "lowercase";
|
|
22831
22866
|
capitalize: "capitalize";
|
|
22832
22867
|
}>>;
|
|
22868
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
22833
22869
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
22834
22870
|
none: "none";
|
|
22835
22871
|
underline: "underline";
|
|
@@ -22893,6 +22929,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22893
22929
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22894
22930
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
22895
22931
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22932
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
22896
22933
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
22897
22934
|
none: "none";
|
|
22898
22935
|
underline: "underline";
|
|
@@ -22917,7 +22954,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22917
22954
|
}>]>>;
|
|
22918
22955
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22919
22956
|
}, z.core.$strict>>;
|
|
22920
|
-
|
|
22957
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
22921
22958
|
style: z.ZodEnum<{
|
|
22922
22959
|
none: "none";
|
|
22923
22960
|
karaoke: "karaoke";
|
|
@@ -24112,6 +24149,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24112
24149
|
letterSpacing: string | number;
|
|
24113
24150
|
lineHeight: string | number;
|
|
24114
24151
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
24152
|
+
size?: string | number;
|
|
24115
24153
|
textDecoration?: "none" | "underline" | "line-through";
|
|
24116
24154
|
gradient?: {
|
|
24117
24155
|
angle: string | number;
|
|
@@ -24161,6 +24199,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24161
24199
|
color: string;
|
|
24162
24200
|
opacity: string | number;
|
|
24163
24201
|
background?: string;
|
|
24202
|
+
size?: string | number;
|
|
24164
24203
|
textDecoration?: "none" | "underline" | "line-through";
|
|
24165
24204
|
};
|
|
24166
24205
|
stroke?: "none" | {
|
|
@@ -24176,7 +24215,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24176
24215
|
opacity: string | number;
|
|
24177
24216
|
};
|
|
24178
24217
|
};
|
|
24179
|
-
|
|
24218
|
+
animation?: {
|
|
24180
24219
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
24181
24220
|
direction?: "left" | "right" | "up" | "down";
|
|
24182
24221
|
};
|
|
@@ -24653,6 +24692,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24653
24692
|
letterSpacing: string | number;
|
|
24654
24693
|
lineHeight: string | number;
|
|
24655
24694
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
24695
|
+
size?: string | number;
|
|
24656
24696
|
textDecoration?: "none" | "underline" | "line-through";
|
|
24657
24697
|
gradient?: {
|
|
24658
24698
|
angle: string | number;
|
|
@@ -24702,6 +24742,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24702
24742
|
color: string;
|
|
24703
24743
|
opacity: string | number;
|
|
24704
24744
|
background?: string;
|
|
24745
|
+
size?: string | number;
|
|
24705
24746
|
textDecoration?: "none" | "underline" | "line-through";
|
|
24706
24747
|
};
|
|
24707
24748
|
stroke?: "none" | {
|
|
@@ -24717,7 +24758,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24717
24758
|
opacity: string | number;
|
|
24718
24759
|
};
|
|
24719
24760
|
};
|
|
24720
|
-
|
|
24761
|
+
animation?: {
|
|
24721
24762
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
24722
24763
|
direction?: "left" | "right" | "up" | "down";
|
|
24723
24764
|
};
|
|
@@ -25263,6 +25304,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25263
25304
|
lowercase: "lowercase";
|
|
25264
25305
|
capitalize: "capitalize";
|
|
25265
25306
|
}>>;
|
|
25307
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
25266
25308
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
25267
25309
|
none: "none";
|
|
25268
25310
|
underline: "underline";
|
|
@@ -25326,6 +25368,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25326
25368
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25327
25369
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
25328
25370
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25371
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
25329
25372
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
25330
25373
|
none: "none";
|
|
25331
25374
|
underline: "underline";
|
|
@@ -25350,7 +25393,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25350
25393
|
}>]>>;
|
|
25351
25394
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25352
25395
|
}, z.core.$strict>>;
|
|
25353
|
-
|
|
25396
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
25354
25397
|
style: z.ZodEnum<{
|
|
25355
25398
|
none: "none";
|
|
25356
25399
|
karaoke: "karaoke";
|
|
@@ -26545,6 +26588,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26545
26588
|
letterSpacing: string | number;
|
|
26546
26589
|
lineHeight: string | number;
|
|
26547
26590
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
26591
|
+
size?: string | number;
|
|
26548
26592
|
textDecoration?: "none" | "underline" | "line-through";
|
|
26549
26593
|
gradient?: {
|
|
26550
26594
|
angle: string | number;
|
|
@@ -26594,6 +26638,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26594
26638
|
color: string;
|
|
26595
26639
|
opacity: string | number;
|
|
26596
26640
|
background?: string;
|
|
26641
|
+
size?: string | number;
|
|
26597
26642
|
textDecoration?: "none" | "underline" | "line-through";
|
|
26598
26643
|
};
|
|
26599
26644
|
stroke?: "none" | {
|
|
@@ -26609,7 +26654,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26609
26654
|
opacity: string | number;
|
|
26610
26655
|
};
|
|
26611
26656
|
};
|
|
26612
|
-
|
|
26657
|
+
animation?: {
|
|
26613
26658
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
26614
26659
|
direction?: "left" | "right" | "up" | "down";
|
|
26615
26660
|
};
|
|
@@ -27086,6 +27131,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27086
27131
|
letterSpacing: string | number;
|
|
27087
27132
|
lineHeight: string | number;
|
|
27088
27133
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
27134
|
+
size?: string | number;
|
|
27089
27135
|
textDecoration?: "none" | "underline" | "line-through";
|
|
27090
27136
|
gradient?: {
|
|
27091
27137
|
angle: string | number;
|
|
@@ -27135,6 +27181,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27135
27181
|
color: string;
|
|
27136
27182
|
opacity: string | number;
|
|
27137
27183
|
background?: string;
|
|
27184
|
+
size?: string | number;
|
|
27138
27185
|
textDecoration?: "none" | "underline" | "line-through";
|
|
27139
27186
|
};
|
|
27140
27187
|
stroke?: "none" | {
|
|
@@ -27150,7 +27197,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27150
27197
|
opacity: string | number;
|
|
27151
27198
|
};
|
|
27152
27199
|
};
|
|
27153
|
-
|
|
27200
|
+
animation?: {
|
|
27154
27201
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
27155
27202
|
direction?: "left" | "right" | "up" | "down";
|
|
27156
27203
|
};
|
|
@@ -27858,6 +27905,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27858
27905
|
lowercase: "lowercase";
|
|
27859
27906
|
capitalize: "capitalize";
|
|
27860
27907
|
}>>;
|
|
27908
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
27861
27909
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
27862
27910
|
none: "none";
|
|
27863
27911
|
underline: "underline";
|
|
@@ -27921,6 +27969,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27921
27969
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27922
27970
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27923
27971
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27972
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
27924
27973
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
27925
27974
|
none: "none";
|
|
27926
27975
|
underline: "underline";
|
|
@@ -27945,7 +27994,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27945
27994
|
}>]>>;
|
|
27946
27995
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27947
27996
|
}, z.core.$strict>>;
|
|
27948
|
-
|
|
27997
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
27949
27998
|
style: z.ZodEnum<{
|
|
27950
27999
|
none: "none";
|
|
27951
28000
|
karaoke: "karaoke";
|
|
@@ -29140,6 +29189,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29140
29189
|
letterSpacing: string | number;
|
|
29141
29190
|
lineHeight: string | number;
|
|
29142
29191
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
29192
|
+
size?: string | number;
|
|
29143
29193
|
textDecoration?: "none" | "underline" | "line-through";
|
|
29144
29194
|
gradient?: {
|
|
29145
29195
|
angle: string | number;
|
|
@@ -29189,6 +29239,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29189
29239
|
color: string;
|
|
29190
29240
|
opacity: string | number;
|
|
29191
29241
|
background?: string;
|
|
29242
|
+
size?: string | number;
|
|
29192
29243
|
textDecoration?: "none" | "underline" | "line-through";
|
|
29193
29244
|
};
|
|
29194
29245
|
stroke?: "none" | {
|
|
@@ -29204,7 +29255,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29204
29255
|
opacity: string | number;
|
|
29205
29256
|
};
|
|
29206
29257
|
};
|
|
29207
|
-
|
|
29258
|
+
animation?: {
|
|
29208
29259
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
29209
29260
|
direction?: "left" | "right" | "up" | "down";
|
|
29210
29261
|
};
|
|
@@ -29681,6 +29732,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29681
29732
|
letterSpacing: string | number;
|
|
29682
29733
|
lineHeight: string | number;
|
|
29683
29734
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
29735
|
+
size?: string | number;
|
|
29684
29736
|
textDecoration?: "none" | "underline" | "line-through";
|
|
29685
29737
|
gradient?: {
|
|
29686
29738
|
angle: string | number;
|
|
@@ -29730,6 +29782,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29730
29782
|
color: string;
|
|
29731
29783
|
opacity: string | number;
|
|
29732
29784
|
background?: string;
|
|
29785
|
+
size?: string | number;
|
|
29733
29786
|
textDecoration?: "none" | "underline" | "line-through";
|
|
29734
29787
|
};
|
|
29735
29788
|
stroke?: "none" | {
|
|
@@ -29745,7 +29798,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29745
29798
|
opacity: string | number;
|
|
29746
29799
|
};
|
|
29747
29800
|
};
|
|
29748
|
-
|
|
29801
|
+
animation?: {
|
|
29749
29802
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
29750
29803
|
direction?: "left" | "right" | "up" | "down";
|
|
29751
29804
|
};
|
|
@@ -30475,6 +30528,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30475
30528
|
lowercase: "lowercase";
|
|
30476
30529
|
capitalize: "capitalize";
|
|
30477
30530
|
}>>;
|
|
30531
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
30478
30532
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
30479
30533
|
none: "none";
|
|
30480
30534
|
underline: "underline";
|
|
@@ -30538,6 +30592,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30538
30592
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30539
30593
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
30540
30594
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30595
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
30541
30596
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
30542
30597
|
none: "none";
|
|
30543
30598
|
underline: "underline";
|
|
@@ -30562,7 +30617,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30562
30617
|
}>]>>;
|
|
30563
30618
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30564
30619
|
}, z.core.$strict>>;
|
|
30565
|
-
|
|
30620
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
30566
30621
|
style: z.ZodEnum<{
|
|
30567
30622
|
none: "none";
|
|
30568
30623
|
karaoke: "karaoke";
|
|
@@ -31757,6 +31812,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31757
31812
|
letterSpacing: string | number;
|
|
31758
31813
|
lineHeight: string | number;
|
|
31759
31814
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
31815
|
+
size?: string | number;
|
|
31760
31816
|
textDecoration?: "none" | "underline" | "line-through";
|
|
31761
31817
|
gradient?: {
|
|
31762
31818
|
angle: string | number;
|
|
@@ -31806,6 +31862,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31806
31862
|
color: string;
|
|
31807
31863
|
opacity: string | number;
|
|
31808
31864
|
background?: string;
|
|
31865
|
+
size?: string | number;
|
|
31809
31866
|
textDecoration?: "none" | "underline" | "line-through";
|
|
31810
31867
|
};
|
|
31811
31868
|
stroke?: "none" | {
|
|
@@ -31821,7 +31878,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31821
31878
|
opacity: string | number;
|
|
31822
31879
|
};
|
|
31823
31880
|
};
|
|
31824
|
-
|
|
31881
|
+
animation?: {
|
|
31825
31882
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
31826
31883
|
direction?: "left" | "right" | "up" | "down";
|
|
31827
31884
|
};
|
|
@@ -32298,6 +32355,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32298
32355
|
letterSpacing: string | number;
|
|
32299
32356
|
lineHeight: string | number;
|
|
32300
32357
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
32358
|
+
size?: string | number;
|
|
32301
32359
|
textDecoration?: "none" | "underline" | "line-through";
|
|
32302
32360
|
gradient?: {
|
|
32303
32361
|
angle: string | number;
|
|
@@ -32347,6 +32405,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32347
32405
|
color: string;
|
|
32348
32406
|
opacity: string | number;
|
|
32349
32407
|
background?: string;
|
|
32408
|
+
size?: string | number;
|
|
32350
32409
|
textDecoration?: "none" | "underline" | "line-through";
|
|
32351
32410
|
};
|
|
32352
32411
|
stroke?: "none" | {
|
|
@@ -32362,7 +32421,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32362
32421
|
opacity: string | number;
|
|
32363
32422
|
};
|
|
32364
32423
|
};
|
|
32365
|
-
|
|
32424
|
+
animation?: {
|
|
32366
32425
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
32367
32426
|
direction?: "left" | "right" | "up" | "down";
|
|
32368
32427
|
};
|
|
@@ -33092,6 +33151,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33092
33151
|
lowercase: "lowercase";
|
|
33093
33152
|
capitalize: "capitalize";
|
|
33094
33153
|
}>>;
|
|
33154
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
33095
33155
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
33096
33156
|
none: "none";
|
|
33097
33157
|
underline: "underline";
|
|
@@ -33155,6 +33215,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33155
33215
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
33156
33216
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33157
33217
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33218
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
33158
33219
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
33159
33220
|
none: "none";
|
|
33160
33221
|
underline: "underline";
|
|
@@ -33179,7 +33240,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33179
33240
|
}>]>>;
|
|
33180
33241
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33181
33242
|
}, z.core.$strict>>;
|
|
33182
|
-
|
|
33243
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
33183
33244
|
style: z.ZodEnum<{
|
|
33184
33245
|
none: "none";
|
|
33185
33246
|
karaoke: "karaoke";
|
|
@@ -34374,6 +34435,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34374
34435
|
letterSpacing: string | number;
|
|
34375
34436
|
lineHeight: string | number;
|
|
34376
34437
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
34438
|
+
size?: string | number;
|
|
34377
34439
|
textDecoration?: "none" | "underline" | "line-through";
|
|
34378
34440
|
gradient?: {
|
|
34379
34441
|
angle: string | number;
|
|
@@ -34423,6 +34485,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34423
34485
|
color: string;
|
|
34424
34486
|
opacity: string | number;
|
|
34425
34487
|
background?: string;
|
|
34488
|
+
size?: string | number;
|
|
34426
34489
|
textDecoration?: "none" | "underline" | "line-through";
|
|
34427
34490
|
};
|
|
34428
34491
|
stroke?: "none" | {
|
|
@@ -34438,7 +34501,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34438
34501
|
opacity: string | number;
|
|
34439
34502
|
};
|
|
34440
34503
|
};
|
|
34441
|
-
|
|
34504
|
+
animation?: {
|
|
34442
34505
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
34443
34506
|
direction?: "left" | "right" | "up" | "down";
|
|
34444
34507
|
};
|
|
@@ -34915,6 +34978,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34915
34978
|
letterSpacing: string | number;
|
|
34916
34979
|
lineHeight: string | number;
|
|
34917
34980
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
34981
|
+
size?: string | number;
|
|
34918
34982
|
textDecoration?: "none" | "underline" | "line-through";
|
|
34919
34983
|
gradient?: {
|
|
34920
34984
|
angle: string | number;
|
|
@@ -34964,6 +35028,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34964
35028
|
color: string;
|
|
34965
35029
|
opacity: string | number;
|
|
34966
35030
|
background?: string;
|
|
35031
|
+
size?: string | number;
|
|
34967
35032
|
textDecoration?: "none" | "underline" | "line-through";
|
|
34968
35033
|
};
|
|
34969
35034
|
stroke?: "none" | {
|
|
@@ -34979,7 +35044,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34979
35044
|
opacity: string | number;
|
|
34980
35045
|
};
|
|
34981
35046
|
};
|
|
34982
|
-
|
|
35047
|
+
animation?: {
|
|
34983
35048
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
34984
35049
|
direction?: "left" | "right" | "up" | "down";
|
|
34985
35050
|
};
|
|
@@ -35715,6 +35780,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35715
35780
|
lowercase: "lowercase";
|
|
35716
35781
|
capitalize: "capitalize";
|
|
35717
35782
|
}>>;
|
|
35783
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
35718
35784
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
35719
35785
|
none: "none";
|
|
35720
35786
|
underline: "underline";
|
|
@@ -35778,6 +35844,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35778
35844
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35779
35845
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
35780
35846
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35847
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
35781
35848
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
35782
35849
|
none: "none";
|
|
35783
35850
|
underline: "underline";
|
|
@@ -35802,7 +35869,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35802
35869
|
}>]>>;
|
|
35803
35870
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35804
35871
|
}, z.core.$strict>>;
|
|
35805
|
-
|
|
35872
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
35806
35873
|
style: z.ZodEnum<{
|
|
35807
35874
|
none: "none";
|
|
35808
35875
|
karaoke: "karaoke";
|
|
@@ -36997,6 +37064,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
36997
37064
|
letterSpacing: string | number;
|
|
36998
37065
|
lineHeight: string | number;
|
|
36999
37066
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
37067
|
+
size?: string | number;
|
|
37000
37068
|
textDecoration?: "none" | "underline" | "line-through";
|
|
37001
37069
|
gradient?: {
|
|
37002
37070
|
angle: string | number;
|
|
@@ -37046,6 +37114,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37046
37114
|
color: string;
|
|
37047
37115
|
opacity: string | number;
|
|
37048
37116
|
background?: string;
|
|
37117
|
+
size?: string | number;
|
|
37049
37118
|
textDecoration?: "none" | "underline" | "line-through";
|
|
37050
37119
|
};
|
|
37051
37120
|
stroke?: "none" | {
|
|
@@ -37061,7 +37130,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37061
37130
|
opacity: string | number;
|
|
37062
37131
|
};
|
|
37063
37132
|
};
|
|
37064
|
-
|
|
37133
|
+
animation?: {
|
|
37065
37134
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
37066
37135
|
direction?: "left" | "right" | "up" | "down";
|
|
37067
37136
|
};
|
|
@@ -37538,6 +37607,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37538
37607
|
letterSpacing: string | number;
|
|
37539
37608
|
lineHeight: string | number;
|
|
37540
37609
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
37610
|
+
size?: string | number;
|
|
37541
37611
|
textDecoration?: "none" | "underline" | "line-through";
|
|
37542
37612
|
gradient?: {
|
|
37543
37613
|
angle: string | number;
|
|
@@ -37587,6 +37657,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37587
37657
|
color: string;
|
|
37588
37658
|
opacity: string | number;
|
|
37589
37659
|
background?: string;
|
|
37660
|
+
size?: string | number;
|
|
37590
37661
|
textDecoration?: "none" | "underline" | "line-through";
|
|
37591
37662
|
};
|
|
37592
37663
|
stroke?: "none" | {
|
|
@@ -37602,7 +37673,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37602
37673
|
opacity: string | number;
|
|
37603
37674
|
};
|
|
37604
37675
|
};
|
|
37605
|
-
|
|
37676
|
+
animation?: {
|
|
37606
37677
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
37607
37678
|
direction?: "left" | "right" | "up" | "down";
|
|
37608
37679
|
};
|
|
@@ -38336,6 +38407,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38336
38407
|
lowercase: "lowercase";
|
|
38337
38408
|
capitalize: "capitalize";
|
|
38338
38409
|
}>>;
|
|
38410
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
38339
38411
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
38340
38412
|
none: "none";
|
|
38341
38413
|
underline: "underline";
|
|
@@ -38399,6 +38471,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38399
38471
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38400
38472
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
38401
38473
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38474
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
38402
38475
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
38403
38476
|
none: "none";
|
|
38404
38477
|
underline: "underline";
|
|
@@ -38423,7 +38496,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38423
38496
|
}>]>>;
|
|
38424
38497
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38425
38498
|
}, z.core.$strict>>;
|
|
38426
|
-
|
|
38499
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
38427
38500
|
style: z.ZodEnum<{
|
|
38428
38501
|
none: "none";
|
|
38429
38502
|
karaoke: "karaoke";
|
|
@@ -39618,6 +39691,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39618
39691
|
letterSpacing: string | number;
|
|
39619
39692
|
lineHeight: string | number;
|
|
39620
39693
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
39694
|
+
size?: string | number;
|
|
39621
39695
|
textDecoration?: "none" | "underline" | "line-through";
|
|
39622
39696
|
gradient?: {
|
|
39623
39697
|
angle: string | number;
|
|
@@ -39667,6 +39741,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39667
39741
|
color: string;
|
|
39668
39742
|
opacity: string | number;
|
|
39669
39743
|
background?: string;
|
|
39744
|
+
size?: string | number;
|
|
39670
39745
|
textDecoration?: "none" | "underline" | "line-through";
|
|
39671
39746
|
};
|
|
39672
39747
|
stroke?: "none" | {
|
|
@@ -39682,7 +39757,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39682
39757
|
opacity: string | number;
|
|
39683
39758
|
};
|
|
39684
39759
|
};
|
|
39685
|
-
|
|
39760
|
+
animation?: {
|
|
39686
39761
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
39687
39762
|
direction?: "left" | "right" | "up" | "down";
|
|
39688
39763
|
};
|
|
@@ -40159,6 +40234,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40159
40234
|
letterSpacing: string | number;
|
|
40160
40235
|
lineHeight: string | number;
|
|
40161
40236
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
40237
|
+
size?: string | number;
|
|
40162
40238
|
textDecoration?: "none" | "underline" | "line-through";
|
|
40163
40239
|
gradient?: {
|
|
40164
40240
|
angle: string | number;
|
|
@@ -40208,6 +40284,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40208
40284
|
color: string;
|
|
40209
40285
|
opacity: string | number;
|
|
40210
40286
|
background?: string;
|
|
40287
|
+
size?: string | number;
|
|
40211
40288
|
textDecoration?: "none" | "underline" | "line-through";
|
|
40212
40289
|
};
|
|
40213
40290
|
stroke?: "none" | {
|
|
@@ -40223,7 +40300,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40223
40300
|
opacity: string | number;
|
|
40224
40301
|
};
|
|
40225
40302
|
};
|
|
40226
|
-
|
|
40303
|
+
animation?: {
|
|
40227
40304
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
40228
40305
|
direction?: "left" | "right" | "up" | "down";
|
|
40229
40306
|
};
|
|
@@ -40942,6 +41019,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40942
41019
|
lowercase: "lowercase";
|
|
40943
41020
|
capitalize: "capitalize";
|
|
40944
41021
|
}>>;
|
|
41022
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
40945
41023
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
40946
41024
|
none: "none";
|
|
40947
41025
|
underline: "underline";
|
|
@@ -41005,6 +41083,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41005
41083
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
41006
41084
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
41007
41085
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41086
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
41008
41087
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
41009
41088
|
none: "none";
|
|
41010
41089
|
underline: "underline";
|
|
@@ -41029,7 +41108,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41029
41108
|
}>]>>;
|
|
41030
41109
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41031
41110
|
}, z.core.$strict>>;
|
|
41032
|
-
|
|
41111
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
41033
41112
|
style: z.ZodEnum<{
|
|
41034
41113
|
none: "none";
|
|
41035
41114
|
karaoke: "karaoke";
|
|
@@ -42224,6 +42303,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42224
42303
|
letterSpacing: string | number;
|
|
42225
42304
|
lineHeight: string | number;
|
|
42226
42305
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
42306
|
+
size?: string | number;
|
|
42227
42307
|
textDecoration?: "none" | "underline" | "line-through";
|
|
42228
42308
|
gradient?: {
|
|
42229
42309
|
angle: string | number;
|
|
@@ -42273,6 +42353,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42273
42353
|
color: string;
|
|
42274
42354
|
opacity: string | number;
|
|
42275
42355
|
background?: string;
|
|
42356
|
+
size?: string | number;
|
|
42276
42357
|
textDecoration?: "none" | "underline" | "line-through";
|
|
42277
42358
|
};
|
|
42278
42359
|
stroke?: "none" | {
|
|
@@ -42288,7 +42369,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42288
42369
|
opacity: string | number;
|
|
42289
42370
|
};
|
|
42290
42371
|
};
|
|
42291
|
-
|
|
42372
|
+
animation?: {
|
|
42292
42373
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
42293
42374
|
direction?: "left" | "right" | "up" | "down";
|
|
42294
42375
|
};
|
|
@@ -42765,6 +42846,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42765
42846
|
letterSpacing: string | number;
|
|
42766
42847
|
lineHeight: string | number;
|
|
42767
42848
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
42849
|
+
size?: string | number;
|
|
42768
42850
|
textDecoration?: "none" | "underline" | "line-through";
|
|
42769
42851
|
gradient?: {
|
|
42770
42852
|
angle: string | number;
|
|
@@ -42814,6 +42896,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42814
42896
|
color: string;
|
|
42815
42897
|
opacity: string | number;
|
|
42816
42898
|
background?: string;
|
|
42899
|
+
size?: string | number;
|
|
42817
42900
|
textDecoration?: "none" | "underline" | "line-through";
|
|
42818
42901
|
};
|
|
42819
42902
|
stroke?: "none" | {
|
|
@@ -42829,7 +42912,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42829
42912
|
opacity: string | number;
|
|
42830
42913
|
};
|
|
42831
42914
|
};
|
|
42832
|
-
|
|
42915
|
+
animation?: {
|
|
42833
42916
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
42834
42917
|
direction?: "left" | "right" | "up" | "down";
|
|
42835
42918
|
};
|
|
@@ -43542,6 +43625,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43542
43625
|
lowercase: "lowercase";
|
|
43543
43626
|
capitalize: "capitalize";
|
|
43544
43627
|
}>>;
|
|
43628
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
43545
43629
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
43546
43630
|
none: "none";
|
|
43547
43631
|
underline: "underline";
|
|
@@ -43605,6 +43689,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43605
43689
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43606
43690
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
43607
43691
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43692
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
43608
43693
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
43609
43694
|
none: "none";
|
|
43610
43695
|
underline: "underline";
|
|
@@ -43629,7 +43714,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43629
43714
|
}>]>>;
|
|
43630
43715
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43631
43716
|
}, z.core.$strict>>;
|
|
43632
|
-
|
|
43717
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
43633
43718
|
style: z.ZodEnum<{
|
|
43634
43719
|
none: "none";
|
|
43635
43720
|
karaoke: "karaoke";
|
|
@@ -44824,6 +44909,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44824
44909
|
letterSpacing: string | number;
|
|
44825
44910
|
lineHeight: string | number;
|
|
44826
44911
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
44912
|
+
size?: string | number;
|
|
44827
44913
|
textDecoration?: "none" | "underline" | "line-through";
|
|
44828
44914
|
gradient?: {
|
|
44829
44915
|
angle: string | number;
|
|
@@ -44873,6 +44959,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44873
44959
|
color: string;
|
|
44874
44960
|
opacity: string | number;
|
|
44875
44961
|
background?: string;
|
|
44962
|
+
size?: string | number;
|
|
44876
44963
|
textDecoration?: "none" | "underline" | "line-through";
|
|
44877
44964
|
};
|
|
44878
44965
|
stroke?: "none" | {
|
|
@@ -44888,7 +44975,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44888
44975
|
opacity: string | number;
|
|
44889
44976
|
};
|
|
44890
44977
|
};
|
|
44891
|
-
|
|
44978
|
+
animation?: {
|
|
44892
44979
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
44893
44980
|
direction?: "left" | "right" | "up" | "down";
|
|
44894
44981
|
};
|
|
@@ -45365,6 +45452,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45365
45452
|
letterSpacing: string | number;
|
|
45366
45453
|
lineHeight: string | number;
|
|
45367
45454
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
45455
|
+
size?: string | number;
|
|
45368
45456
|
textDecoration?: "none" | "underline" | "line-through";
|
|
45369
45457
|
gradient?: {
|
|
45370
45458
|
angle: string | number;
|
|
@@ -45414,6 +45502,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45414
45502
|
color: string;
|
|
45415
45503
|
opacity: string | number;
|
|
45416
45504
|
background?: string;
|
|
45505
|
+
size?: string | number;
|
|
45417
45506
|
textDecoration?: "none" | "underline" | "line-through";
|
|
45418
45507
|
};
|
|
45419
45508
|
stroke?: "none" | {
|
|
@@ -45429,7 +45518,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45429
45518
|
opacity: string | number;
|
|
45430
45519
|
};
|
|
45431
45520
|
};
|
|
45432
|
-
|
|
45521
|
+
animation?: {
|
|
45433
45522
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
45434
45523
|
direction?: "left" | "right" | "up" | "down";
|
|
45435
45524
|
};
|
|
@@ -46148,6 +46237,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46148
46237
|
lowercase: "lowercase";
|
|
46149
46238
|
capitalize: "capitalize";
|
|
46150
46239
|
}>>;
|
|
46240
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
46151
46241
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
46152
46242
|
none: "none";
|
|
46153
46243
|
underline: "underline";
|
|
@@ -46211,6 +46301,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46211
46301
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
46212
46302
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
46213
46303
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46304
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
46214
46305
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
46215
46306
|
none: "none";
|
|
46216
46307
|
underline: "underline";
|
|
@@ -46235,7 +46326,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46235
46326
|
}>]>>;
|
|
46236
46327
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46237
46328
|
}, z.core.$strict>>;
|
|
46238
|
-
|
|
46329
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
46239
46330
|
style: z.ZodEnum<{
|
|
46240
46331
|
none: "none";
|
|
46241
46332
|
karaoke: "karaoke";
|
|
@@ -47430,6 +47521,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47430
47521
|
letterSpacing: string | number;
|
|
47431
47522
|
lineHeight: string | number;
|
|
47432
47523
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
47524
|
+
size?: string | number;
|
|
47433
47525
|
textDecoration?: "none" | "underline" | "line-through";
|
|
47434
47526
|
gradient?: {
|
|
47435
47527
|
angle: string | number;
|
|
@@ -47479,6 +47571,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47479
47571
|
color: string;
|
|
47480
47572
|
opacity: string | number;
|
|
47481
47573
|
background?: string;
|
|
47574
|
+
size?: string | number;
|
|
47482
47575
|
textDecoration?: "none" | "underline" | "line-through";
|
|
47483
47576
|
};
|
|
47484
47577
|
stroke?: "none" | {
|
|
@@ -47494,7 +47587,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47494
47587
|
opacity: string | number;
|
|
47495
47588
|
};
|
|
47496
47589
|
};
|
|
47497
|
-
|
|
47590
|
+
animation?: {
|
|
47498
47591
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
47499
47592
|
direction?: "left" | "right" | "up" | "down";
|
|
47500
47593
|
};
|
|
@@ -47971,6 +48064,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47971
48064
|
letterSpacing: string | number;
|
|
47972
48065
|
lineHeight: string | number;
|
|
47973
48066
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
48067
|
+
size?: string | number;
|
|
47974
48068
|
textDecoration?: "none" | "underline" | "line-through";
|
|
47975
48069
|
gradient?: {
|
|
47976
48070
|
angle: string | number;
|
|
@@ -48020,6 +48114,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48020
48114
|
color: string;
|
|
48021
48115
|
opacity: string | number;
|
|
48022
48116
|
background?: string;
|
|
48117
|
+
size?: string | number;
|
|
48023
48118
|
textDecoration?: "none" | "underline" | "line-through";
|
|
48024
48119
|
};
|
|
48025
48120
|
stroke?: "none" | {
|
|
@@ -48035,7 +48130,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48035
48130
|
opacity: string | number;
|
|
48036
48131
|
};
|
|
48037
48132
|
};
|
|
48038
|
-
|
|
48133
|
+
animation?: {
|
|
48039
48134
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
48040
48135
|
direction?: "left" | "right" | "up" | "down";
|
|
48041
48136
|
};
|
|
@@ -48752,6 +48847,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48752
48847
|
lowercase: "lowercase";
|
|
48753
48848
|
capitalize: "capitalize";
|
|
48754
48849
|
}>>;
|
|
48850
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
48755
48851
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
48756
48852
|
none: "none";
|
|
48757
48853
|
underline: "underline";
|
|
@@ -48815,6 +48911,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48815
48911
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48816
48912
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
48817
48913
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48914
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
48818
48915
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
48819
48916
|
none: "none";
|
|
48820
48917
|
underline: "underline";
|
|
@@ -48839,7 +48936,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48839
48936
|
}>]>>;
|
|
48840
48937
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48841
48938
|
}, z.core.$strict>>;
|
|
48842
|
-
|
|
48939
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
48843
48940
|
style: z.ZodEnum<{
|
|
48844
48941
|
none: "none";
|
|
48845
48942
|
karaoke: "karaoke";
|
|
@@ -50034,6 +50131,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50034
50131
|
letterSpacing: string | number;
|
|
50035
50132
|
lineHeight: string | number;
|
|
50036
50133
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
50134
|
+
size?: string | number;
|
|
50037
50135
|
textDecoration?: "none" | "underline" | "line-through";
|
|
50038
50136
|
gradient?: {
|
|
50039
50137
|
angle: string | number;
|
|
@@ -50083,6 +50181,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50083
50181
|
color: string;
|
|
50084
50182
|
opacity: string | number;
|
|
50085
50183
|
background?: string;
|
|
50184
|
+
size?: string | number;
|
|
50086
50185
|
textDecoration?: "none" | "underline" | "line-through";
|
|
50087
50186
|
};
|
|
50088
50187
|
stroke?: "none" | {
|
|
@@ -50098,7 +50197,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50098
50197
|
opacity: string | number;
|
|
50099
50198
|
};
|
|
50100
50199
|
};
|
|
50101
|
-
|
|
50200
|
+
animation?: {
|
|
50102
50201
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
50103
50202
|
direction?: "left" | "right" | "up" | "down";
|
|
50104
50203
|
};
|
|
@@ -50575,6 +50674,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50575
50674
|
letterSpacing: string | number;
|
|
50576
50675
|
lineHeight: string | number;
|
|
50577
50676
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
50677
|
+
size?: string | number;
|
|
50578
50678
|
textDecoration?: "none" | "underline" | "line-through";
|
|
50579
50679
|
gradient?: {
|
|
50580
50680
|
angle: string | number;
|
|
@@ -50624,6 +50724,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50624
50724
|
color: string;
|
|
50625
50725
|
opacity: string | number;
|
|
50626
50726
|
background?: string;
|
|
50727
|
+
size?: string | number;
|
|
50627
50728
|
textDecoration?: "none" | "underline" | "line-through";
|
|
50628
50729
|
};
|
|
50629
50730
|
stroke?: "none" | {
|
|
@@ -50639,7 +50740,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50639
50740
|
opacity: string | number;
|
|
50640
50741
|
};
|
|
50641
50742
|
};
|
|
50642
|
-
|
|
50743
|
+
animation?: {
|
|
50643
50744
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
50644
50745
|
direction?: "left" | "right" | "up" | "down";
|
|
50645
50746
|
};
|
|
@@ -51354,6 +51455,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51354
51455
|
lowercase: "lowercase";
|
|
51355
51456
|
capitalize: "capitalize";
|
|
51356
51457
|
}>>;
|
|
51458
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
51357
51459
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
51358
51460
|
none: "none";
|
|
51359
51461
|
underline: "underline";
|
|
@@ -51417,6 +51519,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51417
51519
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51418
51520
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
51419
51521
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51522
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
51420
51523
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
51421
51524
|
none: "none";
|
|
51422
51525
|
underline: "underline";
|
|
@@ -51441,7 +51544,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51441
51544
|
}>]>>;
|
|
51442
51545
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51443
51546
|
}, z.core.$strict>>;
|
|
51444
|
-
|
|
51547
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
51445
51548
|
style: z.ZodEnum<{
|
|
51446
51549
|
none: "none";
|
|
51447
51550
|
karaoke: "karaoke";
|
|
@@ -52636,6 +52739,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52636
52739
|
letterSpacing: string | number;
|
|
52637
52740
|
lineHeight: string | number;
|
|
52638
52741
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
52742
|
+
size?: string | number;
|
|
52639
52743
|
textDecoration?: "none" | "underline" | "line-through";
|
|
52640
52744
|
gradient?: {
|
|
52641
52745
|
angle: string | number;
|
|
@@ -52685,6 +52789,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52685
52789
|
color: string;
|
|
52686
52790
|
opacity: string | number;
|
|
52687
52791
|
background?: string;
|
|
52792
|
+
size?: string | number;
|
|
52688
52793
|
textDecoration?: "none" | "underline" | "line-through";
|
|
52689
52794
|
};
|
|
52690
52795
|
stroke?: "none" | {
|
|
@@ -52700,7 +52805,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52700
52805
|
opacity: string | number;
|
|
52701
52806
|
};
|
|
52702
52807
|
};
|
|
52703
|
-
|
|
52808
|
+
animation?: {
|
|
52704
52809
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
52705
52810
|
direction?: "left" | "right" | "up" | "down";
|
|
52706
52811
|
};
|
|
@@ -53177,6 +53282,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53177
53282
|
letterSpacing: string | number;
|
|
53178
53283
|
lineHeight: string | number;
|
|
53179
53284
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
53285
|
+
size?: string | number;
|
|
53180
53286
|
textDecoration?: "none" | "underline" | "line-through";
|
|
53181
53287
|
gradient?: {
|
|
53182
53288
|
angle: string | number;
|
|
@@ -53226,6 +53332,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53226
53332
|
color: string;
|
|
53227
53333
|
opacity: string | number;
|
|
53228
53334
|
background?: string;
|
|
53335
|
+
size?: string | number;
|
|
53229
53336
|
textDecoration?: "none" | "underline" | "line-through";
|
|
53230
53337
|
};
|
|
53231
53338
|
stroke?: "none" | {
|
|
@@ -53241,7 +53348,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53241
53348
|
opacity: string | number;
|
|
53242
53349
|
};
|
|
53243
53350
|
};
|
|
53244
|
-
|
|
53351
|
+
animation?: {
|
|
53245
53352
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
53246
53353
|
direction?: "left" | "right" | "up" | "down";
|
|
53247
53354
|
};
|
|
@@ -53952,6 +54059,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
53952
54059
|
lowercase: "lowercase";
|
|
53953
54060
|
capitalize: "capitalize";
|
|
53954
54061
|
}>>;
|
|
54062
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
53955
54063
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
53956
54064
|
none: "none";
|
|
53957
54065
|
underline: "underline";
|
|
@@ -54015,6 +54123,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54015
54123
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
54016
54124
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
54017
54125
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54126
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
54018
54127
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
54019
54128
|
none: "none";
|
|
54020
54129
|
underline: "underline";
|
|
@@ -54039,7 +54148,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54039
54148
|
}>]>>;
|
|
54040
54149
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54041
54150
|
}, z.core.$strict>>;
|
|
54042
|
-
|
|
54151
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
54043
54152
|
style: z.ZodEnum<{
|
|
54044
54153
|
none: "none";
|
|
54045
54154
|
karaoke: "karaoke";
|
|
@@ -55234,6 +55343,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55234
55343
|
letterSpacing: string | number;
|
|
55235
55344
|
lineHeight: string | number;
|
|
55236
55345
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
55346
|
+
size?: string | number;
|
|
55237
55347
|
textDecoration?: "none" | "underline" | "line-through";
|
|
55238
55348
|
gradient?: {
|
|
55239
55349
|
angle: string | number;
|
|
@@ -55283,6 +55393,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55283
55393
|
color: string;
|
|
55284
55394
|
opacity: string | number;
|
|
55285
55395
|
background?: string;
|
|
55396
|
+
size?: string | number;
|
|
55286
55397
|
textDecoration?: "none" | "underline" | "line-through";
|
|
55287
55398
|
};
|
|
55288
55399
|
stroke?: "none" | {
|
|
@@ -55298,7 +55409,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55298
55409
|
opacity: string | number;
|
|
55299
55410
|
};
|
|
55300
55411
|
};
|
|
55301
|
-
|
|
55412
|
+
animation?: {
|
|
55302
55413
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
55303
55414
|
direction?: "left" | "right" | "up" | "down";
|
|
55304
55415
|
};
|
|
@@ -55775,6 +55886,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55775
55886
|
letterSpacing: string | number;
|
|
55776
55887
|
lineHeight: string | number;
|
|
55777
55888
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
55889
|
+
size?: string | number;
|
|
55778
55890
|
textDecoration?: "none" | "underline" | "line-through";
|
|
55779
55891
|
gradient?: {
|
|
55780
55892
|
angle: string | number;
|
|
@@ -55824,6 +55936,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55824
55936
|
color: string;
|
|
55825
55937
|
opacity: string | number;
|
|
55826
55938
|
background?: string;
|
|
55939
|
+
size?: string | number;
|
|
55827
55940
|
textDecoration?: "none" | "underline" | "line-through";
|
|
55828
55941
|
};
|
|
55829
55942
|
stroke?: "none" | {
|
|
@@ -55839,7 +55952,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55839
55952
|
opacity: string | number;
|
|
55840
55953
|
};
|
|
55841
55954
|
};
|
|
55842
|
-
|
|
55955
|
+
animation?: {
|
|
55843
55956
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
55844
55957
|
direction?: "left" | "right" | "up" | "down";
|
|
55845
55958
|
};
|
|
@@ -56549,6 +56662,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56549
56662
|
lowercase: "lowercase";
|
|
56550
56663
|
capitalize: "capitalize";
|
|
56551
56664
|
}>>;
|
|
56665
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
56552
56666
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
56553
56667
|
none: "none";
|
|
56554
56668
|
underline: "underline";
|
|
@@ -56612,6 +56726,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56612
56726
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56613
56727
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56614
56728
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56729
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
56615
56730
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
56616
56731
|
none: "none";
|
|
56617
56732
|
underline: "underline";
|
|
@@ -56636,7 +56751,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56636
56751
|
}>]>>;
|
|
56637
56752
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56638
56753
|
}, z.core.$strict>>;
|
|
56639
|
-
|
|
56754
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
56640
56755
|
style: z.ZodEnum<{
|
|
56641
56756
|
none: "none";
|
|
56642
56757
|
karaoke: "karaoke";
|
|
@@ -57831,6 +57946,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57831
57946
|
letterSpacing: string | number;
|
|
57832
57947
|
lineHeight: string | number;
|
|
57833
57948
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
57949
|
+
size?: string | number;
|
|
57834
57950
|
textDecoration?: "none" | "underline" | "line-through";
|
|
57835
57951
|
gradient?: {
|
|
57836
57952
|
angle: string | number;
|
|
@@ -57880,6 +57996,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57880
57996
|
color: string;
|
|
57881
57997
|
opacity: string | number;
|
|
57882
57998
|
background?: string;
|
|
57999
|
+
size?: string | number;
|
|
57883
58000
|
textDecoration?: "none" | "underline" | "line-through";
|
|
57884
58001
|
};
|
|
57885
58002
|
stroke?: "none" | {
|
|
@@ -57895,7 +58012,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57895
58012
|
opacity: string | number;
|
|
57896
58013
|
};
|
|
57897
58014
|
};
|
|
57898
|
-
|
|
58015
|
+
animation?: {
|
|
57899
58016
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
57900
58017
|
direction?: "left" | "right" | "up" | "down";
|
|
57901
58018
|
};
|
|
@@ -58372,6 +58489,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58372
58489
|
letterSpacing: string | number;
|
|
58373
58490
|
lineHeight: string | number;
|
|
58374
58491
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
58492
|
+
size?: string | number;
|
|
58375
58493
|
textDecoration?: "none" | "underline" | "line-through";
|
|
58376
58494
|
gradient?: {
|
|
58377
58495
|
angle: string | number;
|
|
@@ -58421,6 +58539,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58421
58539
|
color: string;
|
|
58422
58540
|
opacity: string | number;
|
|
58423
58541
|
background?: string;
|
|
58542
|
+
size?: string | number;
|
|
58424
58543
|
textDecoration?: "none" | "underline" | "line-through";
|
|
58425
58544
|
};
|
|
58426
58545
|
stroke?: "none" | {
|
|
@@ -58436,7 +58555,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58436
58555
|
opacity: string | number;
|
|
58437
58556
|
};
|
|
58438
58557
|
};
|
|
58439
|
-
|
|
58558
|
+
animation?: {
|
|
58440
58559
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
58441
58560
|
direction?: "left" | "right" | "up" | "down";
|
|
58442
58561
|
};
|
|
@@ -59193,6 +59312,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59193
59312
|
lowercase: "lowercase";
|
|
59194
59313
|
capitalize: "capitalize";
|
|
59195
59314
|
}>>;
|
|
59315
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
59196
59316
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
59197
59317
|
none: "none";
|
|
59198
59318
|
underline: "underline";
|
|
@@ -59256,6 +59376,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59256
59376
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
59257
59377
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
59258
59378
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59379
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
59259
59380
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
59260
59381
|
none: "none";
|
|
59261
59382
|
underline: "underline";
|
|
@@ -59280,7 +59401,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59280
59401
|
}>]>>;
|
|
59281
59402
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59282
59403
|
}, z.core.$strict>>;
|
|
59283
|
-
|
|
59404
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
59284
59405
|
style: z.ZodEnum<{
|
|
59285
59406
|
none: "none";
|
|
59286
59407
|
karaoke: "karaoke";
|
|
@@ -60475,6 +60596,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60475
60596
|
letterSpacing: string | number;
|
|
60476
60597
|
lineHeight: string | number;
|
|
60477
60598
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
60599
|
+
size?: string | number;
|
|
60478
60600
|
textDecoration?: "none" | "underline" | "line-through";
|
|
60479
60601
|
gradient?: {
|
|
60480
60602
|
angle: string | number;
|
|
@@ -60524,6 +60646,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60524
60646
|
color: string;
|
|
60525
60647
|
opacity: string | number;
|
|
60526
60648
|
background?: string;
|
|
60649
|
+
size?: string | number;
|
|
60527
60650
|
textDecoration?: "none" | "underline" | "line-through";
|
|
60528
60651
|
};
|
|
60529
60652
|
stroke?: "none" | {
|
|
@@ -60539,7 +60662,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60539
60662
|
opacity: string | number;
|
|
60540
60663
|
};
|
|
60541
60664
|
};
|
|
60542
|
-
|
|
60665
|
+
animation?: {
|
|
60543
60666
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
60544
60667
|
direction?: "left" | "right" | "up" | "down";
|
|
60545
60668
|
};
|
|
@@ -61016,6 +61139,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61016
61139
|
letterSpacing: string | number;
|
|
61017
61140
|
lineHeight: string | number;
|
|
61018
61141
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
61142
|
+
size?: string | number;
|
|
61019
61143
|
textDecoration?: "none" | "underline" | "line-through";
|
|
61020
61144
|
gradient?: {
|
|
61021
61145
|
angle: string | number;
|
|
@@ -61065,6 +61189,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61065
61189
|
color: string;
|
|
61066
61190
|
opacity: string | number;
|
|
61067
61191
|
background?: string;
|
|
61192
|
+
size?: string | number;
|
|
61068
61193
|
textDecoration?: "none" | "underline" | "line-through";
|
|
61069
61194
|
};
|
|
61070
61195
|
stroke?: "none" | {
|
|
@@ -61080,7 +61205,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61080
61205
|
opacity: string | number;
|
|
61081
61206
|
};
|
|
61082
61207
|
};
|
|
61083
|
-
|
|
61208
|
+
animation?: {
|
|
61084
61209
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
61085
61210
|
direction?: "left" | "right" | "up" | "down";
|
|
61086
61211
|
};
|
|
@@ -61816,6 +61941,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61816
61941
|
lowercase: "lowercase";
|
|
61817
61942
|
capitalize: "capitalize";
|
|
61818
61943
|
}>>;
|
|
61944
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
61819
61945
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
61820
61946
|
none: "none";
|
|
61821
61947
|
underline: "underline";
|
|
@@ -61879,6 +62005,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61879
62005
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
61880
62006
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
61881
62007
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62008
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
61882
62009
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
61883
62010
|
none: "none";
|
|
61884
62011
|
underline: "underline";
|
|
@@ -61903,7 +62030,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61903
62030
|
}>]>>;
|
|
61904
62031
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61905
62032
|
}, z.core.$strict>>;
|
|
61906
|
-
|
|
62033
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
61907
62034
|
style: z.ZodEnum<{
|
|
61908
62035
|
none: "none";
|
|
61909
62036
|
karaoke: "karaoke";
|
|
@@ -63098,6 +63225,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63098
63225
|
letterSpacing: string | number;
|
|
63099
63226
|
lineHeight: string | number;
|
|
63100
63227
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
63228
|
+
size?: string | number;
|
|
63101
63229
|
textDecoration?: "none" | "underline" | "line-through";
|
|
63102
63230
|
gradient?: {
|
|
63103
63231
|
angle: string | number;
|
|
@@ -63147,6 +63275,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63147
63275
|
color: string;
|
|
63148
63276
|
opacity: string | number;
|
|
63149
63277
|
background?: string;
|
|
63278
|
+
size?: string | number;
|
|
63150
63279
|
textDecoration?: "none" | "underline" | "line-through";
|
|
63151
63280
|
};
|
|
63152
63281
|
stroke?: "none" | {
|
|
@@ -63162,7 +63291,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63162
63291
|
opacity: string | number;
|
|
63163
63292
|
};
|
|
63164
63293
|
};
|
|
63165
|
-
|
|
63294
|
+
animation?: {
|
|
63166
63295
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
63167
63296
|
direction?: "left" | "right" | "up" | "down";
|
|
63168
63297
|
};
|
|
@@ -63639,6 +63768,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63639
63768
|
letterSpacing: string | number;
|
|
63640
63769
|
lineHeight: string | number;
|
|
63641
63770
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
63771
|
+
size?: string | number;
|
|
63642
63772
|
textDecoration?: "none" | "underline" | "line-through";
|
|
63643
63773
|
gradient?: {
|
|
63644
63774
|
angle: string | number;
|
|
@@ -63688,6 +63818,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63688
63818
|
color: string;
|
|
63689
63819
|
opacity: string | number;
|
|
63690
63820
|
background?: string;
|
|
63821
|
+
size?: string | number;
|
|
63691
63822
|
textDecoration?: "none" | "underline" | "line-through";
|
|
63692
63823
|
};
|
|
63693
63824
|
stroke?: "none" | {
|
|
@@ -63703,7 +63834,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63703
63834
|
opacity: string | number;
|
|
63704
63835
|
};
|
|
63705
63836
|
};
|
|
63706
|
-
|
|
63837
|
+
animation?: {
|
|
63707
63838
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
63708
63839
|
direction?: "left" | "right" | "up" | "down";
|
|
63709
63840
|
};
|
|
@@ -64454,6 +64585,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64454
64585
|
lowercase: "lowercase";
|
|
64455
64586
|
capitalize: "capitalize";
|
|
64456
64587
|
}>>;
|
|
64588
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
64457
64589
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
64458
64590
|
none: "none";
|
|
64459
64591
|
underline: "underline";
|
|
@@ -64517,6 +64649,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64517
64649
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64518
64650
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
64519
64651
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64652
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
64520
64653
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
64521
64654
|
none: "none";
|
|
64522
64655
|
underline: "underline";
|
|
@@ -64541,7 +64674,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64541
64674
|
}>]>>;
|
|
64542
64675
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64543
64676
|
}, z.core.$strict>>;
|
|
64544
|
-
|
|
64677
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
64545
64678
|
style: z.ZodEnum<{
|
|
64546
64679
|
none: "none";
|
|
64547
64680
|
karaoke: "karaoke";
|
|
@@ -65736,6 +65869,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65736
65869
|
letterSpacing: string | number;
|
|
65737
65870
|
lineHeight: string | number;
|
|
65738
65871
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
65872
|
+
size?: string | number;
|
|
65739
65873
|
textDecoration?: "none" | "underline" | "line-through";
|
|
65740
65874
|
gradient?: {
|
|
65741
65875
|
angle: string | number;
|
|
@@ -65785,6 +65919,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65785
65919
|
color: string;
|
|
65786
65920
|
opacity: string | number;
|
|
65787
65921
|
background?: string;
|
|
65922
|
+
size?: string | number;
|
|
65788
65923
|
textDecoration?: "none" | "underline" | "line-through";
|
|
65789
65924
|
};
|
|
65790
65925
|
stroke?: "none" | {
|
|
@@ -65800,7 +65935,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65800
65935
|
opacity: string | number;
|
|
65801
65936
|
};
|
|
65802
65937
|
};
|
|
65803
|
-
|
|
65938
|
+
animation?: {
|
|
65804
65939
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
65805
65940
|
direction?: "left" | "right" | "up" | "down";
|
|
65806
65941
|
};
|
|
@@ -66277,6 +66412,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66277
66412
|
letterSpacing: string | number;
|
|
66278
66413
|
lineHeight: string | number;
|
|
66279
66414
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
66415
|
+
size?: string | number;
|
|
66280
66416
|
textDecoration?: "none" | "underline" | "line-through";
|
|
66281
66417
|
gradient?: {
|
|
66282
66418
|
angle: string | number;
|
|
@@ -66326,6 +66462,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66326
66462
|
color: string;
|
|
66327
66463
|
opacity: string | number;
|
|
66328
66464
|
background?: string;
|
|
66465
|
+
size?: string | number;
|
|
66329
66466
|
textDecoration?: "none" | "underline" | "line-through";
|
|
66330
66467
|
};
|
|
66331
66468
|
stroke?: "none" | {
|
|
@@ -66341,7 +66478,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66341
66478
|
opacity: string | number;
|
|
66342
66479
|
};
|
|
66343
66480
|
};
|
|
66344
|
-
|
|
66481
|
+
animation?: {
|
|
66345
66482
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
66346
66483
|
direction?: "left" | "right" | "up" | "down";
|
|
66347
66484
|
};
|
|
@@ -67054,6 +67191,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67054
67191
|
lowercase: "lowercase";
|
|
67055
67192
|
capitalize: "capitalize";
|
|
67056
67193
|
}>>;
|
|
67194
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
67057
67195
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
67058
67196
|
none: "none";
|
|
67059
67197
|
underline: "underline";
|
|
@@ -67117,6 +67255,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67117
67255
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
67118
67256
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
67119
67257
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67258
|
+
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
67120
67259
|
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
67121
67260
|
none: "none";
|
|
67122
67261
|
underline: "underline";
|
|
@@ -67141,7 +67280,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67141
67280
|
}>]>>;
|
|
67142
67281
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67143
67282
|
}, z.core.$strict>>;
|
|
67144
|
-
|
|
67283
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
67145
67284
|
style: z.ZodEnum<{
|
|
67146
67285
|
none: "none";
|
|
67147
67286
|
karaoke: "karaoke";
|
|
@@ -68336,6 +68475,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68336
68475
|
letterSpacing: string | number;
|
|
68337
68476
|
lineHeight: string | number;
|
|
68338
68477
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
68478
|
+
size?: string | number;
|
|
68339
68479
|
textDecoration?: "none" | "underline" | "line-through";
|
|
68340
68480
|
gradient?: {
|
|
68341
68481
|
angle: string | number;
|
|
@@ -68385,6 +68525,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68385
68525
|
color: string;
|
|
68386
68526
|
opacity: string | number;
|
|
68387
68527
|
background?: string;
|
|
68528
|
+
size?: string | number;
|
|
68388
68529
|
textDecoration?: "none" | "underline" | "line-through";
|
|
68389
68530
|
};
|
|
68390
68531
|
stroke?: "none" | {
|
|
@@ -68400,7 +68541,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68400
68541
|
opacity: string | number;
|
|
68401
68542
|
};
|
|
68402
68543
|
};
|
|
68403
|
-
|
|
68544
|
+
animation?: {
|
|
68404
68545
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
68405
68546
|
direction?: "left" | "right" | "up" | "down";
|
|
68406
68547
|
};
|
|
@@ -68877,6 +69018,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68877
69018
|
letterSpacing: string | number;
|
|
68878
69019
|
lineHeight: string | number;
|
|
68879
69020
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
69021
|
+
size?: string | number;
|
|
68880
69022
|
textDecoration?: "none" | "underline" | "line-through";
|
|
68881
69023
|
gradient?: {
|
|
68882
69024
|
angle: string | number;
|
|
@@ -68926,6 +69068,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68926
69068
|
color: string;
|
|
68927
69069
|
opacity: string | number;
|
|
68928
69070
|
background?: string;
|
|
69071
|
+
size?: string | number;
|
|
68929
69072
|
textDecoration?: "none" | "underline" | "line-through";
|
|
68930
69073
|
};
|
|
68931
69074
|
stroke?: "none" | {
|
|
@@ -68941,7 +69084,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68941
69084
|
opacity: string | number;
|
|
68942
69085
|
};
|
|
68943
69086
|
};
|
|
68944
|
-
|
|
69087
|
+
animation?: {
|
|
68945
69088
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
68946
69089
|
direction?: "left" | "right" | "up" | "down";
|
|
68947
69090
|
};
|