@shotstack/schemas 1.9.0 → 1.9.1
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 +24 -12
- package/dist/json-schema/asset.json +12 -13
- package/dist/json-schema/clip.json +12 -13
- package/dist/json-schema/edit.json +12 -13
- package/dist/json-schema/rich-caption-active.json +14 -2
- package/dist/json-schema/rich-caption-asset.json +12 -13
- package/dist/json-schema/rich-caption-word-animation.json +0 -14
- package/dist/json-schema/schemas.json +14 -16
- package/dist/json-schema/timeline.json +12 -13
- package/dist/json-schema/track.json +12 -13
- package/dist/schema.d.ts +4 -10
- package/dist/zod/zod.gen.cjs +8 -9
- package/dist/zod/zod.gen.d.ts +316 -271
- package/dist/zod/zod.gen.js +8 -9
- package/dist/zod/zod.gen.ts +8 -3
- package/package.json +1 -1
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -4700,7 +4700,6 @@ export declare const richcaptionpropertiesRichCaptionWordAnimationSchema: z.ZodO
|
|
|
4700
4700
|
bounce: "bounce";
|
|
4701
4701
|
typewriter: "typewriter";
|
|
4702
4702
|
}>;
|
|
4703
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4704
4703
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
4705
4704
|
left: "left";
|
|
4706
4705
|
right: "right";
|
|
@@ -4719,7 +4718,6 @@ export declare const richCaptionWordAnimationSchema: z.ZodObject<{
|
|
|
4719
4718
|
bounce: "bounce";
|
|
4720
4719
|
typewriter: "typewriter";
|
|
4721
4720
|
}>;
|
|
4722
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4723
4721
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
4724
4722
|
left: "left";
|
|
4725
4723
|
right: "right";
|
|
@@ -4899,18 +4897,22 @@ export declare const richcaptionpropertiesRichCaptionActiveSchema: z.ZodObject<{
|
|
|
4899
4897
|
"line-through": "line-through";
|
|
4900
4898
|
}>>;
|
|
4901
4899
|
}, z.core.$strict>>;
|
|
4902
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
4900
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4903
4901
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4904
4902
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4905
4903
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4906
|
-
}, z.core.$strict
|
|
4907
|
-
|
|
4904
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
4905
|
+
none: "none";
|
|
4906
|
+
}>]>>;
|
|
4907
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4908
4908
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4909
4909
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4910
4910
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4911
4911
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4912
4912
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4913
|
-
}, z.core.$strict
|
|
4913
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
4914
|
+
none: "none";
|
|
4915
|
+
}>]>>;
|
|
4914
4916
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4915
4917
|
}, z.core.$strict>;
|
|
4916
4918
|
export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
@@ -4924,18 +4926,22 @@ export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
|
4924
4926
|
"line-through": "line-through";
|
|
4925
4927
|
}>>;
|
|
4926
4928
|
}, z.core.$strict>>;
|
|
4927
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
4929
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4928
4930
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4929
4931
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4930
4932
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4931
|
-
}, z.core.$strict
|
|
4932
|
-
|
|
4933
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
4934
|
+
none: "none";
|
|
4935
|
+
}>]>>;
|
|
4936
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
4933
4937
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4934
4938
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4935
4939
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4936
4940
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4937
4941
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4938
|
-
}, z.core.$strict
|
|
4942
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
4943
|
+
none: "none";
|
|
4944
|
+
}>]>>;
|
|
4939
4945
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4940
4946
|
}, z.core.$strict>;
|
|
4941
4947
|
/**
|
|
@@ -5127,18 +5133,22 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5127
5133
|
"line-through": "line-through";
|
|
5128
5134
|
}>>;
|
|
5129
5135
|
}, z.core.$strict>>;
|
|
5130
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
5136
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5131
5137
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5132
5138
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5133
5139
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5134
|
-
}, z.core.$strict
|
|
5135
|
-
|
|
5140
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
5141
|
+
none: "none";
|
|
5142
|
+
}>]>>;
|
|
5143
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5136
5144
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5137
5145
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5138
5146
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5139
5147
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5140
5148
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5141
|
-
}, z.core.$strict
|
|
5149
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
5150
|
+
none: "none";
|
|
5151
|
+
}>]>>;
|
|
5142
5152
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5143
5153
|
}, z.core.$strict>>;
|
|
5144
5154
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -5152,7 +5162,6 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5152
5162
|
bounce: "bounce";
|
|
5153
5163
|
typewriter: "typewriter";
|
|
5154
5164
|
}>;
|
|
5155
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5156
5165
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
5157
5166
|
left: "left";
|
|
5158
5167
|
right: "right";
|
|
@@ -5258,18 +5267,22 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5258
5267
|
"line-through": "line-through";
|
|
5259
5268
|
}>>;
|
|
5260
5269
|
}, z.core.$strict>>;
|
|
5261
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
5270
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5262
5271
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5263
5272
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5264
5273
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5265
|
-
}, z.core.$strict
|
|
5266
|
-
|
|
5274
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
5275
|
+
none: "none";
|
|
5276
|
+
}>]>>;
|
|
5277
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
5267
5278
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5268
5279
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5269
5280
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5270
5281
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5271
5282
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5272
|
-
}, z.core.$strict
|
|
5283
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
5284
|
+
none: "none";
|
|
5285
|
+
}>]>>;
|
|
5273
5286
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5274
5287
|
}, z.core.$strict>>;
|
|
5275
5288
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -5283,7 +5296,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5283
5296
|
bounce: "bounce";
|
|
5284
5297
|
typewriter: "typewriter";
|
|
5285
5298
|
}>;
|
|
5286
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5287
5299
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
5288
5300
|
left: "left";
|
|
5289
5301
|
right: "right";
|
|
@@ -11257,18 +11269,22 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11257
11269
|
"line-through": "line-through";
|
|
11258
11270
|
}>>;
|
|
11259
11271
|
}, z.core.$strict>>;
|
|
11260
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
11272
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11261
11273
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11262
11274
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11263
11275
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11264
|
-
}, z.core.$strict
|
|
11265
|
-
|
|
11276
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
11277
|
+
none: "none";
|
|
11278
|
+
}>]>>;
|
|
11279
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11266
11280
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11267
11281
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11268
11282
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11269
11283
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11270
11284
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11271
|
-
}, z.core.$strict
|
|
11285
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
11286
|
+
none: "none";
|
|
11287
|
+
}>]>>;
|
|
11272
11288
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11273
11289
|
}, z.core.$strict>>;
|
|
11274
11290
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -11282,7 +11298,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11282
11298
|
bounce: "bounce";
|
|
11283
11299
|
typewriter: "typewriter";
|
|
11284
11300
|
}>;
|
|
11285
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11286
11301
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
11287
11302
|
left: "left";
|
|
11288
11303
|
right: "right";
|
|
@@ -12104,18 +12119,22 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12104
12119
|
"line-through": "line-through";
|
|
12105
12120
|
}>>;
|
|
12106
12121
|
}, z.core.$strict>>;
|
|
12107
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
12122
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
12108
12123
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12109
12124
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12110
12125
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12111
|
-
}, z.core.$strict
|
|
12112
|
-
|
|
12126
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
12127
|
+
none: "none";
|
|
12128
|
+
}>]>>;
|
|
12129
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
12113
12130
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12114
12131
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12115
12132
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12116
12133
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12117
12134
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12118
|
-
}, z.core.$strict
|
|
12135
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
12136
|
+
none: "none";
|
|
12137
|
+
}>]>>;
|
|
12119
12138
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12120
12139
|
}, z.core.$strict>>;
|
|
12121
12140
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -12129,7 +12148,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12129
12148
|
bounce: "bounce";
|
|
12130
12149
|
typewriter: "typewriter";
|
|
12131
12150
|
}>;
|
|
12132
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12133
12151
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
12134
12152
|
left: "left";
|
|
12135
12153
|
right: "right";
|
|
@@ -12955,18 +12973,22 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12955
12973
|
"line-through": "line-through";
|
|
12956
12974
|
}>>;
|
|
12957
12975
|
}, z.core.$strict>>;
|
|
12958
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
12976
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
12959
12977
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12960
12978
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12961
12979
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12962
|
-
}, z.core.$strict
|
|
12963
|
-
|
|
12980
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
12981
|
+
none: "none";
|
|
12982
|
+
}>]>>;
|
|
12983
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
12964
12984
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12965
12985
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12966
12986
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12967
12987
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12968
12988
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12969
|
-
}, z.core.$strict
|
|
12989
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
12990
|
+
none: "none";
|
|
12991
|
+
}>]>>;
|
|
12970
12992
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12971
12993
|
}, z.core.$strict>>;
|
|
12972
12994
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -12980,7 +13002,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12980
13002
|
bounce: "bounce";
|
|
12981
13003
|
typewriter: "typewriter";
|
|
12982
13004
|
}>;
|
|
12983
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12984
13005
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
12985
13006
|
left: "left";
|
|
12986
13007
|
right: "right";
|
|
@@ -14286,18 +14307,22 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14286
14307
|
"line-through": "line-through";
|
|
14287
14308
|
}>>;
|
|
14288
14309
|
}, z.core.$strict>>;
|
|
14289
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
14310
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
14290
14311
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14291
14312
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14292
14313
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14293
|
-
}, z.core.$strict
|
|
14294
|
-
|
|
14314
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
14315
|
+
none: "none";
|
|
14316
|
+
}>]>>;
|
|
14317
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
14295
14318
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14296
14319
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14297
14320
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14298
14321
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14299
14322
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14300
|
-
}, z.core.$strict
|
|
14323
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
14324
|
+
none: "none";
|
|
14325
|
+
}>]>>;
|
|
14301
14326
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14302
14327
|
}, z.core.$strict>>;
|
|
14303
14328
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -14311,7 +14336,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14311
14336
|
bounce: "bounce";
|
|
14312
14337
|
typewriter: "typewriter";
|
|
14313
14338
|
}>;
|
|
14314
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14315
14339
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
14316
14340
|
left: "left";
|
|
14317
14341
|
right: "right";
|
|
@@ -15621,18 +15645,22 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15621
15645
|
"line-through": "line-through";
|
|
15622
15646
|
}>>;
|
|
15623
15647
|
}, z.core.$strict>>;
|
|
15624
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
15648
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15625
15649
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15626
15650
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15627
15651
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15628
|
-
}, z.core.$strict
|
|
15629
|
-
|
|
15652
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
15653
|
+
none: "none";
|
|
15654
|
+
}>]>>;
|
|
15655
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
15630
15656
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15631
15657
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15632
15658
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15633
15659
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15634
15660
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15635
|
-
}, z.core.$strict
|
|
15661
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
15662
|
+
none: "none";
|
|
15663
|
+
}>]>>;
|
|
15636
15664
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15637
15665
|
}, z.core.$strict>>;
|
|
15638
15666
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -15646,7 +15674,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15646
15674
|
bounce: "bounce";
|
|
15647
15675
|
typewriter: "typewriter";
|
|
15648
15676
|
}>;
|
|
15649
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15650
15677
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
15651
15678
|
left: "left";
|
|
15652
15679
|
right: "right";
|
|
@@ -16884,12 +16911,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16884
16911
|
background?: string;
|
|
16885
16912
|
textDecoration?: "none" | "underline" | "line-through";
|
|
16886
16913
|
};
|
|
16887
|
-
stroke?: {
|
|
16914
|
+
stroke?: "none" | {
|
|
16888
16915
|
width: string | number;
|
|
16889
16916
|
color: string;
|
|
16890
16917
|
opacity: string | number;
|
|
16891
16918
|
};
|
|
16892
|
-
shadow?: {
|
|
16919
|
+
shadow?: "none" | {
|
|
16893
16920
|
offsetX: string | number;
|
|
16894
16921
|
offsetY: string | number;
|
|
16895
16922
|
blur: string | number;
|
|
@@ -16899,7 +16926,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16899
16926
|
};
|
|
16900
16927
|
wordAnimation?: {
|
|
16901
16928
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
16902
|
-
speed: string | number;
|
|
16903
16929
|
direction?: "left" | "right" | "up" | "down";
|
|
16904
16930
|
};
|
|
16905
16931
|
} | {
|
|
@@ -17428,12 +17454,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17428
17454
|
background?: string;
|
|
17429
17455
|
textDecoration?: "none" | "underline" | "line-through";
|
|
17430
17456
|
};
|
|
17431
|
-
stroke?: {
|
|
17457
|
+
stroke?: "none" | {
|
|
17432
17458
|
width: string | number;
|
|
17433
17459
|
color: string;
|
|
17434
17460
|
opacity: string | number;
|
|
17435
17461
|
};
|
|
17436
|
-
shadow?: {
|
|
17462
|
+
shadow?: "none" | {
|
|
17437
17463
|
offsetX: string | number;
|
|
17438
17464
|
offsetY: string | number;
|
|
17439
17465
|
blur: string | number;
|
|
@@ -17443,7 +17469,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17443
17469
|
};
|
|
17444
17470
|
wordAnimation?: {
|
|
17445
17471
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
17446
|
-
speed: string | number;
|
|
17447
17472
|
direction?: "left" | "right" | "up" | "down";
|
|
17448
17473
|
};
|
|
17449
17474
|
} | {
|
|
@@ -18043,18 +18068,22 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
18043
18068
|
"line-through": "line-through";
|
|
18044
18069
|
}>>;
|
|
18045
18070
|
}, z.core.$strict>>;
|
|
18046
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
18071
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
18047
18072
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18048
18073
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
18049
18074
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18050
|
-
}, z.core.$strict
|
|
18051
|
-
|
|
18075
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
18076
|
+
none: "none";
|
|
18077
|
+
}>]>>;
|
|
18078
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
18052
18079
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18053
18080
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18054
18081
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18055
18082
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
18056
18083
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18057
|
-
}, z.core.$strict
|
|
18084
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
18085
|
+
none: "none";
|
|
18086
|
+
}>]>>;
|
|
18058
18087
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18059
18088
|
}, z.core.$strict>>;
|
|
18060
18089
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -18068,7 +18097,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
18068
18097
|
bounce: "bounce";
|
|
18069
18098
|
typewriter: "typewriter";
|
|
18070
18099
|
}>;
|
|
18071
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18072
18100
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
18073
18101
|
left: "left";
|
|
18074
18102
|
right: "right";
|
|
@@ -19306,12 +19334,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19306
19334
|
background?: string;
|
|
19307
19335
|
textDecoration?: "none" | "underline" | "line-through";
|
|
19308
19336
|
};
|
|
19309
|
-
stroke?: {
|
|
19337
|
+
stroke?: "none" | {
|
|
19310
19338
|
width: string | number;
|
|
19311
19339
|
color: string;
|
|
19312
19340
|
opacity: string | number;
|
|
19313
19341
|
};
|
|
19314
|
-
shadow?: {
|
|
19342
|
+
shadow?: "none" | {
|
|
19315
19343
|
offsetX: string | number;
|
|
19316
19344
|
offsetY: string | number;
|
|
19317
19345
|
blur: string | number;
|
|
@@ -19321,7 +19349,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19321
19349
|
};
|
|
19322
19350
|
wordAnimation?: {
|
|
19323
19351
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
19324
|
-
speed: string | number;
|
|
19325
19352
|
direction?: "left" | "right" | "up" | "down";
|
|
19326
19353
|
};
|
|
19327
19354
|
} | {
|
|
@@ -19850,12 +19877,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19850
19877
|
background?: string;
|
|
19851
19878
|
textDecoration?: "none" | "underline" | "line-through";
|
|
19852
19879
|
};
|
|
19853
|
-
stroke?: {
|
|
19880
|
+
stroke?: "none" | {
|
|
19854
19881
|
width: string | number;
|
|
19855
19882
|
color: string;
|
|
19856
19883
|
opacity: string | number;
|
|
19857
19884
|
};
|
|
19858
|
-
shadow?: {
|
|
19885
|
+
shadow?: "none" | {
|
|
19859
19886
|
offsetX: string | number;
|
|
19860
19887
|
offsetY: string | number;
|
|
19861
19888
|
blur: string | number;
|
|
@@ -19865,7 +19892,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19865
19892
|
};
|
|
19866
19893
|
wordAnimation?: {
|
|
19867
19894
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
19868
|
-
speed: string | number;
|
|
19869
19895
|
direction?: "left" | "right" | "up" | "down";
|
|
19870
19896
|
};
|
|
19871
19897
|
} | {
|
|
@@ -20482,18 +20508,22 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20482
20508
|
"line-through": "line-through";
|
|
20483
20509
|
}>>;
|
|
20484
20510
|
}, z.core.$strict>>;
|
|
20485
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
20511
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
20486
20512
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20487
20513
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20488
20514
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20489
|
-
}, z.core.$strict
|
|
20490
|
-
|
|
20515
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
20516
|
+
none: "none";
|
|
20517
|
+
}>]>>;
|
|
20518
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
20491
20519
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20492
20520
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20493
20521
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20494
20522
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20495
20523
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20496
|
-
}, z.core.$strict
|
|
20524
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
20525
|
+
none: "none";
|
|
20526
|
+
}>]>>;
|
|
20497
20527
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20498
20528
|
}, z.core.$strict>>;
|
|
20499
20529
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -20507,7 +20537,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20507
20537
|
bounce: "bounce";
|
|
20508
20538
|
typewriter: "typewriter";
|
|
20509
20539
|
}>;
|
|
20510
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20511
20540
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
20512
20541
|
left: "left";
|
|
20513
20542
|
right: "right";
|
|
@@ -21745,12 +21774,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21745
21774
|
background?: string;
|
|
21746
21775
|
textDecoration?: "none" | "underline" | "line-through";
|
|
21747
21776
|
};
|
|
21748
|
-
stroke?: {
|
|
21777
|
+
stroke?: "none" | {
|
|
21749
21778
|
width: string | number;
|
|
21750
21779
|
color: string;
|
|
21751
21780
|
opacity: string | number;
|
|
21752
21781
|
};
|
|
21753
|
-
shadow?: {
|
|
21782
|
+
shadow?: "none" | {
|
|
21754
21783
|
offsetX: string | number;
|
|
21755
21784
|
offsetY: string | number;
|
|
21756
21785
|
blur: string | number;
|
|
@@ -21760,7 +21789,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21760
21789
|
};
|
|
21761
21790
|
wordAnimation?: {
|
|
21762
21791
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
21763
|
-
speed: string | number;
|
|
21764
21792
|
direction?: "left" | "right" | "up" | "down";
|
|
21765
21793
|
};
|
|
21766
21794
|
} | {
|
|
@@ -22289,12 +22317,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22289
22317
|
background?: string;
|
|
22290
22318
|
textDecoration?: "none" | "underline" | "line-through";
|
|
22291
22319
|
};
|
|
22292
|
-
stroke?: {
|
|
22320
|
+
stroke?: "none" | {
|
|
22293
22321
|
width: string | number;
|
|
22294
22322
|
color: string;
|
|
22295
22323
|
opacity: string | number;
|
|
22296
22324
|
};
|
|
22297
|
-
shadow?: {
|
|
22325
|
+
shadow?: "none" | {
|
|
22298
22326
|
offsetX: string | number;
|
|
22299
22327
|
offsetY: string | number;
|
|
22300
22328
|
blur: string | number;
|
|
@@ -22304,7 +22332,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22304
22332
|
};
|
|
22305
22333
|
wordAnimation?: {
|
|
22306
22334
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
22307
|
-
speed: string | number;
|
|
22308
22335
|
direction?: "left" | "right" | "up" | "down";
|
|
22309
22336
|
};
|
|
22310
22337
|
} | {
|
|
@@ -22920,18 +22947,22 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22920
22947
|
"line-through": "line-through";
|
|
22921
22948
|
}>>;
|
|
22922
22949
|
}, z.core.$strict>>;
|
|
22923
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
22950
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
22924
22951
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22925
22952
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22926
22953
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22927
|
-
}, z.core.$strict
|
|
22928
|
-
|
|
22954
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
22955
|
+
none: "none";
|
|
22956
|
+
}>]>>;
|
|
22957
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
22929
22958
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22930
22959
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22931
22960
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22932
22961
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22933
22962
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22934
|
-
}, z.core.$strict
|
|
22963
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
22964
|
+
none: "none";
|
|
22965
|
+
}>]>>;
|
|
22935
22966
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22936
22967
|
}, z.core.$strict>>;
|
|
22937
22968
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -22945,7 +22976,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22945
22976
|
bounce: "bounce";
|
|
22946
22977
|
typewriter: "typewriter";
|
|
22947
22978
|
}>;
|
|
22948
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22949
22979
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
22950
22980
|
left: "left";
|
|
22951
22981
|
right: "right";
|
|
@@ -24183,12 +24213,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24183
24213
|
background?: string;
|
|
24184
24214
|
textDecoration?: "none" | "underline" | "line-through";
|
|
24185
24215
|
};
|
|
24186
|
-
stroke?: {
|
|
24216
|
+
stroke?: "none" | {
|
|
24187
24217
|
width: string | number;
|
|
24188
24218
|
color: string;
|
|
24189
24219
|
opacity: string | number;
|
|
24190
24220
|
};
|
|
24191
|
-
shadow?: {
|
|
24221
|
+
shadow?: "none" | {
|
|
24192
24222
|
offsetX: string | number;
|
|
24193
24223
|
offsetY: string | number;
|
|
24194
24224
|
blur: string | number;
|
|
@@ -24198,7 +24228,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24198
24228
|
};
|
|
24199
24229
|
wordAnimation?: {
|
|
24200
24230
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
24201
|
-
speed: string | number;
|
|
24202
24231
|
direction?: "left" | "right" | "up" | "down";
|
|
24203
24232
|
};
|
|
24204
24233
|
} | {
|
|
@@ -24727,12 +24756,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24727
24756
|
background?: string;
|
|
24728
24757
|
textDecoration?: "none" | "underline" | "line-through";
|
|
24729
24758
|
};
|
|
24730
|
-
stroke?: {
|
|
24759
|
+
stroke?: "none" | {
|
|
24731
24760
|
width: string | number;
|
|
24732
24761
|
color: string;
|
|
24733
24762
|
opacity: string | number;
|
|
24734
24763
|
};
|
|
24735
|
-
shadow?: {
|
|
24764
|
+
shadow?: "none" | {
|
|
24736
24765
|
offsetX: string | number;
|
|
24737
24766
|
offsetY: string | number;
|
|
24738
24767
|
blur: string | number;
|
|
@@ -24742,7 +24771,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24742
24771
|
};
|
|
24743
24772
|
wordAnimation?: {
|
|
24744
24773
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
24745
|
-
speed: string | number;
|
|
24746
24774
|
direction?: "left" | "right" | "up" | "down";
|
|
24747
24775
|
};
|
|
24748
24776
|
} | {
|
|
@@ -25362,18 +25390,22 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25362
25390
|
"line-through": "line-through";
|
|
25363
25391
|
}>>;
|
|
25364
25392
|
}, z.core.$strict>>;
|
|
25365
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
25393
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
25366
25394
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25367
25395
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25368
25396
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25369
|
-
}, z.core.$strict
|
|
25370
|
-
|
|
25397
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
25398
|
+
none: "none";
|
|
25399
|
+
}>]>>;
|
|
25400
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
25371
25401
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25372
25402
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25373
25403
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25374
25404
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25375
25405
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25376
|
-
}, z.core.$strict
|
|
25406
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
25407
|
+
none: "none";
|
|
25408
|
+
}>]>>;
|
|
25377
25409
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25378
25410
|
}, z.core.$strict>>;
|
|
25379
25411
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -25387,7 +25419,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25387
25419
|
bounce: "bounce";
|
|
25388
25420
|
typewriter: "typewriter";
|
|
25389
25421
|
}>;
|
|
25390
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25391
25422
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
25392
25423
|
left: "left";
|
|
25393
25424
|
right: "right";
|
|
@@ -26625,12 +26656,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26625
26656
|
background?: string;
|
|
26626
26657
|
textDecoration?: "none" | "underline" | "line-through";
|
|
26627
26658
|
};
|
|
26628
|
-
stroke?: {
|
|
26659
|
+
stroke?: "none" | {
|
|
26629
26660
|
width: string | number;
|
|
26630
26661
|
color: string;
|
|
26631
26662
|
opacity: string | number;
|
|
26632
26663
|
};
|
|
26633
|
-
shadow?: {
|
|
26664
|
+
shadow?: "none" | {
|
|
26634
26665
|
offsetX: string | number;
|
|
26635
26666
|
offsetY: string | number;
|
|
26636
26667
|
blur: string | number;
|
|
@@ -26640,7 +26671,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26640
26671
|
};
|
|
26641
26672
|
wordAnimation?: {
|
|
26642
26673
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
26643
|
-
speed: string | number;
|
|
26644
26674
|
direction?: "left" | "right" | "up" | "down";
|
|
26645
26675
|
};
|
|
26646
26676
|
} | {
|
|
@@ -27169,12 +27199,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27169
27199
|
background?: string;
|
|
27170
27200
|
textDecoration?: "none" | "underline" | "line-through";
|
|
27171
27201
|
};
|
|
27172
|
-
stroke?: {
|
|
27202
|
+
stroke?: "none" | {
|
|
27173
27203
|
width: string | number;
|
|
27174
27204
|
color: string;
|
|
27175
27205
|
opacity: string | number;
|
|
27176
27206
|
};
|
|
27177
|
-
shadow?: {
|
|
27207
|
+
shadow?: "none" | {
|
|
27178
27208
|
offsetX: string | number;
|
|
27179
27209
|
offsetY: string | number;
|
|
27180
27210
|
blur: string | number;
|
|
@@ -27184,7 +27214,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27184
27214
|
};
|
|
27185
27215
|
wordAnimation?: {
|
|
27186
27216
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
27187
|
-
speed: string | number;
|
|
27188
27217
|
direction?: "left" | "right" | "up" | "down";
|
|
27189
27218
|
};
|
|
27190
27219
|
} | {
|
|
@@ -27966,18 +27995,22 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27966
27995
|
"line-through": "line-through";
|
|
27967
27996
|
}>>;
|
|
27968
27997
|
}, z.core.$strict>>;
|
|
27969
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
27998
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
27970
27999
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27971
28000
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27972
28001
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27973
|
-
}, z.core.$strict
|
|
27974
|
-
|
|
28002
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
28003
|
+
none: "none";
|
|
28004
|
+
}>]>>;
|
|
28005
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
27975
28006
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27976
28007
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27977
28008
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27978
28009
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27979
28010
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27980
|
-
}, z.core.$strict
|
|
28011
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
28012
|
+
none: "none";
|
|
28013
|
+
}>]>>;
|
|
27981
28014
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27982
28015
|
}, z.core.$strict>>;
|
|
27983
28016
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -27991,7 +28024,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27991
28024
|
bounce: "bounce";
|
|
27992
28025
|
typewriter: "typewriter";
|
|
27993
28026
|
}>;
|
|
27994
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27995
28027
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
27996
28028
|
left: "left";
|
|
27997
28029
|
right: "right";
|
|
@@ -29229,12 +29261,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29229
29261
|
background?: string;
|
|
29230
29262
|
textDecoration?: "none" | "underline" | "line-through";
|
|
29231
29263
|
};
|
|
29232
|
-
stroke?: {
|
|
29264
|
+
stroke?: "none" | {
|
|
29233
29265
|
width: string | number;
|
|
29234
29266
|
color: string;
|
|
29235
29267
|
opacity: string | number;
|
|
29236
29268
|
};
|
|
29237
|
-
shadow?: {
|
|
29269
|
+
shadow?: "none" | {
|
|
29238
29270
|
offsetX: string | number;
|
|
29239
29271
|
offsetY: string | number;
|
|
29240
29272
|
blur: string | number;
|
|
@@ -29244,7 +29276,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29244
29276
|
};
|
|
29245
29277
|
wordAnimation?: {
|
|
29246
29278
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
29247
|
-
speed: string | number;
|
|
29248
29279
|
direction?: "left" | "right" | "up" | "down";
|
|
29249
29280
|
};
|
|
29250
29281
|
} | {
|
|
@@ -29773,12 +29804,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29773
29804
|
background?: string;
|
|
29774
29805
|
textDecoration?: "none" | "underline" | "line-through";
|
|
29775
29806
|
};
|
|
29776
|
-
stroke?: {
|
|
29807
|
+
stroke?: "none" | {
|
|
29777
29808
|
width: string | number;
|
|
29778
29809
|
color: string;
|
|
29779
29810
|
opacity: string | number;
|
|
29780
29811
|
};
|
|
29781
|
-
shadow?: {
|
|
29812
|
+
shadow?: "none" | {
|
|
29782
29813
|
offsetX: string | number;
|
|
29783
29814
|
offsetY: string | number;
|
|
29784
29815
|
blur: string | number;
|
|
@@ -29788,7 +29819,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29788
29819
|
};
|
|
29789
29820
|
wordAnimation?: {
|
|
29790
29821
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
29791
|
-
speed: string | number;
|
|
29792
29822
|
direction?: "left" | "right" | "up" | "down";
|
|
29793
29823
|
};
|
|
29794
29824
|
} | {
|
|
@@ -30592,18 +30622,22 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30592
30622
|
"line-through": "line-through";
|
|
30593
30623
|
}>>;
|
|
30594
30624
|
}, z.core.$strict>>;
|
|
30595
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
30625
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
30596
30626
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30597
30627
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30598
30628
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30599
|
-
}, z.core.$strict
|
|
30600
|
-
|
|
30629
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
30630
|
+
none: "none";
|
|
30631
|
+
}>]>>;
|
|
30632
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
30601
30633
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30602
30634
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30603
30635
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30604
30636
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30605
30637
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30606
|
-
}, z.core.$strict
|
|
30638
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
30639
|
+
none: "none";
|
|
30640
|
+
}>]>>;
|
|
30607
30641
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30608
30642
|
}, z.core.$strict>>;
|
|
30609
30643
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -30617,7 +30651,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30617
30651
|
bounce: "bounce";
|
|
30618
30652
|
typewriter: "typewriter";
|
|
30619
30653
|
}>;
|
|
30620
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30621
30654
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
30622
30655
|
left: "left";
|
|
30623
30656
|
right: "right";
|
|
@@ -31855,12 +31888,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31855
31888
|
background?: string;
|
|
31856
31889
|
textDecoration?: "none" | "underline" | "line-through";
|
|
31857
31890
|
};
|
|
31858
|
-
stroke?: {
|
|
31891
|
+
stroke?: "none" | {
|
|
31859
31892
|
width: string | number;
|
|
31860
31893
|
color: string;
|
|
31861
31894
|
opacity: string | number;
|
|
31862
31895
|
};
|
|
31863
|
-
shadow?: {
|
|
31896
|
+
shadow?: "none" | {
|
|
31864
31897
|
offsetX: string | number;
|
|
31865
31898
|
offsetY: string | number;
|
|
31866
31899
|
blur: string | number;
|
|
@@ -31870,7 +31903,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31870
31903
|
};
|
|
31871
31904
|
wordAnimation?: {
|
|
31872
31905
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
31873
|
-
speed: string | number;
|
|
31874
31906
|
direction?: "left" | "right" | "up" | "down";
|
|
31875
31907
|
};
|
|
31876
31908
|
} | {
|
|
@@ -32399,12 +32431,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32399
32431
|
background?: string;
|
|
32400
32432
|
textDecoration?: "none" | "underline" | "line-through";
|
|
32401
32433
|
};
|
|
32402
|
-
stroke?: {
|
|
32434
|
+
stroke?: "none" | {
|
|
32403
32435
|
width: string | number;
|
|
32404
32436
|
color: string;
|
|
32405
32437
|
opacity: string | number;
|
|
32406
32438
|
};
|
|
32407
|
-
shadow?: {
|
|
32439
|
+
shadow?: "none" | {
|
|
32408
32440
|
offsetX: string | number;
|
|
32409
32441
|
offsetY: string | number;
|
|
32410
32442
|
blur: string | number;
|
|
@@ -32414,7 +32446,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32414
32446
|
};
|
|
32415
32447
|
wordAnimation?: {
|
|
32416
32448
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
32417
|
-
speed: string | number;
|
|
32418
32449
|
direction?: "left" | "right" | "up" | "down";
|
|
32419
32450
|
};
|
|
32420
32451
|
} | {
|
|
@@ -33218,18 +33249,22 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33218
33249
|
"line-through": "line-through";
|
|
33219
33250
|
}>>;
|
|
33220
33251
|
}, z.core.$strict>>;
|
|
33221
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
33252
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
33222
33253
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33223
33254
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
33224
33255
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33225
|
-
}, z.core.$strict
|
|
33226
|
-
|
|
33256
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
33257
|
+
none: "none";
|
|
33258
|
+
}>]>>;
|
|
33259
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
33227
33260
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33228
33261
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33229
33262
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33230
33263
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
33231
33264
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33232
|
-
}, z.core.$strict
|
|
33265
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
33266
|
+
none: "none";
|
|
33267
|
+
}>]>>;
|
|
33233
33268
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33234
33269
|
}, z.core.$strict>>;
|
|
33235
33270
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -33243,7 +33278,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33243
33278
|
bounce: "bounce";
|
|
33244
33279
|
typewriter: "typewriter";
|
|
33245
33280
|
}>;
|
|
33246
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33247
33281
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
33248
33282
|
left: "left";
|
|
33249
33283
|
right: "right";
|
|
@@ -34481,12 +34515,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34481
34515
|
background?: string;
|
|
34482
34516
|
textDecoration?: "none" | "underline" | "line-through";
|
|
34483
34517
|
};
|
|
34484
|
-
stroke?: {
|
|
34518
|
+
stroke?: "none" | {
|
|
34485
34519
|
width: string | number;
|
|
34486
34520
|
color: string;
|
|
34487
34521
|
opacity: string | number;
|
|
34488
34522
|
};
|
|
34489
|
-
shadow?: {
|
|
34523
|
+
shadow?: "none" | {
|
|
34490
34524
|
offsetX: string | number;
|
|
34491
34525
|
offsetY: string | number;
|
|
34492
34526
|
blur: string | number;
|
|
@@ -34496,7 +34530,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34496
34530
|
};
|
|
34497
34531
|
wordAnimation?: {
|
|
34498
34532
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
34499
|
-
speed: string | number;
|
|
34500
34533
|
direction?: "left" | "right" | "up" | "down";
|
|
34501
34534
|
};
|
|
34502
34535
|
} | {
|
|
@@ -35025,12 +35058,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
35025
35058
|
background?: string;
|
|
35026
35059
|
textDecoration?: "none" | "underline" | "line-through";
|
|
35027
35060
|
};
|
|
35028
|
-
stroke?: {
|
|
35061
|
+
stroke?: "none" | {
|
|
35029
35062
|
width: string | number;
|
|
35030
35063
|
color: string;
|
|
35031
35064
|
opacity: string | number;
|
|
35032
35065
|
};
|
|
35033
|
-
shadow?: {
|
|
35066
|
+
shadow?: "none" | {
|
|
35034
35067
|
offsetX: string | number;
|
|
35035
35068
|
offsetY: string | number;
|
|
35036
35069
|
blur: string | number;
|
|
@@ -35040,7 +35073,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
35040
35073
|
};
|
|
35041
35074
|
wordAnimation?: {
|
|
35042
35075
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
35043
|
-
speed: string | number;
|
|
35044
35076
|
direction?: "left" | "right" | "up" | "down";
|
|
35045
35077
|
};
|
|
35046
35078
|
} | {
|
|
@@ -35850,18 +35882,22 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35850
35882
|
"line-through": "line-through";
|
|
35851
35883
|
}>>;
|
|
35852
35884
|
}, z.core.$strict>>;
|
|
35853
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
35885
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
35854
35886
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35855
35887
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35856
35888
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35857
|
-
}, z.core.$strict
|
|
35858
|
-
|
|
35889
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
35890
|
+
none: "none";
|
|
35891
|
+
}>]>>;
|
|
35892
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
35859
35893
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35860
35894
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35861
35895
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35862
35896
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35863
35897
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35864
|
-
}, z.core.$strict
|
|
35898
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
35899
|
+
none: "none";
|
|
35900
|
+
}>]>>;
|
|
35865
35901
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35866
35902
|
}, z.core.$strict>>;
|
|
35867
35903
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -35875,7 +35911,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35875
35911
|
bounce: "bounce";
|
|
35876
35912
|
typewriter: "typewriter";
|
|
35877
35913
|
}>;
|
|
35878
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35879
35914
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
35880
35915
|
left: "left";
|
|
35881
35916
|
right: "right";
|
|
@@ -37113,12 +37148,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37113
37148
|
background?: string;
|
|
37114
37149
|
textDecoration?: "none" | "underline" | "line-through";
|
|
37115
37150
|
};
|
|
37116
|
-
stroke?: {
|
|
37151
|
+
stroke?: "none" | {
|
|
37117
37152
|
width: string | number;
|
|
37118
37153
|
color: string;
|
|
37119
37154
|
opacity: string | number;
|
|
37120
37155
|
};
|
|
37121
|
-
shadow?: {
|
|
37156
|
+
shadow?: "none" | {
|
|
37122
37157
|
offsetX: string | number;
|
|
37123
37158
|
offsetY: string | number;
|
|
37124
37159
|
blur: string | number;
|
|
@@ -37128,7 +37163,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37128
37163
|
};
|
|
37129
37164
|
wordAnimation?: {
|
|
37130
37165
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
37131
|
-
speed: string | number;
|
|
37132
37166
|
direction?: "left" | "right" | "up" | "down";
|
|
37133
37167
|
};
|
|
37134
37168
|
} | {
|
|
@@ -37657,12 +37691,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37657
37691
|
background?: string;
|
|
37658
37692
|
textDecoration?: "none" | "underline" | "line-through";
|
|
37659
37693
|
};
|
|
37660
|
-
stroke?: {
|
|
37694
|
+
stroke?: "none" | {
|
|
37661
37695
|
width: string | number;
|
|
37662
37696
|
color: string;
|
|
37663
37697
|
opacity: string | number;
|
|
37664
37698
|
};
|
|
37665
|
-
shadow?: {
|
|
37699
|
+
shadow?: "none" | {
|
|
37666
37700
|
offsetX: string | number;
|
|
37667
37701
|
offsetY: string | number;
|
|
37668
37702
|
blur: string | number;
|
|
@@ -37672,7 +37706,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37672
37706
|
};
|
|
37673
37707
|
wordAnimation?: {
|
|
37674
37708
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
37675
|
-
speed: string | number;
|
|
37676
37709
|
direction?: "left" | "right" | "up" | "down";
|
|
37677
37710
|
};
|
|
37678
37711
|
} | {
|
|
@@ -38480,18 +38513,22 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38480
38513
|
"line-through": "line-through";
|
|
38481
38514
|
}>>;
|
|
38482
38515
|
}, z.core.$strict>>;
|
|
38483
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
38516
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
38484
38517
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38485
38518
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38486
38519
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38487
|
-
}, z.core.$strict
|
|
38488
|
-
|
|
38520
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
38521
|
+
none: "none";
|
|
38522
|
+
}>]>>;
|
|
38523
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
38489
38524
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38490
38525
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38491
38526
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38492
38527
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38493
38528
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38494
|
-
}, z.core.$strict
|
|
38529
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
38530
|
+
none: "none";
|
|
38531
|
+
}>]>>;
|
|
38495
38532
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38496
38533
|
}, z.core.$strict>>;
|
|
38497
38534
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -38505,7 +38542,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38505
38542
|
bounce: "bounce";
|
|
38506
38543
|
typewriter: "typewriter";
|
|
38507
38544
|
}>;
|
|
38508
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38509
38545
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
38510
38546
|
left: "left";
|
|
38511
38547
|
right: "right";
|
|
@@ -39743,12 +39779,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39743
39779
|
background?: string;
|
|
39744
39780
|
textDecoration?: "none" | "underline" | "line-through";
|
|
39745
39781
|
};
|
|
39746
|
-
stroke?: {
|
|
39782
|
+
stroke?: "none" | {
|
|
39747
39783
|
width: string | number;
|
|
39748
39784
|
color: string;
|
|
39749
39785
|
opacity: string | number;
|
|
39750
39786
|
};
|
|
39751
|
-
shadow?: {
|
|
39787
|
+
shadow?: "none" | {
|
|
39752
39788
|
offsetX: string | number;
|
|
39753
39789
|
offsetY: string | number;
|
|
39754
39790
|
blur: string | number;
|
|
@@ -39758,7 +39794,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39758
39794
|
};
|
|
39759
39795
|
wordAnimation?: {
|
|
39760
39796
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
39761
|
-
speed: string | number;
|
|
39762
39797
|
direction?: "left" | "right" | "up" | "down";
|
|
39763
39798
|
};
|
|
39764
39799
|
} | {
|
|
@@ -40287,12 +40322,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40287
40322
|
background?: string;
|
|
40288
40323
|
textDecoration?: "none" | "underline" | "line-through";
|
|
40289
40324
|
};
|
|
40290
|
-
stroke?: {
|
|
40325
|
+
stroke?: "none" | {
|
|
40291
40326
|
width: string | number;
|
|
40292
40327
|
color: string;
|
|
40293
40328
|
opacity: string | number;
|
|
40294
40329
|
};
|
|
40295
|
-
shadow?: {
|
|
40330
|
+
shadow?: "none" | {
|
|
40296
40331
|
offsetX: string | number;
|
|
40297
40332
|
offsetY: string | number;
|
|
40298
40333
|
blur: string | number;
|
|
@@ -40302,7 +40337,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40302
40337
|
};
|
|
40303
40338
|
wordAnimation?: {
|
|
40304
40339
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
40305
|
-
speed: string | number;
|
|
40306
40340
|
direction?: "left" | "right" | "up" | "down";
|
|
40307
40341
|
};
|
|
40308
40342
|
} | {
|
|
@@ -41095,18 +41129,22 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41095
41129
|
"line-through": "line-through";
|
|
41096
41130
|
}>>;
|
|
41097
41131
|
}, z.core.$strict>>;
|
|
41098
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
41132
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
41099
41133
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41100
41134
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
41101
41135
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41102
|
-
}, z.core.$strict
|
|
41103
|
-
|
|
41136
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
41137
|
+
none: "none";
|
|
41138
|
+
}>]>>;
|
|
41139
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
41104
41140
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41105
41141
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41106
41142
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41107
41143
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
41108
41144
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41109
|
-
}, z.core.$strict
|
|
41145
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
41146
|
+
none: "none";
|
|
41147
|
+
}>]>>;
|
|
41110
41148
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41111
41149
|
}, z.core.$strict>>;
|
|
41112
41150
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -41120,7 +41158,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41120
41158
|
bounce: "bounce";
|
|
41121
41159
|
typewriter: "typewriter";
|
|
41122
41160
|
}>;
|
|
41123
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41124
41161
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
41125
41162
|
left: "left";
|
|
41126
41163
|
right: "right";
|
|
@@ -42358,12 +42395,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42358
42395
|
background?: string;
|
|
42359
42396
|
textDecoration?: "none" | "underline" | "line-through";
|
|
42360
42397
|
};
|
|
42361
|
-
stroke?: {
|
|
42398
|
+
stroke?: "none" | {
|
|
42362
42399
|
width: string | number;
|
|
42363
42400
|
color: string;
|
|
42364
42401
|
opacity: string | number;
|
|
42365
42402
|
};
|
|
42366
|
-
shadow?: {
|
|
42403
|
+
shadow?: "none" | {
|
|
42367
42404
|
offsetX: string | number;
|
|
42368
42405
|
offsetY: string | number;
|
|
42369
42406
|
blur: string | number;
|
|
@@ -42373,7 +42410,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42373
42410
|
};
|
|
42374
42411
|
wordAnimation?: {
|
|
42375
42412
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
42376
|
-
speed: string | number;
|
|
42377
42413
|
direction?: "left" | "right" | "up" | "down";
|
|
42378
42414
|
};
|
|
42379
42415
|
} | {
|
|
@@ -42902,12 +42938,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42902
42938
|
background?: string;
|
|
42903
42939
|
textDecoration?: "none" | "underline" | "line-through";
|
|
42904
42940
|
};
|
|
42905
|
-
stroke?: {
|
|
42941
|
+
stroke?: "none" | {
|
|
42906
42942
|
width: string | number;
|
|
42907
42943
|
color: string;
|
|
42908
42944
|
opacity: string | number;
|
|
42909
42945
|
};
|
|
42910
|
-
shadow?: {
|
|
42946
|
+
shadow?: "none" | {
|
|
42911
42947
|
offsetX: string | number;
|
|
42912
42948
|
offsetY: string | number;
|
|
42913
42949
|
blur: string | number;
|
|
@@ -42917,7 +42953,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42917
42953
|
};
|
|
42918
42954
|
wordAnimation?: {
|
|
42919
42955
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
42920
|
-
speed: string | number;
|
|
42921
42956
|
direction?: "left" | "right" | "up" | "down";
|
|
42922
42957
|
};
|
|
42923
42958
|
} | {
|
|
@@ -43704,18 +43739,22 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43704
43739
|
"line-through": "line-through";
|
|
43705
43740
|
}>>;
|
|
43706
43741
|
}, z.core.$strict>>;
|
|
43707
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
43742
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
43708
43743
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43709
43744
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43710
43745
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43711
|
-
}, z.core.$strict
|
|
43712
|
-
|
|
43746
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
43747
|
+
none: "none";
|
|
43748
|
+
}>]>>;
|
|
43749
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
43713
43750
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43714
43751
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43715
43752
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43716
43753
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43717
43754
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43718
|
-
}, z.core.$strict
|
|
43755
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
43756
|
+
none: "none";
|
|
43757
|
+
}>]>>;
|
|
43719
43758
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43720
43759
|
}, z.core.$strict>>;
|
|
43721
43760
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -43729,7 +43768,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43729
43768
|
bounce: "bounce";
|
|
43730
43769
|
typewriter: "typewriter";
|
|
43731
43770
|
}>;
|
|
43732
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43733
43771
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
43734
43772
|
left: "left";
|
|
43735
43773
|
right: "right";
|
|
@@ -44967,12 +45005,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44967
45005
|
background?: string;
|
|
44968
45006
|
textDecoration?: "none" | "underline" | "line-through";
|
|
44969
45007
|
};
|
|
44970
|
-
stroke?: {
|
|
45008
|
+
stroke?: "none" | {
|
|
44971
45009
|
width: string | number;
|
|
44972
45010
|
color: string;
|
|
44973
45011
|
opacity: string | number;
|
|
44974
45012
|
};
|
|
44975
|
-
shadow?: {
|
|
45013
|
+
shadow?: "none" | {
|
|
44976
45014
|
offsetX: string | number;
|
|
44977
45015
|
offsetY: string | number;
|
|
44978
45016
|
blur: string | number;
|
|
@@ -44982,7 +45020,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44982
45020
|
};
|
|
44983
45021
|
wordAnimation?: {
|
|
44984
45022
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
44985
|
-
speed: string | number;
|
|
44986
45023
|
direction?: "left" | "right" | "up" | "down";
|
|
44987
45024
|
};
|
|
44988
45025
|
} | {
|
|
@@ -45511,12 +45548,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45511
45548
|
background?: string;
|
|
45512
45549
|
textDecoration?: "none" | "underline" | "line-through";
|
|
45513
45550
|
};
|
|
45514
|
-
stroke?: {
|
|
45551
|
+
stroke?: "none" | {
|
|
45515
45552
|
width: string | number;
|
|
45516
45553
|
color: string;
|
|
45517
45554
|
opacity: string | number;
|
|
45518
45555
|
};
|
|
45519
|
-
shadow?: {
|
|
45556
|
+
shadow?: "none" | {
|
|
45520
45557
|
offsetX: string | number;
|
|
45521
45558
|
offsetY: string | number;
|
|
45522
45559
|
blur: string | number;
|
|
@@ -45526,7 +45563,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45526
45563
|
};
|
|
45527
45564
|
wordAnimation?: {
|
|
45528
45565
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
45529
|
-
speed: string | number;
|
|
45530
45566
|
direction?: "left" | "right" | "up" | "down";
|
|
45531
45567
|
};
|
|
45532
45568
|
} | {
|
|
@@ -46319,18 +46355,22 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46319
46355
|
"line-through": "line-through";
|
|
46320
46356
|
}>>;
|
|
46321
46357
|
}, z.core.$strict>>;
|
|
46322
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
46358
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
46323
46359
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46324
46360
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
46325
46361
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46326
|
-
}, z.core.$strict
|
|
46327
|
-
|
|
46362
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
46363
|
+
none: "none";
|
|
46364
|
+
}>]>>;
|
|
46365
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
46328
46366
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46329
46367
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46330
46368
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46331
46369
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
46332
46370
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46333
|
-
}, z.core.$strict
|
|
46371
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
46372
|
+
none: "none";
|
|
46373
|
+
}>]>>;
|
|
46334
46374
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46335
46375
|
}, z.core.$strict>>;
|
|
46336
46376
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -46344,7 +46384,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46344
46384
|
bounce: "bounce";
|
|
46345
46385
|
typewriter: "typewriter";
|
|
46346
46386
|
}>;
|
|
46347
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46348
46387
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
46349
46388
|
left: "left";
|
|
46350
46389
|
right: "right";
|
|
@@ -47582,12 +47621,12 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47582
47621
|
background?: string;
|
|
47583
47622
|
textDecoration?: "none" | "underline" | "line-through";
|
|
47584
47623
|
};
|
|
47585
|
-
stroke?: {
|
|
47624
|
+
stroke?: "none" | {
|
|
47586
47625
|
width: string | number;
|
|
47587
47626
|
color: string;
|
|
47588
47627
|
opacity: string | number;
|
|
47589
47628
|
};
|
|
47590
|
-
shadow?: {
|
|
47629
|
+
shadow?: "none" | {
|
|
47591
47630
|
offsetX: string | number;
|
|
47592
47631
|
offsetY: string | number;
|
|
47593
47632
|
blur: string | number;
|
|
@@ -47597,7 +47636,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47597
47636
|
};
|
|
47598
47637
|
wordAnimation?: {
|
|
47599
47638
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
47600
|
-
speed: string | number;
|
|
47601
47639
|
direction?: "left" | "right" | "up" | "down";
|
|
47602
47640
|
};
|
|
47603
47641
|
} | {
|
|
@@ -48126,12 +48164,12 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48126
48164
|
background?: string;
|
|
48127
48165
|
textDecoration?: "none" | "underline" | "line-through";
|
|
48128
48166
|
};
|
|
48129
|
-
stroke?: {
|
|
48167
|
+
stroke?: "none" | {
|
|
48130
48168
|
width: string | number;
|
|
48131
48169
|
color: string;
|
|
48132
48170
|
opacity: string | number;
|
|
48133
48171
|
};
|
|
48134
|
-
shadow?: {
|
|
48172
|
+
shadow?: "none" | {
|
|
48135
48173
|
offsetX: string | number;
|
|
48136
48174
|
offsetY: string | number;
|
|
48137
48175
|
blur: string | number;
|
|
@@ -48141,7 +48179,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48141
48179
|
};
|
|
48142
48180
|
wordAnimation?: {
|
|
48143
48181
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
48144
|
-
speed: string | number;
|
|
48145
48182
|
direction?: "left" | "right" | "up" | "down";
|
|
48146
48183
|
};
|
|
48147
48184
|
} | {
|
|
@@ -48932,18 +48969,22 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48932
48969
|
"line-through": "line-through";
|
|
48933
48970
|
}>>;
|
|
48934
48971
|
}, z.core.$strict>>;
|
|
48935
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
48972
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
48936
48973
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48937
48974
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48938
48975
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48939
|
-
}, z.core.$strict
|
|
48940
|
-
|
|
48976
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
48977
|
+
none: "none";
|
|
48978
|
+
}>]>>;
|
|
48979
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
48941
48980
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48942
48981
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48943
48982
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48944
48983
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48945
48984
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48946
|
-
}, z.core.$strict
|
|
48985
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
48986
|
+
none: "none";
|
|
48987
|
+
}>]>>;
|
|
48947
48988
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48948
48989
|
}, z.core.$strict>>;
|
|
48949
48990
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -48957,7 +48998,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48957
48998
|
bounce: "bounce";
|
|
48958
48999
|
typewriter: "typewriter";
|
|
48959
49000
|
}>;
|
|
48960
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48961
49001
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
48962
49002
|
left: "left";
|
|
48963
49003
|
right: "right";
|
|
@@ -50195,12 +50235,12 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50195
50235
|
background?: string;
|
|
50196
50236
|
textDecoration?: "none" | "underline" | "line-through";
|
|
50197
50237
|
};
|
|
50198
|
-
stroke?: {
|
|
50238
|
+
stroke?: "none" | {
|
|
50199
50239
|
width: string | number;
|
|
50200
50240
|
color: string;
|
|
50201
50241
|
opacity: string | number;
|
|
50202
50242
|
};
|
|
50203
|
-
shadow?: {
|
|
50243
|
+
shadow?: "none" | {
|
|
50204
50244
|
offsetX: string | number;
|
|
50205
50245
|
offsetY: string | number;
|
|
50206
50246
|
blur: string | number;
|
|
@@ -50210,7 +50250,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50210
50250
|
};
|
|
50211
50251
|
wordAnimation?: {
|
|
50212
50252
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
50213
|
-
speed: string | number;
|
|
50214
50253
|
direction?: "left" | "right" | "up" | "down";
|
|
50215
50254
|
};
|
|
50216
50255
|
} | {
|
|
@@ -50739,12 +50778,12 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50739
50778
|
background?: string;
|
|
50740
50779
|
textDecoration?: "none" | "underline" | "line-through";
|
|
50741
50780
|
};
|
|
50742
|
-
stroke?: {
|
|
50781
|
+
stroke?: "none" | {
|
|
50743
50782
|
width: string | number;
|
|
50744
50783
|
color: string;
|
|
50745
50784
|
opacity: string | number;
|
|
50746
50785
|
};
|
|
50747
|
-
shadow?: {
|
|
50786
|
+
shadow?: "none" | {
|
|
50748
50787
|
offsetX: string | number;
|
|
50749
50788
|
offsetY: string | number;
|
|
50750
50789
|
blur: string | number;
|
|
@@ -50754,7 +50793,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50754
50793
|
};
|
|
50755
50794
|
wordAnimation?: {
|
|
50756
50795
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
50757
|
-
speed: string | number;
|
|
50758
50796
|
direction?: "left" | "right" | "up" | "down";
|
|
50759
50797
|
};
|
|
50760
50798
|
} | {
|
|
@@ -51543,18 +51581,22 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51543
51581
|
"line-through": "line-through";
|
|
51544
51582
|
}>>;
|
|
51545
51583
|
}, z.core.$strict>>;
|
|
51546
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
51584
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
51547
51585
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51548
51586
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51549
51587
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51550
|
-
}, z.core.$strict
|
|
51551
|
-
|
|
51588
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
51589
|
+
none: "none";
|
|
51590
|
+
}>]>>;
|
|
51591
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
51552
51592
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51553
51593
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51554
51594
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51555
51595
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51556
51596
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51557
|
-
}, z.core.$strict
|
|
51597
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
51598
|
+
none: "none";
|
|
51599
|
+
}>]>>;
|
|
51558
51600
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51559
51601
|
}, z.core.$strict>>;
|
|
51560
51602
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -51568,7 +51610,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51568
51610
|
bounce: "bounce";
|
|
51569
51611
|
typewriter: "typewriter";
|
|
51570
51612
|
}>;
|
|
51571
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51572
51613
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
51573
51614
|
left: "left";
|
|
51574
51615
|
right: "right";
|
|
@@ -52806,12 +52847,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52806
52847
|
background?: string;
|
|
52807
52848
|
textDecoration?: "none" | "underline" | "line-through";
|
|
52808
52849
|
};
|
|
52809
|
-
stroke?: {
|
|
52850
|
+
stroke?: "none" | {
|
|
52810
52851
|
width: string | number;
|
|
52811
52852
|
color: string;
|
|
52812
52853
|
opacity: string | number;
|
|
52813
52854
|
};
|
|
52814
|
-
shadow?: {
|
|
52855
|
+
shadow?: "none" | {
|
|
52815
52856
|
offsetX: string | number;
|
|
52816
52857
|
offsetY: string | number;
|
|
52817
52858
|
blur: string | number;
|
|
@@ -52821,7 +52862,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52821
52862
|
};
|
|
52822
52863
|
wordAnimation?: {
|
|
52823
52864
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
52824
|
-
speed: string | number;
|
|
52825
52865
|
direction?: "left" | "right" | "up" | "down";
|
|
52826
52866
|
};
|
|
52827
52867
|
} | {
|
|
@@ -53350,12 +53390,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53350
53390
|
background?: string;
|
|
53351
53391
|
textDecoration?: "none" | "underline" | "line-through";
|
|
53352
53392
|
};
|
|
53353
|
-
stroke?: {
|
|
53393
|
+
stroke?: "none" | {
|
|
53354
53394
|
width: string | number;
|
|
53355
53395
|
color: string;
|
|
53356
53396
|
opacity: string | number;
|
|
53357
53397
|
};
|
|
53358
|
-
shadow?: {
|
|
53398
|
+
shadow?: "none" | {
|
|
53359
53399
|
offsetX: string | number;
|
|
53360
53400
|
offsetY: string | number;
|
|
53361
53401
|
blur: string | number;
|
|
@@ -53365,7 +53405,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53365
53405
|
};
|
|
53366
53406
|
wordAnimation?: {
|
|
53367
53407
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
53368
|
-
speed: string | number;
|
|
53369
53408
|
direction?: "left" | "right" | "up" | "down";
|
|
53370
53409
|
};
|
|
53371
53410
|
} | {
|
|
@@ -54150,18 +54189,22 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54150
54189
|
"line-through": "line-through";
|
|
54151
54190
|
}>>;
|
|
54152
54191
|
}, z.core.$strict>>;
|
|
54153
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
54192
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
54154
54193
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54155
54194
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
54156
54195
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54157
|
-
}, z.core.$strict
|
|
54158
|
-
|
|
54196
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
54197
|
+
none: "none";
|
|
54198
|
+
}>]>>;
|
|
54199
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
54159
54200
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54160
54201
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54161
54202
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54162
54203
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
54163
54204
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54164
|
-
}, z.core.$strict
|
|
54205
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
54206
|
+
none: "none";
|
|
54207
|
+
}>]>>;
|
|
54165
54208
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54166
54209
|
}, z.core.$strict>>;
|
|
54167
54210
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -54175,7 +54218,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54175
54218
|
bounce: "bounce";
|
|
54176
54219
|
typewriter: "typewriter";
|
|
54177
54220
|
}>;
|
|
54178
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54179
54221
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
54180
54222
|
left: "left";
|
|
54181
54223
|
right: "right";
|
|
@@ -55413,12 +55455,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55413
55455
|
background?: string;
|
|
55414
55456
|
textDecoration?: "none" | "underline" | "line-through";
|
|
55415
55457
|
};
|
|
55416
|
-
stroke?: {
|
|
55458
|
+
stroke?: "none" | {
|
|
55417
55459
|
width: string | number;
|
|
55418
55460
|
color: string;
|
|
55419
55461
|
opacity: string | number;
|
|
55420
55462
|
};
|
|
55421
|
-
shadow?: {
|
|
55463
|
+
shadow?: "none" | {
|
|
55422
55464
|
offsetX: string | number;
|
|
55423
55465
|
offsetY: string | number;
|
|
55424
55466
|
blur: string | number;
|
|
@@ -55428,7 +55470,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55428
55470
|
};
|
|
55429
55471
|
wordAnimation?: {
|
|
55430
55472
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
55431
|
-
speed: string | number;
|
|
55432
55473
|
direction?: "left" | "right" | "up" | "down";
|
|
55433
55474
|
};
|
|
55434
55475
|
} | {
|
|
@@ -55957,12 +55998,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55957
55998
|
background?: string;
|
|
55958
55999
|
textDecoration?: "none" | "underline" | "line-through";
|
|
55959
56000
|
};
|
|
55960
|
-
stroke?: {
|
|
56001
|
+
stroke?: "none" | {
|
|
55961
56002
|
width: string | number;
|
|
55962
56003
|
color: string;
|
|
55963
56004
|
opacity: string | number;
|
|
55964
56005
|
};
|
|
55965
|
-
shadow?: {
|
|
56006
|
+
shadow?: "none" | {
|
|
55966
56007
|
offsetX: string | number;
|
|
55967
56008
|
offsetY: string | number;
|
|
55968
56009
|
blur: string | number;
|
|
@@ -55972,7 +56013,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55972
56013
|
};
|
|
55973
56014
|
wordAnimation?: {
|
|
55974
56015
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
55975
|
-
speed: string | number;
|
|
55976
56016
|
direction?: "left" | "right" | "up" | "down";
|
|
55977
56017
|
};
|
|
55978
56018
|
} | {
|
|
@@ -56756,18 +56796,22 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56756
56796
|
"line-through": "line-through";
|
|
56757
56797
|
}>>;
|
|
56758
56798
|
}, z.core.$strict>>;
|
|
56759
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
56799
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
56760
56800
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56761
56801
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56762
56802
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56763
|
-
}, z.core.$strict
|
|
56764
|
-
|
|
56803
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
56804
|
+
none: "none";
|
|
56805
|
+
}>]>>;
|
|
56806
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
56765
56807
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56766
56808
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56767
56809
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56768
56810
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56769
56811
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56770
|
-
}, z.core.$strict
|
|
56812
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
56813
|
+
none: "none";
|
|
56814
|
+
}>]>>;
|
|
56771
56815
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56772
56816
|
}, z.core.$strict>>;
|
|
56773
56817
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -56781,7 +56825,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56781
56825
|
bounce: "bounce";
|
|
56782
56826
|
typewriter: "typewriter";
|
|
56783
56827
|
}>;
|
|
56784
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56785
56828
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
56786
56829
|
left: "left";
|
|
56787
56830
|
right: "right";
|
|
@@ -58019,12 +58062,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58019
58062
|
background?: string;
|
|
58020
58063
|
textDecoration?: "none" | "underline" | "line-through";
|
|
58021
58064
|
};
|
|
58022
|
-
stroke?: {
|
|
58065
|
+
stroke?: "none" | {
|
|
58023
58066
|
width: string | number;
|
|
58024
58067
|
color: string;
|
|
58025
58068
|
opacity: string | number;
|
|
58026
58069
|
};
|
|
58027
|
-
shadow?: {
|
|
58070
|
+
shadow?: "none" | {
|
|
58028
58071
|
offsetX: string | number;
|
|
58029
58072
|
offsetY: string | number;
|
|
58030
58073
|
blur: string | number;
|
|
@@ -58034,7 +58077,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58034
58077
|
};
|
|
58035
58078
|
wordAnimation?: {
|
|
58036
58079
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
58037
|
-
speed: string | number;
|
|
58038
58080
|
direction?: "left" | "right" | "up" | "down";
|
|
58039
58081
|
};
|
|
58040
58082
|
} | {
|
|
@@ -58563,12 +58605,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58563
58605
|
background?: string;
|
|
58564
58606
|
textDecoration?: "none" | "underline" | "line-through";
|
|
58565
58607
|
};
|
|
58566
|
-
stroke?: {
|
|
58608
|
+
stroke?: "none" | {
|
|
58567
58609
|
width: string | number;
|
|
58568
58610
|
color: string;
|
|
58569
58611
|
opacity: string | number;
|
|
58570
58612
|
};
|
|
58571
|
-
shadow?: {
|
|
58613
|
+
shadow?: "none" | {
|
|
58572
58614
|
offsetX: string | number;
|
|
58573
58615
|
offsetY: string | number;
|
|
58574
58616
|
blur: string | number;
|
|
@@ -58578,7 +58620,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58578
58620
|
};
|
|
58579
58621
|
wordAnimation?: {
|
|
58580
58622
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
58581
|
-
speed: string | number;
|
|
58582
58623
|
direction?: "left" | "right" | "up" | "down";
|
|
58583
58624
|
};
|
|
58584
58625
|
} | {
|
|
@@ -59409,18 +59450,22 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59409
59450
|
"line-through": "line-through";
|
|
59410
59451
|
}>>;
|
|
59411
59452
|
}, z.core.$strict>>;
|
|
59412
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
59453
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
59413
59454
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59414
59455
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
59415
59456
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59416
|
-
}, z.core.$strict
|
|
59417
|
-
|
|
59457
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
59458
|
+
none: "none";
|
|
59459
|
+
}>]>>;
|
|
59460
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
59418
59461
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59419
59462
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59420
59463
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59421
59464
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
59422
59465
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59423
|
-
}, z.core.$strict
|
|
59466
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
59467
|
+
none: "none";
|
|
59468
|
+
}>]>>;
|
|
59424
59469
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59425
59470
|
}, z.core.$strict>>;
|
|
59426
59471
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -59434,7 +59479,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59434
59479
|
bounce: "bounce";
|
|
59435
59480
|
typewriter: "typewriter";
|
|
59436
59481
|
}>;
|
|
59437
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59438
59482
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
59439
59483
|
left: "left";
|
|
59440
59484
|
right: "right";
|
|
@@ -60672,12 +60716,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60672
60716
|
background?: string;
|
|
60673
60717
|
textDecoration?: "none" | "underline" | "line-through";
|
|
60674
60718
|
};
|
|
60675
|
-
stroke?: {
|
|
60719
|
+
stroke?: "none" | {
|
|
60676
60720
|
width: string | number;
|
|
60677
60721
|
color: string;
|
|
60678
60722
|
opacity: string | number;
|
|
60679
60723
|
};
|
|
60680
|
-
shadow?: {
|
|
60724
|
+
shadow?: "none" | {
|
|
60681
60725
|
offsetX: string | number;
|
|
60682
60726
|
offsetY: string | number;
|
|
60683
60727
|
blur: string | number;
|
|
@@ -60687,7 +60731,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60687
60731
|
};
|
|
60688
60732
|
wordAnimation?: {
|
|
60689
60733
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
60690
|
-
speed: string | number;
|
|
60691
60734
|
direction?: "left" | "right" | "up" | "down";
|
|
60692
60735
|
};
|
|
60693
60736
|
} | {
|
|
@@ -61216,12 +61259,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61216
61259
|
background?: string;
|
|
61217
61260
|
textDecoration?: "none" | "underline" | "line-through";
|
|
61218
61261
|
};
|
|
61219
|
-
stroke?: {
|
|
61262
|
+
stroke?: "none" | {
|
|
61220
61263
|
width: string | number;
|
|
61221
61264
|
color: string;
|
|
61222
61265
|
opacity: string | number;
|
|
61223
61266
|
};
|
|
61224
|
-
shadow?: {
|
|
61267
|
+
shadow?: "none" | {
|
|
61225
61268
|
offsetX: string | number;
|
|
61226
61269
|
offsetY: string | number;
|
|
61227
61270
|
blur: string | number;
|
|
@@ -61231,7 +61274,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61231
61274
|
};
|
|
61232
61275
|
wordAnimation?: {
|
|
61233
61276
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
61234
|
-
speed: string | number;
|
|
61235
61277
|
direction?: "left" | "right" | "up" | "down";
|
|
61236
61278
|
};
|
|
61237
61279
|
} | {
|
|
@@ -62041,18 +62083,22 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
62041
62083
|
"line-through": "line-through";
|
|
62042
62084
|
}>>;
|
|
62043
62085
|
}, z.core.$strict>>;
|
|
62044
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
62086
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
62045
62087
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62046
62088
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
62047
62089
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62048
|
-
}, z.core.$strict
|
|
62049
|
-
|
|
62090
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
62091
|
+
none: "none";
|
|
62092
|
+
}>]>>;
|
|
62093
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
62050
62094
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62051
62095
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62052
62096
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62053
62097
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
62054
62098
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62055
|
-
}, z.core.$strict
|
|
62099
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
62100
|
+
none: "none";
|
|
62101
|
+
}>]>>;
|
|
62056
62102
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62057
62103
|
}, z.core.$strict>>;
|
|
62058
62104
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -62066,7 +62112,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
62066
62112
|
bounce: "bounce";
|
|
62067
62113
|
typewriter: "typewriter";
|
|
62068
62114
|
}>;
|
|
62069
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62070
62115
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
62071
62116
|
left: "left";
|
|
62072
62117
|
right: "right";
|
|
@@ -63304,12 +63349,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63304
63349
|
background?: string;
|
|
63305
63350
|
textDecoration?: "none" | "underline" | "line-through";
|
|
63306
63351
|
};
|
|
63307
|
-
stroke?: {
|
|
63352
|
+
stroke?: "none" | {
|
|
63308
63353
|
width: string | number;
|
|
63309
63354
|
color: string;
|
|
63310
63355
|
opacity: string | number;
|
|
63311
63356
|
};
|
|
63312
|
-
shadow?: {
|
|
63357
|
+
shadow?: "none" | {
|
|
63313
63358
|
offsetX: string | number;
|
|
63314
63359
|
offsetY: string | number;
|
|
63315
63360
|
blur: string | number;
|
|
@@ -63319,7 +63364,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63319
63364
|
};
|
|
63320
63365
|
wordAnimation?: {
|
|
63321
63366
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
63322
|
-
speed: string | number;
|
|
63323
63367
|
direction?: "left" | "right" | "up" | "down";
|
|
63324
63368
|
};
|
|
63325
63369
|
} | {
|
|
@@ -63848,12 +63892,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63848
63892
|
background?: string;
|
|
63849
63893
|
textDecoration?: "none" | "underline" | "line-through";
|
|
63850
63894
|
};
|
|
63851
|
-
stroke?: {
|
|
63895
|
+
stroke?: "none" | {
|
|
63852
63896
|
width: string | number;
|
|
63853
63897
|
color: string;
|
|
63854
63898
|
opacity: string | number;
|
|
63855
63899
|
};
|
|
63856
|
-
shadow?: {
|
|
63900
|
+
shadow?: "none" | {
|
|
63857
63901
|
offsetX: string | number;
|
|
63858
63902
|
offsetY: string | number;
|
|
63859
63903
|
blur: string | number;
|
|
@@ -63863,7 +63907,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63863
63907
|
};
|
|
63864
63908
|
wordAnimation?: {
|
|
63865
63909
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
63866
|
-
speed: string | number;
|
|
63867
63910
|
direction?: "left" | "right" | "up" | "down";
|
|
63868
63911
|
};
|
|
63869
63912
|
} | {
|
|
@@ -64688,18 +64731,22 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64688
64731
|
"line-through": "line-through";
|
|
64689
64732
|
}>>;
|
|
64690
64733
|
}, z.core.$strict>>;
|
|
64691
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
64734
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
64692
64735
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64693
64736
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64694
64737
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64695
|
-
}, z.core.$strict
|
|
64696
|
-
|
|
64738
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
64739
|
+
none: "none";
|
|
64740
|
+
}>]>>;
|
|
64741
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
64697
64742
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64698
64743
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64699
64744
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64700
64745
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64701
64746
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64702
|
-
}, z.core.$strict
|
|
64747
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
64748
|
+
none: "none";
|
|
64749
|
+
}>]>>;
|
|
64703
64750
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64704
64751
|
}, z.core.$strict>>;
|
|
64705
64752
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -64713,7 +64760,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64713
64760
|
bounce: "bounce";
|
|
64714
64761
|
typewriter: "typewriter";
|
|
64715
64762
|
}>;
|
|
64716
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64717
64763
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
64718
64764
|
left: "left";
|
|
64719
64765
|
right: "right";
|
|
@@ -65951,12 +65997,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65951
65997
|
background?: string;
|
|
65952
65998
|
textDecoration?: "none" | "underline" | "line-through";
|
|
65953
65999
|
};
|
|
65954
|
-
stroke?: {
|
|
66000
|
+
stroke?: "none" | {
|
|
65955
66001
|
width: string | number;
|
|
65956
66002
|
color: string;
|
|
65957
66003
|
opacity: string | number;
|
|
65958
66004
|
};
|
|
65959
|
-
shadow?: {
|
|
66005
|
+
shadow?: "none" | {
|
|
65960
66006
|
offsetX: string | number;
|
|
65961
66007
|
offsetY: string | number;
|
|
65962
66008
|
blur: string | number;
|
|
@@ -65966,7 +66012,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65966
66012
|
};
|
|
65967
66013
|
wordAnimation?: {
|
|
65968
66014
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
65969
|
-
speed: string | number;
|
|
65970
66015
|
direction?: "left" | "right" | "up" | "down";
|
|
65971
66016
|
};
|
|
65972
66017
|
} | {
|
|
@@ -66495,12 +66540,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66495
66540
|
background?: string;
|
|
66496
66541
|
textDecoration?: "none" | "underline" | "line-through";
|
|
66497
66542
|
};
|
|
66498
|
-
stroke?: {
|
|
66543
|
+
stroke?: "none" | {
|
|
66499
66544
|
width: string | number;
|
|
66500
66545
|
color: string;
|
|
66501
66546
|
opacity: string | number;
|
|
66502
66547
|
};
|
|
66503
|
-
shadow?: {
|
|
66548
|
+
shadow?: "none" | {
|
|
66504
66549
|
offsetX: string | number;
|
|
66505
66550
|
offsetY: string | number;
|
|
66506
66551
|
blur: string | number;
|
|
@@ -66510,7 +66555,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66510
66555
|
};
|
|
66511
66556
|
wordAnimation?: {
|
|
66512
66557
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
66513
|
-
speed: string | number;
|
|
66514
66558
|
direction?: "left" | "right" | "up" | "down";
|
|
66515
66559
|
};
|
|
66516
66560
|
} | {
|
|
@@ -67297,18 +67341,22 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67297
67341
|
"line-through": "line-through";
|
|
67298
67342
|
}>>;
|
|
67299
67343
|
}, z.core.$strict>>;
|
|
67300
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
67344
|
+
stroke: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
67301
67345
|
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67302
67346
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
67303
67347
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67304
|
-
}, z.core.$strict
|
|
67305
|
-
|
|
67348
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
67349
|
+
none: "none";
|
|
67350
|
+
}>]>>;
|
|
67351
|
+
shadow: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
67306
67352
|
offsetX: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67307
67353
|
offsetY: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67308
67354
|
blur: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67309
67355
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
67310
67356
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67311
|
-
}, z.core.$strict
|
|
67357
|
+
}, z.core.$strict>, z.ZodEnum<{
|
|
67358
|
+
none: "none";
|
|
67359
|
+
}>]>>;
|
|
67312
67360
|
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67313
67361
|
}, z.core.$strict>>;
|
|
67314
67362
|
wordAnimation: z.ZodOptional<z.ZodObject<{
|
|
@@ -67322,7 +67370,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67322
67370
|
bounce: "bounce";
|
|
67323
67371
|
typewriter: "typewriter";
|
|
67324
67372
|
}>;
|
|
67325
|
-
speed: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67326
67373
|
direction: z.ZodOptional<z.ZodEnum<{
|
|
67327
67374
|
left: "left";
|
|
67328
67375
|
right: "right";
|
|
@@ -68560,12 +68607,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68560
68607
|
background?: string;
|
|
68561
68608
|
textDecoration?: "none" | "underline" | "line-through";
|
|
68562
68609
|
};
|
|
68563
|
-
stroke?: {
|
|
68610
|
+
stroke?: "none" | {
|
|
68564
68611
|
width: string | number;
|
|
68565
68612
|
color: string;
|
|
68566
68613
|
opacity: string | number;
|
|
68567
68614
|
};
|
|
68568
|
-
shadow?: {
|
|
68615
|
+
shadow?: "none" | {
|
|
68569
68616
|
offsetX: string | number;
|
|
68570
68617
|
offsetY: string | number;
|
|
68571
68618
|
blur: string | number;
|
|
@@ -68575,7 +68622,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68575
68622
|
};
|
|
68576
68623
|
wordAnimation?: {
|
|
68577
68624
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
68578
|
-
speed: string | number;
|
|
68579
68625
|
direction?: "left" | "right" | "up" | "down";
|
|
68580
68626
|
};
|
|
68581
68627
|
} | {
|
|
@@ -69104,12 +69150,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
69104
69150
|
background?: string;
|
|
69105
69151
|
textDecoration?: "none" | "underline" | "line-through";
|
|
69106
69152
|
};
|
|
69107
|
-
stroke?: {
|
|
69153
|
+
stroke?: "none" | {
|
|
69108
69154
|
width: string | number;
|
|
69109
69155
|
color: string;
|
|
69110
69156
|
opacity: string | number;
|
|
69111
69157
|
};
|
|
69112
|
-
shadow?: {
|
|
69158
|
+
shadow?: "none" | {
|
|
69113
69159
|
offsetX: string | number;
|
|
69114
69160
|
offsetY: string | number;
|
|
69115
69161
|
blur: string | number;
|
|
@@ -69119,7 +69165,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
69119
69165
|
};
|
|
69120
69166
|
wordAnimation?: {
|
|
69121
69167
|
style: "none" | "karaoke" | "highlight" | "pop" | "fade" | "slide" | "bounce" | "typewriter";
|
|
69122
|
-
speed: string | number;
|
|
69123
69168
|
direction?: "left" | "right" | "up" | "down";
|
|
69124
69169
|
};
|
|
69125
69170
|
} | {
|