@shotstack/schemas 1.9.0 → 1.9.2
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 +26 -25
- package/dist/json-schema/asset.json +13 -30
- package/dist/json-schema/clip.json +13 -30
- package/dist/json-schema/edit.json +13 -30
- package/dist/json-schema/rich-caption-active.json +14 -2
- package/dist/json-schema/rich-caption-asset.json +13 -30
- package/dist/json-schema/rich-caption-word-animation.json +0 -14
- package/dist/json-schema/schemas.json +15 -34
- package/dist/json-schema/timeline.json +13 -30
- package/dist/json-schema/track.json +13 -30
- package/dist/schema.d.ts +6 -19
- package/dist/zod/zod.gen.cjs +9 -15
- package/dist/zod/zod.gen.d.ts +316 -453
- package/dist/zod/zod.gen.js +9 -15
- package/dist/zod/zod.gen.ts +9 -9
- package/package.json +1 -1
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -4680,11 +4680,6 @@ export declare const richcaptionpropertiesRichCaptionFontSchema: z.ZodObject<{
|
|
|
4680
4680
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4681
4681
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4682
4682
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4683
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
4684
|
-
none: "none";
|
|
4685
|
-
underline: "underline";
|
|
4686
|
-
"line-through": "line-through";
|
|
4687
|
-
}>>;
|
|
4688
4683
|
}, z.core.$strict>;
|
|
4689
4684
|
/**
|
|
4690
4685
|
* Word-level animation properties for caption effects.
|
|
@@ -4700,7 +4695,6 @@ export declare const richcaptionpropertiesRichCaptionWordAnimationSchema: z.ZodO
|
|
|
4700
4695
|
bounce: "bounce";
|
|
4701
4696
|
typewriter: "typewriter";
|
|
4702
4697
|
}>;
|
|
4703
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4704
4698
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
4705
4699
|
left: "left";
|
|
4706
4700
|
right: "right";
|
|
@@ -4719,7 +4713,6 @@ export declare const richCaptionWordAnimationSchema: z.ZodObject<{
|
|
|
4719
4713
|
bounce: "bounce";
|
|
4720
4714
|
typewriter: "typewriter";
|
|
4721
4715
|
}>;
|
|
4722
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4723
4716
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
4724
4717
|
left: "left";
|
|
4725
4718
|
right: "right";
|
|
@@ -4899,18 +4892,22 @@ export declare const richcaptionpropertiesRichCaptionActiveSchema: z.ZodObject<{
|
|
|
4899
4892
|
"line-through": "line-through";
|
|
4900
4893
|
}>>;
|
|
4901
4894
|
}, z.core.$strict>>;
|
|
4902
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
4895
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4903
4896
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4904
4897
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4905
4898
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4906
|
-
}, z.core.$strict
|
|
4907
|
-
|
|
4899
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
4900
|
+
none: "none";
|
|
4901
|
+
}>]>>;
|
|
4902
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4908
4903
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4909
4904
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4910
4905
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4911
4906
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4912
4907
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4913
|
-
}, z.core.$strict
|
|
4908
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
4909
|
+
none: "none";
|
|
4910
|
+
}>]>>;
|
|
4914
4911
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4915
4912
|
}, z.core.$strict>;
|
|
4916
4913
|
export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
@@ -4924,18 +4921,22 @@ export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
|
4924
4921
|
"line-through": "line-through";
|
|
4925
4922
|
}>>;
|
|
4926
4923
|
}, z.core.$strict>>;
|
|
4927
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
4924
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4928
4925
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4929
4926
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4930
4927
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4931
|
-
}, z.core.$strict
|
|
4932
|
-
|
|
4928
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
4929
|
+
none: "none";
|
|
4930
|
+
}>]>>;
|
|
4931
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4933
4932
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4934
4933
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4935
4934
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4936
4935
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4937
4936
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4938
|
-
}, z.core.$strict
|
|
4937
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
4938
|
+
none: "none";
|
|
4939
|
+
}>]>>;
|
|
4939
4940
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4940
4941
|
}, z.core.$strict>;
|
|
4941
4942
|
/**
|
|
@@ -5042,11 +5043,6 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5042
5043
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5043
5044
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5044
5045
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5045
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
5046
|
-
none: "none";
|
|
5047
|
-
underline: "underline";
|
|
5048
|
-
"line-through": "line-through";
|
|
5049
|
-
}>>;
|
|
5050
5046
|
}, z.core.$strict>>;
|
|
5051
5047
|
style: z.ZodOptional<z.ZodObject<{
|
|
5052
5048
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5127,18 +5123,22 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5127
5123
|
"line-through": "line-through";
|
|
5128
5124
|
}>>;
|
|
5129
5125
|
}, z.core.$strict>>;
|
|
5130
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
5126
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5131
5127
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5132
5128
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5133
5129
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5134
|
-
}, z.core.$strict
|
|
5135
|
-
|
|
5130
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
5131
|
+
none: "none";
|
|
5132
|
+
}>]>>;
|
|
5133
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5136
5134
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5137
5135
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5138
5136
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5139
5137
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5140
5138
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5141
|
-
}, z.core.$strict
|
|
5139
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
5140
|
+
none: "none";
|
|
5141
|
+
}>]>>;
|
|
5142
5142
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5143
5143
|
}, z.core.$strict>>;
|
|
5144
5144
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -5152,7 +5152,6 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5152
5152
|
bounce: "bounce";
|
|
5153
5153
|
typewriter: "typewriter";
|
|
5154
5154
|
}>;
|
|
5155
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5156
5155
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
5157
5156
|
left: "left";
|
|
5158
5157
|
right: "right";
|
|
@@ -5173,11 +5172,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5173
5172
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5174
5173
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5175
5174
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5176
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
5177
|
-
none: "none";
|
|
5178
|
-
underline: "underline";
|
|
5179
|
-
"line-through": "line-through";
|
|
5180
|
-
}>>;
|
|
5181
5175
|
}, z.core.$strict>>;
|
|
5182
5176
|
style: z.ZodOptional<z.ZodObject<{
|
|
5183
5177
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5258,18 +5252,22 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5258
5252
|
"line-through": "line-through";
|
|
5259
5253
|
}>>;
|
|
5260
5254
|
}, z.core.$strict>>;
|
|
5261
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
5255
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5262
5256
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5263
5257
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5264
5258
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5265
|
-
}, z.core.$strict
|
|
5266
|
-
|
|
5259
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
5260
|
+
none: "none";
|
|
5261
|
+
}>]>>;
|
|
5262
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5267
5263
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5268
5264
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5269
5265
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5270
5266
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5271
5267
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5272
|
-
}, z.core.$strict
|
|
5268
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
5269
|
+
none: "none";
|
|
5270
|
+
}>]>>;
|
|
5273
5271
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5274
5272
|
}, z.core.$strict>>;
|
|
5275
5273
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -5283,7 +5281,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5283
5281
|
bounce: "bounce";
|
|
5284
5282
|
typewriter: "typewriter";
|
|
5285
5283
|
}>;
|
|
5286
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5287
5284
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
5288
5285
|
left: "left";
|
|
5289
5286
|
right: "right";
|
|
@@ -11172,11 +11169,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11172
11169
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11173
11170
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11174
11171
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11175
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
11176
|
-
none: "none";
|
|
11177
|
-
underline: "underline";
|
|
11178
|
-
"line-through": "line-through";
|
|
11179
|
-
}>>;
|
|
11180
11172
|
}, z.core.$strict>>;
|
|
11181
11173
|
style: z.ZodOptional<z.ZodObject<{
|
|
11182
11174
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11257,18 +11249,22 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11257
11249
|
"line-through": "line-through";
|
|
11258
11250
|
}>>;
|
|
11259
11251
|
}, z.core.$strict>>;
|
|
11260
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
11252
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11261
11253
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11262
11254
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11263
11255
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11264
|
-
}, z.core.$strict
|
|
11265
|
-
|
|
11256
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
11257
|
+
none: "none";
|
|
11258
|
+
}>]>>;
|
|
11259
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11266
11260
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11267
11261
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11268
11262
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11269
11263
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11270
11264
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11271
|
-
}, z.core.$strict
|
|
11265
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
11266
|
+
none: "none";
|
|
11267
|
+
}>]>>;
|
|
11272
11268
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11273
11269
|
}, z.core.$strict>>;
|
|
11274
11270
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -11282,7 +11278,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11282
11278
|
bounce: "bounce";
|
|
11283
11279
|
typewriter: "typewriter";
|
|
11284
11280
|
}>;
|
|
11285
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11286
11281
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
11287
11282
|
left: "left";
|
|
11288
11283
|
right: "right";
|
|
@@ -12019,11 +12014,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12019
12014
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12020
12015
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12021
12016
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12022
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
12023
|
-
none: "none";
|
|
12024
|
-
underline: "underline";
|
|
12025
|
-
"line-through": "line-through";
|
|
12026
|
-
}>>;
|
|
12027
12017
|
}, z.core.$strict>>;
|
|
12028
12018
|
style: z.ZodOptional<z.ZodObject<{
|
|
12029
12019
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12104,18 +12094,22 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12104
12094
|
"line-through": "line-through";
|
|
12105
12095
|
}>>;
|
|
12106
12096
|
}, z.core.$strict>>;
|
|
12107
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
12097
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
12108
12098
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12109
12099
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12110
12100
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12111
|
-
}, z.core.$strict
|
|
12112
|
-
|
|
12101
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
12102
|
+
none: "none";
|
|
12103
|
+
}>]>>;
|
|
12104
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
12113
12105
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12114
12106
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12115
12107
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12116
12108
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12117
12109
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12118
|
-
}, z.core.$strict
|
|
12110
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
12111
|
+
none: "none";
|
|
12112
|
+
}>]>>;
|
|
12119
12113
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12120
12114
|
}, z.core.$strict>>;
|
|
12121
12115
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -12129,7 +12123,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12129
12123
|
bounce: "bounce";
|
|
12130
12124
|
typewriter: "typewriter";
|
|
12131
12125
|
}>;
|
|
12132
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12133
12126
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
12134
12127
|
left: "left";
|
|
12135
12128
|
right: "right";
|
|
@@ -12870,11 +12863,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12870
12863
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12871
12864
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12872
12865
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12873
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
12874
|
-
none: "none";
|
|
12875
|
-
underline: "underline";
|
|
12876
|
-
"line-through": "line-through";
|
|
12877
|
-
}>>;
|
|
12878
12866
|
}, z.core.$strict>>;
|
|
12879
12867
|
style: z.ZodOptional<z.ZodObject<{
|
|
12880
12868
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12955,18 +12943,22 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12955
12943
|
"line-through": "line-through";
|
|
12956
12944
|
}>>;
|
|
12957
12945
|
}, z.core.$strict>>;
|
|
12958
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
12946
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
12959
12947
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12960
12948
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12961
12949
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12962
|
-
}, z.core.$strict
|
|
12963
|
-
|
|
12950
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
12951
|
+
none: "none";
|
|
12952
|
+
}>]>>;
|
|
12953
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
12964
12954
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12965
12955
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12966
12956
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12967
12957
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12968
12958
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12969
|
-
}, z.core.$strict
|
|
12959
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
12960
|
+
none: "none";
|
|
12961
|
+
}>]>>;
|
|
12970
12962
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12971
12963
|
}, z.core.$strict>>;
|
|
12972
12964
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -12980,7 +12972,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12980
12972
|
bounce: "bounce";
|
|
12981
12973
|
typewriter: "typewriter";
|
|
12982
12974
|
}>;
|
|
12983
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12984
12975
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
12985
12976
|
left: "left";
|
|
12986
12977
|
right: "right";
|
|
@@ -14201,11 +14192,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14201
14192
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14202
14193
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14203
14194
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
14204
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
14205
|
-
none: "none";
|
|
14206
|
-
underline: "underline";
|
|
14207
|
-
"line-through": "line-through";
|
|
14208
|
-
}>>;
|
|
14209
14195
|
}, z.core.$strict>>;
|
|
14210
14196
|
style: z.ZodOptional<z.ZodObject<{
|
|
14211
14197
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -14286,18 +14272,22 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14286
14272
|
"line-through": "line-through";
|
|
14287
14273
|
}>>;
|
|
14288
14274
|
}, z.core.$strict>>;
|
|
14289
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
14275
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
14290
14276
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14291
14277
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14292
14278
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14293
|
-
}, z.core.$strict
|
|
14294
|
-
|
|
14279
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
14280
|
+
none: "none";
|
|
14281
|
+
}>]>>;
|
|
14282
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
14295
14283
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14296
14284
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14297
14285
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14298
14286
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14299
14287
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14300
|
-
}, z.core.$strict
|
|
14288
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
14289
|
+
none: "none";
|
|
14290
|
+
}>]>>;
|
|
14301
14291
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14302
14292
|
}, z.core.$strict>>;
|
|
14303
14293
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -14311,7 +14301,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14311
14301
|
bounce: "bounce";
|
|
14312
14302
|
typewriter: "typewriter";
|
|
14313
14303
|
}>;
|
|
14314
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14315
14304
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
14316
14305
|
left: "left";
|
|
14317
14306
|
right: "right";
|
|
@@ -15536,11 +15525,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15536
15525
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15537
15526
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15538
15527
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15539
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
15540
|
-
none: "none";
|
|
15541
|
-
underline: "underline";
|
|
15542
|
-
"line-through": "line-through";
|
|
15543
|
-
}>>;
|
|
15544
15528
|
}, z.core.$strict>>;
|
|
15545
15529
|
style: z.ZodOptional<z.ZodObject<{
|
|
15546
15530
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -15621,18 +15605,22 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15621
15605
|
"line-through": "line-through";
|
|
15622
15606
|
}>>;
|
|
15623
15607
|
}, z.core.$strict>>;
|
|
15624
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
15608
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15625
15609
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15626
15610
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15627
15611
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15628
|
-
}, z.core.$strict
|
|
15629
|
-
|
|
15612
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
15613
|
+
none: "none";
|
|
15614
|
+
}>]>>;
|
|
15615
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15630
15616
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15631
15617
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15632
15618
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15633
15619
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15634
15620
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15635
|
-
}, z.core.$strict
|
|
15621
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
15622
|
+
none: "none";
|
|
15623
|
+
}>]>>;
|
|
15636
15624
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15637
15625
|
}, z.core.$strict>>;
|
|
15638
15626
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -15646,7 +15634,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15646
15634
|
bounce: "bounce";
|
|
15647
15635
|
typewriter: "typewriter";
|
|
15648
15636
|
}>;
|
|
15649
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15650
15637
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
15651
15638
|
left: "left";
|
|
15652
15639
|
right: "right";
|
|
@@ -16826,7 +16813,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16826
16813
|
color: string;
|
|
16827
16814
|
opacity: string | number;
|
|
16828
16815
|
background?: string;
|
|
16829
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
16830
16816
|
};
|
|
16831
16817
|
style?: {
|
|
16832
16818
|
letterSpacing: string | number;
|
|
@@ -16884,12 +16870,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16884
16870
|
background?: string;
|
|
16885
16871
|
textDecoration?: "none" | "underline" | "line-through";
|
|
16886
16872
|
};
|
|
16887
|
-
stroke?: {
|
|
16873
|
+
stroke?: "none" | {
|
|
16888
16874
|
width: string | number;
|
|
16889
16875
|
color: string;
|
|
16890
16876
|
opacity: string | number;
|
|
16891
16877
|
};
|
|
16892
|
-
shadow?: {
|
|
16878
|
+
shadow?: "none" | {
|
|
16893
16879
|
offsetX: string | number;
|
|
16894
16880
|
offsetY: string | number;
|
|
16895
16881
|
blur: string | number;
|
|
@@ -16899,7 +16885,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16899
16885
|
};
|
|
16900
16886
|
wordAnimation?: {
|
|
16901
16887
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
16902
|
-
speed: string | number;
|
|
16903
16888
|
direction?: "left" | "right" | "up" | "down";
|
|
16904
16889
|
};
|
|
16905
16890
|
} | {
|
|
@@ -17370,7 +17355,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17370
17355
|
color: string;
|
|
17371
17356
|
opacity: string | number;
|
|
17372
17357
|
background?: string;
|
|
17373
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
17374
17358
|
};
|
|
17375
17359
|
style?: {
|
|
17376
17360
|
letterSpacing: string | number;
|
|
@@ -17428,12 +17412,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17428
17412
|
background?: string;
|
|
17429
17413
|
textDecoration?: "none" | "underline" | "line-through";
|
|
17430
17414
|
};
|
|
17431
|
-
stroke?: {
|
|
17415
|
+
stroke?: "none" | {
|
|
17432
17416
|
width: string | number;
|
|
17433
17417
|
color: string;
|
|
17434
17418
|
opacity: string | number;
|
|
17435
17419
|
};
|
|
17436
|
-
shadow?: {
|
|
17420
|
+
shadow?: "none" | {
|
|
17437
17421
|
offsetX: string | number;
|
|
17438
17422
|
offsetY: string | number;
|
|
17439
17423
|
blur: string | number;
|
|
@@ -17443,7 +17427,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17443
17427
|
};
|
|
17444
17428
|
wordAnimation?: {
|
|
17445
17429
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
17446
|
-
speed: string | number;
|
|
17447
17430
|
direction?: "left" | "right" | "up" | "down";
|
|
17448
17431
|
};
|
|
17449
17432
|
} | {
|
|
@@ -17958,11 +17941,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17958
17941
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
17959
17942
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17960
17943
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
17961
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
17962
|
-
none: "none";
|
|
17963
|
-
underline: "underline";
|
|
17964
|
-
"line-through": "line-through";
|
|
17965
|
-
}>>;
|
|
17966
17944
|
}, z.core.$strict>>;
|
|
17967
17945
|
style: z.ZodOptional<z.ZodObject<{
|
|
17968
17946
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -18043,18 +18021,22 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
18043
18021
|
"line-through": "line-through";
|
|
18044
18022
|
}>>;
|
|
18045
18023
|
}, z.core.$strict>>;
|
|
18046
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
18024
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
18047
18025
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18048
18026
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
18049
18027
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18050
|
-
}, z.core.$strict
|
|
18051
|
-
|
|
18028
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
18029
|
+
none: "none";
|
|
18030
|
+
}>]>>;
|
|
18031
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
18052
18032
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18053
18033
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18054
18034
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18055
18035
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
18056
18036
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18057
|
-
}, z.core.$strict
|
|
18037
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
18038
|
+
none: "none";
|
|
18039
|
+
}>]>>;
|
|
18058
18040
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18059
18041
|
}, z.core.$strict>>;
|
|
18060
18042
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -18068,7 +18050,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
18068
18050
|
bounce: "bounce";
|
|
18069
18051
|
typewriter: "typewriter";
|
|
18070
18052
|
}>;
|
|
18071
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18072
18053
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
18073
18054
|
left: "left";
|
|
18074
18055
|
right: "right";
|
|
@@ -19248,7 +19229,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19248
19229
|
color: string;
|
|
19249
19230
|
opacity: string | number;
|
|
19250
19231
|
background?: string;
|
|
19251
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
19252
19232
|
};
|
|
19253
19233
|
style?: {
|
|
19254
19234
|
letterSpacing: string | number;
|
|
@@ -19306,12 +19286,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19306
19286
|
background?: string;
|
|
19307
19287
|
textDecoration?: "none" | "underline" | "line-through";
|
|
19308
19288
|
};
|
|
19309
|
-
stroke?: {
|
|
19289
|
+
stroke?: "none" | {
|
|
19310
19290
|
width: string | number;
|
|
19311
19291
|
color: string;
|
|
19312
19292
|
opacity: string | number;
|
|
19313
19293
|
};
|
|
19314
|
-
shadow?: {
|
|
19294
|
+
shadow?: "none" | {
|
|
19315
19295
|
offsetX: string | number;
|
|
19316
19296
|
offsetY: string | number;
|
|
19317
19297
|
blur: string | number;
|
|
@@ -19321,7 +19301,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19321
19301
|
};
|
|
19322
19302
|
wordAnimation?: {
|
|
19323
19303
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
19324
|
-
speed: string | number;
|
|
19325
19304
|
direction?: "left" | "right" | "up" | "down";
|
|
19326
19305
|
};
|
|
19327
19306
|
} | {
|
|
@@ -19792,7 +19771,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19792
19771
|
color: string;
|
|
19793
19772
|
opacity: string | number;
|
|
19794
19773
|
background?: string;
|
|
19795
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
19796
19774
|
};
|
|
19797
19775
|
style?: {
|
|
19798
19776
|
letterSpacing: string | number;
|
|
@@ -19850,12 +19828,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19850
19828
|
background?: string;
|
|
19851
19829
|
textDecoration?: "none" | "underline" | "line-through";
|
|
19852
19830
|
};
|
|
19853
|
-
stroke?: {
|
|
19831
|
+
stroke?: "none" | {
|
|
19854
19832
|
width: string | number;
|
|
19855
19833
|
color: string;
|
|
19856
19834
|
opacity: string | number;
|
|
19857
19835
|
};
|
|
19858
|
-
shadow?: {
|
|
19836
|
+
shadow?: "none" | {
|
|
19859
19837
|
offsetX: string | number;
|
|
19860
19838
|
offsetY: string | number;
|
|
19861
19839
|
blur: string | number;
|
|
@@ -19865,7 +19843,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19865
19843
|
};
|
|
19866
19844
|
wordAnimation?: {
|
|
19867
19845
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
19868
|
-
speed: string | number;
|
|
19869
19846
|
direction?: "left" | "right" | "up" | "down";
|
|
19870
19847
|
};
|
|
19871
19848
|
} | {
|
|
@@ -20397,11 +20374,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20397
20374
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20398
20375
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20399
20376
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20400
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
20401
|
-
none: "none";
|
|
20402
|
-
underline: "underline";
|
|
20403
|
-
"line-through": "line-through";
|
|
20404
|
-
}>>;
|
|
20405
20377
|
}, z.core.$strict>>;
|
|
20406
20378
|
style: z.ZodOptional<z.ZodObject<{
|
|
20407
20379
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -20482,18 +20454,22 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20482
20454
|
"line-through": "line-through";
|
|
20483
20455
|
}>>;
|
|
20484
20456
|
}, z.core.$strict>>;
|
|
20485
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
20457
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
20486
20458
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20487
20459
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20488
20460
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20489
|
-
}, z.core.$strict
|
|
20490
|
-
|
|
20461
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
20462
|
+
none: "none";
|
|
20463
|
+
}>]>>;
|
|
20464
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
20491
20465
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20492
20466
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20493
20467
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20494
20468
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20495
20469
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20496
|
-
}, z.core.$strict
|
|
20470
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
20471
|
+
none: "none";
|
|
20472
|
+
}>]>>;
|
|
20497
20473
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20498
20474
|
}, z.core.$strict>>;
|
|
20499
20475
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -20507,7 +20483,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20507
20483
|
bounce: "bounce";
|
|
20508
20484
|
typewriter: "typewriter";
|
|
20509
20485
|
}>;
|
|
20510
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20511
20486
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
20512
20487
|
left: "left";
|
|
20513
20488
|
right: "right";
|
|
@@ -21687,7 +21662,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21687
21662
|
color: string;
|
|
21688
21663
|
opacity: string | number;
|
|
21689
21664
|
background?: string;
|
|
21690
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
21691
21665
|
};
|
|
21692
21666
|
style?: {
|
|
21693
21667
|
letterSpacing: string | number;
|
|
@@ -21745,12 +21719,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21745
21719
|
background?: string;
|
|
21746
21720
|
textDecoration?: "none" | "underline" | "line-through";
|
|
21747
21721
|
};
|
|
21748
|
-
stroke?: {
|
|
21722
|
+
stroke?: "none" | {
|
|
21749
21723
|
width: string | number;
|
|
21750
21724
|
color: string;
|
|
21751
21725
|
opacity: string | number;
|
|
21752
21726
|
};
|
|
21753
|
-
shadow?: {
|
|
21727
|
+
shadow?: "none" | {
|
|
21754
21728
|
offsetX: string | number;
|
|
21755
21729
|
offsetY: string | number;
|
|
21756
21730
|
blur: string | number;
|
|
@@ -21760,7 +21734,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21760
21734
|
};
|
|
21761
21735
|
wordAnimation?: {
|
|
21762
21736
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
21763
|
-
speed: string | number;
|
|
21764
21737
|
direction?: "left" | "right" | "up" | "down";
|
|
21765
21738
|
};
|
|
21766
21739
|
} | {
|
|
@@ -22231,7 +22204,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22231
22204
|
color: string;
|
|
22232
22205
|
opacity: string | number;
|
|
22233
22206
|
background?: string;
|
|
22234
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
22235
22207
|
};
|
|
22236
22208
|
style?: {
|
|
22237
22209
|
letterSpacing: string | number;
|
|
@@ -22289,12 +22261,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22289
22261
|
background?: string;
|
|
22290
22262
|
textDecoration?: "none" | "underline" | "line-through";
|
|
22291
22263
|
};
|
|
22292
|
-
stroke?: {
|
|
22264
|
+
stroke?: "none" | {
|
|
22293
22265
|
width: string | number;
|
|
22294
22266
|
color: string;
|
|
22295
22267
|
opacity: string | number;
|
|
22296
22268
|
};
|
|
22297
|
-
shadow?: {
|
|
22269
|
+
shadow?: "none" | {
|
|
22298
22270
|
offsetX: string | number;
|
|
22299
22271
|
offsetY: string | number;
|
|
22300
22272
|
blur: string | number;
|
|
@@ -22304,7 +22276,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22304
22276
|
};
|
|
22305
22277
|
wordAnimation?: {
|
|
22306
22278
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
22307
|
-
speed: string | number;
|
|
22308
22279
|
direction?: "left" | "right" | "up" | "down";
|
|
22309
22280
|
};
|
|
22310
22281
|
} | {
|
|
@@ -22835,11 +22806,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22835
22806
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22836
22807
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22837
22808
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
22838
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
22839
|
-
none: "none";
|
|
22840
|
-
underline: "underline";
|
|
22841
|
-
"line-through": "line-through";
|
|
22842
|
-
}>>;
|
|
22843
22809
|
}, z.core.$strict>>;
|
|
22844
22810
|
style: z.ZodOptional<z.ZodObject<{
|
|
22845
22811
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -22920,18 +22886,22 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22920
22886
|
"line-through": "line-through";
|
|
22921
22887
|
}>>;
|
|
22922
22888
|
}, z.core.$strict>>;
|
|
22923
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
22889
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
22924
22890
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22925
22891
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22926
22892
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22927
|
-
}, z.core.$strict
|
|
22928
|
-
|
|
22893
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
22894
|
+
none: "none";
|
|
22895
|
+
}>]>>;
|
|
22896
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
22929
22897
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22930
22898
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22931
22899
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22932
22900
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22933
22901
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22934
|
-
}, z.core.$strict
|
|
22902
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
22903
|
+
none: "none";
|
|
22904
|
+
}>]>>;
|
|
22935
22905
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22936
22906
|
}, z.core.$strict>>;
|
|
22937
22907
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -22945,7 +22915,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22945
22915
|
bounce: "bounce";
|
|
22946
22916
|
typewriter: "typewriter";
|
|
22947
22917
|
}>;
|
|
22948
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22949
22918
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
22950
22919
|
left: "left";
|
|
22951
22920
|
right: "right";
|
|
@@ -24125,7 +24094,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24125
24094
|
color: string;
|
|
24126
24095
|
opacity: string | number;
|
|
24127
24096
|
background?: string;
|
|
24128
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
24129
24097
|
};
|
|
24130
24098
|
style?: {
|
|
24131
24099
|
letterSpacing: string | number;
|
|
@@ -24183,12 +24151,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24183
24151
|
background?: string;
|
|
24184
24152
|
textDecoration?: "none" | "underline" | "line-through";
|
|
24185
24153
|
};
|
|
24186
|
-
stroke?: {
|
|
24154
|
+
stroke?: "none" | {
|
|
24187
24155
|
width: string | number;
|
|
24188
24156
|
color: string;
|
|
24189
24157
|
opacity: string | number;
|
|
24190
24158
|
};
|
|
24191
|
-
shadow?: {
|
|
24159
|
+
shadow?: "none" | {
|
|
24192
24160
|
offsetX: string | number;
|
|
24193
24161
|
offsetY: string | number;
|
|
24194
24162
|
blur: string | number;
|
|
@@ -24198,7 +24166,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24198
24166
|
};
|
|
24199
24167
|
wordAnimation?: {
|
|
24200
24168
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
24201
|
-
speed: string | number;
|
|
24202
24169
|
direction?: "left" | "right" | "up" | "down";
|
|
24203
24170
|
};
|
|
24204
24171
|
} | {
|
|
@@ -24669,7 +24636,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24669
24636
|
color: string;
|
|
24670
24637
|
opacity: string | number;
|
|
24671
24638
|
background?: string;
|
|
24672
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
24673
24639
|
};
|
|
24674
24640
|
style?: {
|
|
24675
24641
|
letterSpacing: string | number;
|
|
@@ -24727,12 +24693,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24727
24693
|
background?: string;
|
|
24728
24694
|
textDecoration?: "none" | "underline" | "line-through";
|
|
24729
24695
|
};
|
|
24730
|
-
stroke?: {
|
|
24696
|
+
stroke?: "none" | {
|
|
24731
24697
|
width: string | number;
|
|
24732
24698
|
color: string;
|
|
24733
24699
|
opacity: string | number;
|
|
24734
24700
|
};
|
|
24735
|
-
shadow?: {
|
|
24701
|
+
shadow?: "none" | {
|
|
24736
24702
|
offsetX: string | number;
|
|
24737
24703
|
offsetY: string | number;
|
|
24738
24704
|
blur: string | number;
|
|
@@ -24742,7 +24708,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24742
24708
|
};
|
|
24743
24709
|
wordAnimation?: {
|
|
24744
24710
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
24745
|
-
speed: string | number;
|
|
24746
24711
|
direction?: "left" | "right" | "up" | "down";
|
|
24747
24712
|
};
|
|
24748
24713
|
} | {
|
|
@@ -25277,11 +25242,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25277
25242
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25278
25243
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25279
25244
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
25280
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
25281
|
-
none: "none";
|
|
25282
|
-
underline: "underline";
|
|
25283
|
-
"line-through": "line-through";
|
|
25284
|
-
}>>;
|
|
25285
25245
|
}, z.core.$strict>>;
|
|
25286
25246
|
style: z.ZodOptional<z.ZodObject<{
|
|
25287
25247
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -25362,18 +25322,22 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25362
25322
|
"line-through": "line-through";
|
|
25363
25323
|
}>>;
|
|
25364
25324
|
}, z.core.$strict>>;
|
|
25365
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
25325
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
25366
25326
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25367
25327
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25368
25328
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25369
|
-
}, z.core.$strict
|
|
25370
|
-
|
|
25329
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
25330
|
+
none: "none";
|
|
25331
|
+
}>]>>;
|
|
25332
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
25371
25333
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25372
25334
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25373
25335
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25374
25336
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25375
25337
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25376
|
-
}, z.core.$strict
|
|
25338
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
25339
|
+
none: "none";
|
|
25340
|
+
}>]>>;
|
|
25377
25341
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25378
25342
|
}, z.core.$strict>>;
|
|
25379
25343
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -25387,7 +25351,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25387
25351
|
bounce: "bounce";
|
|
25388
25352
|
typewriter: "typewriter";
|
|
25389
25353
|
}>;
|
|
25390
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25391
25354
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
25392
25355
|
left: "left";
|
|
25393
25356
|
right: "right";
|
|
@@ -26567,7 +26530,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26567
26530
|
color: string;
|
|
26568
26531
|
opacity: string | number;
|
|
26569
26532
|
background?: string;
|
|
26570
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
26571
26533
|
};
|
|
26572
26534
|
style?: {
|
|
26573
26535
|
letterSpacing: string | number;
|
|
@@ -26625,12 +26587,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26625
26587
|
background?: string;
|
|
26626
26588
|
textDecoration?: "none" | "underline" | "line-through";
|
|
26627
26589
|
};
|
|
26628
|
-
stroke?: {
|
|
26590
|
+
stroke?: "none" | {
|
|
26629
26591
|
width: string | number;
|
|
26630
26592
|
color: string;
|
|
26631
26593
|
opacity: string | number;
|
|
26632
26594
|
};
|
|
26633
|
-
shadow?: {
|
|
26595
|
+
shadow?: "none" | {
|
|
26634
26596
|
offsetX: string | number;
|
|
26635
26597
|
offsetY: string | number;
|
|
26636
26598
|
blur: string | number;
|
|
@@ -26640,7 +26602,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26640
26602
|
};
|
|
26641
26603
|
wordAnimation?: {
|
|
26642
26604
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
26643
|
-
speed: string | number;
|
|
26644
26605
|
direction?: "left" | "right" | "up" | "down";
|
|
26645
26606
|
};
|
|
26646
26607
|
} | {
|
|
@@ -27111,7 +27072,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27111
27072
|
color: string;
|
|
27112
27073
|
opacity: string | number;
|
|
27113
27074
|
background?: string;
|
|
27114
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
27115
27075
|
};
|
|
27116
27076
|
style?: {
|
|
27117
27077
|
letterSpacing: string | number;
|
|
@@ -27169,12 +27129,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27169
27129
|
background?: string;
|
|
27170
27130
|
textDecoration?: "none" | "underline" | "line-through";
|
|
27171
27131
|
};
|
|
27172
|
-
stroke?: {
|
|
27132
|
+
stroke?: "none" | {
|
|
27173
27133
|
width: string | number;
|
|
27174
27134
|
color: string;
|
|
27175
27135
|
opacity: string | number;
|
|
27176
27136
|
};
|
|
27177
|
-
shadow?: {
|
|
27137
|
+
shadow?: "none" | {
|
|
27178
27138
|
offsetX: string | number;
|
|
27179
27139
|
offsetY: string | number;
|
|
27180
27140
|
blur: string | number;
|
|
@@ -27184,7 +27144,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27184
27144
|
};
|
|
27185
27145
|
wordAnimation?: {
|
|
27186
27146
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
27187
|
-
speed: string | number;
|
|
27188
27147
|
direction?: "left" | "right" | "up" | "down";
|
|
27189
27148
|
};
|
|
27190
27149
|
} | {
|
|
@@ -27881,11 +27840,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27881
27840
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27882
27841
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27883
27842
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27884
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
27885
|
-
none: "none";
|
|
27886
|
-
underline: "underline";
|
|
27887
|
-
"line-through": "line-through";
|
|
27888
|
-
}>>;
|
|
27889
27843
|
}, z.core.$strict>>;
|
|
27890
27844
|
style: z.ZodOptional<z.ZodObject<{
|
|
27891
27845
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -27966,18 +27920,22 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27966
27920
|
"line-through": "line-through";
|
|
27967
27921
|
}>>;
|
|
27968
27922
|
}, z.core.$strict>>;
|
|
27969
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
27923
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
27970
27924
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27971
27925
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27972
27926
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27973
|
-
}, z.core.$strict
|
|
27974
|
-
|
|
27927
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
27928
|
+
none: "none";
|
|
27929
|
+
}>]>>;
|
|
27930
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
27975
27931
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27976
27932
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27977
27933
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27978
27934
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27979
27935
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27980
|
-
}, z.core.$strict
|
|
27936
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
27937
|
+
none: "none";
|
|
27938
|
+
}>]>>;
|
|
27981
27939
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27982
27940
|
}, z.core.$strict>>;
|
|
27983
27941
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -27991,7 +27949,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27991
27949
|
bounce: "bounce";
|
|
27992
27950
|
typewriter: "typewriter";
|
|
27993
27951
|
}>;
|
|
27994
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27995
27952
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
27996
27953
|
left: "left";
|
|
27997
27954
|
right: "right";
|
|
@@ -29171,7 +29128,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29171
29128
|
color: string;
|
|
29172
29129
|
opacity: string | number;
|
|
29173
29130
|
background?: string;
|
|
29174
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
29175
29131
|
};
|
|
29176
29132
|
style?: {
|
|
29177
29133
|
letterSpacing: string | number;
|
|
@@ -29229,12 +29185,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29229
29185
|
background?: string;
|
|
29230
29186
|
textDecoration?: "none" | "underline" | "line-through";
|
|
29231
29187
|
};
|
|
29232
|
-
stroke?: {
|
|
29188
|
+
stroke?: "none" | {
|
|
29233
29189
|
width: string | number;
|
|
29234
29190
|
color: string;
|
|
29235
29191
|
opacity: string | number;
|
|
29236
29192
|
};
|
|
29237
|
-
shadow?: {
|
|
29193
|
+
shadow?: "none" | {
|
|
29238
29194
|
offsetX: string | number;
|
|
29239
29195
|
offsetY: string | number;
|
|
29240
29196
|
blur: string | number;
|
|
@@ -29244,7 +29200,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29244
29200
|
};
|
|
29245
29201
|
wordAnimation?: {
|
|
29246
29202
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
29247
|
-
speed: string | number;
|
|
29248
29203
|
direction?: "left" | "right" | "up" | "down";
|
|
29249
29204
|
};
|
|
29250
29205
|
} | {
|
|
@@ -29715,7 +29670,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29715
29670
|
color: string;
|
|
29716
29671
|
opacity: string | number;
|
|
29717
29672
|
background?: string;
|
|
29718
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
29719
29673
|
};
|
|
29720
29674
|
style?: {
|
|
29721
29675
|
letterSpacing: string | number;
|
|
@@ -29773,12 +29727,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29773
29727
|
background?: string;
|
|
29774
29728
|
textDecoration?: "none" | "underline" | "line-through";
|
|
29775
29729
|
};
|
|
29776
|
-
stroke?: {
|
|
29730
|
+
stroke?: "none" | {
|
|
29777
29731
|
width: string | number;
|
|
29778
29732
|
color: string;
|
|
29779
29733
|
opacity: string | number;
|
|
29780
29734
|
};
|
|
29781
|
-
shadow?: {
|
|
29735
|
+
shadow?: "none" | {
|
|
29782
29736
|
offsetX: string | number;
|
|
29783
29737
|
offsetY: string | number;
|
|
29784
29738
|
blur: string | number;
|
|
@@ -29788,7 +29742,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29788
29742
|
};
|
|
29789
29743
|
wordAnimation?: {
|
|
29790
29744
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
29791
|
-
speed: string | number;
|
|
29792
29745
|
direction?: "left" | "right" | "up" | "down";
|
|
29793
29746
|
};
|
|
29794
29747
|
} | {
|
|
@@ -30507,11 +30460,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30507
30460
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30508
30461
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30509
30462
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
30510
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
30511
|
-
none: "none";
|
|
30512
|
-
underline: "underline";
|
|
30513
|
-
"line-through": "line-through";
|
|
30514
|
-
}>>;
|
|
30515
30463
|
}, z.core.$strict>>;
|
|
30516
30464
|
style: z.ZodOptional<z.ZodObject<{
|
|
30517
30465
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -30592,18 +30540,22 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30592
30540
|
"line-through": "line-through";
|
|
30593
30541
|
}>>;
|
|
30594
30542
|
}, z.core.$strict>>;
|
|
30595
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
30543
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
30596
30544
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30597
30545
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30598
30546
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30599
|
-
}, z.core.$strict
|
|
30600
|
-
|
|
30547
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
30548
|
+
none: "none";
|
|
30549
|
+
}>]>>;
|
|
30550
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
30601
30551
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30602
30552
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30603
30553
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30604
30554
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30605
30555
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30606
|
-
}, z.core.$strict
|
|
30556
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
30557
|
+
none: "none";
|
|
30558
|
+
}>]>>;
|
|
30607
30559
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30608
30560
|
}, z.core.$strict>>;
|
|
30609
30561
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -30617,7 +30569,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30617
30569
|
bounce: "bounce";
|
|
30618
30570
|
typewriter: "typewriter";
|
|
30619
30571
|
}>;
|
|
30620
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30621
30572
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
30622
30573
|
left: "left";
|
|
30623
30574
|
right: "right";
|
|
@@ -31797,7 +31748,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31797
31748
|
color: string;
|
|
31798
31749
|
opacity: string | number;
|
|
31799
31750
|
background?: string;
|
|
31800
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
31801
31751
|
};
|
|
31802
31752
|
style?: {
|
|
31803
31753
|
letterSpacing: string | number;
|
|
@@ -31855,12 +31805,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31855
31805
|
background?: string;
|
|
31856
31806
|
textDecoration?: "none" | "underline" | "line-through";
|
|
31857
31807
|
};
|
|
31858
|
-
stroke?: {
|
|
31808
|
+
stroke?: "none" | {
|
|
31859
31809
|
width: string | number;
|
|
31860
31810
|
color: string;
|
|
31861
31811
|
opacity: string | number;
|
|
31862
31812
|
};
|
|
31863
|
-
shadow?: {
|
|
31813
|
+
shadow?: "none" | {
|
|
31864
31814
|
offsetX: string | number;
|
|
31865
31815
|
offsetY: string | number;
|
|
31866
31816
|
blur: string | number;
|
|
@@ -31870,7 +31820,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31870
31820
|
};
|
|
31871
31821
|
wordAnimation?: {
|
|
31872
31822
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
31873
|
-
speed: string | number;
|
|
31874
31823
|
direction?: "left" | "right" | "up" | "down";
|
|
31875
31824
|
};
|
|
31876
31825
|
} | {
|
|
@@ -32341,7 +32290,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32341
32290
|
color: string;
|
|
32342
32291
|
opacity: string | number;
|
|
32343
32292
|
background?: string;
|
|
32344
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
32345
32293
|
};
|
|
32346
32294
|
style?: {
|
|
32347
32295
|
letterSpacing: string | number;
|
|
@@ -32399,12 +32347,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32399
32347
|
background?: string;
|
|
32400
32348
|
textDecoration?: "none" | "underline" | "line-through";
|
|
32401
32349
|
};
|
|
32402
|
-
stroke?: {
|
|
32350
|
+
stroke?: "none" | {
|
|
32403
32351
|
width: string | number;
|
|
32404
32352
|
color: string;
|
|
32405
32353
|
opacity: string | number;
|
|
32406
32354
|
};
|
|
32407
|
-
shadow?: {
|
|
32355
|
+
shadow?: "none" | {
|
|
32408
32356
|
offsetX: string | number;
|
|
32409
32357
|
offsetY: string | number;
|
|
32410
32358
|
blur: string | number;
|
|
@@ -32414,7 +32362,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32414
32362
|
};
|
|
32415
32363
|
wordAnimation?: {
|
|
32416
32364
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
32417
|
-
speed: string | number;
|
|
32418
32365
|
direction?: "left" | "right" | "up" | "down";
|
|
32419
32366
|
};
|
|
32420
32367
|
} | {
|
|
@@ -33133,11 +33080,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33133
33080
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
33134
33081
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33135
33082
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33136
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
33137
|
-
none: "none";
|
|
33138
|
-
underline: "underline";
|
|
33139
|
-
"line-through": "line-through";
|
|
33140
|
-
}>>;
|
|
33141
33083
|
}, z.core.$strict>>;
|
|
33142
33084
|
style: z.ZodOptional<z.ZodObject<{
|
|
33143
33085
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -33218,18 +33160,22 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33218
33160
|
"line-through": "line-through";
|
|
33219
33161
|
}>>;
|
|
33220
33162
|
}, z.core.$strict>>;
|
|
33221
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
33163
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
33222
33164
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33223
33165
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
33224
33166
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33225
|
-
}, z.core.$strict
|
|
33226
|
-
|
|
33167
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
33168
|
+
none: "none";
|
|
33169
|
+
}>]>>;
|
|
33170
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
33227
33171
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33228
33172
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33229
33173
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33230
33174
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
33231
33175
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33232
|
-
}, z.core.$strict
|
|
33176
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
33177
|
+
none: "none";
|
|
33178
|
+
}>]>>;
|
|
33233
33179
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33234
33180
|
}, z.core.$strict>>;
|
|
33235
33181
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -33243,7 +33189,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33243
33189
|
bounce: "bounce";
|
|
33244
33190
|
typewriter: "typewriter";
|
|
33245
33191
|
}>;
|
|
33246
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33247
33192
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
33248
33193
|
left: "left";
|
|
33249
33194
|
right: "right";
|
|
@@ -34423,7 +34368,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34423
34368
|
color: string;
|
|
34424
34369
|
opacity: string | number;
|
|
34425
34370
|
background?: string;
|
|
34426
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
34427
34371
|
};
|
|
34428
34372
|
style?: {
|
|
34429
34373
|
letterSpacing: string | number;
|
|
@@ -34481,12 +34425,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34481
34425
|
background?: string;
|
|
34482
34426
|
textDecoration?: "none" | "underline" | "line-through";
|
|
34483
34427
|
};
|
|
34484
|
-
stroke?: {
|
|
34428
|
+
stroke?: "none" | {
|
|
34485
34429
|
width: string | number;
|
|
34486
34430
|
color: string;
|
|
34487
34431
|
opacity: string | number;
|
|
34488
34432
|
};
|
|
34489
|
-
shadow?: {
|
|
34433
|
+
shadow?: "none" | {
|
|
34490
34434
|
offsetX: string | number;
|
|
34491
34435
|
offsetY: string | number;
|
|
34492
34436
|
blur: string | number;
|
|
@@ -34496,7 +34440,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34496
34440
|
};
|
|
34497
34441
|
wordAnimation?: {
|
|
34498
34442
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
34499
|
-
speed: string | number;
|
|
34500
34443
|
direction?: "left" | "right" | "up" | "down";
|
|
34501
34444
|
};
|
|
34502
34445
|
} | {
|
|
@@ -34967,7 +34910,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34967
34910
|
color: string;
|
|
34968
34911
|
opacity: string | number;
|
|
34969
34912
|
background?: string;
|
|
34970
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
34971
34913
|
};
|
|
34972
34914
|
style?: {
|
|
34973
34915
|
letterSpacing: string | number;
|
|
@@ -35025,12 +34967,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
35025
34967
|
background?: string;
|
|
35026
34968
|
textDecoration?: "none" | "underline" | "line-through";
|
|
35027
34969
|
};
|
|
35028
|
-
stroke?: {
|
|
34970
|
+
stroke?: "none" | {
|
|
35029
34971
|
width: string | number;
|
|
35030
34972
|
color: string;
|
|
35031
34973
|
opacity: string | number;
|
|
35032
34974
|
};
|
|
35033
|
-
shadow?: {
|
|
34975
|
+
shadow?: "none" | {
|
|
35034
34976
|
offsetX: string | number;
|
|
35035
34977
|
offsetY: string | number;
|
|
35036
34978
|
blur: string | number;
|
|
@@ -35040,7 +34982,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
35040
34982
|
};
|
|
35041
34983
|
wordAnimation?: {
|
|
35042
34984
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
35043
|
-
speed: string | number;
|
|
35044
34985
|
direction?: "left" | "right" | "up" | "down";
|
|
35045
34986
|
};
|
|
35046
34987
|
} | {
|
|
@@ -35765,11 +35706,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35765
35706
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35766
35707
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35767
35708
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
35768
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
35769
|
-
none: "none";
|
|
35770
|
-
underline: "underline";
|
|
35771
|
-
"line-through": "line-through";
|
|
35772
|
-
}>>;
|
|
35773
35709
|
}, z.core.$strict>>;
|
|
35774
35710
|
style: z.ZodOptional<z.ZodObject<{
|
|
35775
35711
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -35850,18 +35786,22 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35850
35786
|
"line-through": "line-through";
|
|
35851
35787
|
}>>;
|
|
35852
35788
|
}, z.core.$strict>>;
|
|
35853
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
35789
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
35854
35790
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35855
35791
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35856
35792
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35857
|
-
}, z.core.$strict
|
|
35858
|
-
|
|
35793
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
35794
|
+
none: "none";
|
|
35795
|
+
}>]>>;
|
|
35796
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
35859
35797
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35860
35798
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35861
35799
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35862
35800
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35863
35801
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35864
|
-
}, z.core.$strict
|
|
35802
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
35803
|
+
none: "none";
|
|
35804
|
+
}>]>>;
|
|
35865
35805
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35866
35806
|
}, z.core.$strict>>;
|
|
35867
35807
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -35875,7 +35815,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35875
35815
|
bounce: "bounce";
|
|
35876
35816
|
typewriter: "typewriter";
|
|
35877
35817
|
}>;
|
|
35878
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35879
35818
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
35880
35819
|
left: "left";
|
|
35881
35820
|
right: "right";
|
|
@@ -37055,7 +36994,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37055
36994
|
color: string;
|
|
37056
36995
|
opacity: string | number;
|
|
37057
36996
|
background?: string;
|
|
37058
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
37059
36997
|
};
|
|
37060
36998
|
style?: {
|
|
37061
36999
|
letterSpacing: string | number;
|
|
@@ -37113,12 +37051,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37113
37051
|
background?: string;
|
|
37114
37052
|
textDecoration?: "none" | "underline" | "line-through";
|
|
37115
37053
|
};
|
|
37116
|
-
stroke?: {
|
|
37054
|
+
stroke?: "none" | {
|
|
37117
37055
|
width: string | number;
|
|
37118
37056
|
color: string;
|
|
37119
37057
|
opacity: string | number;
|
|
37120
37058
|
};
|
|
37121
|
-
shadow?: {
|
|
37059
|
+
shadow?: "none" | {
|
|
37122
37060
|
offsetX: string | number;
|
|
37123
37061
|
offsetY: string | number;
|
|
37124
37062
|
blur: string | number;
|
|
@@ -37128,7 +37066,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37128
37066
|
};
|
|
37129
37067
|
wordAnimation?: {
|
|
37130
37068
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
37131
|
-
speed: string | number;
|
|
37132
37069
|
direction?: "left" | "right" | "up" | "down";
|
|
37133
37070
|
};
|
|
37134
37071
|
} | {
|
|
@@ -37599,7 +37536,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37599
37536
|
color: string;
|
|
37600
37537
|
opacity: string | number;
|
|
37601
37538
|
background?: string;
|
|
37602
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
37603
37539
|
};
|
|
37604
37540
|
style?: {
|
|
37605
37541
|
letterSpacing: string | number;
|
|
@@ -37657,12 +37593,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37657
37593
|
background?: string;
|
|
37658
37594
|
textDecoration?: "none" | "underline" | "line-through";
|
|
37659
37595
|
};
|
|
37660
|
-
stroke?: {
|
|
37596
|
+
stroke?: "none" | {
|
|
37661
37597
|
width: string | number;
|
|
37662
37598
|
color: string;
|
|
37663
37599
|
opacity: string | number;
|
|
37664
37600
|
};
|
|
37665
|
-
shadow?: {
|
|
37601
|
+
shadow?: "none" | {
|
|
37666
37602
|
offsetX: string | number;
|
|
37667
37603
|
offsetY: string | number;
|
|
37668
37604
|
blur: string | number;
|
|
@@ -37672,7 +37608,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37672
37608
|
};
|
|
37673
37609
|
wordAnimation?: {
|
|
37674
37610
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
37675
|
-
speed: string | number;
|
|
37676
37611
|
direction?: "left" | "right" | "up" | "down";
|
|
37677
37612
|
};
|
|
37678
37613
|
} | {
|
|
@@ -38395,11 +38330,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38395
38330
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38396
38331
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38397
38332
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
38398
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
38399
|
-
none: "none";
|
|
38400
|
-
underline: "underline";
|
|
38401
|
-
"line-through": "line-through";
|
|
38402
|
-
}>>;
|
|
38403
38333
|
}, z.core.$strict>>;
|
|
38404
38334
|
style: z.ZodOptional<z.ZodObject<{
|
|
38405
38335
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -38480,18 +38410,22 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38480
38410
|
"line-through": "line-through";
|
|
38481
38411
|
}>>;
|
|
38482
38412
|
}, z.core.$strict>>;
|
|
38483
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
38413
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
38484
38414
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38485
38415
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38486
38416
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38487
|
-
}, z.core.$strict
|
|
38488
|
-
|
|
38417
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
38418
|
+
none: "none";
|
|
38419
|
+
}>]>>;
|
|
38420
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
38489
38421
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38490
38422
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38491
38423
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38492
38424
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38493
38425
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38494
|
-
}, z.core.$strict
|
|
38426
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
38427
|
+
none: "none";
|
|
38428
|
+
}>]>>;
|
|
38495
38429
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38496
38430
|
}, z.core.$strict>>;
|
|
38497
38431
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -38505,7 +38439,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38505
38439
|
bounce: "bounce";
|
|
38506
38440
|
typewriter: "typewriter";
|
|
38507
38441
|
}>;
|
|
38508
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38509
38442
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
38510
38443
|
left: "left";
|
|
38511
38444
|
right: "right";
|
|
@@ -39685,7 +39618,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39685
39618
|
color: string;
|
|
39686
39619
|
opacity: string | number;
|
|
39687
39620
|
background?: string;
|
|
39688
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
39689
39621
|
};
|
|
39690
39622
|
style?: {
|
|
39691
39623
|
letterSpacing: string | number;
|
|
@@ -39743,12 +39675,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39743
39675
|
background?: string;
|
|
39744
39676
|
textDecoration?: "none" | "underline" | "line-through";
|
|
39745
39677
|
};
|
|
39746
|
-
stroke?: {
|
|
39678
|
+
stroke?: "none" | {
|
|
39747
39679
|
width: string | number;
|
|
39748
39680
|
color: string;
|
|
39749
39681
|
opacity: string | number;
|
|
39750
39682
|
};
|
|
39751
|
-
shadow?: {
|
|
39683
|
+
shadow?: "none" | {
|
|
39752
39684
|
offsetX: string | number;
|
|
39753
39685
|
offsetY: string | number;
|
|
39754
39686
|
blur: string | number;
|
|
@@ -39758,7 +39690,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39758
39690
|
};
|
|
39759
39691
|
wordAnimation?: {
|
|
39760
39692
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
39761
|
-
speed: string | number;
|
|
39762
39693
|
direction?: "left" | "right" | "up" | "down";
|
|
39763
39694
|
};
|
|
39764
39695
|
} | {
|
|
@@ -40229,7 +40160,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40229
40160
|
color: string;
|
|
40230
40161
|
opacity: string | number;
|
|
40231
40162
|
background?: string;
|
|
40232
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
40233
40163
|
};
|
|
40234
40164
|
style?: {
|
|
40235
40165
|
letterSpacing: string | number;
|
|
@@ -40287,12 +40217,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40287
40217
|
background?: string;
|
|
40288
40218
|
textDecoration?: "none" | "underline" | "line-through";
|
|
40289
40219
|
};
|
|
40290
|
-
stroke?: {
|
|
40220
|
+
stroke?: "none" | {
|
|
40291
40221
|
width: string | number;
|
|
40292
40222
|
color: string;
|
|
40293
40223
|
opacity: string | number;
|
|
40294
40224
|
};
|
|
40295
|
-
shadow?: {
|
|
40225
|
+
shadow?: "none" | {
|
|
40296
40226
|
offsetX: string | number;
|
|
40297
40227
|
offsetY: string | number;
|
|
40298
40228
|
blur: string | number;
|
|
@@ -40302,7 +40232,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40302
40232
|
};
|
|
40303
40233
|
wordAnimation?: {
|
|
40304
40234
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
40305
|
-
speed: string | number;
|
|
40306
40235
|
direction?: "left" | "right" | "up" | "down";
|
|
40307
40236
|
};
|
|
40308
40237
|
} | {
|
|
@@ -41010,11 +40939,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41010
40939
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
41011
40940
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41012
40941
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
41013
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
41014
|
-
none: "none";
|
|
41015
|
-
underline: "underline";
|
|
41016
|
-
"line-through": "line-through";
|
|
41017
|
-
}>>;
|
|
41018
40942
|
}, z.core.$strict>>;
|
|
41019
40943
|
style: z.ZodOptional<z.ZodObject<{
|
|
41020
40944
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -41095,18 +41019,22 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41095
41019
|
"line-through": "line-through";
|
|
41096
41020
|
}>>;
|
|
41097
41021
|
}, z.core.$strict>>;
|
|
41098
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
41022
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
41099
41023
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41100
41024
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
41101
41025
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41102
|
-
}, z.core.$strict
|
|
41103
|
-
|
|
41026
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
41027
|
+
none: "none";
|
|
41028
|
+
}>]>>;
|
|
41029
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
41104
41030
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41105
41031
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41106
41032
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41107
41033
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
41108
41034
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41109
|
-
}, z.core.$strict
|
|
41035
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
41036
|
+
none: "none";
|
|
41037
|
+
}>]>>;
|
|
41110
41038
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41111
41039
|
}, z.core.$strict>>;
|
|
41112
41040
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -41120,7 +41048,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41120
41048
|
bounce: "bounce";
|
|
41121
41049
|
typewriter: "typewriter";
|
|
41122
41050
|
}>;
|
|
41123
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41124
41051
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
41125
41052
|
left: "left";
|
|
41126
41053
|
right: "right";
|
|
@@ -42300,7 +42227,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42300
42227
|
color: string;
|
|
42301
42228
|
opacity: string | number;
|
|
42302
42229
|
background?: string;
|
|
42303
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
42304
42230
|
};
|
|
42305
42231
|
style?: {
|
|
42306
42232
|
letterSpacing: string | number;
|
|
@@ -42358,12 +42284,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42358
42284
|
background?: string;
|
|
42359
42285
|
textDecoration?: "none" | "underline" | "line-through";
|
|
42360
42286
|
};
|
|
42361
|
-
stroke?: {
|
|
42287
|
+
stroke?: "none" | {
|
|
42362
42288
|
width: string | number;
|
|
42363
42289
|
color: string;
|
|
42364
42290
|
opacity: string | number;
|
|
42365
42291
|
};
|
|
42366
|
-
shadow?: {
|
|
42292
|
+
shadow?: "none" | {
|
|
42367
42293
|
offsetX: string | number;
|
|
42368
42294
|
offsetY: string | number;
|
|
42369
42295
|
blur: string | number;
|
|
@@ -42373,7 +42299,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42373
42299
|
};
|
|
42374
42300
|
wordAnimation?: {
|
|
42375
42301
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
42376
|
-
speed: string | number;
|
|
42377
42302
|
direction?: "left" | "right" | "up" | "down";
|
|
42378
42303
|
};
|
|
42379
42304
|
} | {
|
|
@@ -42844,7 +42769,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42844
42769
|
color: string;
|
|
42845
42770
|
opacity: string | number;
|
|
42846
42771
|
background?: string;
|
|
42847
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
42848
42772
|
};
|
|
42849
42773
|
style?: {
|
|
42850
42774
|
letterSpacing: string | number;
|
|
@@ -42902,12 +42826,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42902
42826
|
background?: string;
|
|
42903
42827
|
textDecoration?: "none" | "underline" | "line-through";
|
|
42904
42828
|
};
|
|
42905
|
-
stroke?: {
|
|
42829
|
+
stroke?: "none" | {
|
|
42906
42830
|
width: string | number;
|
|
42907
42831
|
color: string;
|
|
42908
42832
|
opacity: string | number;
|
|
42909
42833
|
};
|
|
42910
|
-
shadow?: {
|
|
42834
|
+
shadow?: "none" | {
|
|
42911
42835
|
offsetX: string | number;
|
|
42912
42836
|
offsetY: string | number;
|
|
42913
42837
|
blur: string | number;
|
|
@@ -42917,7 +42841,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42917
42841
|
};
|
|
42918
42842
|
wordAnimation?: {
|
|
42919
42843
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
42920
|
-
speed: string | number;
|
|
42921
42844
|
direction?: "left" | "right" | "up" | "down";
|
|
42922
42845
|
};
|
|
42923
42846
|
} | {
|
|
@@ -43619,11 +43542,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43619
43542
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43620
43543
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43621
43544
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
43622
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
43623
|
-
none: "none";
|
|
43624
|
-
underline: "underline";
|
|
43625
|
-
"line-through": "line-through";
|
|
43626
|
-
}>>;
|
|
43627
43545
|
}, z.core.$strict>>;
|
|
43628
43546
|
style: z.ZodOptional<z.ZodObject<{
|
|
43629
43547
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -43704,18 +43622,22 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43704
43622
|
"line-through": "line-through";
|
|
43705
43623
|
}>>;
|
|
43706
43624
|
}, z.core.$strict>>;
|
|
43707
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
43625
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
43708
43626
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43709
43627
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43710
43628
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43711
|
-
}, z.core.$strict
|
|
43712
|
-
|
|
43629
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
43630
|
+
none: "none";
|
|
43631
|
+
}>]>>;
|
|
43632
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
43713
43633
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43714
43634
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43715
43635
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43716
43636
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43717
43637
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43718
|
-
}, z.core.$strict
|
|
43638
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
43639
|
+
none: "none";
|
|
43640
|
+
}>]>>;
|
|
43719
43641
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43720
43642
|
}, z.core.$strict>>;
|
|
43721
43643
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -43729,7 +43651,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43729
43651
|
bounce: "bounce";
|
|
43730
43652
|
typewriter: "typewriter";
|
|
43731
43653
|
}>;
|
|
43732
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43733
43654
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
43734
43655
|
left: "left";
|
|
43735
43656
|
right: "right";
|
|
@@ -44909,7 +44830,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44909
44830
|
color: string;
|
|
44910
44831
|
opacity: string | number;
|
|
44911
44832
|
background?: string;
|
|
44912
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
44913
44833
|
};
|
|
44914
44834
|
style?: {
|
|
44915
44835
|
letterSpacing: string | number;
|
|
@@ -44967,12 +44887,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44967
44887
|
background?: string;
|
|
44968
44888
|
textDecoration?: "none" | "underline" | "line-through";
|
|
44969
44889
|
};
|
|
44970
|
-
stroke?: {
|
|
44890
|
+
stroke?: "none" | {
|
|
44971
44891
|
width: string | number;
|
|
44972
44892
|
color: string;
|
|
44973
44893
|
opacity: string | number;
|
|
44974
44894
|
};
|
|
44975
|
-
shadow?: {
|
|
44895
|
+
shadow?: "none" | {
|
|
44976
44896
|
offsetX: string | number;
|
|
44977
44897
|
offsetY: string | number;
|
|
44978
44898
|
blur: string | number;
|
|
@@ -44982,7 +44902,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44982
44902
|
};
|
|
44983
44903
|
wordAnimation?: {
|
|
44984
44904
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
44985
|
-
speed: string | number;
|
|
44986
44905
|
direction?: "left" | "right" | "up" | "down";
|
|
44987
44906
|
};
|
|
44988
44907
|
} | {
|
|
@@ -45453,7 +45372,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45453
45372
|
color: string;
|
|
45454
45373
|
opacity: string | number;
|
|
45455
45374
|
background?: string;
|
|
45456
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
45457
45375
|
};
|
|
45458
45376
|
style?: {
|
|
45459
45377
|
letterSpacing: string | number;
|
|
@@ -45511,12 +45429,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45511
45429
|
background?: string;
|
|
45512
45430
|
textDecoration?: "none" | "underline" | "line-through";
|
|
45513
45431
|
};
|
|
45514
|
-
stroke?: {
|
|
45432
|
+
stroke?: "none" | {
|
|
45515
45433
|
width: string | number;
|
|
45516
45434
|
color: string;
|
|
45517
45435
|
opacity: string | number;
|
|
45518
45436
|
};
|
|
45519
|
-
shadow?: {
|
|
45437
|
+
shadow?: "none" | {
|
|
45520
45438
|
offsetX: string | number;
|
|
45521
45439
|
offsetY: string | number;
|
|
45522
45440
|
blur: string | number;
|
|
@@ -45526,7 +45444,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45526
45444
|
};
|
|
45527
45445
|
wordAnimation?: {
|
|
45528
45446
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
45529
|
-
speed: string | number;
|
|
45530
45447
|
direction?: "left" | "right" | "up" | "down";
|
|
45531
45448
|
};
|
|
45532
45449
|
} | {
|
|
@@ -46234,11 +46151,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46234
46151
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
46235
46152
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46236
46153
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
46237
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
46238
|
-
none: "none";
|
|
46239
|
-
underline: "underline";
|
|
46240
|
-
"line-through": "line-through";
|
|
46241
|
-
}>>;
|
|
46242
46154
|
}, z.core.$strict>>;
|
|
46243
46155
|
style: z.ZodOptional<z.ZodObject<{
|
|
46244
46156
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -46319,18 +46231,22 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46319
46231
|
"line-through": "line-through";
|
|
46320
46232
|
}>>;
|
|
46321
46233
|
}, z.core.$strict>>;
|
|
46322
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
46234
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
46323
46235
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46324
46236
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
46325
46237
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46326
|
-
}, z.core.$strict
|
|
46327
|
-
|
|
46238
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
46239
|
+
none: "none";
|
|
46240
|
+
}>]>>;
|
|
46241
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
46328
46242
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46329
46243
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46330
46244
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46331
46245
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
46332
46246
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46333
|
-
}, z.core.$strict
|
|
46247
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
46248
|
+
none: "none";
|
|
46249
|
+
}>]>>;
|
|
46334
46250
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46335
46251
|
}, z.core.$strict>>;
|
|
46336
46252
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -46344,7 +46260,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46344
46260
|
bounce: "bounce";
|
|
46345
46261
|
typewriter: "typewriter";
|
|
46346
46262
|
}>;
|
|
46347
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46348
46263
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
46349
46264
|
left: "left";
|
|
46350
46265
|
right: "right";
|
|
@@ -47524,7 +47439,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47524
47439
|
color: string;
|
|
47525
47440
|
opacity: string | number;
|
|
47526
47441
|
background?: string;
|
|
47527
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
47528
47442
|
};
|
|
47529
47443
|
style?: {
|
|
47530
47444
|
letterSpacing: string | number;
|
|
@@ -47582,12 +47496,12 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47582
47496
|
background?: string;
|
|
47583
47497
|
textDecoration?: "none" | "underline" | "line-through";
|
|
47584
47498
|
};
|
|
47585
|
-
stroke?: {
|
|
47499
|
+
stroke?: "none" | {
|
|
47586
47500
|
width: string | number;
|
|
47587
47501
|
color: string;
|
|
47588
47502
|
opacity: string | number;
|
|
47589
47503
|
};
|
|
47590
|
-
shadow?: {
|
|
47504
|
+
shadow?: "none" | {
|
|
47591
47505
|
offsetX: string | number;
|
|
47592
47506
|
offsetY: string | number;
|
|
47593
47507
|
blur: string | number;
|
|
@@ -47597,7 +47511,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47597
47511
|
};
|
|
47598
47512
|
wordAnimation?: {
|
|
47599
47513
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
47600
|
-
speed: string | number;
|
|
47601
47514
|
direction?: "left" | "right" | "up" | "down";
|
|
47602
47515
|
};
|
|
47603
47516
|
} | {
|
|
@@ -48068,7 +47981,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48068
47981
|
color: string;
|
|
48069
47982
|
opacity: string | number;
|
|
48070
47983
|
background?: string;
|
|
48071
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
48072
47984
|
};
|
|
48073
47985
|
style?: {
|
|
48074
47986
|
letterSpacing: string | number;
|
|
@@ -48126,12 +48038,12 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48126
48038
|
background?: string;
|
|
48127
48039
|
textDecoration?: "none" | "underline" | "line-through";
|
|
48128
48040
|
};
|
|
48129
|
-
stroke?: {
|
|
48041
|
+
stroke?: "none" | {
|
|
48130
48042
|
width: string | number;
|
|
48131
48043
|
color: string;
|
|
48132
48044
|
opacity: string | number;
|
|
48133
48045
|
};
|
|
48134
|
-
shadow?: {
|
|
48046
|
+
shadow?: "none" | {
|
|
48135
48047
|
offsetX: string | number;
|
|
48136
48048
|
offsetY: string | number;
|
|
48137
48049
|
blur: string | number;
|
|
@@ -48141,7 +48053,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48141
48053
|
};
|
|
48142
48054
|
wordAnimation?: {
|
|
48143
48055
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
48144
|
-
speed: string | number;
|
|
48145
48056
|
direction?: "left" | "right" | "up" | "down";
|
|
48146
48057
|
};
|
|
48147
48058
|
} | {
|
|
@@ -48847,11 +48758,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48847
48758
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48848
48759
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48849
48760
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
48850
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
48851
|
-
none: "none";
|
|
48852
|
-
underline: "underline";
|
|
48853
|
-
"line-through": "line-through";
|
|
48854
|
-
}>>;
|
|
48855
48761
|
}, z.core.$strict>>;
|
|
48856
48762
|
style: z.ZodOptional<z.ZodObject<{
|
|
48857
48763
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -48932,18 +48838,22 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48932
48838
|
"line-through": "line-through";
|
|
48933
48839
|
}>>;
|
|
48934
48840
|
}, z.core.$strict>>;
|
|
48935
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
48841
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
48936
48842
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48937
48843
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48938
48844
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48939
|
-
}, z.core.$strict
|
|
48940
|
-
|
|
48845
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
48846
|
+
none: "none";
|
|
48847
|
+
}>]>>;
|
|
48848
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
48941
48849
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48942
48850
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48943
48851
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48944
48852
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48945
48853
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48946
|
-
}, z.core.$strict
|
|
48854
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
48855
|
+
none: "none";
|
|
48856
|
+
}>]>>;
|
|
48947
48857
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48948
48858
|
}, z.core.$strict>>;
|
|
48949
48859
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -48957,7 +48867,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48957
48867
|
bounce: "bounce";
|
|
48958
48868
|
typewriter: "typewriter";
|
|
48959
48869
|
}>;
|
|
48960
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48961
48870
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
48962
48871
|
left: "left";
|
|
48963
48872
|
right: "right";
|
|
@@ -50137,7 +50046,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50137
50046
|
color: string;
|
|
50138
50047
|
opacity: string | number;
|
|
50139
50048
|
background?: string;
|
|
50140
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
50141
50049
|
};
|
|
50142
50050
|
style?: {
|
|
50143
50051
|
letterSpacing: string | number;
|
|
@@ -50195,12 +50103,12 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50195
50103
|
background?: string;
|
|
50196
50104
|
textDecoration?: "none" | "underline" | "line-through";
|
|
50197
50105
|
};
|
|
50198
|
-
stroke?: {
|
|
50106
|
+
stroke?: "none" | {
|
|
50199
50107
|
width: string | number;
|
|
50200
50108
|
color: string;
|
|
50201
50109
|
opacity: string | number;
|
|
50202
50110
|
};
|
|
50203
|
-
shadow?: {
|
|
50111
|
+
shadow?: "none" | {
|
|
50204
50112
|
offsetX: string | number;
|
|
50205
50113
|
offsetY: string | number;
|
|
50206
50114
|
blur: string | number;
|
|
@@ -50210,7 +50118,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50210
50118
|
};
|
|
50211
50119
|
wordAnimation?: {
|
|
50212
50120
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
50213
|
-
speed: string | number;
|
|
50214
50121
|
direction?: "left" | "right" | "up" | "down";
|
|
50215
50122
|
};
|
|
50216
50123
|
} | {
|
|
@@ -50681,7 +50588,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50681
50588
|
color: string;
|
|
50682
50589
|
opacity: string | number;
|
|
50683
50590
|
background?: string;
|
|
50684
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
50685
50591
|
};
|
|
50686
50592
|
style?: {
|
|
50687
50593
|
letterSpacing: string | number;
|
|
@@ -50739,12 +50645,12 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50739
50645
|
background?: string;
|
|
50740
50646
|
textDecoration?: "none" | "underline" | "line-through";
|
|
50741
50647
|
};
|
|
50742
|
-
stroke?: {
|
|
50648
|
+
stroke?: "none" | {
|
|
50743
50649
|
width: string | number;
|
|
50744
50650
|
color: string;
|
|
50745
50651
|
opacity: string | number;
|
|
50746
50652
|
};
|
|
50747
|
-
shadow?: {
|
|
50653
|
+
shadow?: "none" | {
|
|
50748
50654
|
offsetX: string | number;
|
|
50749
50655
|
offsetY: string | number;
|
|
50750
50656
|
blur: string | number;
|
|
@@ -50754,7 +50660,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50754
50660
|
};
|
|
50755
50661
|
wordAnimation?: {
|
|
50756
50662
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
50757
|
-
speed: string | number;
|
|
50758
50663
|
direction?: "left" | "right" | "up" | "down";
|
|
50759
50664
|
};
|
|
50760
50665
|
} | {
|
|
@@ -51458,11 +51363,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51458
51363
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51459
51364
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51460
51365
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
51461
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
51462
|
-
none: "none";
|
|
51463
|
-
underline: "underline";
|
|
51464
|
-
"line-through": "line-through";
|
|
51465
|
-
}>>;
|
|
51466
51366
|
}, z.core.$strict>>;
|
|
51467
51367
|
style: z.ZodOptional<z.ZodObject<{
|
|
51468
51368
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -51543,18 +51443,22 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51543
51443
|
"line-through": "line-through";
|
|
51544
51444
|
}>>;
|
|
51545
51445
|
}, z.core.$strict>>;
|
|
51546
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
51446
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
51547
51447
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51548
51448
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51549
51449
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51550
|
-
}, z.core.$strict
|
|
51551
|
-
|
|
51450
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
51451
|
+
none: "none";
|
|
51452
|
+
}>]>>;
|
|
51453
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
51552
51454
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51553
51455
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51554
51456
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51555
51457
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51556
51458
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51557
|
-
}, z.core.$strict
|
|
51459
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
51460
|
+
none: "none";
|
|
51461
|
+
}>]>>;
|
|
51558
51462
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51559
51463
|
}, z.core.$strict>>;
|
|
51560
51464
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -51568,7 +51472,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51568
51472
|
bounce: "bounce";
|
|
51569
51473
|
typewriter: "typewriter";
|
|
51570
51474
|
}>;
|
|
51571
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51572
51475
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
51573
51476
|
left: "left";
|
|
51574
51477
|
right: "right";
|
|
@@ -52748,7 +52651,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52748
52651
|
color: string;
|
|
52749
52652
|
opacity: string | number;
|
|
52750
52653
|
background?: string;
|
|
52751
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
52752
52654
|
};
|
|
52753
52655
|
style?: {
|
|
52754
52656
|
letterSpacing: string | number;
|
|
@@ -52806,12 +52708,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52806
52708
|
background?: string;
|
|
52807
52709
|
textDecoration?: "none" | "underline" | "line-through";
|
|
52808
52710
|
};
|
|
52809
|
-
stroke?: {
|
|
52711
|
+
stroke?: "none" | {
|
|
52810
52712
|
width: string | number;
|
|
52811
52713
|
color: string;
|
|
52812
52714
|
opacity: string | number;
|
|
52813
52715
|
};
|
|
52814
|
-
shadow?: {
|
|
52716
|
+
shadow?: "none" | {
|
|
52815
52717
|
offsetX: string | number;
|
|
52816
52718
|
offsetY: string | number;
|
|
52817
52719
|
blur: string | number;
|
|
@@ -52821,7 +52723,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52821
52723
|
};
|
|
52822
52724
|
wordAnimation?: {
|
|
52823
52725
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
52824
|
-
speed: string | number;
|
|
52825
52726
|
direction?: "left" | "right" | "up" | "down";
|
|
52826
52727
|
};
|
|
52827
52728
|
} | {
|
|
@@ -53292,7 +53193,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53292
53193
|
color: string;
|
|
53293
53194
|
opacity: string | number;
|
|
53294
53195
|
background?: string;
|
|
53295
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
53296
53196
|
};
|
|
53297
53197
|
style?: {
|
|
53298
53198
|
letterSpacing: string | number;
|
|
@@ -53350,12 +53250,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53350
53250
|
background?: string;
|
|
53351
53251
|
textDecoration?: "none" | "underline" | "line-through";
|
|
53352
53252
|
};
|
|
53353
|
-
stroke?: {
|
|
53253
|
+
stroke?: "none" | {
|
|
53354
53254
|
width: string | number;
|
|
53355
53255
|
color: string;
|
|
53356
53256
|
opacity: string | number;
|
|
53357
53257
|
};
|
|
53358
|
-
shadow?: {
|
|
53258
|
+
shadow?: "none" | {
|
|
53359
53259
|
offsetX: string | number;
|
|
53360
53260
|
offsetY: string | number;
|
|
53361
53261
|
blur: string | number;
|
|
@@ -53365,7 +53265,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53365
53265
|
};
|
|
53366
53266
|
wordAnimation?: {
|
|
53367
53267
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
53368
|
-
speed: string | number;
|
|
53369
53268
|
direction?: "left" | "right" | "up" | "down";
|
|
53370
53269
|
};
|
|
53371
53270
|
} | {
|
|
@@ -54065,11 +53964,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54065
53964
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
54066
53965
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54067
53966
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
54068
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
54069
|
-
none: "none";
|
|
54070
|
-
underline: "underline";
|
|
54071
|
-
"line-through": "line-through";
|
|
54072
|
-
}>>;
|
|
54073
53967
|
}, z.core.$strict>>;
|
|
54074
53968
|
style: z.ZodOptional<z.ZodObject<{
|
|
54075
53969
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -54150,18 +54044,22 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54150
54044
|
"line-through": "line-through";
|
|
54151
54045
|
}>>;
|
|
54152
54046
|
}, z.core.$strict>>;
|
|
54153
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
54047
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
54154
54048
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54155
54049
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
54156
54050
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54157
|
-
}, z.core.$strict
|
|
54158
|
-
|
|
54051
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
54052
|
+
none: "none";
|
|
54053
|
+
}>]>>;
|
|
54054
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
54159
54055
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54160
54056
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54161
54057
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54162
54058
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
54163
54059
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54164
|
-
}, z.core.$strict
|
|
54060
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
54061
|
+
none: "none";
|
|
54062
|
+
}>]>>;
|
|
54165
54063
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54166
54064
|
}, z.core.$strict>>;
|
|
54167
54065
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -54175,7 +54073,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54175
54073
|
bounce: "bounce";
|
|
54176
54074
|
typewriter: "typewriter";
|
|
54177
54075
|
}>;
|
|
54178
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54179
54076
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
54180
54077
|
left: "left";
|
|
54181
54078
|
right: "right";
|
|
@@ -55355,7 +55252,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55355
55252
|
color: string;
|
|
55356
55253
|
opacity: string | number;
|
|
55357
55254
|
background?: string;
|
|
55358
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
55359
55255
|
};
|
|
55360
55256
|
style?: {
|
|
55361
55257
|
letterSpacing: string | number;
|
|
@@ -55413,12 +55309,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55413
55309
|
background?: string;
|
|
55414
55310
|
textDecoration?: "none" | "underline" | "line-through";
|
|
55415
55311
|
};
|
|
55416
|
-
stroke?: {
|
|
55312
|
+
stroke?: "none" | {
|
|
55417
55313
|
width: string | number;
|
|
55418
55314
|
color: string;
|
|
55419
55315
|
opacity: string | number;
|
|
55420
55316
|
};
|
|
55421
|
-
shadow?: {
|
|
55317
|
+
shadow?: "none" | {
|
|
55422
55318
|
offsetX: string | number;
|
|
55423
55319
|
offsetY: string | number;
|
|
55424
55320
|
blur: string | number;
|
|
@@ -55428,7 +55324,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55428
55324
|
};
|
|
55429
55325
|
wordAnimation?: {
|
|
55430
55326
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
55431
|
-
speed: string | number;
|
|
55432
55327
|
direction?: "left" | "right" | "up" | "down";
|
|
55433
55328
|
};
|
|
55434
55329
|
} | {
|
|
@@ -55899,7 +55794,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55899
55794
|
color: string;
|
|
55900
55795
|
opacity: string | number;
|
|
55901
55796
|
background?: string;
|
|
55902
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
55903
55797
|
};
|
|
55904
55798
|
style?: {
|
|
55905
55799
|
letterSpacing: string | number;
|
|
@@ -55957,12 +55851,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55957
55851
|
background?: string;
|
|
55958
55852
|
textDecoration?: "none" | "underline" | "line-through";
|
|
55959
55853
|
};
|
|
55960
|
-
stroke?: {
|
|
55854
|
+
stroke?: "none" | {
|
|
55961
55855
|
width: string | number;
|
|
55962
55856
|
color: string;
|
|
55963
55857
|
opacity: string | number;
|
|
55964
55858
|
};
|
|
55965
|
-
shadow?: {
|
|
55859
|
+
shadow?: "none" | {
|
|
55966
55860
|
offsetX: string | number;
|
|
55967
55861
|
offsetY: string | number;
|
|
55968
55862
|
blur: string | number;
|
|
@@ -55972,7 +55866,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55972
55866
|
};
|
|
55973
55867
|
wordAnimation?: {
|
|
55974
55868
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
55975
|
-
speed: string | number;
|
|
55976
55869
|
direction?: "left" | "right" | "up" | "down";
|
|
55977
55870
|
};
|
|
55978
55871
|
} | {
|
|
@@ -56671,11 +56564,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56671
56564
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56672
56565
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56673
56566
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56674
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
56675
|
-
none: "none";
|
|
56676
|
-
underline: "underline";
|
|
56677
|
-
"line-through": "line-through";
|
|
56678
|
-
}>>;
|
|
56679
56567
|
}, z.core.$strict>>;
|
|
56680
56568
|
style: z.ZodOptional<z.ZodObject<{
|
|
56681
56569
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -56756,18 +56644,22 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56756
56644
|
"line-through": "line-through";
|
|
56757
56645
|
}>>;
|
|
56758
56646
|
}, z.core.$strict>>;
|
|
56759
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
56647
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
56760
56648
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56761
56649
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56762
56650
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56763
|
-
}, z.core.$strict
|
|
56764
|
-
|
|
56651
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
56652
|
+
none: "none";
|
|
56653
|
+
}>]>>;
|
|
56654
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
56765
56655
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56766
56656
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56767
56657
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56768
56658
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56769
56659
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56770
|
-
}, z.core.$strict
|
|
56660
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
56661
|
+
none: "none";
|
|
56662
|
+
}>]>>;
|
|
56771
56663
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56772
56664
|
}, z.core.$strict>>;
|
|
56773
56665
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -56781,7 +56673,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56781
56673
|
bounce: "bounce";
|
|
56782
56674
|
typewriter: "typewriter";
|
|
56783
56675
|
}>;
|
|
56784
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56785
56676
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
56786
56677
|
left: "left";
|
|
56787
56678
|
right: "right";
|
|
@@ -57961,7 +57852,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57961
57852
|
color: string;
|
|
57962
57853
|
opacity: string | number;
|
|
57963
57854
|
background?: string;
|
|
57964
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
57965
57855
|
};
|
|
57966
57856
|
style?: {
|
|
57967
57857
|
letterSpacing: string | number;
|
|
@@ -58019,12 +57909,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58019
57909
|
background?: string;
|
|
58020
57910
|
textDecoration?: "none" | "underline" | "line-through";
|
|
58021
57911
|
};
|
|
58022
|
-
stroke?: {
|
|
57912
|
+
stroke?: "none" | {
|
|
58023
57913
|
width: string | number;
|
|
58024
57914
|
color: string;
|
|
58025
57915
|
opacity: string | number;
|
|
58026
57916
|
};
|
|
58027
|
-
shadow?: {
|
|
57917
|
+
shadow?: "none" | {
|
|
58028
57918
|
offsetX: string | number;
|
|
58029
57919
|
offsetY: string | number;
|
|
58030
57920
|
blur: string | number;
|
|
@@ -58034,7 +57924,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58034
57924
|
};
|
|
58035
57925
|
wordAnimation?: {
|
|
58036
57926
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
58037
|
-
speed: string | number;
|
|
58038
57927
|
direction?: "left" | "right" | "up" | "down";
|
|
58039
57928
|
};
|
|
58040
57929
|
} | {
|
|
@@ -58505,7 +58394,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58505
58394
|
color: string;
|
|
58506
58395
|
opacity: string | number;
|
|
58507
58396
|
background?: string;
|
|
58508
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
58509
58397
|
};
|
|
58510
58398
|
style?: {
|
|
58511
58399
|
letterSpacing: string | number;
|
|
@@ -58563,12 +58451,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58563
58451
|
background?: string;
|
|
58564
58452
|
textDecoration?: "none" | "underline" | "line-through";
|
|
58565
58453
|
};
|
|
58566
|
-
stroke?: {
|
|
58454
|
+
stroke?: "none" | {
|
|
58567
58455
|
width: string | number;
|
|
58568
58456
|
color: string;
|
|
58569
58457
|
opacity: string | number;
|
|
58570
58458
|
};
|
|
58571
|
-
shadow?: {
|
|
58459
|
+
shadow?: "none" | {
|
|
58572
58460
|
offsetX: string | number;
|
|
58573
58461
|
offsetY: string | number;
|
|
58574
58462
|
blur: string | number;
|
|
@@ -58578,7 +58466,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58578
58466
|
};
|
|
58579
58467
|
wordAnimation?: {
|
|
58580
58468
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
58581
|
-
speed: string | number;
|
|
58582
58469
|
direction?: "left" | "right" | "up" | "down";
|
|
58583
58470
|
};
|
|
58584
58471
|
} | {
|
|
@@ -59324,11 +59211,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59324
59211
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
59325
59212
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59326
59213
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
59327
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
59328
|
-
none: "none";
|
|
59329
|
-
underline: "underline";
|
|
59330
|
-
"line-through": "line-through";
|
|
59331
|
-
}>>;
|
|
59332
59214
|
}, z.core.$strict>>;
|
|
59333
59215
|
style: z.ZodOptional<z.ZodObject<{
|
|
59334
59216
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -59409,18 +59291,22 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59409
59291
|
"line-through": "line-through";
|
|
59410
59292
|
}>>;
|
|
59411
59293
|
}, z.core.$strict>>;
|
|
59412
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
59294
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
59413
59295
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59414
59296
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
59415
59297
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59416
|
-
}, z.core.$strict
|
|
59417
|
-
|
|
59298
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
59299
|
+
none: "none";
|
|
59300
|
+
}>]>>;
|
|
59301
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
59418
59302
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59419
59303
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59420
59304
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59421
59305
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
59422
59306
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59423
|
-
}, z.core.$strict
|
|
59307
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
59308
|
+
none: "none";
|
|
59309
|
+
}>]>>;
|
|
59424
59310
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59425
59311
|
}, z.core.$strict>>;
|
|
59426
59312
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -59434,7 +59320,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59434
59320
|
bounce: "bounce";
|
|
59435
59321
|
typewriter: "typewriter";
|
|
59436
59322
|
}>;
|
|
59437
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59438
59323
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
59439
59324
|
left: "left";
|
|
59440
59325
|
right: "right";
|
|
@@ -60614,7 +60499,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60614
60499
|
color: string;
|
|
60615
60500
|
opacity: string | number;
|
|
60616
60501
|
background?: string;
|
|
60617
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
60618
60502
|
};
|
|
60619
60503
|
style?: {
|
|
60620
60504
|
letterSpacing: string | number;
|
|
@@ -60672,12 +60556,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60672
60556
|
background?: string;
|
|
60673
60557
|
textDecoration?: "none" | "underline" | "line-through";
|
|
60674
60558
|
};
|
|
60675
|
-
stroke?: {
|
|
60559
|
+
stroke?: "none" | {
|
|
60676
60560
|
width: string | number;
|
|
60677
60561
|
color: string;
|
|
60678
60562
|
opacity: string | number;
|
|
60679
60563
|
};
|
|
60680
|
-
shadow?: {
|
|
60564
|
+
shadow?: "none" | {
|
|
60681
60565
|
offsetX: string | number;
|
|
60682
60566
|
offsetY: string | number;
|
|
60683
60567
|
blur: string | number;
|
|
@@ -60687,7 +60571,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60687
60571
|
};
|
|
60688
60572
|
wordAnimation?: {
|
|
60689
60573
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
60690
|
-
speed: string | number;
|
|
60691
60574
|
direction?: "left" | "right" | "up" | "down";
|
|
60692
60575
|
};
|
|
60693
60576
|
} | {
|
|
@@ -61158,7 +61041,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61158
61041
|
color: string;
|
|
61159
61042
|
opacity: string | number;
|
|
61160
61043
|
background?: string;
|
|
61161
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
61162
61044
|
};
|
|
61163
61045
|
style?: {
|
|
61164
61046
|
letterSpacing: string | number;
|
|
@@ -61216,12 +61098,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61216
61098
|
background?: string;
|
|
61217
61099
|
textDecoration?: "none" | "underline" | "line-through";
|
|
61218
61100
|
};
|
|
61219
|
-
stroke?: {
|
|
61101
|
+
stroke?: "none" | {
|
|
61220
61102
|
width: string | number;
|
|
61221
61103
|
color: string;
|
|
61222
61104
|
opacity: string | number;
|
|
61223
61105
|
};
|
|
61224
|
-
shadow?: {
|
|
61106
|
+
shadow?: "none" | {
|
|
61225
61107
|
offsetX: string | number;
|
|
61226
61108
|
offsetY: string | number;
|
|
61227
61109
|
blur: string | number;
|
|
@@ -61231,7 +61113,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61231
61113
|
};
|
|
61232
61114
|
wordAnimation?: {
|
|
61233
61115
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
61234
|
-
speed: string | number;
|
|
61235
61116
|
direction?: "left" | "right" | "up" | "down";
|
|
61236
61117
|
};
|
|
61237
61118
|
} | {
|
|
@@ -61956,11 +61837,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61956
61837
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
61957
61838
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61958
61839
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
61959
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
61960
|
-
none: "none";
|
|
61961
|
-
underline: "underline";
|
|
61962
|
-
"line-through": "line-through";
|
|
61963
|
-
}>>;
|
|
61964
61840
|
}, z.core.$strict>>;
|
|
61965
61841
|
style: z.ZodOptional<z.ZodObject<{
|
|
61966
61842
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -62041,18 +61917,22 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
62041
61917
|
"line-through": "line-through";
|
|
62042
61918
|
}>>;
|
|
62043
61919
|
}, z.core.$strict>>;
|
|
62044
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
61920
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
62045
61921
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62046
61922
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
62047
61923
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62048
|
-
}, z.core.$strict
|
|
62049
|
-
|
|
61924
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
61925
|
+
none: "none";
|
|
61926
|
+
}>]>>;
|
|
61927
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
62050
61928
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62051
61929
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62052
61930
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62053
61931
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
62054
61932
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62055
|
-
}, z.core.$strict
|
|
61933
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
61934
|
+
none: "none";
|
|
61935
|
+
}>]>>;
|
|
62056
61936
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62057
61937
|
}, z.core.$strict>>;
|
|
62058
61938
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -62066,7 +61946,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
62066
61946
|
bounce: "bounce";
|
|
62067
61947
|
typewriter: "typewriter";
|
|
62068
61948
|
}>;
|
|
62069
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62070
61949
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
62071
61950
|
left: "left";
|
|
62072
61951
|
right: "right";
|
|
@@ -63246,7 +63125,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63246
63125
|
color: string;
|
|
63247
63126
|
opacity: string | number;
|
|
63248
63127
|
background?: string;
|
|
63249
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
63250
63128
|
};
|
|
63251
63129
|
style?: {
|
|
63252
63130
|
letterSpacing: string | number;
|
|
@@ -63304,12 +63182,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63304
63182
|
background?: string;
|
|
63305
63183
|
textDecoration?: "none" | "underline" | "line-through";
|
|
63306
63184
|
};
|
|
63307
|
-
stroke?: {
|
|
63185
|
+
stroke?: "none" | {
|
|
63308
63186
|
width: string | number;
|
|
63309
63187
|
color: string;
|
|
63310
63188
|
opacity: string | number;
|
|
63311
63189
|
};
|
|
63312
|
-
shadow?: {
|
|
63190
|
+
shadow?: "none" | {
|
|
63313
63191
|
offsetX: string | number;
|
|
63314
63192
|
offsetY: string | number;
|
|
63315
63193
|
blur: string | number;
|
|
@@ -63319,7 +63197,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63319
63197
|
};
|
|
63320
63198
|
wordAnimation?: {
|
|
63321
63199
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
63322
|
-
speed: string | number;
|
|
63323
63200
|
direction?: "left" | "right" | "up" | "down";
|
|
63324
63201
|
};
|
|
63325
63202
|
} | {
|
|
@@ -63790,7 +63667,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63790
63667
|
color: string;
|
|
63791
63668
|
opacity: string | number;
|
|
63792
63669
|
background?: string;
|
|
63793
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
63794
63670
|
};
|
|
63795
63671
|
style?: {
|
|
63796
63672
|
letterSpacing: string | number;
|
|
@@ -63848,12 +63724,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63848
63724
|
background?: string;
|
|
63849
63725
|
textDecoration?: "none" | "underline" | "line-through";
|
|
63850
63726
|
};
|
|
63851
|
-
stroke?: {
|
|
63727
|
+
stroke?: "none" | {
|
|
63852
63728
|
width: string | number;
|
|
63853
63729
|
color: string;
|
|
63854
63730
|
opacity: string | number;
|
|
63855
63731
|
};
|
|
63856
|
-
shadow?: {
|
|
63732
|
+
shadow?: "none" | {
|
|
63857
63733
|
offsetX: string | number;
|
|
63858
63734
|
offsetY: string | number;
|
|
63859
63735
|
blur: string | number;
|
|
@@ -63863,7 +63739,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63863
63739
|
};
|
|
63864
63740
|
wordAnimation?: {
|
|
63865
63741
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
63866
|
-
speed: string | number;
|
|
63867
63742
|
direction?: "left" | "right" | "up" | "down";
|
|
63868
63743
|
};
|
|
63869
63744
|
} | {
|
|
@@ -64603,11 +64478,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64603
64478
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64604
64479
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64605
64480
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
64606
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
64607
|
-
none: "none";
|
|
64608
|
-
underline: "underline";
|
|
64609
|
-
"line-through": "line-through";
|
|
64610
|
-
}>>;
|
|
64611
64481
|
}, z.core.$strict>>;
|
|
64612
64482
|
style: z.ZodOptional<z.ZodObject<{
|
|
64613
64483
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -64688,18 +64558,22 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64688
64558
|
"line-through": "line-through";
|
|
64689
64559
|
}>>;
|
|
64690
64560
|
}, z.core.$strict>>;
|
|
64691
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
64561
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
64692
64562
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64693
64563
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64694
64564
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64695
|
-
}, z.core.$strict
|
|
64696
|
-
|
|
64565
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
64566
|
+
none: "none";
|
|
64567
|
+
}>]>>;
|
|
64568
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
64697
64569
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64698
64570
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64699
64571
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64700
64572
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64701
64573
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64702
|
-
}, z.core.$strict
|
|
64574
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
64575
|
+
none: "none";
|
|
64576
|
+
}>]>>;
|
|
64703
64577
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64704
64578
|
}, z.core.$strict>>;
|
|
64705
64579
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -64713,7 +64587,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64713
64587
|
bounce: "bounce";
|
|
64714
64588
|
typewriter: "typewriter";
|
|
64715
64589
|
}>;
|
|
64716
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64717
64590
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
64718
64591
|
left: "left";
|
|
64719
64592
|
right: "right";
|
|
@@ -65893,7 +65766,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65893
65766
|
color: string;
|
|
65894
65767
|
opacity: string | number;
|
|
65895
65768
|
background?: string;
|
|
65896
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
65897
65769
|
};
|
|
65898
65770
|
style?: {
|
|
65899
65771
|
letterSpacing: string | number;
|
|
@@ -65951,12 +65823,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65951
65823
|
background?: string;
|
|
65952
65824
|
textDecoration?: "none" | "underline" | "line-through";
|
|
65953
65825
|
};
|
|
65954
|
-
stroke?: {
|
|
65826
|
+
stroke?: "none" | {
|
|
65955
65827
|
width: string | number;
|
|
65956
65828
|
color: string;
|
|
65957
65829
|
opacity: string | number;
|
|
65958
65830
|
};
|
|
65959
|
-
shadow?: {
|
|
65831
|
+
shadow?: "none" | {
|
|
65960
65832
|
offsetX: string | number;
|
|
65961
65833
|
offsetY: string | number;
|
|
65962
65834
|
blur: string | number;
|
|
@@ -65966,7 +65838,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65966
65838
|
};
|
|
65967
65839
|
wordAnimation?: {
|
|
65968
65840
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
65969
|
-
speed: string | number;
|
|
65970
65841
|
direction?: "left" | "right" | "up" | "down";
|
|
65971
65842
|
};
|
|
65972
65843
|
} | {
|
|
@@ -66437,7 +66308,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66437
66308
|
color: string;
|
|
66438
66309
|
opacity: string | number;
|
|
66439
66310
|
background?: string;
|
|
66440
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
66441
66311
|
};
|
|
66442
66312
|
style?: {
|
|
66443
66313
|
letterSpacing: string | number;
|
|
@@ -66495,12 +66365,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66495
66365
|
background?: string;
|
|
66496
66366
|
textDecoration?: "none" | "underline" | "line-through";
|
|
66497
66367
|
};
|
|
66498
|
-
stroke?: {
|
|
66368
|
+
stroke?: "none" | {
|
|
66499
66369
|
width: string | number;
|
|
66500
66370
|
color: string;
|
|
66501
66371
|
opacity: string | number;
|
|
66502
66372
|
};
|
|
66503
|
-
shadow?: {
|
|
66373
|
+
shadow?: "none" | {
|
|
66504
66374
|
offsetX: string | number;
|
|
66505
66375
|
offsetY: string | number;
|
|
66506
66376
|
blur: string | number;
|
|
@@ -66510,7 +66380,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66510
66380
|
};
|
|
66511
66381
|
wordAnimation?: {
|
|
66512
66382
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
66513
|
-
speed: string | number;
|
|
66514
66383
|
direction?: "left" | "right" | "up" | "down";
|
|
66515
66384
|
};
|
|
66516
66385
|
} | {
|
|
@@ -67212,11 +67081,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67212
67081
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
67213
67082
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67214
67083
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
67215
|
-
textDecoration: z.ZodOptional<z.ZodEnum<{
|
|
67216
|
-
none: "none";
|
|
67217
|
-
underline: "underline";
|
|
67218
|
-
"line-through": "line-through";
|
|
67219
|
-
}>>;
|
|
67220
67084
|
}, z.core.$strict>>;
|
|
67221
67085
|
style: z.ZodOptional<z.ZodObject<{
|
|
67222
67086
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -67297,18 +67161,22 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67297
67161
|
"line-through": "line-through";
|
|
67298
67162
|
}>>;
|
|
67299
67163
|
}, z.core.$strict>>;
|
|
67300
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
67164
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
67301
67165
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67302
67166
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
67303
67167
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67304
|
-
}, z.core.$strict
|
|
67305
|
-
|
|
67168
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
67169
|
+
none: "none";
|
|
67170
|
+
}>]>>;
|
|
67171
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
67306
67172
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67307
67173
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67308
67174
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67309
67175
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
67310
67176
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67311
|
-
}, z.core.$strict
|
|
67177
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
67178
|
+
none: "none";
|
|
67179
|
+
}>]>>;
|
|
67312
67180
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67313
67181
|
}, z.core.$strict>>;
|
|
67314
67182
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -67322,7 +67190,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67322
67190
|
bounce: "bounce";
|
|
67323
67191
|
typewriter: "typewriter";
|
|
67324
67192
|
}>;
|
|
67325
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67326
67193
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
67327
67194
|
left: "left";
|
|
67328
67195
|
right: "right";
|
|
@@ -68502,7 +68369,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68502
68369
|
color: string;
|
|
68503
68370
|
opacity: string | number;
|
|
68504
68371
|
background?: string;
|
|
68505
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
68506
68372
|
};
|
|
68507
68373
|
style?: {
|
|
68508
68374
|
letterSpacing: string | number;
|
|
@@ -68560,12 +68426,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68560
68426
|
background?: string;
|
|
68561
68427
|
textDecoration?: "none" | "underline" | "line-through";
|
|
68562
68428
|
};
|
|
68563
|
-
stroke?: {
|
|
68429
|
+
stroke?: "none" | {
|
|
68564
68430
|
width: string | number;
|
|
68565
68431
|
color: string;
|
|
68566
68432
|
opacity: string | number;
|
|
68567
68433
|
};
|
|
68568
|
-
shadow?: {
|
|
68434
|
+
shadow?: "none" | {
|
|
68569
68435
|
offsetX: string | number;
|
|
68570
68436
|
offsetY: string | number;
|
|
68571
68437
|
blur: string | number;
|
|
@@ -68575,7 +68441,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68575
68441
|
};
|
|
68576
68442
|
wordAnimation?: {
|
|
68577
68443
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
68578
|
-
speed: string | number;
|
|
68579
68444
|
direction?: "left" | "right" | "up" | "down";
|
|
68580
68445
|
};
|
|
68581
68446
|
} | {
|
|
@@ -69046,7 +68911,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
69046
68911
|
color: string;
|
|
69047
68912
|
opacity: string | number;
|
|
69048
68913
|
background?: string;
|
|
69049
|
-
textDecoration?: "none" | "underline" | "line-through";
|
|
69050
68914
|
};
|
|
69051
68915
|
style?: {
|
|
69052
68916
|
letterSpacing: string | number;
|
|
@@ -69104,12 +68968,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
69104
68968
|
background?: string;
|
|
69105
68969
|
textDecoration?: "none" | "underline" | "line-through";
|
|
69106
68970
|
};
|
|
69107
|
-
stroke?: {
|
|
68971
|
+
stroke?: "none" | {
|
|
69108
68972
|
width: string | number;
|
|
69109
68973
|
color: string;
|
|
69110
68974
|
opacity: string | number;
|
|
69111
68975
|
};
|
|
69112
|
-
shadow?: {
|
|
68976
|
+
shadow?: "none" | {
|
|
69113
68977
|
offsetX: string | number;
|
|
69114
68978
|
offsetY: string | number;
|
|
69115
68979
|
blur: string | number;
|
|
@@ -69119,7 +68983,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
69119
68983
|
};
|
|
69120
68984
|
wordAnimation?: {
|
|
69121
68985
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
69122
|
-
speed: string | number;
|
|
69123
68986
|
direction?: "left" | "right" | "up" | "down";
|
|
69124
68987
|
};
|
|
69125
68988
|
} | {
|