@shotstack/schemas 1.9.2 → 1.9.4
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 +48 -4
- package/dist/json-schema/asset.json +78 -5
- package/dist/json-schema/clip.json +78 -5
- package/dist/json-schema/edit.json +78 -5
- package/dist/json-schema/{rich-caption-word-animation.json → rich-caption-animation.json} +1 -1
- package/dist/json-schema/rich-caption-asset.json +166 -93
- package/dist/json-schema/schemas.json +83 -5
- package/dist/json-schema/timeline.json +78 -5
- package/dist/json-schema/track.json +78 -5
- package/dist/schema.d.ts +32 -3
- package/dist/zod/zod.gen.cjs +88 -57
- package/dist/zod/zod.gen.d.ts +197 -237
- package/dist/zod/zod.gen.js +83 -52
- package/dist/zod/zod.gen.ts +60 -40
- package/package.json +1 -1
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -4670,21 +4670,10 @@ export declare const richCaptionActiveFontSchema: z.ZodObject<{
|
|
|
4670
4670
|
"line-through": "line-through";
|
|
4671
4671
|
}>>;
|
|
4672
4672
|
}, 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
4673
|
/**
|
|
4685
4674
|
* Word-level animation properties for caption effects.
|
|
4686
4675
|
*/
|
|
4687
|
-
export declare const
|
|
4676
|
+
export declare const richcaptionpropertiesRichCaptionAnimationSchema: z.ZodObject<{
|
|
4688
4677
|
style: z.ZodEnum<{
|
|
4689
4678
|
none: "none";
|
|
4690
4679
|
karaoke: "karaoke";
|
|
@@ -4702,7 +4691,7 @@ export declare const richcaptionpropertiesRichCaptionWordAnimationSchema: z.ZodO
|
|
|
4702
4691
|
down: "down";
|
|
4703
4692
|
}>>;
|
|
4704
4693
|
}, z.core.$strict>;
|
|
4705
|
-
export declare const
|
|
4694
|
+
export declare const richCaptionAnimationSchema: z.ZodObject<{
|
|
4706
4695
|
style: z.ZodEnum<{
|
|
4707
4696
|
none: "none";
|
|
4708
4697
|
karaoke: "karaoke";
|
|
@@ -4720,6 +4709,17 @@ export declare const richCaptionWordAnimationSchema: z.ZodObject<{
|
|
|
4720
4709
|
down: "down";
|
|
4721
4710
|
}>>;
|
|
4722
4711
|
}, z.core.$strict>;
|
|
4712
|
+
/**
|
|
4713
|
+
* Font properties for rich captions. Defaults to Roboto.
|
|
4714
|
+
*/
|
|
4715
|
+
export declare const richcaptionpropertiesRichCaptionFontSchema: z.ZodObject<{
|
|
4716
|
+
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4717
|
+
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4718
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
4719
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4720
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4721
|
+
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4722
|
+
}, z.core.$strict>;
|
|
4723
4723
|
/**
|
|
4724
4724
|
* Text alignment properties (horizontal and vertical).
|
|
4725
4725
|
*/
|
|
@@ -4839,6 +4839,35 @@ export declare const richTextGradientSchema: z.ZodObject<{
|
|
|
4839
4839
|
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4840
4840
|
}, z.core.$strip>>;
|
|
4841
4841
|
}, z.core.$strict>;
|
|
4842
|
+
/**
|
|
4843
|
+
* Text style properties for rich captions. Same as RichTextStyle but without wordSpacing.
|
|
4844
|
+
*/
|
|
4845
|
+
export declare const richcaptionpropertiesRichCaptionStyleSchema: z.ZodObject<{
|
|
4846
|
+
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4847
|
+
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4848
|
+
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
4849
|
+
none: "none";
|
|
4850
|
+
uppercase: "uppercase";
|
|
4851
|
+
lowercase: "lowercase";
|
|
4852
|
+
capitalize: "capitalize";
|
|
4853
|
+
}>>;
|
|
4854
|
+
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
4855
|
+
none: "none";
|
|
4856
|
+
underline: "underline";
|
|
4857
|
+
"line-through": "line-through";
|
|
4858
|
+
}>>;
|
|
4859
|
+
gradient: z.ZodOptional<z.ZodObject<{
|
|
4860
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
4861
|
+
linear: "linear";
|
|
4862
|
+
radial: "radial";
|
|
4863
|
+
}>>;
|
|
4864
|
+
angle: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4865
|
+
stops: z.ZodArray<z.ZodObject<{
|
|
4866
|
+
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4867
|
+
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4868
|
+
}, z.core.$strip>>;
|
|
4869
|
+
}, z.core.$strict>>;
|
|
4870
|
+
}, z.core.$strict>;
|
|
4842
4871
|
/**
|
|
4843
4872
|
* Padding properties for individual sides of the text bounding box.
|
|
4844
4873
|
*/
|
|
@@ -4939,92 +4968,6 @@ export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
|
4939
4968
|
}>]>>;
|
|
4940
4969
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4941
4970
|
}, z.core.$strict>;
|
|
4942
|
-
/**
|
|
4943
|
-
* Font properties for rich text.
|
|
4944
|
-
*/
|
|
4945
|
-
export declare const richtextpropertiesRichTextFontSchema: z.ZodObject<{
|
|
4946
|
-
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4947
|
-
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4948
|
-
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
4949
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4950
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4951
|
-
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4952
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
4953
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4954
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4955
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4956
|
-
}, z.core.$strict>>;
|
|
4957
|
-
}, z.core.$strict>;
|
|
4958
|
-
export declare const richTextFontSchema: z.ZodObject<{
|
|
4959
|
-
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4960
|
-
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4961
|
-
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
4962
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4963
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4964
|
-
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4965
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
4966
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4967
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4968
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4969
|
-
}, z.core.$strict>>;
|
|
4970
|
-
}, z.core.$strict>;
|
|
4971
|
-
/**
|
|
4972
|
-
* Text style properties including spacing, line height, and transformations.
|
|
4973
|
-
*/
|
|
4974
|
-
export declare const richtextpropertiesRichTextStyleSchema: z.ZodObject<{
|
|
4975
|
-
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4976
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4977
|
-
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4978
|
-
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
4979
|
-
none: "none";
|
|
4980
|
-
uppercase: "uppercase";
|
|
4981
|
-
lowercase: "lowercase";
|
|
4982
|
-
capitalize: "capitalize";
|
|
4983
|
-
}>>;
|
|
4984
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
4985
|
-
none: "none";
|
|
4986
|
-
underline: "underline";
|
|
4987
|
-
"line-through": "line-through";
|
|
4988
|
-
}>>;
|
|
4989
|
-
gradient: z.ZodOptional<z.ZodObject<{
|
|
4990
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
4991
|
-
linear: "linear";
|
|
4992
|
-
radial: "radial";
|
|
4993
|
-
}>>;
|
|
4994
|
-
angle: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4995
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
4996
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4997
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
4998
|
-
}, z.core.$strip>>;
|
|
4999
|
-
}, z.core.$strict>>;
|
|
5000
|
-
}, z.core.$strict>;
|
|
5001
|
-
export declare const richTextStyleSchema: z.ZodObject<{
|
|
5002
|
-
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5003
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5004
|
-
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5005
|
-
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
5006
|
-
none: "none";
|
|
5007
|
-
uppercase: "uppercase";
|
|
5008
|
-
lowercase: "lowercase";
|
|
5009
|
-
capitalize: "capitalize";
|
|
5010
|
-
}>>;
|
|
5011
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
5012
|
-
none: "none";
|
|
5013
|
-
underline: "underline";
|
|
5014
|
-
"line-through": "line-through";
|
|
5015
|
-
}>>;
|
|
5016
|
-
gradient: z.ZodOptional<z.ZodObject<{
|
|
5017
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
5018
|
-
linear: "linear";
|
|
5019
|
-
radial: "radial";
|
|
5020
|
-
}>>;
|
|
5021
|
-
angle: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5022
|
-
stops: z.ZodArray<z.ZodObject<{
|
|
5023
|
-
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5024
|
-
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
5025
|
-
}, z.core.$strip>>;
|
|
5026
|
-
}, z.core.$strict>>;
|
|
5027
|
-
}, z.core.$strict>;
|
|
5028
4971
|
/**
|
|
5029
4972
|
* The RichCaptionAsset provides word-level caption animations with rich-text styling. It supports
|
|
5030
4973
|
* karaoke-style highlighting, word-by-word animations, and advanced typography. Use with SRT/VTT
|
|
@@ -5046,7 +4989,6 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5046
4989
|
}, z.core.$strict>>;
|
|
5047
4990
|
style: z.ZodOptional<z.ZodObject<{
|
|
5048
4991
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5049
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5050
4992
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5051
4993
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
5052
4994
|
none: "none";
|
|
@@ -5141,7 +5083,7 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5141
5083
|
}>]>>;
|
|
5142
5084
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5143
5085
|
}, z.core.$strict>>;
|
|
5144
|
-
|
|
5086
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
5145
5087
|
style: z.ZodEnum<{
|
|
5146
5088
|
none: "none";
|
|
5147
5089
|
karaoke: "karaoke";
|
|
@@ -5175,7 +5117,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5175
5117
|
}, z.core.$strict>>;
|
|
5176
5118
|
style: z.ZodOptional<z.ZodObject<{
|
|
5177
5119
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5178
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5179
5120
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5180
5121
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
5181
5122
|
none: "none";
|
|
@@ -5270,7 +5211,7 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5270
5211
|
}>]>>;
|
|
5271
5212
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5272
5213
|
}, z.core.$strict>>;
|
|
5273
|
-
|
|
5214
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
5274
5215
|
style: z.ZodEnum<{
|
|
5275
5216
|
none: "none";
|
|
5276
5217
|
karaoke: "karaoke";
|
|
@@ -5289,6 +5230,92 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5289
5230
|
}>>;
|
|
5290
5231
|
}, z.core.$strict>>;
|
|
5291
5232
|
}, z.core.$strict>;
|
|
5233
|
+
/**
|
|
5234
|
+
* Font properties for rich text.
|
|
5235
|
+
*/
|
|
5236
|
+
export declare const richtextpropertiesRichTextFontSchema: z.ZodObject<{
|
|
5237
|
+
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5238
|
+
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5239
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
5240
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5241
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5242
|
+
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5243
|
+
stroke: z.ZodOptional<z.ZodObject<{
|
|
5244
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5245
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5246
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5247
|
+
}, z.core.$strict>>;
|
|
5248
|
+
}, z.core.$strict>;
|
|
5249
|
+
export declare const richTextFontSchema: z.ZodObject<{
|
|
5250
|
+
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5251
|
+
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5252
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
5253
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5254
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5255
|
+
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5256
|
+
stroke: z.ZodOptional<z.ZodObject<{
|
|
5257
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5258
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5259
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5260
|
+
}, z.core.$strict>>;
|
|
5261
|
+
}, z.core.$strict>;
|
|
5262
|
+
/**
|
|
5263
|
+
* Text style properties including spacing, line height, and transformations.
|
|
5264
|
+
*/
|
|
5265
|
+
export declare const richtextpropertiesRichTextStyleSchema: z.ZodObject<{
|
|
5266
|
+
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5267
|
+
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5268
|
+
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5269
|
+
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
5270
|
+
none: "none";
|
|
5271
|
+
uppercase: "uppercase";
|
|
5272
|
+
lowercase: "lowercase";
|
|
5273
|
+
capitalize: "capitalize";
|
|
5274
|
+
}>>;
|
|
5275
|
+
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
5276
|
+
none: "none";
|
|
5277
|
+
underline: "underline";
|
|
5278
|
+
"line-through": "line-through";
|
|
5279
|
+
}>>;
|
|
5280
|
+
gradient: z.ZodOptional<z.ZodObject<{
|
|
5281
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
5282
|
+
linear: "linear";
|
|
5283
|
+
radial: "radial";
|
|
5284
|
+
}>>;
|
|
5285
|
+
angle: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5286
|
+
stops: z.ZodArray<z.ZodObject<{
|
|
5287
|
+
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5288
|
+
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
5289
|
+
}, z.core.$strip>>;
|
|
5290
|
+
}, z.core.$strict>>;
|
|
5291
|
+
}, z.core.$strict>;
|
|
5292
|
+
export declare const richTextStyleSchema: z.ZodObject<{
|
|
5293
|
+
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5294
|
+
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5295
|
+
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5296
|
+
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
5297
|
+
none: "none";
|
|
5298
|
+
uppercase: "uppercase";
|
|
5299
|
+
lowercase: "lowercase";
|
|
5300
|
+
capitalize: "capitalize";
|
|
5301
|
+
}>>;
|
|
5302
|
+
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
5303
|
+
none: "none";
|
|
5304
|
+
underline: "underline";
|
|
5305
|
+
"line-through": "line-through";
|
|
5306
|
+
}>>;
|
|
5307
|
+
gradient: z.ZodOptional<z.ZodObject<{
|
|
5308
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
5309
|
+
linear: "linear";
|
|
5310
|
+
radial: "radial";
|
|
5311
|
+
}>>;
|
|
5312
|
+
angle: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5313
|
+
stops: z.ZodArray<z.ZodObject<{
|
|
5314
|
+
offset: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5315
|
+
color: z.ZodUnion<readonly [z.ZodString, z.ZodString]>;
|
|
5316
|
+
}, z.core.$strip>>;
|
|
5317
|
+
}, z.core.$strict>>;
|
|
5318
|
+
}, z.core.$strict>;
|
|
5292
5319
|
/**
|
|
5293
5320
|
* The RichTextAsset provides advanced text rendering with support for custom fonts, gradients, shadows, strokes,
|
|
5294
5321
|
* animations, and styling options. It offers more flexibility and visual effects than the basic TextAsset.
|
|
@@ -11172,7 +11199,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11172
11199
|
}, z.core.$strict>>;
|
|
11173
11200
|
style: z.ZodOptional<z.ZodObject<{
|
|
11174
11201
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11175
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11176
11202
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11177
11203
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
11178
11204
|
none: "none";
|
|
@@ -11267,7 +11293,7 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11267
11293
|
}>]>>;
|
|
11268
11294
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11269
11295
|
}, z.core.$strict>>;
|
|
11270
|
-
|
|
11296
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
11271
11297
|
style: z.ZodEnum<{
|
|
11272
11298
|
none: "none";
|
|
11273
11299
|
karaoke: "karaoke";
|
|
@@ -12017,7 +12043,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12017
12043
|
}, z.core.$strict>>;
|
|
12018
12044
|
style: z.ZodOptional<z.ZodObject<{
|
|
12019
12045
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12020
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12021
12046
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12022
12047
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
12023
12048
|
none: "none";
|
|
@@ -12112,7 +12137,7 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12112
12137
|
}>]>>;
|
|
12113
12138
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12114
12139
|
}, z.core.$strict>>;
|
|
12115
|
-
|
|
12140
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
12116
12141
|
style: z.ZodEnum<{
|
|
12117
12142
|
none: "none";
|
|
12118
12143
|
karaoke: "karaoke";
|
|
@@ -12866,7 +12891,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12866
12891
|
}, z.core.$strict>>;
|
|
12867
12892
|
style: z.ZodOptional<z.ZodObject<{
|
|
12868
12893
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12869
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12870
12894
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12871
12895
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
12872
12896
|
none: "none";
|
|
@@ -12961,7 +12985,7 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12961
12985
|
}>]>>;
|
|
12962
12986
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12963
12987
|
}, z.core.$strict>>;
|
|
12964
|
-
|
|
12988
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
12965
12989
|
style: z.ZodEnum<{
|
|
12966
12990
|
none: "none";
|
|
12967
12991
|
karaoke: "karaoke";
|
|
@@ -14195,7 +14219,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14195
14219
|
}, z.core.$strict>>;
|
|
14196
14220
|
style: z.ZodOptional<z.ZodObject<{
|
|
14197
14221
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14198
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14199
14222
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14200
14223
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
14201
14224
|
none: "none";
|
|
@@ -14290,7 +14313,7 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14290
14313
|
}>]>>;
|
|
14291
14314
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14292
14315
|
}, z.core.$strict>>;
|
|
14293
|
-
|
|
14316
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
14294
14317
|
style: z.ZodEnum<{
|
|
14295
14318
|
none: "none";
|
|
14296
14319
|
karaoke: "karaoke";
|
|
@@ -15528,7 +15551,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15528
15551
|
}, z.core.$strict>>;
|
|
15529
15552
|
style: z.ZodOptional<z.ZodObject<{
|
|
15530
15553
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15531
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15532
15554
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15533
15555
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
15534
15556
|
none: "none";
|
|
@@ -15623,7 +15645,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15623
15645
|
}>]>>;
|
|
15624
15646
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15625
15647
|
}, z.core.$strict>>;
|
|
15626
|
-
|
|
15648
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
15627
15649
|
style: z.ZodEnum<{
|
|
15628
15650
|
none: "none";
|
|
15629
15651
|
karaoke: "karaoke";
|
|
@@ -16816,7 +16838,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16816
16838
|
};
|
|
16817
16839
|
style?: {
|
|
16818
16840
|
letterSpacing: string | number;
|
|
16819
|
-
wordSpacing: string | number;
|
|
16820
16841
|
lineHeight: string | number;
|
|
16821
16842
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
16822
16843
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -16883,7 +16904,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16883
16904
|
opacity: string | number;
|
|
16884
16905
|
};
|
|
16885
16906
|
};
|
|
16886
|
-
|
|
16907
|
+
animation?: {
|
|
16887
16908
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
16888
16909
|
direction?: "left" | "right" | "up" | "down";
|
|
16889
16910
|
};
|
|
@@ -17358,7 +17379,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17358
17379
|
};
|
|
17359
17380
|
style?: {
|
|
17360
17381
|
letterSpacing: string | number;
|
|
17361
|
-
wordSpacing: string | number;
|
|
17362
17382
|
lineHeight: string | number;
|
|
17363
17383
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
17364
17384
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -17425,7 +17445,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17425
17445
|
opacity: string | number;
|
|
17426
17446
|
};
|
|
17427
17447
|
};
|
|
17428
|
-
|
|
17448
|
+
animation?: {
|
|
17429
17449
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
17430
17450
|
direction?: "left" | "right" | "up" | "down";
|
|
17431
17451
|
};
|
|
@@ -17944,7 +17964,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17944
17964
|
}, z.core.$strict>>;
|
|
17945
17965
|
style: z.ZodOptional<z.ZodObject<{
|
|
17946
17966
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17947
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17948
17967
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17949
17968
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
17950
17969
|
none: "none";
|
|
@@ -18039,7 +18058,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
18039
18058
|
}>]>>;
|
|
18040
18059
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18041
18060
|
}, z.core.$strict>>;
|
|
18042
|
-
|
|
18061
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
18043
18062
|
style: z.ZodEnum<{
|
|
18044
18063
|
none: "none";
|
|
18045
18064
|
karaoke: "karaoke";
|
|
@@ -19232,7 +19251,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19232
19251
|
};
|
|
19233
19252
|
style?: {
|
|
19234
19253
|
letterSpacing: string | number;
|
|
19235
|
-
wordSpacing: string | number;
|
|
19236
19254
|
lineHeight: string | number;
|
|
19237
19255
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
19238
19256
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -19299,7 +19317,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19299
19317
|
opacity: string | number;
|
|
19300
19318
|
};
|
|
19301
19319
|
};
|
|
19302
|
-
|
|
19320
|
+
animation?: {
|
|
19303
19321
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
19304
19322
|
direction?: "left" | "right" | "up" | "down";
|
|
19305
19323
|
};
|
|
@@ -19774,7 +19792,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19774
19792
|
};
|
|
19775
19793
|
style?: {
|
|
19776
19794
|
letterSpacing: string | number;
|
|
19777
|
-
wordSpacing: string | number;
|
|
19778
19795
|
lineHeight: string | number;
|
|
19779
19796
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
19780
19797
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -19841,7 +19858,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19841
19858
|
opacity: string | number;
|
|
19842
19859
|
};
|
|
19843
19860
|
};
|
|
19844
|
-
|
|
19861
|
+
animation?: {
|
|
19845
19862
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
19846
19863
|
direction?: "left" | "right" | "up" | "down";
|
|
19847
19864
|
};
|
|
@@ -20377,7 +20394,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20377
20394
|
}, z.core.$strict>>;
|
|
20378
20395
|
style: z.ZodOptional<z.ZodObject<{
|
|
20379
20396
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20380
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20381
20397
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20382
20398
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
20383
20399
|
none: "none";
|
|
@@ -20472,7 +20488,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20472
20488
|
}>]>>;
|
|
20473
20489
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20474
20490
|
}, z.core.$strict>>;
|
|
20475
|
-
|
|
20491
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
20476
20492
|
style: z.ZodEnum<{
|
|
20477
20493
|
none: "none";
|
|
20478
20494
|
karaoke: "karaoke";
|
|
@@ -21665,7 +21681,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21665
21681
|
};
|
|
21666
21682
|
style?: {
|
|
21667
21683
|
letterSpacing: string | number;
|
|
21668
|
-
wordSpacing: string | number;
|
|
21669
21684
|
lineHeight: string | number;
|
|
21670
21685
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
21671
21686
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -21732,7 +21747,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21732
21747
|
opacity: string | number;
|
|
21733
21748
|
};
|
|
21734
21749
|
};
|
|
21735
|
-
|
|
21750
|
+
animation?: {
|
|
21736
21751
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
21737
21752
|
direction?: "left" | "right" | "up" | "down";
|
|
21738
21753
|
};
|
|
@@ -22207,7 +22222,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22207
22222
|
};
|
|
22208
22223
|
style?: {
|
|
22209
22224
|
letterSpacing: string | number;
|
|
22210
|
-
wordSpacing: string | number;
|
|
22211
22225
|
lineHeight: string | number;
|
|
22212
22226
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
22213
22227
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -22274,7 +22288,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22274
22288
|
opacity: string | number;
|
|
22275
22289
|
};
|
|
22276
22290
|
};
|
|
22277
|
-
|
|
22291
|
+
animation?: {
|
|
22278
22292
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
22279
22293
|
direction?: "left" | "right" | "up" | "down";
|
|
22280
22294
|
};
|
|
@@ -22809,7 +22823,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22809
22823
|
}, z.core.$strict>>;
|
|
22810
22824
|
style: z.ZodOptional<z.ZodObject<{
|
|
22811
22825
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22812
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22813
22826
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22814
22827
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
22815
22828
|
none: "none";
|
|
@@ -22904,7 +22917,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22904
22917
|
}>]>>;
|
|
22905
22918
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22906
22919
|
}, z.core.$strict>>;
|
|
22907
|
-
|
|
22920
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
22908
22921
|
style: z.ZodEnum<{
|
|
22909
22922
|
none: "none";
|
|
22910
22923
|
karaoke: "karaoke";
|
|
@@ -24097,7 +24110,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24097
24110
|
};
|
|
24098
24111
|
style?: {
|
|
24099
24112
|
letterSpacing: string | number;
|
|
24100
|
-
wordSpacing: string | number;
|
|
24101
24113
|
lineHeight: string | number;
|
|
24102
24114
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
24103
24115
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -24164,7 +24176,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24164
24176
|
opacity: string | number;
|
|
24165
24177
|
};
|
|
24166
24178
|
};
|
|
24167
|
-
|
|
24179
|
+
animation?: {
|
|
24168
24180
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
24169
24181
|
direction?: "left" | "right" | "up" | "down";
|
|
24170
24182
|
};
|
|
@@ -24639,7 +24651,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24639
24651
|
};
|
|
24640
24652
|
style?: {
|
|
24641
24653
|
letterSpacing: string | number;
|
|
24642
|
-
wordSpacing: string | number;
|
|
24643
24654
|
lineHeight: string | number;
|
|
24644
24655
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
24645
24656
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -24706,7 +24717,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24706
24717
|
opacity: string | number;
|
|
24707
24718
|
};
|
|
24708
24719
|
};
|
|
24709
|
-
|
|
24720
|
+
animation?: {
|
|
24710
24721
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
24711
24722
|
direction?: "left" | "right" | "up" | "down";
|
|
24712
24723
|
};
|
|
@@ -25245,7 +25256,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25245
25256
|
}, z.core.$strict>>;
|
|
25246
25257
|
style: z.ZodOptional<z.ZodObject<{
|
|
25247
25258
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25248
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25249
25259
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25250
25260
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
25251
25261
|
none: "none";
|
|
@@ -25340,7 +25350,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25340
25350
|
}>]>>;
|
|
25341
25351
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25342
25352
|
}, z.core.$strict>>;
|
|
25343
|
-
|
|
25353
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
25344
25354
|
style: z.ZodEnum<{
|
|
25345
25355
|
none: "none";
|
|
25346
25356
|
karaoke: "karaoke";
|
|
@@ -26533,7 +26543,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26533
26543
|
};
|
|
26534
26544
|
style?: {
|
|
26535
26545
|
letterSpacing: string | number;
|
|
26536
|
-
wordSpacing: string | number;
|
|
26537
26546
|
lineHeight: string | number;
|
|
26538
26547
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
26539
26548
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -26600,7 +26609,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26600
26609
|
opacity: string | number;
|
|
26601
26610
|
};
|
|
26602
26611
|
};
|
|
26603
|
-
|
|
26612
|
+
animation?: {
|
|
26604
26613
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
26605
26614
|
direction?: "left" | "right" | "up" | "down";
|
|
26606
26615
|
};
|
|
@@ -27075,7 +27084,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27075
27084
|
};
|
|
27076
27085
|
style?: {
|
|
27077
27086
|
letterSpacing: string | number;
|
|
27078
|
-
wordSpacing: string | number;
|
|
27079
27087
|
lineHeight: string | number;
|
|
27080
27088
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
27081
27089
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -27142,7 +27150,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27142
27150
|
opacity: string | number;
|
|
27143
27151
|
};
|
|
27144
27152
|
};
|
|
27145
|
-
|
|
27153
|
+
animation?: {
|
|
27146
27154
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
27147
27155
|
direction?: "left" | "right" | "up" | "down";
|
|
27148
27156
|
};
|
|
@@ -27843,7 +27851,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27843
27851
|
}, z.core.$strict>>;
|
|
27844
27852
|
style: z.ZodOptional<z.ZodObject<{
|
|
27845
27853
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27846
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27847
27854
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27848
27855
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
27849
27856
|
none: "none";
|
|
@@ -27938,7 +27945,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27938
27945
|
}>]>>;
|
|
27939
27946
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27940
27947
|
}, z.core.$strict>>;
|
|
27941
|
-
|
|
27948
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
27942
27949
|
style: z.ZodEnum<{
|
|
27943
27950
|
none: "none";
|
|
27944
27951
|
karaoke: "karaoke";
|
|
@@ -29131,7 +29138,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29131
29138
|
};
|
|
29132
29139
|
style?: {
|
|
29133
29140
|
letterSpacing: string | number;
|
|
29134
|
-
wordSpacing: string | number;
|
|
29135
29141
|
lineHeight: string | number;
|
|
29136
29142
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
29137
29143
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -29198,7 +29204,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29198
29204
|
opacity: string | number;
|
|
29199
29205
|
};
|
|
29200
29206
|
};
|
|
29201
|
-
|
|
29207
|
+
animation?: {
|
|
29202
29208
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
29203
29209
|
direction?: "left" | "right" | "up" | "down";
|
|
29204
29210
|
};
|
|
@@ -29673,7 +29679,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29673
29679
|
};
|
|
29674
29680
|
style?: {
|
|
29675
29681
|
letterSpacing: string | number;
|
|
29676
|
-
wordSpacing: string | number;
|
|
29677
29682
|
lineHeight: string | number;
|
|
29678
29683
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
29679
29684
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -29740,7 +29745,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29740
29745
|
opacity: string | number;
|
|
29741
29746
|
};
|
|
29742
29747
|
};
|
|
29743
|
-
|
|
29748
|
+
animation?: {
|
|
29744
29749
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
29745
29750
|
direction?: "left" | "right" | "up" | "down";
|
|
29746
29751
|
};
|
|
@@ -30463,7 +30468,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30463
30468
|
}, z.core.$strict>>;
|
|
30464
30469
|
style: z.ZodOptional<z.ZodObject<{
|
|
30465
30470
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30466
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30467
30471
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30468
30472
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
30469
30473
|
none: "none";
|
|
@@ -30558,7 +30562,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30558
30562
|
}>]>>;
|
|
30559
30563
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30560
30564
|
}, z.core.$strict>>;
|
|
30561
|
-
|
|
30565
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
30562
30566
|
style: z.ZodEnum<{
|
|
30563
30567
|
none: "none";
|
|
30564
30568
|
karaoke: "karaoke";
|
|
@@ -31751,7 +31755,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31751
31755
|
};
|
|
31752
31756
|
style?: {
|
|
31753
31757
|
letterSpacing: string | number;
|
|
31754
|
-
wordSpacing: string | number;
|
|
31755
31758
|
lineHeight: string | number;
|
|
31756
31759
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
31757
31760
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -31818,7 +31821,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31818
31821
|
opacity: string | number;
|
|
31819
31822
|
};
|
|
31820
31823
|
};
|
|
31821
|
-
|
|
31824
|
+
animation?: {
|
|
31822
31825
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
31823
31826
|
direction?: "left" | "right" | "up" | "down";
|
|
31824
31827
|
};
|
|
@@ -32293,7 +32296,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32293
32296
|
};
|
|
32294
32297
|
style?: {
|
|
32295
32298
|
letterSpacing: string | number;
|
|
32296
|
-
wordSpacing: string | number;
|
|
32297
32299
|
lineHeight: string | number;
|
|
32298
32300
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
32299
32301
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -32360,7 +32362,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32360
32362
|
opacity: string | number;
|
|
32361
32363
|
};
|
|
32362
32364
|
};
|
|
32363
|
-
|
|
32365
|
+
animation?: {
|
|
32364
32366
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
32365
32367
|
direction?: "left" | "right" | "up" | "down";
|
|
32366
32368
|
};
|
|
@@ -33083,7 +33085,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33083
33085
|
}, z.core.$strict>>;
|
|
33084
33086
|
style: z.ZodOptional<z.ZodObject<{
|
|
33085
33087
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33086
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33087
33088
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33088
33089
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
33089
33090
|
none: "none";
|
|
@@ -33178,7 +33179,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33178
33179
|
}>]>>;
|
|
33179
33180
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33180
33181
|
}, z.core.$strict>>;
|
|
33181
|
-
|
|
33182
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
33182
33183
|
style: z.ZodEnum<{
|
|
33183
33184
|
none: "none";
|
|
33184
33185
|
karaoke: "karaoke";
|
|
@@ -34371,7 +34372,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34371
34372
|
};
|
|
34372
34373
|
style?: {
|
|
34373
34374
|
letterSpacing: string | number;
|
|
34374
|
-
wordSpacing: string | number;
|
|
34375
34375
|
lineHeight: string | number;
|
|
34376
34376
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
34377
34377
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -34438,7 +34438,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34438
34438
|
opacity: string | number;
|
|
34439
34439
|
};
|
|
34440
34440
|
};
|
|
34441
|
-
|
|
34441
|
+
animation?: {
|
|
34442
34442
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
34443
34443
|
direction?: "left" | "right" | "up" | "down";
|
|
34444
34444
|
};
|
|
@@ -34913,7 +34913,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34913
34913
|
};
|
|
34914
34914
|
style?: {
|
|
34915
34915
|
letterSpacing: string | number;
|
|
34916
|
-
wordSpacing: string | number;
|
|
34917
34916
|
lineHeight: string | number;
|
|
34918
34917
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
34919
34918
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -34980,7 +34979,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34980
34979
|
opacity: string | number;
|
|
34981
34980
|
};
|
|
34982
34981
|
};
|
|
34983
|
-
|
|
34982
|
+
animation?: {
|
|
34984
34983
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
34985
34984
|
direction?: "left" | "right" | "up" | "down";
|
|
34986
34985
|
};
|
|
@@ -35709,7 +35708,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35709
35708
|
}, z.core.$strict>>;
|
|
35710
35709
|
style: z.ZodOptional<z.ZodObject<{
|
|
35711
35710
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35712
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35713
35711
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35714
35712
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
35715
35713
|
none: "none";
|
|
@@ -35804,7 +35802,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35804
35802
|
}>]>>;
|
|
35805
35803
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35806
35804
|
}, z.core.$strict>>;
|
|
35807
|
-
|
|
35805
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
35808
35806
|
style: z.ZodEnum<{
|
|
35809
35807
|
none: "none";
|
|
35810
35808
|
karaoke: "karaoke";
|
|
@@ -36997,7 +36995,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
36997
36995
|
};
|
|
36998
36996
|
style?: {
|
|
36999
36997
|
letterSpacing: string | number;
|
|
37000
|
-
wordSpacing: string | number;
|
|
37001
36998
|
lineHeight: string | number;
|
|
37002
36999
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
37003
37000
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -37064,7 +37061,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37064
37061
|
opacity: string | number;
|
|
37065
37062
|
};
|
|
37066
37063
|
};
|
|
37067
|
-
|
|
37064
|
+
animation?: {
|
|
37068
37065
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
37069
37066
|
direction?: "left" | "right" | "up" | "down";
|
|
37070
37067
|
};
|
|
@@ -37539,7 +37536,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37539
37536
|
};
|
|
37540
37537
|
style?: {
|
|
37541
37538
|
letterSpacing: string | number;
|
|
37542
|
-
wordSpacing: string | number;
|
|
37543
37539
|
lineHeight: string | number;
|
|
37544
37540
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
37545
37541
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -37606,7 +37602,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37606
37602
|
opacity: string | number;
|
|
37607
37603
|
};
|
|
37608
37604
|
};
|
|
37609
|
-
|
|
37605
|
+
animation?: {
|
|
37610
37606
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
37611
37607
|
direction?: "left" | "right" | "up" | "down";
|
|
37612
37608
|
};
|
|
@@ -38333,7 +38329,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38333
38329
|
}, z.core.$strict>>;
|
|
38334
38330
|
style: z.ZodOptional<z.ZodObject<{
|
|
38335
38331
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38336
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38337
38332
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38338
38333
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
38339
38334
|
none: "none";
|
|
@@ -38428,7 +38423,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38428
38423
|
}>]>>;
|
|
38429
38424
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38430
38425
|
}, z.core.$strict>>;
|
|
38431
|
-
|
|
38426
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
38432
38427
|
style: z.ZodEnum<{
|
|
38433
38428
|
none: "none";
|
|
38434
38429
|
karaoke: "karaoke";
|
|
@@ -39621,7 +39616,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39621
39616
|
};
|
|
39622
39617
|
style?: {
|
|
39623
39618
|
letterSpacing: string | number;
|
|
39624
|
-
wordSpacing: string | number;
|
|
39625
39619
|
lineHeight: string | number;
|
|
39626
39620
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
39627
39621
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -39688,7 +39682,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39688
39682
|
opacity: string | number;
|
|
39689
39683
|
};
|
|
39690
39684
|
};
|
|
39691
|
-
|
|
39685
|
+
animation?: {
|
|
39692
39686
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
39693
39687
|
direction?: "left" | "right" | "up" | "down";
|
|
39694
39688
|
};
|
|
@@ -40163,7 +40157,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40163
40157
|
};
|
|
40164
40158
|
style?: {
|
|
40165
40159
|
letterSpacing: string | number;
|
|
40166
|
-
wordSpacing: string | number;
|
|
40167
40160
|
lineHeight: string | number;
|
|
40168
40161
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
40169
40162
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -40230,7 +40223,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40230
40223
|
opacity: string | number;
|
|
40231
40224
|
};
|
|
40232
40225
|
};
|
|
40233
|
-
|
|
40226
|
+
animation?: {
|
|
40234
40227
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
40235
40228
|
direction?: "left" | "right" | "up" | "down";
|
|
40236
40229
|
};
|
|
@@ -40942,7 +40935,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40942
40935
|
}, z.core.$strict>>;
|
|
40943
40936
|
style: z.ZodOptional<z.ZodObject<{
|
|
40944
40937
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40945
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40946
40938
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40947
40939
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
40948
40940
|
none: "none";
|
|
@@ -41037,7 +41029,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41037
41029
|
}>]>>;
|
|
41038
41030
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41039
41031
|
}, z.core.$strict>>;
|
|
41040
|
-
|
|
41032
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
41041
41033
|
style: z.ZodEnum<{
|
|
41042
41034
|
none: "none";
|
|
41043
41035
|
karaoke: "karaoke";
|
|
@@ -42230,7 +42222,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42230
42222
|
};
|
|
42231
42223
|
style?: {
|
|
42232
42224
|
letterSpacing: string | number;
|
|
42233
|
-
wordSpacing: string | number;
|
|
42234
42225
|
lineHeight: string | number;
|
|
42235
42226
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
42236
42227
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -42297,7 +42288,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42297
42288
|
opacity: string | number;
|
|
42298
42289
|
};
|
|
42299
42290
|
};
|
|
42300
|
-
|
|
42291
|
+
animation?: {
|
|
42301
42292
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
42302
42293
|
direction?: "left" | "right" | "up" | "down";
|
|
42303
42294
|
};
|
|
@@ -42772,7 +42763,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42772
42763
|
};
|
|
42773
42764
|
style?: {
|
|
42774
42765
|
letterSpacing: string | number;
|
|
42775
|
-
wordSpacing: string | number;
|
|
42776
42766
|
lineHeight: string | number;
|
|
42777
42767
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
42778
42768
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -42839,7 +42829,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42839
42829
|
opacity: string | number;
|
|
42840
42830
|
};
|
|
42841
42831
|
};
|
|
42842
|
-
|
|
42832
|
+
animation?: {
|
|
42843
42833
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
42844
42834
|
direction?: "left" | "right" | "up" | "down";
|
|
42845
42835
|
};
|
|
@@ -43545,7 +43535,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43545
43535
|
}, z.core.$strict>>;
|
|
43546
43536
|
style: z.ZodOptional<z.ZodObject<{
|
|
43547
43537
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43548
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43549
43538
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43550
43539
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
43551
43540
|
none: "none";
|
|
@@ -43640,7 +43629,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43640
43629
|
}>]>>;
|
|
43641
43630
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43642
43631
|
}, z.core.$strict>>;
|
|
43643
|
-
|
|
43632
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
43644
43633
|
style: z.ZodEnum<{
|
|
43645
43634
|
none: "none";
|
|
43646
43635
|
karaoke: "karaoke";
|
|
@@ -44833,7 +44822,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44833
44822
|
};
|
|
44834
44823
|
style?: {
|
|
44835
44824
|
letterSpacing: string | number;
|
|
44836
|
-
wordSpacing: string | number;
|
|
44837
44825
|
lineHeight: string | number;
|
|
44838
44826
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
44839
44827
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -44900,7 +44888,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44900
44888
|
opacity: string | number;
|
|
44901
44889
|
};
|
|
44902
44890
|
};
|
|
44903
|
-
|
|
44891
|
+
animation?: {
|
|
44904
44892
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
44905
44893
|
direction?: "left" | "right" | "up" | "down";
|
|
44906
44894
|
};
|
|
@@ -45375,7 +45363,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45375
45363
|
};
|
|
45376
45364
|
style?: {
|
|
45377
45365
|
letterSpacing: string | number;
|
|
45378
|
-
wordSpacing: string | number;
|
|
45379
45366
|
lineHeight: string | number;
|
|
45380
45367
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
45381
45368
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -45442,7 +45429,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45442
45429
|
opacity: string | number;
|
|
45443
45430
|
};
|
|
45444
45431
|
};
|
|
45445
|
-
|
|
45432
|
+
animation?: {
|
|
45446
45433
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
45447
45434
|
direction?: "left" | "right" | "up" | "down";
|
|
45448
45435
|
};
|
|
@@ -46154,7 +46141,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46154
46141
|
}, z.core.$strict>>;
|
|
46155
46142
|
style: z.ZodOptional<z.ZodObject<{
|
|
46156
46143
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46157
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46158
46144
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46159
46145
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
46160
46146
|
none: "none";
|
|
@@ -46249,7 +46235,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46249
46235
|
}>]>>;
|
|
46250
46236
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46251
46237
|
}, z.core.$strict>>;
|
|
46252
|
-
|
|
46238
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
46253
46239
|
style: z.ZodEnum<{
|
|
46254
46240
|
none: "none";
|
|
46255
46241
|
karaoke: "karaoke";
|
|
@@ -47442,7 +47428,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47442
47428
|
};
|
|
47443
47429
|
style?: {
|
|
47444
47430
|
letterSpacing: string | number;
|
|
47445
|
-
wordSpacing: string | number;
|
|
47446
47431
|
lineHeight: string | number;
|
|
47447
47432
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
47448
47433
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -47509,7 +47494,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47509
47494
|
opacity: string | number;
|
|
47510
47495
|
};
|
|
47511
47496
|
};
|
|
47512
|
-
|
|
47497
|
+
animation?: {
|
|
47513
47498
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
47514
47499
|
direction?: "left" | "right" | "up" | "down";
|
|
47515
47500
|
};
|
|
@@ -47984,7 +47969,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47984
47969
|
};
|
|
47985
47970
|
style?: {
|
|
47986
47971
|
letterSpacing: string | number;
|
|
47987
|
-
wordSpacing: string | number;
|
|
47988
47972
|
lineHeight: string | number;
|
|
47989
47973
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
47990
47974
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -48051,7 +48035,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48051
48035
|
opacity: string | number;
|
|
48052
48036
|
};
|
|
48053
48037
|
};
|
|
48054
|
-
|
|
48038
|
+
animation?: {
|
|
48055
48039
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
48056
48040
|
direction?: "left" | "right" | "up" | "down";
|
|
48057
48041
|
};
|
|
@@ -48761,7 +48745,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48761
48745
|
}, z.core.$strict>>;
|
|
48762
48746
|
style: z.ZodOptional<z.ZodObject<{
|
|
48763
48747
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48764
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48765
48748
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48766
48749
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
48767
48750
|
none: "none";
|
|
@@ -48856,7 +48839,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48856
48839
|
}>]>>;
|
|
48857
48840
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48858
48841
|
}, z.core.$strict>>;
|
|
48859
|
-
|
|
48842
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
48860
48843
|
style: z.ZodEnum<{
|
|
48861
48844
|
none: "none";
|
|
48862
48845
|
karaoke: "karaoke";
|
|
@@ -50049,7 +50032,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50049
50032
|
};
|
|
50050
50033
|
style?: {
|
|
50051
50034
|
letterSpacing: string | number;
|
|
50052
|
-
wordSpacing: string | number;
|
|
50053
50035
|
lineHeight: string | number;
|
|
50054
50036
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
50055
50037
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -50116,7 +50098,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50116
50098
|
opacity: string | number;
|
|
50117
50099
|
};
|
|
50118
50100
|
};
|
|
50119
|
-
|
|
50101
|
+
animation?: {
|
|
50120
50102
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
50121
50103
|
direction?: "left" | "right" | "up" | "down";
|
|
50122
50104
|
};
|
|
@@ -50591,7 +50573,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50591
50573
|
};
|
|
50592
50574
|
style?: {
|
|
50593
50575
|
letterSpacing: string | number;
|
|
50594
|
-
wordSpacing: string | number;
|
|
50595
50576
|
lineHeight: string | number;
|
|
50596
50577
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
50597
50578
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -50658,7 +50639,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50658
50639
|
opacity: string | number;
|
|
50659
50640
|
};
|
|
50660
50641
|
};
|
|
50661
|
-
|
|
50642
|
+
animation?: {
|
|
50662
50643
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
50663
50644
|
direction?: "left" | "right" | "up" | "down";
|
|
50664
50645
|
};
|
|
@@ -51366,7 +51347,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51366
51347
|
}, z.core.$strict>>;
|
|
51367
51348
|
style: z.ZodOptional<z.ZodObject<{
|
|
51368
51349
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51369
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51370
51350
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51371
51351
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
51372
51352
|
none: "none";
|
|
@@ -51461,7 +51441,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51461
51441
|
}>]>>;
|
|
51462
51442
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51463
51443
|
}, z.core.$strict>>;
|
|
51464
|
-
|
|
51444
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
51465
51445
|
style: z.ZodEnum<{
|
|
51466
51446
|
none: "none";
|
|
51467
51447
|
karaoke: "karaoke";
|
|
@@ -52654,7 +52634,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52654
52634
|
};
|
|
52655
52635
|
style?: {
|
|
52656
52636
|
letterSpacing: string | number;
|
|
52657
|
-
wordSpacing: string | number;
|
|
52658
52637
|
lineHeight: string | number;
|
|
52659
52638
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
52660
52639
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -52721,7 +52700,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52721
52700
|
opacity: string | number;
|
|
52722
52701
|
};
|
|
52723
52702
|
};
|
|
52724
|
-
|
|
52703
|
+
animation?: {
|
|
52725
52704
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
52726
52705
|
direction?: "left" | "right" | "up" | "down";
|
|
52727
52706
|
};
|
|
@@ -53196,7 +53175,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53196
53175
|
};
|
|
53197
53176
|
style?: {
|
|
53198
53177
|
letterSpacing: string | number;
|
|
53199
|
-
wordSpacing: string | number;
|
|
53200
53178
|
lineHeight: string | number;
|
|
53201
53179
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
53202
53180
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -53263,7 +53241,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53263
53241
|
opacity: string | number;
|
|
53264
53242
|
};
|
|
53265
53243
|
};
|
|
53266
|
-
|
|
53244
|
+
animation?: {
|
|
53267
53245
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
53268
53246
|
direction?: "left" | "right" | "up" | "down";
|
|
53269
53247
|
};
|
|
@@ -53967,7 +53945,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
53967
53945
|
}, z.core.$strict>>;
|
|
53968
53946
|
style: z.ZodOptional<z.ZodObject<{
|
|
53969
53947
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53970
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53971
53948
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53972
53949
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
53973
53950
|
none: "none";
|
|
@@ -54062,7 +54039,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54062
54039
|
}>]>>;
|
|
54063
54040
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54064
54041
|
}, z.core.$strict>>;
|
|
54065
|
-
|
|
54042
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
54066
54043
|
style: z.ZodEnum<{
|
|
54067
54044
|
none: "none";
|
|
54068
54045
|
karaoke: "karaoke";
|
|
@@ -55255,7 +55232,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55255
55232
|
};
|
|
55256
55233
|
style?: {
|
|
55257
55234
|
letterSpacing: string | number;
|
|
55258
|
-
wordSpacing: string | number;
|
|
55259
55235
|
lineHeight: string | number;
|
|
55260
55236
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
55261
55237
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -55322,7 +55298,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55322
55298
|
opacity: string | number;
|
|
55323
55299
|
};
|
|
55324
55300
|
};
|
|
55325
|
-
|
|
55301
|
+
animation?: {
|
|
55326
55302
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
55327
55303
|
direction?: "left" | "right" | "up" | "down";
|
|
55328
55304
|
};
|
|
@@ -55797,7 +55773,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55797
55773
|
};
|
|
55798
55774
|
style?: {
|
|
55799
55775
|
letterSpacing: string | number;
|
|
55800
|
-
wordSpacing: string | number;
|
|
55801
55776
|
lineHeight: string | number;
|
|
55802
55777
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
55803
55778
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -55864,7 +55839,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55864
55839
|
opacity: string | number;
|
|
55865
55840
|
};
|
|
55866
55841
|
};
|
|
55867
|
-
|
|
55842
|
+
animation?: {
|
|
55868
55843
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
55869
55844
|
direction?: "left" | "right" | "up" | "down";
|
|
55870
55845
|
};
|
|
@@ -56567,7 +56542,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56567
56542
|
}, z.core.$strict>>;
|
|
56568
56543
|
style: z.ZodOptional<z.ZodObject<{
|
|
56569
56544
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56570
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56571
56545
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56572
56546
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
56573
56547
|
none: "none";
|
|
@@ -56662,7 +56636,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56662
56636
|
}>]>>;
|
|
56663
56637
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56664
56638
|
}, z.core.$strict>>;
|
|
56665
|
-
|
|
56639
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
56666
56640
|
style: z.ZodEnum<{
|
|
56667
56641
|
none: "none";
|
|
56668
56642
|
karaoke: "karaoke";
|
|
@@ -57855,7 +57829,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57855
57829
|
};
|
|
57856
57830
|
style?: {
|
|
57857
57831
|
letterSpacing: string | number;
|
|
57858
|
-
wordSpacing: string | number;
|
|
57859
57832
|
lineHeight: string | number;
|
|
57860
57833
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
57861
57834
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -57922,7 +57895,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57922
57895
|
opacity: string | number;
|
|
57923
57896
|
};
|
|
57924
57897
|
};
|
|
57925
|
-
|
|
57898
|
+
animation?: {
|
|
57926
57899
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
57927
57900
|
direction?: "left" | "right" | "up" | "down";
|
|
57928
57901
|
};
|
|
@@ -58397,7 +58370,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58397
58370
|
};
|
|
58398
58371
|
style?: {
|
|
58399
58372
|
letterSpacing: string | number;
|
|
58400
|
-
wordSpacing: string | number;
|
|
58401
58373
|
lineHeight: string | number;
|
|
58402
58374
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
58403
58375
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -58464,7 +58436,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58464
58436
|
opacity: string | number;
|
|
58465
58437
|
};
|
|
58466
58438
|
};
|
|
58467
|
-
|
|
58439
|
+
animation?: {
|
|
58468
58440
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
58469
58441
|
direction?: "left" | "right" | "up" | "down";
|
|
58470
58442
|
};
|
|
@@ -59214,7 +59186,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59214
59186
|
}, z.core.$strict>>;
|
|
59215
59187
|
style: z.ZodOptional<z.ZodObject<{
|
|
59216
59188
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59217
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59218
59189
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59219
59190
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
59220
59191
|
none: "none";
|
|
@@ -59309,7 +59280,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59309
59280
|
}>]>>;
|
|
59310
59281
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59311
59282
|
}, z.core.$strict>>;
|
|
59312
|
-
|
|
59283
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
59313
59284
|
style: z.ZodEnum<{
|
|
59314
59285
|
none: "none";
|
|
59315
59286
|
karaoke: "karaoke";
|
|
@@ -60502,7 +60473,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60502
60473
|
};
|
|
60503
60474
|
style?: {
|
|
60504
60475
|
letterSpacing: string | number;
|
|
60505
|
-
wordSpacing: string | number;
|
|
60506
60476
|
lineHeight: string | number;
|
|
60507
60477
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
60508
60478
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -60569,7 +60539,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60569
60539
|
opacity: string | number;
|
|
60570
60540
|
};
|
|
60571
60541
|
};
|
|
60572
|
-
|
|
60542
|
+
animation?: {
|
|
60573
60543
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
60574
60544
|
direction?: "left" | "right" | "up" | "down";
|
|
60575
60545
|
};
|
|
@@ -61044,7 +61014,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61044
61014
|
};
|
|
61045
61015
|
style?: {
|
|
61046
61016
|
letterSpacing: string | number;
|
|
61047
|
-
wordSpacing: string | number;
|
|
61048
61017
|
lineHeight: string | number;
|
|
61049
61018
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
61050
61019
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -61111,7 +61080,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61111
61080
|
opacity: string | number;
|
|
61112
61081
|
};
|
|
61113
61082
|
};
|
|
61114
|
-
|
|
61083
|
+
animation?: {
|
|
61115
61084
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
61116
61085
|
direction?: "left" | "right" | "up" | "down";
|
|
61117
61086
|
};
|
|
@@ -61840,7 +61809,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61840
61809
|
}, z.core.$strict>>;
|
|
61841
61810
|
style: z.ZodOptional<z.ZodObject<{
|
|
61842
61811
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61843
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61844
61812
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61845
61813
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
61846
61814
|
none: "none";
|
|
@@ -61935,7 +61903,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61935
61903
|
}>]>>;
|
|
61936
61904
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61937
61905
|
}, z.core.$strict>>;
|
|
61938
|
-
|
|
61906
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
61939
61907
|
style: z.ZodEnum<{
|
|
61940
61908
|
none: "none";
|
|
61941
61909
|
karaoke: "karaoke";
|
|
@@ -63128,7 +63096,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63128
63096
|
};
|
|
63129
63097
|
style?: {
|
|
63130
63098
|
letterSpacing: string | number;
|
|
63131
|
-
wordSpacing: string | number;
|
|
63132
63099
|
lineHeight: string | number;
|
|
63133
63100
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
63134
63101
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -63195,7 +63162,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63195
63162
|
opacity: string | number;
|
|
63196
63163
|
};
|
|
63197
63164
|
};
|
|
63198
|
-
|
|
63165
|
+
animation?: {
|
|
63199
63166
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
63200
63167
|
direction?: "left" | "right" | "up" | "down";
|
|
63201
63168
|
};
|
|
@@ -63670,7 +63637,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63670
63637
|
};
|
|
63671
63638
|
style?: {
|
|
63672
63639
|
letterSpacing: string | number;
|
|
63673
|
-
wordSpacing: string | number;
|
|
63674
63640
|
lineHeight: string | number;
|
|
63675
63641
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
63676
63642
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -63737,7 +63703,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63737
63703
|
opacity: string | number;
|
|
63738
63704
|
};
|
|
63739
63705
|
};
|
|
63740
|
-
|
|
63706
|
+
animation?: {
|
|
63741
63707
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
63742
63708
|
direction?: "left" | "right" | "up" | "down";
|
|
63743
63709
|
};
|
|
@@ -64481,7 +64447,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64481
64447
|
}, z.core.$strict>>;
|
|
64482
64448
|
style: z.ZodOptional<z.ZodObject<{
|
|
64483
64449
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64484
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64485
64450
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64486
64451
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
64487
64452
|
none: "none";
|
|
@@ -64576,7 +64541,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64576
64541
|
}>]>>;
|
|
64577
64542
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64578
64543
|
}, z.core.$strict>>;
|
|
64579
|
-
|
|
64544
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
64580
64545
|
style: z.ZodEnum<{
|
|
64581
64546
|
none: "none";
|
|
64582
64547
|
karaoke: "karaoke";
|
|
@@ -65769,7 +65734,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65769
65734
|
};
|
|
65770
65735
|
style?: {
|
|
65771
65736
|
letterSpacing: string | number;
|
|
65772
|
-
wordSpacing: string | number;
|
|
65773
65737
|
lineHeight: string | number;
|
|
65774
65738
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
65775
65739
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -65836,7 +65800,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65836
65800
|
opacity: string | number;
|
|
65837
65801
|
};
|
|
65838
65802
|
};
|
|
65839
|
-
|
|
65803
|
+
animation?: {
|
|
65840
65804
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
65841
65805
|
direction?: "left" | "right" | "up" | "down";
|
|
65842
65806
|
};
|
|
@@ -66311,7 +66275,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66311
66275
|
};
|
|
66312
66276
|
style?: {
|
|
66313
66277
|
letterSpacing: string | number;
|
|
66314
|
-
wordSpacing: string | number;
|
|
66315
66278
|
lineHeight: string | number;
|
|
66316
66279
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
66317
66280
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -66378,7 +66341,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66378
66341
|
opacity: string | number;
|
|
66379
66342
|
};
|
|
66380
66343
|
};
|
|
66381
|
-
|
|
66344
|
+
animation?: {
|
|
66382
66345
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
66383
66346
|
direction?: "left" | "right" | "up" | "down";
|
|
66384
66347
|
};
|
|
@@ -67084,7 +67047,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67084
67047
|
}, z.core.$strict>>;
|
|
67085
67048
|
style: z.ZodOptional<z.ZodObject<{
|
|
67086
67049
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67087
|
-
wordSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67088
67050
|
lineHeight: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67089
67051
|
textTransform: z.ZodOptional<z.ZodEnum<{
|
|
67090
67052
|
none: "none";
|
|
@@ -67179,7 +67141,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67179
67141
|
}>]>>;
|
|
67180
67142
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67181
67143
|
}, z.core.$strict>>;
|
|
67182
|
-
|
|
67144
|
+
animation: z.ZodOptional<z.ZodObject<{
|
|
67183
67145
|
style: z.ZodEnum<{
|
|
67184
67146
|
none: "none";
|
|
67185
67147
|
karaoke: "karaoke";
|
|
@@ -68372,7 +68334,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68372
68334
|
};
|
|
68373
68335
|
style?: {
|
|
68374
68336
|
letterSpacing: string | number;
|
|
68375
|
-
wordSpacing: string | number;
|
|
68376
68337
|
lineHeight: string | number;
|
|
68377
68338
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
68378
68339
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -68439,7 +68400,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68439
68400
|
opacity: string | number;
|
|
68440
68401
|
};
|
|
68441
68402
|
};
|
|
68442
|
-
|
|
68403
|
+
animation?: {
|
|
68443
68404
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
68444
68405
|
direction?: "left" | "right" | "up" | "down";
|
|
68445
68406
|
};
|
|
@@ -68914,7 +68875,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68914
68875
|
};
|
|
68915
68876
|
style?: {
|
|
68916
68877
|
letterSpacing: string | number;
|
|
68917
|
-
wordSpacing: string | number;
|
|
68918
68878
|
lineHeight: string | number;
|
|
68919
68879
|
textTransform?: "none" | "uppercase" | "lowercase" | "capitalize";
|
|
68920
68880
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -68981,7 +68941,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68981
68941
|
opacity: string | number;
|
|
68982
68942
|
};
|
|
68983
68943
|
};
|
|
68984
|
-
|
|
68944
|
+
animation?: {
|
|
68985
68945
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
68986
68946
|
direction?: "left" | "right" | "up" | "down";
|
|
68987
68947
|
};
|