@shotstack/schemas 1.8.6 → 1.8.7
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 +50 -75
- package/dist/json-schema/asset.json +95 -101
- package/dist/json-schema/clip.json +95 -101
- package/dist/json-schema/edit.json +95 -101
- package/dist/json-schema/rich-caption-asset.json +234 -240
- package/dist/json-schema/schemas.json +103 -111
- package/dist/json-schema/timeline.json +95 -101
- package/dist/json-schema/track.json +95 -101
- package/dist/schema.d.ts +40 -47
- package/dist/zod/zod.gen.cjs +31 -51
- package/dist/zod/zod.gen.d.ts +494 -1158
- package/dist/zod/zod.gen.js +26 -46
- package/dist/zod/zod.gen.ts +15 -18
- package/package.json +1 -1
- package/dist/json-schema/word-timing.json +0 -44
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -4660,6 +4660,17 @@ export declare const richCaptionActiveFontSchema: z.ZodObject<{
|
|
|
4660
4660
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4661
4661
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4662
4662
|
}, z.core.$strict>;
|
|
4663
|
+
/**
|
|
4664
|
+
* Font properties for rich captions. Defaults to Roboto.
|
|
4665
|
+
*/
|
|
4666
|
+
export declare const richcaptionpropertiesRichCaptionFontSchema: z.ZodObject<{
|
|
4667
|
+
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4668
|
+
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4669
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
4670
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
4671
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4672
|
+
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4673
|
+
}, z.core.$strict>;
|
|
4663
4674
|
/**
|
|
4664
4675
|
* Word-level animation properties for caption effects.
|
|
4665
4676
|
*/
|
|
@@ -4701,21 +4712,6 @@ export declare const richCaptionWordAnimationSchema: z.ZodObject<{
|
|
|
4701
4712
|
down: "down";
|
|
4702
4713
|
}>>;
|
|
4703
4714
|
}, z.core.$strict>;
|
|
4704
|
-
/**
|
|
4705
|
-
* Word-level timing information for caption animation.
|
|
4706
|
-
*/
|
|
4707
|
-
export declare const richcaptionpropertiesWordTimingSchema: z.ZodObject<{
|
|
4708
|
-
text: z.ZodString;
|
|
4709
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4710
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4711
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4712
|
-
}, z.core.$strict>;
|
|
4713
|
-
export declare const wordTimingSchema: z.ZodObject<{
|
|
4714
|
-
text: z.ZodString;
|
|
4715
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4716
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
4717
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
4718
|
-
}, z.core.$strict>;
|
|
4719
4715
|
/**
|
|
4720
4716
|
* Text alignment properties (horizontal and vertical).
|
|
4721
4717
|
*/
|
|
@@ -4999,13 +4995,7 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
4999
4995
|
type: z.ZodEnum<{
|
|
5000
4996
|
"rich-caption": "rich-caption";
|
|
5001
4997
|
}>;
|
|
5002
|
-
src: z.
|
|
5003
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5004
|
-
text: z.ZodString;
|
|
5005
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5006
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5007
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
5008
|
-
}, z.core.$strict>>>;
|
|
4998
|
+
src: z.ZodString;
|
|
5009
4999
|
font: z.ZodOptional<z.ZodObject<{
|
|
5010
5000
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5011
5001
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5013,11 +5003,6 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5013
5003
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5014
5004
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5015
5005
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5016
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
5017
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5018
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5019
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5020
|
-
}, z.core.$strict>>;
|
|
5021
5006
|
}, z.core.$strict>>;
|
|
5022
5007
|
style: z.ZodOptional<z.ZodObject<{
|
|
5023
5008
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5063,6 +5048,12 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5063
5048
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5064
5049
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5065
5050
|
}, z.core.$strict>>;
|
|
5051
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
5052
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5053
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5054
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5055
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5056
|
+
}, z.core.$strict>>;
|
|
5066
5057
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
5067
5058
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5068
5059
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5113,25 +5104,12 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5113
5104
|
down: "down";
|
|
5114
5105
|
}>>;
|
|
5115
5106
|
}, z.core.$strict>>;
|
|
5116
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
5117
|
-
top: "top";
|
|
5118
|
-
bottom: "bottom";
|
|
5119
|
-
center: "center";
|
|
5120
|
-
}>>;
|
|
5121
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5122
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5123
5107
|
}, z.core.$strict>;
|
|
5124
5108
|
export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
5125
5109
|
type: z.ZodEnum<{
|
|
5126
5110
|
"rich-caption": "rich-caption";
|
|
5127
5111
|
}>;
|
|
5128
|
-
src: z.
|
|
5129
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5130
|
-
text: z.ZodString;
|
|
5131
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5132
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
5133
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
5134
|
-
}, z.core.$strict>>>;
|
|
5112
|
+
src: z.ZodString;
|
|
5135
5113
|
font: z.ZodOptional<z.ZodObject<{
|
|
5136
5114
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5137
5115
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5139,11 +5117,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5139
5117
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5140
5118
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5141
5119
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5142
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
5143
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5144
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5145
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5146
|
-
}, z.core.$strict>>;
|
|
5147
5120
|
}, z.core.$strict>>;
|
|
5148
5121
|
style: z.ZodOptional<z.ZodObject<{
|
|
5149
5122
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5189,6 +5162,12 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5189
5162
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5190
5163
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5191
5164
|
}, z.core.$strict>>;
|
|
5165
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
5166
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5167
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
5168
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5169
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5170
|
+
}, z.core.$strict>>;
|
|
5192
5171
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
5193
5172
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5194
5173
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -5239,13 +5218,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5239
5218
|
down: "down";
|
|
5240
5219
|
}>>;
|
|
5241
5220
|
}, z.core.$strict>>;
|
|
5242
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
5243
|
-
top: "top";
|
|
5244
|
-
bottom: "bottom";
|
|
5245
|
-
center: "center";
|
|
5246
|
-
}>>;
|
|
5247
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5248
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5249
5221
|
}, z.core.$strict>;
|
|
5250
5222
|
/**
|
|
5251
5223
|
* The RichTextAsset provides advanced text rendering with support for custom fonts, gradients, shadows, strokes,
|
|
@@ -11119,13 +11091,7 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11119
11091
|
type: z.ZodEnum<{
|
|
11120
11092
|
"rich-caption": "rich-caption";
|
|
11121
11093
|
}>;
|
|
11122
|
-
src: z.
|
|
11123
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11124
|
-
text: z.ZodString;
|
|
11125
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
11126
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
11127
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
11128
|
-
}, z.core.$strict>>>;
|
|
11094
|
+
src: z.ZodString;
|
|
11129
11095
|
font: z.ZodOptional<z.ZodObject<{
|
|
11130
11096
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11131
11097
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11133,11 +11099,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11133
11099
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11134
11100
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11135
11101
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11136
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
11137
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11138
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11139
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11140
|
-
}, z.core.$strict>>;
|
|
11141
11102
|
}, z.core.$strict>>;
|
|
11142
11103
|
style: z.ZodOptional<z.ZodObject<{
|
|
11143
11104
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11183,6 +11144,12 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11183
11144
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11184
11145
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11185
11146
|
}, z.core.$strict>>;
|
|
11147
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
11148
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11149
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11150
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11151
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11152
|
+
}, z.core.$strict>>;
|
|
11186
11153
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
11187
11154
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11188
11155
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11233,13 +11200,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11233
11200
|
down: "down";
|
|
11234
11201
|
}>>;
|
|
11235
11202
|
}, z.core.$strict>>;
|
|
11236
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
11237
|
-
top: "top";
|
|
11238
|
-
bottom: "bottom";
|
|
11239
|
-
center: "center";
|
|
11240
|
-
}>>;
|
|
11241
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11242
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11243
11203
|
}, z.core.$strict>, z.ZodObject<{
|
|
11244
11204
|
type: z.ZodEnum<{
|
|
11245
11205
|
html: "html";
|
|
@@ -11961,13 +11921,7 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11961
11921
|
type: z.ZodEnum<{
|
|
11962
11922
|
"rich-caption": "rich-caption";
|
|
11963
11923
|
}>;
|
|
11964
|
-
src: z.
|
|
11965
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11966
|
-
text: z.ZodString;
|
|
11967
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
11968
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
11969
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
11970
|
-
}, z.core.$strict>>>;
|
|
11924
|
+
src: z.ZodString;
|
|
11971
11925
|
font: z.ZodOptional<z.ZodObject<{
|
|
11972
11926
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11973
11927
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11975,11 +11929,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11975
11929
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11976
11930
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11977
11931
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11978
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
11979
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11980
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11981
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11982
|
-
}, z.core.$strict>>;
|
|
11983
11932
|
}, z.core.$strict>>;
|
|
11984
11933
|
style: z.ZodOptional<z.ZodObject<{
|
|
11985
11934
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12025,6 +11974,12 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12025
11974
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12026
11975
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12027
11976
|
}, z.core.$strict>>;
|
|
11977
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
11978
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11979
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
11980
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11981
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11982
|
+
}, z.core.$strict>>;
|
|
12028
11983
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
12029
11984
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12030
11985
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12075,13 +12030,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12075
12030
|
down: "down";
|
|
12076
12031
|
}>>;
|
|
12077
12032
|
}, z.core.$strict>>;
|
|
12078
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
12079
|
-
top: "top";
|
|
12080
|
-
bottom: "bottom";
|
|
12081
|
-
center: "center";
|
|
12082
|
-
}>>;
|
|
12083
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12084
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12085
12033
|
}, z.core.$strict>, z.ZodObject<{
|
|
12086
12034
|
type: z.ZodEnum<{
|
|
12087
12035
|
html: "html";
|
|
@@ -12807,13 +12755,7 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12807
12755
|
type: z.ZodEnum<{
|
|
12808
12756
|
"rich-caption": "rich-caption";
|
|
12809
12757
|
}>;
|
|
12810
|
-
src: z.
|
|
12811
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12812
|
-
text: z.ZodString;
|
|
12813
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
12814
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
12815
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
12816
|
-
}, z.core.$strict>>>;
|
|
12758
|
+
src: z.ZodString;
|
|
12817
12759
|
font: z.ZodOptional<z.ZodObject<{
|
|
12818
12760
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
12819
12761
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12821,11 +12763,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12821
12763
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12822
12764
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12823
12765
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12824
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
12825
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12826
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12827
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12828
|
-
}, z.core.$strict>>;
|
|
12829
12766
|
}, z.core.$strict>>;
|
|
12830
12767
|
style: z.ZodOptional<z.ZodObject<{
|
|
12831
12768
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12871,6 +12808,12 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12871
12808
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12872
12809
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12873
12810
|
}, z.core.$strict>>;
|
|
12811
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
12812
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12813
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
12814
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12815
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12816
|
+
}, z.core.$strict>>;
|
|
12874
12817
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
12875
12818
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12876
12819
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -12921,13 +12864,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12921
12864
|
down: "down";
|
|
12922
12865
|
}>>;
|
|
12923
12866
|
}, z.core.$strict>>;
|
|
12924
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
12925
|
-
top: "top";
|
|
12926
|
-
bottom: "bottom";
|
|
12927
|
-
center: "center";
|
|
12928
|
-
}>>;
|
|
12929
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12930
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12931
12867
|
}, z.core.$strict>, z.ZodObject<{
|
|
12932
12868
|
type: z.ZodEnum<{
|
|
12933
12869
|
html: "html";
|
|
@@ -14133,13 +14069,7 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14133
14069
|
type: z.ZodEnum<{
|
|
14134
14070
|
"rich-caption": "rich-caption";
|
|
14135
14071
|
}>;
|
|
14136
|
-
src: z.
|
|
14137
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14138
|
-
text: z.ZodString;
|
|
14139
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
14140
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
14141
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
14142
|
-
}, z.core.$strict>>>;
|
|
14072
|
+
src: z.ZodString;
|
|
14143
14073
|
font: z.ZodOptional<z.ZodObject<{
|
|
14144
14074
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
14145
14075
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -14147,11 +14077,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14147
14077
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14148
14078
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14149
14079
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
14150
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
14151
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14152
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14153
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14154
|
-
}, z.core.$strict>>;
|
|
14155
14080
|
}, z.core.$strict>>;
|
|
14156
14081
|
style: z.ZodOptional<z.ZodObject<{
|
|
14157
14082
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -14197,6 +14122,12 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14197
14122
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14198
14123
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14199
14124
|
}, z.core.$strict>>;
|
|
14125
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
14126
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14127
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
14128
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14129
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14130
|
+
}, z.core.$strict>>;
|
|
14200
14131
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
14201
14132
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14202
14133
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -14247,13 +14178,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14247
14178
|
down: "down";
|
|
14248
14179
|
}>>;
|
|
14249
14180
|
}, z.core.$strict>>;
|
|
14250
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
14251
|
-
top: "top";
|
|
14252
|
-
bottom: "bottom";
|
|
14253
|
-
center: "center";
|
|
14254
|
-
}>>;
|
|
14255
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14256
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14257
14181
|
}, z.core.$strict>, z.ZodObject<{
|
|
14258
14182
|
type: z.ZodEnum<{
|
|
14259
14183
|
html: "html";
|
|
@@ -15463,13 +15387,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15463
15387
|
type: z.ZodEnum<{
|
|
15464
15388
|
"rich-caption": "rich-caption";
|
|
15465
15389
|
}>;
|
|
15466
|
-
src: z.
|
|
15467
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15468
|
-
text: z.ZodString;
|
|
15469
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
15470
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
15471
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
15472
|
-
}, z.core.$strict>>>;
|
|
15390
|
+
src: z.ZodString;
|
|
15473
15391
|
font: z.ZodOptional<z.ZodObject<{
|
|
15474
15392
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15475
15393
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -15477,11 +15395,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15477
15395
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15478
15396
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15479
15397
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15480
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
15481
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15482
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15483
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15484
|
-
}, z.core.$strict>>;
|
|
15485
15398
|
}, z.core.$strict>>;
|
|
15486
15399
|
style: z.ZodOptional<z.ZodObject<{
|
|
15487
15400
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -15527,6 +15440,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15527
15440
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15528
15441
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15529
15442
|
}, z.core.$strict>>;
|
|
15443
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
15444
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15445
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
15446
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15447
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15448
|
+
}, z.core.$strict>>;
|
|
15530
15449
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
15531
15450
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15532
15451
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -15577,13 +15496,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15577
15496
|
down: "down";
|
|
15578
15497
|
}>>;
|
|
15579
15498
|
}, z.core.$strict>>;
|
|
15580
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
15581
|
-
top: "top";
|
|
15582
|
-
bottom: "bottom";
|
|
15583
|
-
center: "center";
|
|
15584
|
-
}>>;
|
|
15585
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15586
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15587
15499
|
}, z.core.$strict>, z.ZodObject<{
|
|
15588
15500
|
type: z.ZodEnum<{
|
|
15589
15501
|
html: "html";
|
|
@@ -16748,15 +16660,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16748
16660
|
speed?: string | number;
|
|
16749
16661
|
} | {
|
|
16750
16662
|
type: "rich-caption";
|
|
16751
|
-
|
|
16752
|
-
maxLines: string | number;
|
|
16753
|
-
src?: string;
|
|
16754
|
-
words?: {
|
|
16755
|
-
text: string;
|
|
16756
|
-
start?: string | number;
|
|
16757
|
-
end?: string | number;
|
|
16758
|
-
confidence?: string | number;
|
|
16759
|
-
}[];
|
|
16663
|
+
src: string;
|
|
16760
16664
|
font?: {
|
|
16761
16665
|
family: string;
|
|
16762
16666
|
size: string | number;
|
|
@@ -16764,11 +16668,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16764
16668
|
color: string;
|
|
16765
16669
|
opacity: string | number;
|
|
16766
16670
|
background?: string;
|
|
16767
|
-
stroke?: {
|
|
16768
|
-
width: string | number;
|
|
16769
|
-
color: string;
|
|
16770
|
-
opacity: string | number;
|
|
16771
|
-
};
|
|
16772
16671
|
};
|
|
16773
16672
|
style?: {
|
|
16774
16673
|
letterSpacing: string | number;
|
|
@@ -16802,6 +16701,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16802
16701
|
borderRadius: string | number;
|
|
16803
16702
|
color?: string;
|
|
16804
16703
|
};
|
|
16704
|
+
border?: {
|
|
16705
|
+
width: string | number;
|
|
16706
|
+
color: string;
|
|
16707
|
+
opacity: string | number;
|
|
16708
|
+
radius: string | number;
|
|
16709
|
+
};
|
|
16805
16710
|
padding?: string | number | {
|
|
16806
16711
|
top: string | number;
|
|
16807
16712
|
right: string | number;
|
|
@@ -16830,7 +16735,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16830
16735
|
speed: string | number;
|
|
16831
16736
|
direction?: "left" | "right" | "up" | "down";
|
|
16832
16737
|
};
|
|
16833
|
-
position?: "top" | "bottom" | "center";
|
|
16834
16738
|
} | {
|
|
16835
16739
|
type: "html";
|
|
16836
16740
|
html: string;
|
|
@@ -17291,15 +17195,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17291
17195
|
speed?: string | number;
|
|
17292
17196
|
} | {
|
|
17293
17197
|
type: "rich-caption";
|
|
17294
|
-
|
|
17295
|
-
maxLines: string | number;
|
|
17296
|
-
src?: string;
|
|
17297
|
-
words?: {
|
|
17298
|
-
text: string;
|
|
17299
|
-
start?: string | number;
|
|
17300
|
-
end?: string | number;
|
|
17301
|
-
confidence?: string | number;
|
|
17302
|
-
}[];
|
|
17198
|
+
src: string;
|
|
17303
17199
|
font?: {
|
|
17304
17200
|
family: string;
|
|
17305
17201
|
size: string | number;
|
|
@@ -17307,11 +17203,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17307
17203
|
color: string;
|
|
17308
17204
|
opacity: string | number;
|
|
17309
17205
|
background?: string;
|
|
17310
|
-
stroke?: {
|
|
17311
|
-
width: string | number;
|
|
17312
|
-
color: string;
|
|
17313
|
-
opacity: string | number;
|
|
17314
|
-
};
|
|
17315
17206
|
};
|
|
17316
17207
|
style?: {
|
|
17317
17208
|
letterSpacing: string | number;
|
|
@@ -17345,6 +17236,12 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17345
17236
|
borderRadius: string | number;
|
|
17346
17237
|
color?: string;
|
|
17347
17238
|
};
|
|
17239
|
+
border?: {
|
|
17240
|
+
width: string | number;
|
|
17241
|
+
color: string;
|
|
17242
|
+
opacity: string | number;
|
|
17243
|
+
radius: string | number;
|
|
17244
|
+
};
|
|
17348
17245
|
padding?: string | number | {
|
|
17349
17246
|
top: string | number;
|
|
17350
17247
|
right: string | number;
|
|
@@ -17373,7 +17270,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17373
17270
|
speed: string | number;
|
|
17374
17271
|
direction?: "left" | "right" | "up" | "down";
|
|
17375
17272
|
};
|
|
17376
|
-
position?: "top" | "bottom" | "center";
|
|
17377
17273
|
} | {
|
|
17378
17274
|
type: "html";
|
|
17379
17275
|
html: string;
|
|
@@ -17878,13 +17774,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17878
17774
|
type: z.ZodEnum<{
|
|
17879
17775
|
"rich-caption": "rich-caption";
|
|
17880
17776
|
}>;
|
|
17881
|
-
src: z.
|
|
17882
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17883
|
-
text: z.ZodString;
|
|
17884
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
17885
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
17886
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
17887
|
-
}, z.core.$strict>>>;
|
|
17777
|
+
src: z.ZodString;
|
|
17888
17778
|
font: z.ZodOptional<z.ZodObject<{
|
|
17889
17779
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
17890
17780
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -17892,11 +17782,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17892
17782
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
17893
17783
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17894
17784
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
17895
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
17896
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17897
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
17898
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17899
|
-
}, z.core.$strict>>;
|
|
17900
17785
|
}, z.core.$strict>>;
|
|
17901
17786
|
style: z.ZodOptional<z.ZodObject<{
|
|
17902
17787
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -17942,6 +17827,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17942
17827
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17943
17828
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17944
17829
|
}, z.core.$strict>>;
|
|
17830
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
17831
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17832
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
17833
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17834
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17835
|
+
}, z.core.$strict>>;
|
|
17945
17836
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
17946
17837
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17947
17838
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -17992,13 +17883,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
17992
17883
|
down: "down";
|
|
17993
17884
|
}>>;
|
|
17994
17885
|
}, z.core.$strict>>;
|
|
17995
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
17996
|
-
top: "top";
|
|
17997
|
-
bottom: "bottom";
|
|
17998
|
-
center: "center";
|
|
17999
|
-
}>>;
|
|
18000
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18001
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18002
17886
|
}, z.core.$strict>, z.ZodObject<{
|
|
18003
17887
|
type: z.ZodEnum<{
|
|
18004
17888
|
html: "html";
|
|
@@ -19163,15 +19047,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19163
19047
|
speed?: string | number;
|
|
19164
19048
|
} | {
|
|
19165
19049
|
type: "rich-caption";
|
|
19166
|
-
|
|
19167
|
-
maxLines: string | number;
|
|
19168
|
-
src?: string;
|
|
19169
|
-
words?: {
|
|
19170
|
-
text: string;
|
|
19171
|
-
start?: string | number;
|
|
19172
|
-
end?: string | number;
|
|
19173
|
-
confidence?: string | number;
|
|
19174
|
-
}[];
|
|
19050
|
+
src: string;
|
|
19175
19051
|
font?: {
|
|
19176
19052
|
family: string;
|
|
19177
19053
|
size: string | number;
|
|
@@ -19179,11 +19055,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19179
19055
|
color: string;
|
|
19180
19056
|
opacity: string | number;
|
|
19181
19057
|
background?: string;
|
|
19182
|
-
stroke?: {
|
|
19183
|
-
width: string | number;
|
|
19184
|
-
color: string;
|
|
19185
|
-
opacity: string | number;
|
|
19186
|
-
};
|
|
19187
19058
|
};
|
|
19188
19059
|
style?: {
|
|
19189
19060
|
letterSpacing: string | number;
|
|
@@ -19217,6 +19088,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19217
19088
|
borderRadius: string | number;
|
|
19218
19089
|
color?: string;
|
|
19219
19090
|
};
|
|
19091
|
+
border?: {
|
|
19092
|
+
width: string | number;
|
|
19093
|
+
color: string;
|
|
19094
|
+
opacity: string | number;
|
|
19095
|
+
radius: string | number;
|
|
19096
|
+
};
|
|
19220
19097
|
padding?: string | number | {
|
|
19221
19098
|
top: string | number;
|
|
19222
19099
|
right: string | number;
|
|
@@ -19245,7 +19122,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19245
19122
|
speed: string | number;
|
|
19246
19123
|
direction?: "left" | "right" | "up" | "down";
|
|
19247
19124
|
};
|
|
19248
|
-
position?: "top" | "bottom" | "center";
|
|
19249
19125
|
} | {
|
|
19250
19126
|
type: "html";
|
|
19251
19127
|
html: string;
|
|
@@ -19706,15 +19582,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19706
19582
|
speed?: string | number;
|
|
19707
19583
|
} | {
|
|
19708
19584
|
type: "rich-caption";
|
|
19709
|
-
|
|
19710
|
-
maxLines: string | number;
|
|
19711
|
-
src?: string;
|
|
19712
|
-
words?: {
|
|
19713
|
-
text: string;
|
|
19714
|
-
start?: string | number;
|
|
19715
|
-
end?: string | number;
|
|
19716
|
-
confidence?: string | number;
|
|
19717
|
-
}[];
|
|
19585
|
+
src: string;
|
|
19718
19586
|
font?: {
|
|
19719
19587
|
family: string;
|
|
19720
19588
|
size: string | number;
|
|
@@ -19722,11 +19590,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19722
19590
|
color: string;
|
|
19723
19591
|
opacity: string | number;
|
|
19724
19592
|
background?: string;
|
|
19725
|
-
stroke?: {
|
|
19726
|
-
width: string | number;
|
|
19727
|
-
color: string;
|
|
19728
|
-
opacity: string | number;
|
|
19729
|
-
};
|
|
19730
19593
|
};
|
|
19731
19594
|
style?: {
|
|
19732
19595
|
letterSpacing: string | number;
|
|
@@ -19760,6 +19623,12 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19760
19623
|
borderRadius: string | number;
|
|
19761
19624
|
color?: string;
|
|
19762
19625
|
};
|
|
19626
|
+
border?: {
|
|
19627
|
+
width: string | number;
|
|
19628
|
+
color: string;
|
|
19629
|
+
opacity: string | number;
|
|
19630
|
+
radius: string | number;
|
|
19631
|
+
};
|
|
19763
19632
|
padding?: string | number | {
|
|
19764
19633
|
top: string | number;
|
|
19765
19634
|
right: string | number;
|
|
@@ -19788,7 +19657,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19788
19657
|
speed: string | number;
|
|
19789
19658
|
direction?: "left" | "right" | "up" | "down";
|
|
19790
19659
|
};
|
|
19791
|
-
position?: "top" | "bottom" | "center";
|
|
19792
19660
|
} | {
|
|
19793
19661
|
type: "html";
|
|
19794
19662
|
html: string;
|
|
@@ -20310,13 +20178,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20310
20178
|
type: z.ZodEnum<{
|
|
20311
20179
|
"rich-caption": "rich-caption";
|
|
20312
20180
|
}>;
|
|
20313
|
-
src: z.
|
|
20314
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20315
|
-
text: z.ZodString;
|
|
20316
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
20317
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
20318
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
20319
|
-
}, z.core.$strict>>>;
|
|
20181
|
+
src: z.ZodString;
|
|
20320
20182
|
font: z.ZodOptional<z.ZodObject<{
|
|
20321
20183
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20322
20184
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -20324,11 +20186,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20324
20186
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20325
20187
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20326
20188
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20327
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
20328
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20329
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20330
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20331
|
-
}, z.core.$strict>>;
|
|
20332
20189
|
}, z.core.$strict>>;
|
|
20333
20190
|
style: z.ZodOptional<z.ZodObject<{
|
|
20334
20191
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -20374,6 +20231,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20374
20231
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20375
20232
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20376
20233
|
}, z.core.$strict>>;
|
|
20234
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
20235
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20236
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
20237
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20238
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20239
|
+
}, z.core.$strict>>;
|
|
20377
20240
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
20378
20241
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20379
20242
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -20424,13 +20287,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20424
20287
|
down: "down";
|
|
20425
20288
|
}>>;
|
|
20426
20289
|
}, z.core.$strict>>;
|
|
20427
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
20428
|
-
top: "top";
|
|
20429
|
-
bottom: "bottom";
|
|
20430
|
-
center: "center";
|
|
20431
|
-
}>>;
|
|
20432
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20433
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20434
20290
|
}, z.core.$strict>, z.ZodObject<{
|
|
20435
20291
|
type: z.ZodEnum<{
|
|
20436
20292
|
html: "html";
|
|
@@ -21595,15 +21451,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21595
21451
|
speed?: string | number;
|
|
21596
21452
|
} | {
|
|
21597
21453
|
type: "rich-caption";
|
|
21598
|
-
|
|
21599
|
-
maxLines: string | number;
|
|
21600
|
-
src?: string;
|
|
21601
|
-
words?: {
|
|
21602
|
-
text: string;
|
|
21603
|
-
start?: string | number;
|
|
21604
|
-
end?: string | number;
|
|
21605
|
-
confidence?: string | number;
|
|
21606
|
-
}[];
|
|
21454
|
+
src: string;
|
|
21607
21455
|
font?: {
|
|
21608
21456
|
family: string;
|
|
21609
21457
|
size: string | number;
|
|
@@ -21611,11 +21459,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21611
21459
|
color: string;
|
|
21612
21460
|
opacity: string | number;
|
|
21613
21461
|
background?: string;
|
|
21614
|
-
stroke?: {
|
|
21615
|
-
width: string | number;
|
|
21616
|
-
color: string;
|
|
21617
|
-
opacity: string | number;
|
|
21618
|
-
};
|
|
21619
21462
|
};
|
|
21620
21463
|
style?: {
|
|
21621
21464
|
letterSpacing: string | number;
|
|
@@ -21649,6 +21492,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21649
21492
|
borderRadius: string | number;
|
|
21650
21493
|
color?: string;
|
|
21651
21494
|
};
|
|
21495
|
+
border?: {
|
|
21496
|
+
width: string | number;
|
|
21497
|
+
color: string;
|
|
21498
|
+
opacity: string | number;
|
|
21499
|
+
radius: string | number;
|
|
21500
|
+
};
|
|
21652
21501
|
padding?: string | number | {
|
|
21653
21502
|
top: string | number;
|
|
21654
21503
|
right: string | number;
|
|
@@ -21677,7 +21526,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21677
21526
|
speed: string | number;
|
|
21678
21527
|
direction?: "left" | "right" | "up" | "down";
|
|
21679
21528
|
};
|
|
21680
|
-
position?: "top" | "bottom" | "center";
|
|
21681
21529
|
} | {
|
|
21682
21530
|
type: "html";
|
|
21683
21531
|
html: string;
|
|
@@ -22138,15 +21986,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22138
21986
|
speed?: string | number;
|
|
22139
21987
|
} | {
|
|
22140
21988
|
type: "rich-caption";
|
|
22141
|
-
|
|
22142
|
-
maxLines: string | number;
|
|
22143
|
-
src?: string;
|
|
22144
|
-
words?: {
|
|
22145
|
-
text: string;
|
|
22146
|
-
start?: string | number;
|
|
22147
|
-
end?: string | number;
|
|
22148
|
-
confidence?: string | number;
|
|
22149
|
-
}[];
|
|
21989
|
+
src: string;
|
|
22150
21990
|
font?: {
|
|
22151
21991
|
family: string;
|
|
22152
21992
|
size: string | number;
|
|
@@ -22154,11 +21994,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22154
21994
|
color: string;
|
|
22155
21995
|
opacity: string | number;
|
|
22156
21996
|
background?: string;
|
|
22157
|
-
stroke?: {
|
|
22158
|
-
width: string | number;
|
|
22159
|
-
color: string;
|
|
22160
|
-
opacity: string | number;
|
|
22161
|
-
};
|
|
22162
21997
|
};
|
|
22163
21998
|
style?: {
|
|
22164
21999
|
letterSpacing: string | number;
|
|
@@ -22192,6 +22027,12 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22192
22027
|
borderRadius: string | number;
|
|
22193
22028
|
color?: string;
|
|
22194
22029
|
};
|
|
22030
|
+
border?: {
|
|
22031
|
+
width: string | number;
|
|
22032
|
+
color: string;
|
|
22033
|
+
opacity: string | number;
|
|
22034
|
+
radius: string | number;
|
|
22035
|
+
};
|
|
22195
22036
|
padding?: string | number | {
|
|
22196
22037
|
top: string | number;
|
|
22197
22038
|
right: string | number;
|
|
@@ -22220,7 +22061,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22220
22061
|
speed: string | number;
|
|
22221
22062
|
direction?: "left" | "right" | "up" | "down";
|
|
22222
22063
|
};
|
|
22223
|
-
position?: "top" | "bottom" | "center";
|
|
22224
22064
|
} | {
|
|
22225
22065
|
type: "html";
|
|
22226
22066
|
html: string;
|
|
@@ -22741,13 +22581,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22741
22581
|
type: z.ZodEnum<{
|
|
22742
22582
|
"rich-caption": "rich-caption";
|
|
22743
22583
|
}>;
|
|
22744
|
-
src: z.
|
|
22745
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22746
|
-
text: z.ZodString;
|
|
22747
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
22748
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
22749
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
22750
|
-
}, z.core.$strict>>>;
|
|
22584
|
+
src: z.ZodString;
|
|
22751
22585
|
font: z.ZodOptional<z.ZodObject<{
|
|
22752
22586
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22753
22587
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -22755,11 +22589,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22755
22589
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22756
22590
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22757
22591
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
22758
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
22759
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22760
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22761
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22762
|
-
}, z.core.$strict>>;
|
|
22763
22592
|
}, z.core.$strict>>;
|
|
22764
22593
|
style: z.ZodOptional<z.ZodObject<{
|
|
22765
22594
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -22805,6 +22634,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22805
22634
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22806
22635
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22807
22636
|
}, z.core.$strict>>;
|
|
22637
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
22638
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22639
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
22640
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22641
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22642
|
+
}, z.core.$strict>>;
|
|
22808
22643
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
22809
22644
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22810
22645
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -22855,13 +22690,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22855
22690
|
down: "down";
|
|
22856
22691
|
}>>;
|
|
22857
22692
|
}, z.core.$strict>>;
|
|
22858
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
22859
|
-
top: "top";
|
|
22860
|
-
bottom: "bottom";
|
|
22861
|
-
center: "center";
|
|
22862
|
-
}>>;
|
|
22863
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22864
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22865
22693
|
}, z.core.$strict>, z.ZodObject<{
|
|
22866
22694
|
type: z.ZodEnum<{
|
|
22867
22695
|
html: "html";
|
|
@@ -24026,15 +23854,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24026
23854
|
speed?: string | number;
|
|
24027
23855
|
} | {
|
|
24028
23856
|
type: "rich-caption";
|
|
24029
|
-
|
|
24030
|
-
maxLines: string | number;
|
|
24031
|
-
src?: string;
|
|
24032
|
-
words?: {
|
|
24033
|
-
text: string;
|
|
24034
|
-
start?: string | number;
|
|
24035
|
-
end?: string | number;
|
|
24036
|
-
confidence?: string | number;
|
|
24037
|
-
}[];
|
|
23857
|
+
src: string;
|
|
24038
23858
|
font?: {
|
|
24039
23859
|
family: string;
|
|
24040
23860
|
size: string | number;
|
|
@@ -24042,11 +23862,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24042
23862
|
color: string;
|
|
24043
23863
|
opacity: string | number;
|
|
24044
23864
|
background?: string;
|
|
24045
|
-
stroke?: {
|
|
24046
|
-
width: string | number;
|
|
24047
|
-
color: string;
|
|
24048
|
-
opacity: string | number;
|
|
24049
|
-
};
|
|
24050
23865
|
};
|
|
24051
23866
|
style?: {
|
|
24052
23867
|
letterSpacing: string | number;
|
|
@@ -24080,6 +23895,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24080
23895
|
borderRadius: string | number;
|
|
24081
23896
|
color?: string;
|
|
24082
23897
|
};
|
|
23898
|
+
border?: {
|
|
23899
|
+
width: string | number;
|
|
23900
|
+
color: string;
|
|
23901
|
+
opacity: string | number;
|
|
23902
|
+
radius: string | number;
|
|
23903
|
+
};
|
|
24083
23904
|
padding?: string | number | {
|
|
24084
23905
|
top: string | number;
|
|
24085
23906
|
right: string | number;
|
|
@@ -24108,7 +23929,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24108
23929
|
speed: string | number;
|
|
24109
23930
|
direction?: "left" | "right" | "up" | "down";
|
|
24110
23931
|
};
|
|
24111
|
-
position?: "top" | "bottom" | "center";
|
|
24112
23932
|
} | {
|
|
24113
23933
|
type: "html";
|
|
24114
23934
|
html: string;
|
|
@@ -24569,15 +24389,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24569
24389
|
speed?: string | number;
|
|
24570
24390
|
} | {
|
|
24571
24391
|
type: "rich-caption";
|
|
24572
|
-
|
|
24573
|
-
maxLines: string | number;
|
|
24574
|
-
src?: string;
|
|
24575
|
-
words?: {
|
|
24576
|
-
text: string;
|
|
24577
|
-
start?: string | number;
|
|
24578
|
-
end?: string | number;
|
|
24579
|
-
confidence?: string | number;
|
|
24580
|
-
}[];
|
|
24392
|
+
src: string;
|
|
24581
24393
|
font?: {
|
|
24582
24394
|
family: string;
|
|
24583
24395
|
size: string | number;
|
|
@@ -24585,11 +24397,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24585
24397
|
color: string;
|
|
24586
24398
|
opacity: string | number;
|
|
24587
24399
|
background?: string;
|
|
24588
|
-
stroke?: {
|
|
24589
|
-
width: string | number;
|
|
24590
|
-
color: string;
|
|
24591
|
-
opacity: string | number;
|
|
24592
|
-
};
|
|
24593
24400
|
};
|
|
24594
24401
|
style?: {
|
|
24595
24402
|
letterSpacing: string | number;
|
|
@@ -24623,6 +24430,12 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24623
24430
|
borderRadius: string | number;
|
|
24624
24431
|
color?: string;
|
|
24625
24432
|
};
|
|
24433
|
+
border?: {
|
|
24434
|
+
width: string | number;
|
|
24435
|
+
color: string;
|
|
24436
|
+
opacity: string | number;
|
|
24437
|
+
radius: string | number;
|
|
24438
|
+
};
|
|
24626
24439
|
padding?: string | number | {
|
|
24627
24440
|
top: string | number;
|
|
24628
24441
|
right: string | number;
|
|
@@ -24651,7 +24464,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24651
24464
|
speed: string | number;
|
|
24652
24465
|
direction?: "left" | "right" | "up" | "down";
|
|
24653
24466
|
};
|
|
24654
|
-
position?: "top" | "bottom" | "center";
|
|
24655
24467
|
} | {
|
|
24656
24468
|
type: "html";
|
|
24657
24469
|
html: string;
|
|
@@ -25176,13 +24988,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25176
24988
|
type: z.ZodEnum<{
|
|
25177
24989
|
"rich-caption": "rich-caption";
|
|
25178
24990
|
}>;
|
|
25179
|
-
src: z.
|
|
25180
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25181
|
-
text: z.ZodString;
|
|
25182
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
25183
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
25184
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
25185
|
-
}, z.core.$strict>>>;
|
|
24991
|
+
src: z.ZodString;
|
|
25186
24992
|
font: z.ZodOptional<z.ZodObject<{
|
|
25187
24993
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
25188
24994
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -25190,11 +24996,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25190
24996
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25191
24997
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25192
24998
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
25193
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
25194
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25195
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25196
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25197
|
-
}, z.core.$strict>>;
|
|
25198
24999
|
}, z.core.$strict>>;
|
|
25199
25000
|
style: z.ZodOptional<z.ZodObject<{
|
|
25200
25001
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -25240,6 +25041,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25240
25041
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25241
25042
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25242
25043
|
}, z.core.$strict>>;
|
|
25044
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
25045
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25046
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
25047
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25048
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25049
|
+
}, z.core.$strict>>;
|
|
25243
25050
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
25244
25051
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25245
25052
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -25290,13 +25097,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25290
25097
|
down: "down";
|
|
25291
25098
|
}>>;
|
|
25292
25099
|
}, z.core.$strict>>;
|
|
25293
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
25294
|
-
top: "top";
|
|
25295
|
-
bottom: "bottom";
|
|
25296
|
-
center: "center";
|
|
25297
|
-
}>>;
|
|
25298
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25299
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25300
25100
|
}, z.core.$strict>, z.ZodObject<{
|
|
25301
25101
|
type: z.ZodEnum<{
|
|
25302
25102
|
html: "html";
|
|
@@ -26461,15 +26261,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26461
26261
|
speed?: string | number;
|
|
26462
26262
|
} | {
|
|
26463
26263
|
type: "rich-caption";
|
|
26464
|
-
|
|
26465
|
-
maxLines: string | number;
|
|
26466
|
-
src?: string;
|
|
26467
|
-
words?: {
|
|
26468
|
-
text: string;
|
|
26469
|
-
start?: string | number;
|
|
26470
|
-
end?: string | number;
|
|
26471
|
-
confidence?: string | number;
|
|
26472
|
-
}[];
|
|
26264
|
+
src: string;
|
|
26473
26265
|
font?: {
|
|
26474
26266
|
family: string;
|
|
26475
26267
|
size: string | number;
|
|
@@ -26477,11 +26269,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26477
26269
|
color: string;
|
|
26478
26270
|
opacity: string | number;
|
|
26479
26271
|
background?: string;
|
|
26480
|
-
stroke?: {
|
|
26481
|
-
width: string | number;
|
|
26482
|
-
color: string;
|
|
26483
|
-
opacity: string | number;
|
|
26484
|
-
};
|
|
26485
26272
|
};
|
|
26486
26273
|
style?: {
|
|
26487
26274
|
letterSpacing: string | number;
|
|
@@ -26515,6 +26302,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26515
26302
|
borderRadius: string | number;
|
|
26516
26303
|
color?: string;
|
|
26517
26304
|
};
|
|
26305
|
+
border?: {
|
|
26306
|
+
width: string | number;
|
|
26307
|
+
color: string;
|
|
26308
|
+
opacity: string | number;
|
|
26309
|
+
radius: string | number;
|
|
26310
|
+
};
|
|
26518
26311
|
padding?: string | number | {
|
|
26519
26312
|
top: string | number;
|
|
26520
26313
|
right: string | number;
|
|
@@ -26543,7 +26336,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26543
26336
|
speed: string | number;
|
|
26544
26337
|
direction?: "left" | "right" | "up" | "down";
|
|
26545
26338
|
};
|
|
26546
|
-
position?: "top" | "bottom" | "center";
|
|
26547
26339
|
} | {
|
|
26548
26340
|
type: "html";
|
|
26549
26341
|
html: string;
|
|
@@ -27004,15 +26796,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27004
26796
|
speed?: string | number;
|
|
27005
26797
|
} | {
|
|
27006
26798
|
type: "rich-caption";
|
|
27007
|
-
|
|
27008
|
-
maxLines: string | number;
|
|
27009
|
-
src?: string;
|
|
27010
|
-
words?: {
|
|
27011
|
-
text: string;
|
|
27012
|
-
start?: string | number;
|
|
27013
|
-
end?: string | number;
|
|
27014
|
-
confidence?: string | number;
|
|
27015
|
-
}[];
|
|
26799
|
+
src: string;
|
|
27016
26800
|
font?: {
|
|
27017
26801
|
family: string;
|
|
27018
26802
|
size: string | number;
|
|
@@ -27020,11 +26804,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27020
26804
|
color: string;
|
|
27021
26805
|
opacity: string | number;
|
|
27022
26806
|
background?: string;
|
|
27023
|
-
stroke?: {
|
|
27024
|
-
width: string | number;
|
|
27025
|
-
color: string;
|
|
27026
|
-
opacity: string | number;
|
|
27027
|
-
};
|
|
27028
26807
|
};
|
|
27029
26808
|
style?: {
|
|
27030
26809
|
letterSpacing: string | number;
|
|
@@ -27058,6 +26837,12 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27058
26837
|
borderRadius: string | number;
|
|
27059
26838
|
color?: string;
|
|
27060
26839
|
};
|
|
26840
|
+
border?: {
|
|
26841
|
+
width: string | number;
|
|
26842
|
+
color: string;
|
|
26843
|
+
opacity: string | number;
|
|
26844
|
+
radius: string | number;
|
|
26845
|
+
};
|
|
27061
26846
|
padding?: string | number | {
|
|
27062
26847
|
top: string | number;
|
|
27063
26848
|
right: string | number;
|
|
@@ -27086,7 +26871,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27086
26871
|
speed: string | number;
|
|
27087
26872
|
direction?: "left" | "right" | "up" | "down";
|
|
27088
26873
|
};
|
|
27089
|
-
position?: "top" | "bottom" | "center";
|
|
27090
26874
|
} | {
|
|
27091
26875
|
type: "html";
|
|
27092
26876
|
html: string;
|
|
@@ -27773,13 +27557,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27773
27557
|
type: z.ZodEnum<{
|
|
27774
27558
|
"rich-caption": "rich-caption";
|
|
27775
27559
|
}>;
|
|
27776
|
-
src: z.
|
|
27777
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27778
|
-
text: z.ZodString;
|
|
27779
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
27780
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
27781
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
27782
|
-
}, z.core.$strict>>>;
|
|
27560
|
+
src: z.ZodString;
|
|
27783
27561
|
font: z.ZodOptional<z.ZodObject<{
|
|
27784
27562
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
27785
27563
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -27787,11 +27565,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27787
27565
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27788
27566
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27789
27567
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27790
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
27791
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27792
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27793
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27794
|
-
}, z.core.$strict>>;
|
|
27795
27568
|
}, z.core.$strict>>;
|
|
27796
27569
|
style: z.ZodOptional<z.ZodObject<{
|
|
27797
27570
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -27837,6 +27610,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27837
27610
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27838
27611
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27839
27612
|
}, z.core.$strict>>;
|
|
27613
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
27614
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27615
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
27616
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27617
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27618
|
+
}, z.core.$strict>>;
|
|
27840
27619
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
27841
27620
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27842
27621
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -27887,13 +27666,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27887
27666
|
down: "down";
|
|
27888
27667
|
}>>;
|
|
27889
27668
|
}, z.core.$strict>>;
|
|
27890
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
27891
|
-
top: "top";
|
|
27892
|
-
bottom: "bottom";
|
|
27893
|
-
center: "center";
|
|
27894
|
-
}>>;
|
|
27895
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27896
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27897
27669
|
}, z.core.$strict>, z.ZodObject<{
|
|
27898
27670
|
type: z.ZodEnum<{
|
|
27899
27671
|
html: "html";
|
|
@@ -29058,15 +28830,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29058
28830
|
speed?: string | number;
|
|
29059
28831
|
} | {
|
|
29060
28832
|
type: "rich-caption";
|
|
29061
|
-
|
|
29062
|
-
maxLines: string | number;
|
|
29063
|
-
src?: string;
|
|
29064
|
-
words?: {
|
|
29065
|
-
text: string;
|
|
29066
|
-
start?: string | number;
|
|
29067
|
-
end?: string | number;
|
|
29068
|
-
confidence?: string | number;
|
|
29069
|
-
}[];
|
|
28833
|
+
src: string;
|
|
29070
28834
|
font?: {
|
|
29071
28835
|
family: string;
|
|
29072
28836
|
size: string | number;
|
|
@@ -29074,11 +28838,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29074
28838
|
color: string;
|
|
29075
28839
|
opacity: string | number;
|
|
29076
28840
|
background?: string;
|
|
29077
|
-
stroke?: {
|
|
29078
|
-
width: string | number;
|
|
29079
|
-
color: string;
|
|
29080
|
-
opacity: string | number;
|
|
29081
|
-
};
|
|
29082
28841
|
};
|
|
29083
28842
|
style?: {
|
|
29084
28843
|
letterSpacing: string | number;
|
|
@@ -29112,6 +28871,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29112
28871
|
borderRadius: string | number;
|
|
29113
28872
|
color?: string;
|
|
29114
28873
|
};
|
|
28874
|
+
border?: {
|
|
28875
|
+
width: string | number;
|
|
28876
|
+
color: string;
|
|
28877
|
+
opacity: string | number;
|
|
28878
|
+
radius: string | number;
|
|
28879
|
+
};
|
|
29115
28880
|
padding?: string | number | {
|
|
29116
28881
|
top: string | number;
|
|
29117
28882
|
right: string | number;
|
|
@@ -29140,7 +28905,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29140
28905
|
speed: string | number;
|
|
29141
28906
|
direction?: "left" | "right" | "up" | "down";
|
|
29142
28907
|
};
|
|
29143
|
-
position?: "top" | "bottom" | "center";
|
|
29144
28908
|
} | {
|
|
29145
28909
|
type: "html";
|
|
29146
28910
|
html: string;
|
|
@@ -29601,15 +29365,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29601
29365
|
speed?: string | number;
|
|
29602
29366
|
} | {
|
|
29603
29367
|
type: "rich-caption";
|
|
29604
|
-
|
|
29605
|
-
maxLines: string | number;
|
|
29606
|
-
src?: string;
|
|
29607
|
-
words?: {
|
|
29608
|
-
text: string;
|
|
29609
|
-
start?: string | number;
|
|
29610
|
-
end?: string | number;
|
|
29611
|
-
confidence?: string | number;
|
|
29612
|
-
}[];
|
|
29368
|
+
src: string;
|
|
29613
29369
|
font?: {
|
|
29614
29370
|
family: string;
|
|
29615
29371
|
size: string | number;
|
|
@@ -29617,11 +29373,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29617
29373
|
color: string;
|
|
29618
29374
|
opacity: string | number;
|
|
29619
29375
|
background?: string;
|
|
29620
|
-
stroke?: {
|
|
29621
|
-
width: string | number;
|
|
29622
|
-
color: string;
|
|
29623
|
-
opacity: string | number;
|
|
29624
|
-
};
|
|
29625
29376
|
};
|
|
29626
29377
|
style?: {
|
|
29627
29378
|
letterSpacing: string | number;
|
|
@@ -29655,6 +29406,12 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29655
29406
|
borderRadius: string | number;
|
|
29656
29407
|
color?: string;
|
|
29657
29408
|
};
|
|
29409
|
+
border?: {
|
|
29410
|
+
width: string | number;
|
|
29411
|
+
color: string;
|
|
29412
|
+
opacity: string | number;
|
|
29413
|
+
radius: string | number;
|
|
29414
|
+
};
|
|
29658
29415
|
padding?: string | number | {
|
|
29659
29416
|
top: string | number;
|
|
29660
29417
|
right: string | number;
|
|
@@ -29683,7 +29440,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29683
29440
|
speed: string | number;
|
|
29684
29441
|
direction?: "left" | "right" | "up" | "down";
|
|
29685
29442
|
};
|
|
29686
|
-
position?: "top" | "bottom" | "center";
|
|
29687
29443
|
} | {
|
|
29688
29444
|
type: "html";
|
|
29689
29445
|
html: string;
|
|
@@ -30392,13 +30148,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30392
30148
|
type: z.ZodEnum<{
|
|
30393
30149
|
"rich-caption": "rich-caption";
|
|
30394
30150
|
}>;
|
|
30395
|
-
src: z.
|
|
30396
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
30397
|
-
text: z.ZodString;
|
|
30398
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
30399
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
30400
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
30401
|
-
}, z.core.$strict>>>;
|
|
30151
|
+
src: z.ZodString;
|
|
30402
30152
|
font: z.ZodOptional<z.ZodObject<{
|
|
30403
30153
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
30404
30154
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -30406,11 +30156,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30406
30156
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30407
30157
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30408
30158
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
30409
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
30410
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30411
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30412
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30413
|
-
}, z.core.$strict>>;
|
|
30414
30159
|
}, z.core.$strict>>;
|
|
30415
30160
|
style: z.ZodOptional<z.ZodObject<{
|
|
30416
30161
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -30456,6 +30201,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30456
30201
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30457
30202
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30458
30203
|
}, z.core.$strict>>;
|
|
30204
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
30205
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30206
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
30207
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30208
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30209
|
+
}, z.core.$strict>>;
|
|
30459
30210
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
30460
30211
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30461
30212
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -30506,13 +30257,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30506
30257
|
down: "down";
|
|
30507
30258
|
}>>;
|
|
30508
30259
|
}, z.core.$strict>>;
|
|
30509
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
30510
|
-
top: "top";
|
|
30511
|
-
bottom: "bottom";
|
|
30512
|
-
center: "center";
|
|
30513
|
-
}>>;
|
|
30514
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30515
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30516
30260
|
}, z.core.$strict>, z.ZodObject<{
|
|
30517
30261
|
type: z.ZodEnum<{
|
|
30518
30262
|
html: "html";
|
|
@@ -31677,15 +31421,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31677
31421
|
speed?: string | number;
|
|
31678
31422
|
} | {
|
|
31679
31423
|
type: "rich-caption";
|
|
31680
|
-
|
|
31681
|
-
maxLines: string | number;
|
|
31682
|
-
src?: string;
|
|
31683
|
-
words?: {
|
|
31684
|
-
text: string;
|
|
31685
|
-
start?: string | number;
|
|
31686
|
-
end?: string | number;
|
|
31687
|
-
confidence?: string | number;
|
|
31688
|
-
}[];
|
|
31424
|
+
src: string;
|
|
31689
31425
|
font?: {
|
|
31690
31426
|
family: string;
|
|
31691
31427
|
size: string | number;
|
|
@@ -31693,11 +31429,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31693
31429
|
color: string;
|
|
31694
31430
|
opacity: string | number;
|
|
31695
31431
|
background?: string;
|
|
31696
|
-
stroke?: {
|
|
31697
|
-
width: string | number;
|
|
31698
|
-
color: string;
|
|
31699
|
-
opacity: string | number;
|
|
31700
|
-
};
|
|
31701
31432
|
};
|
|
31702
31433
|
style?: {
|
|
31703
31434
|
letterSpacing: string | number;
|
|
@@ -31731,6 +31462,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31731
31462
|
borderRadius: string | number;
|
|
31732
31463
|
color?: string;
|
|
31733
31464
|
};
|
|
31465
|
+
border?: {
|
|
31466
|
+
width: string | number;
|
|
31467
|
+
color: string;
|
|
31468
|
+
opacity: string | number;
|
|
31469
|
+
radius: string | number;
|
|
31470
|
+
};
|
|
31734
31471
|
padding?: string | number | {
|
|
31735
31472
|
top: string | number;
|
|
31736
31473
|
right: string | number;
|
|
@@ -31759,7 +31496,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31759
31496
|
speed: string | number;
|
|
31760
31497
|
direction?: "left" | "right" | "up" | "down";
|
|
31761
31498
|
};
|
|
31762
|
-
position?: "top" | "bottom" | "center";
|
|
31763
31499
|
} | {
|
|
31764
31500
|
type: "html";
|
|
31765
31501
|
html: string;
|
|
@@ -32220,15 +31956,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32220
31956
|
speed?: string | number;
|
|
32221
31957
|
} | {
|
|
32222
31958
|
type: "rich-caption";
|
|
32223
|
-
|
|
32224
|
-
maxLines: string | number;
|
|
32225
|
-
src?: string;
|
|
32226
|
-
words?: {
|
|
32227
|
-
text: string;
|
|
32228
|
-
start?: string | number;
|
|
32229
|
-
end?: string | number;
|
|
32230
|
-
confidence?: string | number;
|
|
32231
|
-
}[];
|
|
31959
|
+
src: string;
|
|
32232
31960
|
font?: {
|
|
32233
31961
|
family: string;
|
|
32234
31962
|
size: string | number;
|
|
@@ -32236,11 +31964,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32236
31964
|
color: string;
|
|
32237
31965
|
opacity: string | number;
|
|
32238
31966
|
background?: string;
|
|
32239
|
-
stroke?: {
|
|
32240
|
-
width: string | number;
|
|
32241
|
-
color: string;
|
|
32242
|
-
opacity: string | number;
|
|
32243
|
-
};
|
|
32244
31967
|
};
|
|
32245
31968
|
style?: {
|
|
32246
31969
|
letterSpacing: string | number;
|
|
@@ -32274,6 +31997,12 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32274
31997
|
borderRadius: string | number;
|
|
32275
31998
|
color?: string;
|
|
32276
31999
|
};
|
|
32000
|
+
border?: {
|
|
32001
|
+
width: string | number;
|
|
32002
|
+
color: string;
|
|
32003
|
+
opacity: string | number;
|
|
32004
|
+
radius: string | number;
|
|
32005
|
+
};
|
|
32277
32006
|
padding?: string | number | {
|
|
32278
32007
|
top: string | number;
|
|
32279
32008
|
right: string | number;
|
|
@@ -32302,7 +32031,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32302
32031
|
speed: string | number;
|
|
32303
32032
|
direction?: "left" | "right" | "up" | "down";
|
|
32304
32033
|
};
|
|
32305
|
-
position?: "top" | "bottom" | "center";
|
|
32306
32034
|
} | {
|
|
32307
32035
|
type: "html";
|
|
32308
32036
|
html: string;
|
|
@@ -33011,13 +32739,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33011
32739
|
type: z.ZodEnum<{
|
|
33012
32740
|
"rich-caption": "rich-caption";
|
|
33013
32741
|
}>;
|
|
33014
|
-
src: z.
|
|
33015
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33016
|
-
text: z.ZodString;
|
|
33017
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
33018
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
33019
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
33020
|
-
}, z.core.$strict>>>;
|
|
32742
|
+
src: z.ZodString;
|
|
33021
32743
|
font: z.ZodOptional<z.ZodObject<{
|
|
33022
32744
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
33023
32745
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -33025,11 +32747,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33025
32747
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
33026
32748
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33027
32749
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33028
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
33029
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33030
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
33031
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33032
|
-
}, z.core.$strict>>;
|
|
33033
32750
|
}, z.core.$strict>>;
|
|
33034
32751
|
style: z.ZodOptional<z.ZodObject<{
|
|
33035
32752
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -33075,6 +32792,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33075
32792
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33076
32793
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33077
32794
|
}, z.core.$strict>>;
|
|
32795
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
32796
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32797
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
32798
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32799
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
32800
|
+
}, z.core.$strict>>;
|
|
33078
32801
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
33079
32802
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33080
32803
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -33125,13 +32848,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33125
32848
|
down: "down";
|
|
33126
32849
|
}>>;
|
|
33127
32850
|
}, z.core.$strict>>;
|
|
33128
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
33129
|
-
top: "top";
|
|
33130
|
-
bottom: "bottom";
|
|
33131
|
-
center: "center";
|
|
33132
|
-
}>>;
|
|
33133
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33134
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33135
32851
|
}, z.core.$strict>, z.ZodObject<{
|
|
33136
32852
|
type: z.ZodEnum<{
|
|
33137
32853
|
html: "html";
|
|
@@ -34296,15 +34012,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34296
34012
|
speed?: string | number;
|
|
34297
34013
|
} | {
|
|
34298
34014
|
type: "rich-caption";
|
|
34299
|
-
|
|
34300
|
-
maxLines: string | number;
|
|
34301
|
-
src?: string;
|
|
34302
|
-
words?: {
|
|
34303
|
-
text: string;
|
|
34304
|
-
start?: string | number;
|
|
34305
|
-
end?: string | number;
|
|
34306
|
-
confidence?: string | number;
|
|
34307
|
-
}[];
|
|
34015
|
+
src: string;
|
|
34308
34016
|
font?: {
|
|
34309
34017
|
family: string;
|
|
34310
34018
|
size: string | number;
|
|
@@ -34312,11 +34020,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34312
34020
|
color: string;
|
|
34313
34021
|
opacity: string | number;
|
|
34314
34022
|
background?: string;
|
|
34315
|
-
stroke?: {
|
|
34316
|
-
width: string | number;
|
|
34317
|
-
color: string;
|
|
34318
|
-
opacity: string | number;
|
|
34319
|
-
};
|
|
34320
34023
|
};
|
|
34321
34024
|
style?: {
|
|
34322
34025
|
letterSpacing: string | number;
|
|
@@ -34350,6 +34053,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34350
34053
|
borderRadius: string | number;
|
|
34351
34054
|
color?: string;
|
|
34352
34055
|
};
|
|
34056
|
+
border?: {
|
|
34057
|
+
width: string | number;
|
|
34058
|
+
color: string;
|
|
34059
|
+
opacity: string | number;
|
|
34060
|
+
radius: string | number;
|
|
34061
|
+
};
|
|
34353
34062
|
padding?: string | number | {
|
|
34354
34063
|
top: string | number;
|
|
34355
34064
|
right: string | number;
|
|
@@ -34378,7 +34087,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34378
34087
|
speed: string | number;
|
|
34379
34088
|
direction?: "left" | "right" | "up" | "down";
|
|
34380
34089
|
};
|
|
34381
|
-
position?: "top" | "bottom" | "center";
|
|
34382
34090
|
} | {
|
|
34383
34091
|
type: "html";
|
|
34384
34092
|
html: string;
|
|
@@ -34839,15 +34547,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34839
34547
|
speed?: string | number;
|
|
34840
34548
|
} | {
|
|
34841
34549
|
type: "rich-caption";
|
|
34842
|
-
|
|
34843
|
-
maxLines: string | number;
|
|
34844
|
-
src?: string;
|
|
34845
|
-
words?: {
|
|
34846
|
-
text: string;
|
|
34847
|
-
start?: string | number;
|
|
34848
|
-
end?: string | number;
|
|
34849
|
-
confidence?: string | number;
|
|
34850
|
-
}[];
|
|
34550
|
+
src: string;
|
|
34851
34551
|
font?: {
|
|
34852
34552
|
family: string;
|
|
34853
34553
|
size: string | number;
|
|
@@ -34855,11 +34555,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34855
34555
|
color: string;
|
|
34856
34556
|
opacity: string | number;
|
|
34857
34557
|
background?: string;
|
|
34858
|
-
stroke?: {
|
|
34859
|
-
width: string | number;
|
|
34860
|
-
color: string;
|
|
34861
|
-
opacity: string | number;
|
|
34862
|
-
};
|
|
34863
34558
|
};
|
|
34864
34559
|
style?: {
|
|
34865
34560
|
letterSpacing: string | number;
|
|
@@ -34893,6 +34588,12 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34893
34588
|
borderRadius: string | number;
|
|
34894
34589
|
color?: string;
|
|
34895
34590
|
};
|
|
34591
|
+
border?: {
|
|
34592
|
+
width: string | number;
|
|
34593
|
+
color: string;
|
|
34594
|
+
opacity: string | number;
|
|
34595
|
+
radius: string | number;
|
|
34596
|
+
};
|
|
34896
34597
|
padding?: string | number | {
|
|
34897
34598
|
top: string | number;
|
|
34898
34599
|
right: string | number;
|
|
@@ -34921,7 +34622,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34921
34622
|
speed: string | number;
|
|
34922
34623
|
direction?: "left" | "right" | "up" | "down";
|
|
34923
34624
|
};
|
|
34924
|
-
position?: "top" | "bottom" | "center";
|
|
34925
34625
|
} | {
|
|
34926
34626
|
type: "html";
|
|
34927
34627
|
html: string;
|
|
@@ -35636,13 +35336,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35636
35336
|
type: z.ZodEnum<{
|
|
35637
35337
|
"rich-caption": "rich-caption";
|
|
35638
35338
|
}>;
|
|
35639
|
-
src: z.
|
|
35640
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
35641
|
-
text: z.ZodString;
|
|
35642
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
35643
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
35644
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
35645
|
-
}, z.core.$strict>>>;
|
|
35339
|
+
src: z.ZodString;
|
|
35646
35340
|
font: z.ZodOptional<z.ZodObject<{
|
|
35647
35341
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
35648
35342
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -35650,11 +35344,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35650
35344
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35651
35345
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35652
35346
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
35653
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
35654
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35655
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35656
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35657
|
-
}, z.core.$strict>>;
|
|
35658
35347
|
}, z.core.$strict>>;
|
|
35659
35348
|
style: z.ZodOptional<z.ZodObject<{
|
|
35660
35349
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -35700,6 +35389,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35700
35389
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35701
35390
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35702
35391
|
}, z.core.$strict>>;
|
|
35392
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
35393
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35394
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
35395
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35396
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35397
|
+
}, z.core.$strict>>;
|
|
35703
35398
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
35704
35399
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35705
35400
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -35750,13 +35445,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35750
35445
|
down: "down";
|
|
35751
35446
|
}>>;
|
|
35752
35447
|
}, z.core.$strict>>;
|
|
35753
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
35754
|
-
top: "top";
|
|
35755
|
-
bottom: "bottom";
|
|
35756
|
-
center: "center";
|
|
35757
|
-
}>>;
|
|
35758
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35759
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35760
35448
|
}, z.core.$strict>, z.ZodObject<{
|
|
35761
35449
|
type: z.ZodEnum<{
|
|
35762
35450
|
html: "html";
|
|
@@ -36921,15 +36609,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
36921
36609
|
speed?: string | number;
|
|
36922
36610
|
} | {
|
|
36923
36611
|
type: "rich-caption";
|
|
36924
|
-
|
|
36925
|
-
maxLines: string | number;
|
|
36926
|
-
src?: string;
|
|
36927
|
-
words?: {
|
|
36928
|
-
text: string;
|
|
36929
|
-
start?: string | number;
|
|
36930
|
-
end?: string | number;
|
|
36931
|
-
confidence?: string | number;
|
|
36932
|
-
}[];
|
|
36612
|
+
src: string;
|
|
36933
36613
|
font?: {
|
|
36934
36614
|
family: string;
|
|
36935
36615
|
size: string | number;
|
|
@@ -36937,11 +36617,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
36937
36617
|
color: string;
|
|
36938
36618
|
opacity: string | number;
|
|
36939
36619
|
background?: string;
|
|
36940
|
-
stroke?: {
|
|
36941
|
-
width: string | number;
|
|
36942
|
-
color: string;
|
|
36943
|
-
opacity: string | number;
|
|
36944
|
-
};
|
|
36945
36620
|
};
|
|
36946
36621
|
style?: {
|
|
36947
36622
|
letterSpacing: string | number;
|
|
@@ -36975,6 +36650,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
36975
36650
|
borderRadius: string | number;
|
|
36976
36651
|
color?: string;
|
|
36977
36652
|
};
|
|
36653
|
+
border?: {
|
|
36654
|
+
width: string | number;
|
|
36655
|
+
color: string;
|
|
36656
|
+
opacity: string | number;
|
|
36657
|
+
radius: string | number;
|
|
36658
|
+
};
|
|
36978
36659
|
padding?: string | number | {
|
|
36979
36660
|
top: string | number;
|
|
36980
36661
|
right: string | number;
|
|
@@ -37003,7 +36684,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37003
36684
|
speed: string | number;
|
|
37004
36685
|
direction?: "left" | "right" | "up" | "down";
|
|
37005
36686
|
};
|
|
37006
|
-
position?: "top" | "bottom" | "center";
|
|
37007
36687
|
} | {
|
|
37008
36688
|
type: "html";
|
|
37009
36689
|
html: string;
|
|
@@ -37464,15 +37144,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37464
37144
|
speed?: string | number;
|
|
37465
37145
|
} | {
|
|
37466
37146
|
type: "rich-caption";
|
|
37467
|
-
|
|
37468
|
-
maxLines: string | number;
|
|
37469
|
-
src?: string;
|
|
37470
|
-
words?: {
|
|
37471
|
-
text: string;
|
|
37472
|
-
start?: string | number;
|
|
37473
|
-
end?: string | number;
|
|
37474
|
-
confidence?: string | number;
|
|
37475
|
-
}[];
|
|
37147
|
+
src: string;
|
|
37476
37148
|
font?: {
|
|
37477
37149
|
family: string;
|
|
37478
37150
|
size: string | number;
|
|
@@ -37480,11 +37152,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37480
37152
|
color: string;
|
|
37481
37153
|
opacity: string | number;
|
|
37482
37154
|
background?: string;
|
|
37483
|
-
stroke?: {
|
|
37484
|
-
width: string | number;
|
|
37485
|
-
color: string;
|
|
37486
|
-
opacity: string | number;
|
|
37487
|
-
};
|
|
37488
37155
|
};
|
|
37489
37156
|
style?: {
|
|
37490
37157
|
letterSpacing: string | number;
|
|
@@ -37518,6 +37185,12 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37518
37185
|
borderRadius: string | number;
|
|
37519
37186
|
color?: string;
|
|
37520
37187
|
};
|
|
37188
|
+
border?: {
|
|
37189
|
+
width: string | number;
|
|
37190
|
+
color: string;
|
|
37191
|
+
opacity: string | number;
|
|
37192
|
+
radius: string | number;
|
|
37193
|
+
};
|
|
37521
37194
|
padding?: string | number | {
|
|
37522
37195
|
top: string | number;
|
|
37523
37196
|
right: string | number;
|
|
@@ -37546,7 +37219,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37546
37219
|
speed: string | number;
|
|
37547
37220
|
direction?: "left" | "right" | "up" | "down";
|
|
37548
37221
|
};
|
|
37549
|
-
position?: "top" | "bottom" | "center";
|
|
37550
37222
|
} | {
|
|
37551
37223
|
type: "html";
|
|
37552
37224
|
html: string;
|
|
@@ -38259,13 +37931,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38259
37931
|
type: z.ZodEnum<{
|
|
38260
37932
|
"rich-caption": "rich-caption";
|
|
38261
37933
|
}>;
|
|
38262
|
-
src: z.
|
|
38263
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
38264
|
-
text: z.ZodString;
|
|
38265
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
38266
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
38267
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
38268
|
-
}, z.core.$strict>>>;
|
|
37934
|
+
src: z.ZodString;
|
|
38269
37935
|
font: z.ZodOptional<z.ZodObject<{
|
|
38270
37936
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38271
37937
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -38273,11 +37939,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38273
37939
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38274
37940
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38275
37941
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
38276
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
38277
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38278
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
38279
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38280
|
-
}, z.core.$strict>>;
|
|
38281
37942
|
}, z.core.$strict>>;
|
|
38282
37943
|
style: z.ZodOptional<z.ZodObject<{
|
|
38283
37944
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -38323,6 +37984,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38323
37984
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38324
37985
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38325
37986
|
}, z.core.$strict>>;
|
|
37987
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
37988
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
37989
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
37990
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
37991
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
37992
|
+
}, z.core.$strict>>;
|
|
38326
37993
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
38327
37994
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38328
37995
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -38373,13 +38040,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38373
38040
|
down: "down";
|
|
38374
38041
|
}>>;
|
|
38375
38042
|
}, z.core.$strict>>;
|
|
38376
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
38377
|
-
top: "top";
|
|
38378
|
-
bottom: "bottom";
|
|
38379
|
-
center: "center";
|
|
38380
|
-
}>>;
|
|
38381
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38382
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38383
38043
|
}, z.core.$strict>, z.ZodObject<{
|
|
38384
38044
|
type: z.ZodEnum<{
|
|
38385
38045
|
html: "html";
|
|
@@ -39544,15 +39204,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39544
39204
|
speed?: string | number;
|
|
39545
39205
|
} | {
|
|
39546
39206
|
type: "rich-caption";
|
|
39547
|
-
|
|
39548
|
-
maxLines: string | number;
|
|
39549
|
-
src?: string;
|
|
39550
|
-
words?: {
|
|
39551
|
-
text: string;
|
|
39552
|
-
start?: string | number;
|
|
39553
|
-
end?: string | number;
|
|
39554
|
-
confidence?: string | number;
|
|
39555
|
-
}[];
|
|
39207
|
+
src: string;
|
|
39556
39208
|
font?: {
|
|
39557
39209
|
family: string;
|
|
39558
39210
|
size: string | number;
|
|
@@ -39560,11 +39212,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39560
39212
|
color: string;
|
|
39561
39213
|
opacity: string | number;
|
|
39562
39214
|
background?: string;
|
|
39563
|
-
stroke?: {
|
|
39564
|
-
width: string | number;
|
|
39565
|
-
color: string;
|
|
39566
|
-
opacity: string | number;
|
|
39567
|
-
};
|
|
39568
39215
|
};
|
|
39569
39216
|
style?: {
|
|
39570
39217
|
letterSpacing: string | number;
|
|
@@ -39598,6 +39245,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39598
39245
|
borderRadius: string | number;
|
|
39599
39246
|
color?: string;
|
|
39600
39247
|
};
|
|
39248
|
+
border?: {
|
|
39249
|
+
width: string | number;
|
|
39250
|
+
color: string;
|
|
39251
|
+
opacity: string | number;
|
|
39252
|
+
radius: string | number;
|
|
39253
|
+
};
|
|
39601
39254
|
padding?: string | number | {
|
|
39602
39255
|
top: string | number;
|
|
39603
39256
|
right: string | number;
|
|
@@ -39626,7 +39279,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39626
39279
|
speed: string | number;
|
|
39627
39280
|
direction?: "left" | "right" | "up" | "down";
|
|
39628
39281
|
};
|
|
39629
|
-
position?: "top" | "bottom" | "center";
|
|
39630
39282
|
} | {
|
|
39631
39283
|
type: "html";
|
|
39632
39284
|
html: string;
|
|
@@ -40087,15 +39739,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40087
39739
|
speed?: string | number;
|
|
40088
39740
|
} | {
|
|
40089
39741
|
type: "rich-caption";
|
|
40090
|
-
|
|
40091
|
-
maxLines: string | number;
|
|
40092
|
-
src?: string;
|
|
40093
|
-
words?: {
|
|
40094
|
-
text: string;
|
|
40095
|
-
start?: string | number;
|
|
40096
|
-
end?: string | number;
|
|
40097
|
-
confidence?: string | number;
|
|
40098
|
-
}[];
|
|
39742
|
+
src: string;
|
|
40099
39743
|
font?: {
|
|
40100
39744
|
family: string;
|
|
40101
39745
|
size: string | number;
|
|
@@ -40103,11 +39747,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40103
39747
|
color: string;
|
|
40104
39748
|
opacity: string | number;
|
|
40105
39749
|
background?: string;
|
|
40106
|
-
stroke?: {
|
|
40107
|
-
width: string | number;
|
|
40108
|
-
color: string;
|
|
40109
|
-
opacity: string | number;
|
|
40110
|
-
};
|
|
40111
39750
|
};
|
|
40112
39751
|
style?: {
|
|
40113
39752
|
letterSpacing: string | number;
|
|
@@ -40141,6 +39780,12 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40141
39780
|
borderRadius: string | number;
|
|
40142
39781
|
color?: string;
|
|
40143
39782
|
};
|
|
39783
|
+
border?: {
|
|
39784
|
+
width: string | number;
|
|
39785
|
+
color: string;
|
|
39786
|
+
opacity: string | number;
|
|
39787
|
+
radius: string | number;
|
|
39788
|
+
};
|
|
40144
39789
|
padding?: string | number | {
|
|
40145
39790
|
top: string | number;
|
|
40146
39791
|
right: string | number;
|
|
@@ -40169,7 +39814,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40169
39814
|
speed: string | number;
|
|
40170
39815
|
direction?: "left" | "right" | "up" | "down";
|
|
40171
39816
|
};
|
|
40172
|
-
position?: "top" | "bottom" | "center";
|
|
40173
39817
|
} | {
|
|
40174
39818
|
type: "html";
|
|
40175
39819
|
html: string;
|
|
@@ -40867,13 +40511,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40867
40511
|
type: z.ZodEnum<{
|
|
40868
40512
|
"rich-caption": "rich-caption";
|
|
40869
40513
|
}>;
|
|
40870
|
-
src: z.
|
|
40871
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40872
|
-
text: z.ZodString;
|
|
40873
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
40874
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
40875
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
40876
|
-
}, z.core.$strict>>>;
|
|
40514
|
+
src: z.ZodString;
|
|
40877
40515
|
font: z.ZodOptional<z.ZodObject<{
|
|
40878
40516
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
40879
40517
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -40881,11 +40519,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40881
40519
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
40882
40520
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40883
40521
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40884
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
40885
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40886
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
40887
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40888
|
-
}, z.core.$strict>>;
|
|
40889
40522
|
}, z.core.$strict>>;
|
|
40890
40523
|
style: z.ZodOptional<z.ZodObject<{
|
|
40891
40524
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -40931,6 +40564,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40931
40564
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40932
40565
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40933
40566
|
}, z.core.$strict>>;
|
|
40567
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
40568
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40569
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
40570
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40571
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40572
|
+
}, z.core.$strict>>;
|
|
40934
40573
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
40935
40574
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40936
40575
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -40981,13 +40620,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
40981
40620
|
down: "down";
|
|
40982
40621
|
}>>;
|
|
40983
40622
|
}, z.core.$strict>>;
|
|
40984
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
40985
|
-
top: "top";
|
|
40986
|
-
bottom: "bottom";
|
|
40987
|
-
center: "center";
|
|
40988
|
-
}>>;
|
|
40989
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40990
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40991
40623
|
}, z.core.$strict>, z.ZodObject<{
|
|
40992
40624
|
type: z.ZodEnum<{
|
|
40993
40625
|
html: "html";
|
|
@@ -42152,15 +41784,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42152
41784
|
speed?: string | number;
|
|
42153
41785
|
} | {
|
|
42154
41786
|
type: "rich-caption";
|
|
42155
|
-
|
|
42156
|
-
maxLines: string | number;
|
|
42157
|
-
src?: string;
|
|
42158
|
-
words?: {
|
|
42159
|
-
text: string;
|
|
42160
|
-
start?: string | number;
|
|
42161
|
-
end?: string | number;
|
|
42162
|
-
confidence?: string | number;
|
|
42163
|
-
}[];
|
|
41787
|
+
src: string;
|
|
42164
41788
|
font?: {
|
|
42165
41789
|
family: string;
|
|
42166
41790
|
size: string | number;
|
|
@@ -42168,11 +41792,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42168
41792
|
color: string;
|
|
42169
41793
|
opacity: string | number;
|
|
42170
41794
|
background?: string;
|
|
42171
|
-
stroke?: {
|
|
42172
|
-
width: string | number;
|
|
42173
|
-
color: string;
|
|
42174
|
-
opacity: string | number;
|
|
42175
|
-
};
|
|
42176
41795
|
};
|
|
42177
41796
|
style?: {
|
|
42178
41797
|
letterSpacing: string | number;
|
|
@@ -42206,6 +41825,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42206
41825
|
borderRadius: string | number;
|
|
42207
41826
|
color?: string;
|
|
42208
41827
|
};
|
|
41828
|
+
border?: {
|
|
41829
|
+
width: string | number;
|
|
41830
|
+
color: string;
|
|
41831
|
+
opacity: string | number;
|
|
41832
|
+
radius: string | number;
|
|
41833
|
+
};
|
|
42209
41834
|
padding?: string | number | {
|
|
42210
41835
|
top: string | number;
|
|
42211
41836
|
right: string | number;
|
|
@@ -42234,7 +41859,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42234
41859
|
speed: string | number;
|
|
42235
41860
|
direction?: "left" | "right" | "up" | "down";
|
|
42236
41861
|
};
|
|
42237
|
-
position?: "top" | "bottom" | "center";
|
|
42238
41862
|
} | {
|
|
42239
41863
|
type: "html";
|
|
42240
41864
|
html: string;
|
|
@@ -42695,15 +42319,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42695
42319
|
speed?: string | number;
|
|
42696
42320
|
} | {
|
|
42697
42321
|
type: "rich-caption";
|
|
42698
|
-
|
|
42699
|
-
maxLines: string | number;
|
|
42700
|
-
src?: string;
|
|
42701
|
-
words?: {
|
|
42702
|
-
text: string;
|
|
42703
|
-
start?: string | number;
|
|
42704
|
-
end?: string | number;
|
|
42705
|
-
confidence?: string | number;
|
|
42706
|
-
}[];
|
|
42322
|
+
src: string;
|
|
42707
42323
|
font?: {
|
|
42708
42324
|
family: string;
|
|
42709
42325
|
size: string | number;
|
|
@@ -42711,11 +42327,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42711
42327
|
color: string;
|
|
42712
42328
|
opacity: string | number;
|
|
42713
42329
|
background?: string;
|
|
42714
|
-
stroke?: {
|
|
42715
|
-
width: string | number;
|
|
42716
|
-
color: string;
|
|
42717
|
-
opacity: string | number;
|
|
42718
|
-
};
|
|
42719
42330
|
};
|
|
42720
42331
|
style?: {
|
|
42721
42332
|
letterSpacing: string | number;
|
|
@@ -42749,6 +42360,12 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42749
42360
|
borderRadius: string | number;
|
|
42750
42361
|
color?: string;
|
|
42751
42362
|
};
|
|
42363
|
+
border?: {
|
|
42364
|
+
width: string | number;
|
|
42365
|
+
color: string;
|
|
42366
|
+
opacity: string | number;
|
|
42367
|
+
radius: string | number;
|
|
42368
|
+
};
|
|
42752
42369
|
padding?: string | number | {
|
|
42753
42370
|
top: string | number;
|
|
42754
42371
|
right: string | number;
|
|
@@ -42777,7 +42394,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42777
42394
|
speed: string | number;
|
|
42778
42395
|
direction?: "left" | "right" | "up" | "down";
|
|
42779
42396
|
};
|
|
42780
|
-
position?: "top" | "bottom" | "center";
|
|
42781
42397
|
} | {
|
|
42782
42398
|
type: "html";
|
|
42783
42399
|
html: string;
|
|
@@ -43469,13 +43085,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43469
43085
|
type: z.ZodEnum<{
|
|
43470
43086
|
"rich-caption": "rich-caption";
|
|
43471
43087
|
}>;
|
|
43472
|
-
src: z.
|
|
43473
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
43474
|
-
text: z.ZodString;
|
|
43475
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
43476
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
43477
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
43478
|
-
}, z.core.$strict>>>;
|
|
43088
|
+
src: z.ZodString;
|
|
43479
43089
|
font: z.ZodOptional<z.ZodObject<{
|
|
43480
43090
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
43481
43091
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -43483,11 +43093,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43483
43093
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43484
43094
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43485
43095
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
43486
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
43487
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43488
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43489
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43490
|
-
}, z.core.$strict>>;
|
|
43491
43096
|
}, z.core.$strict>>;
|
|
43492
43097
|
style: z.ZodOptional<z.ZodObject<{
|
|
43493
43098
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -43533,6 +43138,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43533
43138
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43534
43139
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43535
43140
|
}, z.core.$strict>>;
|
|
43141
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
43142
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43143
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
43144
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43145
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43146
|
+
}, z.core.$strict>>;
|
|
43536
43147
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
43537
43148
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43538
43149
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -43583,13 +43194,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43583
43194
|
down: "down";
|
|
43584
43195
|
}>>;
|
|
43585
43196
|
}, z.core.$strict>>;
|
|
43586
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
43587
|
-
top: "top";
|
|
43588
|
-
bottom: "bottom";
|
|
43589
|
-
center: "center";
|
|
43590
|
-
}>>;
|
|
43591
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43592
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43593
43197
|
}, z.core.$strict>, z.ZodObject<{
|
|
43594
43198
|
type: z.ZodEnum<{
|
|
43595
43199
|
html: "html";
|
|
@@ -44754,15 +44358,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44754
44358
|
speed?: string | number;
|
|
44755
44359
|
} | {
|
|
44756
44360
|
type: "rich-caption";
|
|
44757
|
-
|
|
44758
|
-
maxLines: string | number;
|
|
44759
|
-
src?: string;
|
|
44760
|
-
words?: {
|
|
44761
|
-
text: string;
|
|
44762
|
-
start?: string | number;
|
|
44763
|
-
end?: string | number;
|
|
44764
|
-
confidence?: string | number;
|
|
44765
|
-
}[];
|
|
44361
|
+
src: string;
|
|
44766
44362
|
font?: {
|
|
44767
44363
|
family: string;
|
|
44768
44364
|
size: string | number;
|
|
@@ -44770,11 +44366,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44770
44366
|
color: string;
|
|
44771
44367
|
opacity: string | number;
|
|
44772
44368
|
background?: string;
|
|
44773
|
-
stroke?: {
|
|
44774
|
-
width: string | number;
|
|
44775
|
-
color: string;
|
|
44776
|
-
opacity: string | number;
|
|
44777
|
-
};
|
|
44778
44369
|
};
|
|
44779
44370
|
style?: {
|
|
44780
44371
|
letterSpacing: string | number;
|
|
@@ -44808,6 +44399,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44808
44399
|
borderRadius: string | number;
|
|
44809
44400
|
color?: string;
|
|
44810
44401
|
};
|
|
44402
|
+
border?: {
|
|
44403
|
+
width: string | number;
|
|
44404
|
+
color: string;
|
|
44405
|
+
opacity: string | number;
|
|
44406
|
+
radius: string | number;
|
|
44407
|
+
};
|
|
44811
44408
|
padding?: string | number | {
|
|
44812
44409
|
top: string | number;
|
|
44813
44410
|
right: string | number;
|
|
@@ -44836,7 +44433,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44836
44433
|
speed: string | number;
|
|
44837
44434
|
direction?: "left" | "right" | "up" | "down";
|
|
44838
44435
|
};
|
|
44839
|
-
position?: "top" | "bottom" | "center";
|
|
44840
44436
|
} | {
|
|
44841
44437
|
type: "html";
|
|
44842
44438
|
html: string;
|
|
@@ -45297,15 +44893,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45297
44893
|
speed?: string | number;
|
|
45298
44894
|
} | {
|
|
45299
44895
|
type: "rich-caption";
|
|
45300
|
-
|
|
45301
|
-
maxLines: string | number;
|
|
45302
|
-
src?: string;
|
|
45303
|
-
words?: {
|
|
45304
|
-
text: string;
|
|
45305
|
-
start?: string | number;
|
|
45306
|
-
end?: string | number;
|
|
45307
|
-
confidence?: string | number;
|
|
45308
|
-
}[];
|
|
44896
|
+
src: string;
|
|
45309
44897
|
font?: {
|
|
45310
44898
|
family: string;
|
|
45311
44899
|
size: string | number;
|
|
@@ -45313,11 +44901,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45313
44901
|
color: string;
|
|
45314
44902
|
opacity: string | number;
|
|
45315
44903
|
background?: string;
|
|
45316
|
-
stroke?: {
|
|
45317
|
-
width: string | number;
|
|
45318
|
-
color: string;
|
|
45319
|
-
opacity: string | number;
|
|
45320
|
-
};
|
|
45321
44904
|
};
|
|
45322
44905
|
style?: {
|
|
45323
44906
|
letterSpacing: string | number;
|
|
@@ -45351,6 +44934,12 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45351
44934
|
borderRadius: string | number;
|
|
45352
44935
|
color?: string;
|
|
45353
44936
|
};
|
|
44937
|
+
border?: {
|
|
44938
|
+
width: string | number;
|
|
44939
|
+
color: string;
|
|
44940
|
+
opacity: string | number;
|
|
44941
|
+
radius: string | number;
|
|
44942
|
+
};
|
|
45354
44943
|
padding?: string | number | {
|
|
45355
44944
|
top: string | number;
|
|
45356
44945
|
right: string | number;
|
|
@@ -45379,7 +44968,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45379
44968
|
speed: string | number;
|
|
45380
44969
|
direction?: "left" | "right" | "up" | "down";
|
|
45381
44970
|
};
|
|
45382
|
-
position?: "top" | "bottom" | "center";
|
|
45383
44971
|
} | {
|
|
45384
44972
|
type: "html";
|
|
45385
44973
|
html: string;
|
|
@@ -46077,13 +45665,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46077
45665
|
type: z.ZodEnum<{
|
|
46078
45666
|
"rich-caption": "rich-caption";
|
|
46079
45667
|
}>;
|
|
46080
|
-
src: z.
|
|
46081
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
46082
|
-
text: z.ZodString;
|
|
46083
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
46084
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
46085
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
46086
|
-
}, z.core.$strict>>>;
|
|
45668
|
+
src: z.ZodString;
|
|
46087
45669
|
font: z.ZodOptional<z.ZodObject<{
|
|
46088
45670
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
46089
45671
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -46091,11 +45673,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46091
45673
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
46092
45674
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46093
45675
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
46094
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
46095
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46096
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
46097
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46098
|
-
}, z.core.$strict>>;
|
|
46099
45676
|
}, z.core.$strict>>;
|
|
46100
45677
|
style: z.ZodOptional<z.ZodObject<{
|
|
46101
45678
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -46141,6 +45718,12 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46141
45718
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46142
45719
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46143
45720
|
}, z.core.$strict>>;
|
|
45721
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
45722
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45723
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
45724
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45725
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
45726
|
+
}, z.core.$strict>>;
|
|
46144
45727
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
46145
45728
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46146
45729
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -46191,13 +45774,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46191
45774
|
down: "down";
|
|
46192
45775
|
}>>;
|
|
46193
45776
|
}, z.core.$strict>>;
|
|
46194
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
46195
|
-
top: "top";
|
|
46196
|
-
bottom: "bottom";
|
|
46197
|
-
center: "center";
|
|
46198
|
-
}>>;
|
|
46199
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46200
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46201
45777
|
}, z.core.$strict>, z.ZodObject<{
|
|
46202
45778
|
type: z.ZodEnum<{
|
|
46203
45779
|
html: "html";
|
|
@@ -47362,15 +46938,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47362
46938
|
speed?: string | number;
|
|
47363
46939
|
} | {
|
|
47364
46940
|
type: "rich-caption";
|
|
47365
|
-
|
|
47366
|
-
maxLines: string | number;
|
|
47367
|
-
src?: string;
|
|
47368
|
-
words?: {
|
|
47369
|
-
text: string;
|
|
47370
|
-
start?: string | number;
|
|
47371
|
-
end?: string | number;
|
|
47372
|
-
confidence?: string | number;
|
|
47373
|
-
}[];
|
|
46941
|
+
src: string;
|
|
47374
46942
|
font?: {
|
|
47375
46943
|
family: string;
|
|
47376
46944
|
size: string | number;
|
|
@@ -47378,11 +46946,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47378
46946
|
color: string;
|
|
47379
46947
|
opacity: string | number;
|
|
47380
46948
|
background?: string;
|
|
47381
|
-
stroke?: {
|
|
47382
|
-
width: string | number;
|
|
47383
|
-
color: string;
|
|
47384
|
-
opacity: string | number;
|
|
47385
|
-
};
|
|
47386
46949
|
};
|
|
47387
46950
|
style?: {
|
|
47388
46951
|
letterSpacing: string | number;
|
|
@@ -47416,6 +46979,12 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47416
46979
|
borderRadius: string | number;
|
|
47417
46980
|
color?: string;
|
|
47418
46981
|
};
|
|
46982
|
+
border?: {
|
|
46983
|
+
width: string | number;
|
|
46984
|
+
color: string;
|
|
46985
|
+
opacity: string | number;
|
|
46986
|
+
radius: string | number;
|
|
46987
|
+
};
|
|
47419
46988
|
padding?: string | number | {
|
|
47420
46989
|
top: string | number;
|
|
47421
46990
|
right: string | number;
|
|
@@ -47444,7 +47013,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47444
47013
|
speed: string | number;
|
|
47445
47014
|
direction?: "left" | "right" | "up" | "down";
|
|
47446
47015
|
};
|
|
47447
|
-
position?: "top" | "bottom" | "center";
|
|
47448
47016
|
} | {
|
|
47449
47017
|
type: "html";
|
|
47450
47018
|
html: string;
|
|
@@ -47905,15 +47473,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47905
47473
|
speed?: string | number;
|
|
47906
47474
|
} | {
|
|
47907
47475
|
type: "rich-caption";
|
|
47908
|
-
|
|
47909
|
-
maxLines: string | number;
|
|
47910
|
-
src?: string;
|
|
47911
|
-
words?: {
|
|
47912
|
-
text: string;
|
|
47913
|
-
start?: string | number;
|
|
47914
|
-
end?: string | number;
|
|
47915
|
-
confidence?: string | number;
|
|
47916
|
-
}[];
|
|
47476
|
+
src: string;
|
|
47917
47477
|
font?: {
|
|
47918
47478
|
family: string;
|
|
47919
47479
|
size: string | number;
|
|
@@ -47921,11 +47481,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47921
47481
|
color: string;
|
|
47922
47482
|
opacity: string | number;
|
|
47923
47483
|
background?: string;
|
|
47924
|
-
stroke?: {
|
|
47925
|
-
width: string | number;
|
|
47926
|
-
color: string;
|
|
47927
|
-
opacity: string | number;
|
|
47928
|
-
};
|
|
47929
47484
|
};
|
|
47930
47485
|
style?: {
|
|
47931
47486
|
letterSpacing: string | number;
|
|
@@ -47959,6 +47514,12 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47959
47514
|
borderRadius: string | number;
|
|
47960
47515
|
color?: string;
|
|
47961
47516
|
};
|
|
47517
|
+
border?: {
|
|
47518
|
+
width: string | number;
|
|
47519
|
+
color: string;
|
|
47520
|
+
opacity: string | number;
|
|
47521
|
+
radius: string | number;
|
|
47522
|
+
};
|
|
47962
47523
|
padding?: string | number | {
|
|
47963
47524
|
top: string | number;
|
|
47964
47525
|
right: string | number;
|
|
@@ -47987,7 +47548,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47987
47548
|
speed: string | number;
|
|
47988
47549
|
direction?: "left" | "right" | "up" | "down";
|
|
47989
47550
|
};
|
|
47990
|
-
position?: "top" | "bottom" | "center";
|
|
47991
47551
|
} | {
|
|
47992
47552
|
type: "html";
|
|
47993
47553
|
html: string;
|
|
@@ -48683,13 +48243,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48683
48243
|
type: z.ZodEnum<{
|
|
48684
48244
|
"rich-caption": "rich-caption";
|
|
48685
48245
|
}>;
|
|
48686
|
-
src: z.
|
|
48687
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
48688
|
-
text: z.ZodString;
|
|
48689
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
48690
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
48691
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
48692
|
-
}, z.core.$strict>>>;
|
|
48246
|
+
src: z.ZodString;
|
|
48693
48247
|
font: z.ZodOptional<z.ZodObject<{
|
|
48694
48248
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
48695
48249
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -48697,11 +48251,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48697
48251
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48698
48252
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48699
48253
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
48700
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
48701
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48702
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48703
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48704
|
-
}, z.core.$strict>>;
|
|
48705
48254
|
}, z.core.$strict>>;
|
|
48706
48255
|
style: z.ZodOptional<z.ZodObject<{
|
|
48707
48256
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -48747,6 +48296,12 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48747
48296
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48748
48297
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48749
48298
|
}, z.core.$strict>>;
|
|
48299
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
48300
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48301
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
48302
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48303
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48304
|
+
}, z.core.$strict>>;
|
|
48750
48305
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
48751
48306
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48752
48307
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -48797,13 +48352,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48797
48352
|
down: "down";
|
|
48798
48353
|
}>>;
|
|
48799
48354
|
}, z.core.$strict>>;
|
|
48800
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
48801
|
-
top: "top";
|
|
48802
|
-
bottom: "bottom";
|
|
48803
|
-
center: "center";
|
|
48804
|
-
}>>;
|
|
48805
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48806
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48807
48355
|
}, z.core.$strict>, z.ZodObject<{
|
|
48808
48356
|
type: z.ZodEnum<{
|
|
48809
48357
|
html: "html";
|
|
@@ -49968,15 +49516,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
49968
49516
|
speed?: string | number;
|
|
49969
49517
|
} | {
|
|
49970
49518
|
type: "rich-caption";
|
|
49971
|
-
|
|
49972
|
-
maxLines: string | number;
|
|
49973
|
-
src?: string;
|
|
49974
|
-
words?: {
|
|
49975
|
-
text: string;
|
|
49976
|
-
start?: string | number;
|
|
49977
|
-
end?: string | number;
|
|
49978
|
-
confidence?: string | number;
|
|
49979
|
-
}[];
|
|
49519
|
+
src: string;
|
|
49980
49520
|
font?: {
|
|
49981
49521
|
family: string;
|
|
49982
49522
|
size: string | number;
|
|
@@ -49984,11 +49524,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
49984
49524
|
color: string;
|
|
49985
49525
|
opacity: string | number;
|
|
49986
49526
|
background?: string;
|
|
49987
|
-
stroke?: {
|
|
49988
|
-
width: string | number;
|
|
49989
|
-
color: string;
|
|
49990
|
-
opacity: string | number;
|
|
49991
|
-
};
|
|
49992
49527
|
};
|
|
49993
49528
|
style?: {
|
|
49994
49529
|
letterSpacing: string | number;
|
|
@@ -50022,6 +49557,12 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50022
49557
|
borderRadius: string | number;
|
|
50023
49558
|
color?: string;
|
|
50024
49559
|
};
|
|
49560
|
+
border?: {
|
|
49561
|
+
width: string | number;
|
|
49562
|
+
color: string;
|
|
49563
|
+
opacity: string | number;
|
|
49564
|
+
radius: string | number;
|
|
49565
|
+
};
|
|
50025
49566
|
padding?: string | number | {
|
|
50026
49567
|
top: string | number;
|
|
50027
49568
|
right: string | number;
|
|
@@ -50050,7 +49591,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50050
49591
|
speed: string | number;
|
|
50051
49592
|
direction?: "left" | "right" | "up" | "down";
|
|
50052
49593
|
};
|
|
50053
|
-
position?: "top" | "bottom" | "center";
|
|
50054
49594
|
} | {
|
|
50055
49595
|
type: "html";
|
|
50056
49596
|
html: string;
|
|
@@ -50511,15 +50051,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50511
50051
|
speed?: string | number;
|
|
50512
50052
|
} | {
|
|
50513
50053
|
type: "rich-caption";
|
|
50514
|
-
|
|
50515
|
-
maxLines: string | number;
|
|
50516
|
-
src?: string;
|
|
50517
|
-
words?: {
|
|
50518
|
-
text: string;
|
|
50519
|
-
start?: string | number;
|
|
50520
|
-
end?: string | number;
|
|
50521
|
-
confidence?: string | number;
|
|
50522
|
-
}[];
|
|
50054
|
+
src: string;
|
|
50523
50055
|
font?: {
|
|
50524
50056
|
family: string;
|
|
50525
50057
|
size: string | number;
|
|
@@ -50527,11 +50059,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50527
50059
|
color: string;
|
|
50528
50060
|
opacity: string | number;
|
|
50529
50061
|
background?: string;
|
|
50530
|
-
stroke?: {
|
|
50531
|
-
width: string | number;
|
|
50532
|
-
color: string;
|
|
50533
|
-
opacity: string | number;
|
|
50534
|
-
};
|
|
50535
50062
|
};
|
|
50536
50063
|
style?: {
|
|
50537
50064
|
letterSpacing: string | number;
|
|
@@ -50565,6 +50092,12 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50565
50092
|
borderRadius: string | number;
|
|
50566
50093
|
color?: string;
|
|
50567
50094
|
};
|
|
50095
|
+
border?: {
|
|
50096
|
+
width: string | number;
|
|
50097
|
+
color: string;
|
|
50098
|
+
opacity: string | number;
|
|
50099
|
+
radius: string | number;
|
|
50100
|
+
};
|
|
50568
50101
|
padding?: string | number | {
|
|
50569
50102
|
top: string | number;
|
|
50570
50103
|
right: string | number;
|
|
@@ -50593,7 +50126,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50593
50126
|
speed: string | number;
|
|
50594
50127
|
direction?: "left" | "right" | "up" | "down";
|
|
50595
50128
|
};
|
|
50596
|
-
position?: "top" | "bottom" | "center";
|
|
50597
50129
|
} | {
|
|
50598
50130
|
type: "html";
|
|
50599
50131
|
html: string;
|
|
@@ -51287,13 +50819,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51287
50819
|
type: z.ZodEnum<{
|
|
51288
50820
|
"rich-caption": "rich-caption";
|
|
51289
50821
|
}>;
|
|
51290
|
-
src: z.
|
|
51291
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51292
|
-
text: z.ZodString;
|
|
51293
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
51294
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
51295
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
51296
|
-
}, z.core.$strict>>>;
|
|
50822
|
+
src: z.ZodString;
|
|
51297
50823
|
font: z.ZodOptional<z.ZodObject<{
|
|
51298
50824
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
51299
50825
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -51301,11 +50827,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51301
50827
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51302
50828
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51303
50829
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
51304
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
51305
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51306
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
51307
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51308
|
-
}, z.core.$strict>>;
|
|
51309
50830
|
}, z.core.$strict>>;
|
|
51310
50831
|
style: z.ZodOptional<z.ZodObject<{
|
|
51311
50832
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -51351,6 +50872,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51351
50872
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51352
50873
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51353
50874
|
}, z.core.$strict>>;
|
|
50875
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
50876
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
50877
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
50878
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
50879
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
50880
|
+
}, z.core.$strict>>;
|
|
51354
50881
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
51355
50882
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51356
50883
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -51401,13 +50928,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51401
50928
|
down: "down";
|
|
51402
50929
|
}>>;
|
|
51403
50930
|
}, z.core.$strict>>;
|
|
51404
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
51405
|
-
top: "top";
|
|
51406
|
-
bottom: "bottom";
|
|
51407
|
-
center: "center";
|
|
51408
|
-
}>>;
|
|
51409
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51410
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51411
50931
|
}, z.core.$strict>, z.ZodObject<{
|
|
51412
50932
|
type: z.ZodEnum<{
|
|
51413
50933
|
html: "html";
|
|
@@ -52572,15 +52092,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52572
52092
|
speed?: string | number;
|
|
52573
52093
|
} | {
|
|
52574
52094
|
type: "rich-caption";
|
|
52575
|
-
|
|
52576
|
-
maxLines: string | number;
|
|
52577
|
-
src?: string;
|
|
52578
|
-
words?: {
|
|
52579
|
-
text: string;
|
|
52580
|
-
start?: string | number;
|
|
52581
|
-
end?: string | number;
|
|
52582
|
-
confidence?: string | number;
|
|
52583
|
-
}[];
|
|
52095
|
+
src: string;
|
|
52584
52096
|
font?: {
|
|
52585
52097
|
family: string;
|
|
52586
52098
|
size: string | number;
|
|
@@ -52588,11 +52100,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52588
52100
|
color: string;
|
|
52589
52101
|
opacity: string | number;
|
|
52590
52102
|
background?: string;
|
|
52591
|
-
stroke?: {
|
|
52592
|
-
width: string | number;
|
|
52593
|
-
color: string;
|
|
52594
|
-
opacity: string | number;
|
|
52595
|
-
};
|
|
52596
52103
|
};
|
|
52597
52104
|
style?: {
|
|
52598
52105
|
letterSpacing: string | number;
|
|
@@ -52626,6 +52133,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52626
52133
|
borderRadius: string | number;
|
|
52627
52134
|
color?: string;
|
|
52628
52135
|
};
|
|
52136
|
+
border?: {
|
|
52137
|
+
width: string | number;
|
|
52138
|
+
color: string;
|
|
52139
|
+
opacity: string | number;
|
|
52140
|
+
radius: string | number;
|
|
52141
|
+
};
|
|
52629
52142
|
padding?: string | number | {
|
|
52630
52143
|
top: string | number;
|
|
52631
52144
|
right: string | number;
|
|
@@ -52654,7 +52167,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52654
52167
|
speed: string | number;
|
|
52655
52168
|
direction?: "left" | "right" | "up" | "down";
|
|
52656
52169
|
};
|
|
52657
|
-
position?: "top" | "bottom" | "center";
|
|
52658
52170
|
} | {
|
|
52659
52171
|
type: "html";
|
|
52660
52172
|
html: string;
|
|
@@ -53115,15 +52627,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53115
52627
|
speed?: string | number;
|
|
53116
52628
|
} | {
|
|
53117
52629
|
type: "rich-caption";
|
|
53118
|
-
|
|
53119
|
-
maxLines: string | number;
|
|
53120
|
-
src?: string;
|
|
53121
|
-
words?: {
|
|
53122
|
-
text: string;
|
|
53123
|
-
start?: string | number;
|
|
53124
|
-
end?: string | number;
|
|
53125
|
-
confidence?: string | number;
|
|
53126
|
-
}[];
|
|
52630
|
+
src: string;
|
|
53127
52631
|
font?: {
|
|
53128
52632
|
family: string;
|
|
53129
52633
|
size: string | number;
|
|
@@ -53131,11 +52635,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53131
52635
|
color: string;
|
|
53132
52636
|
opacity: string | number;
|
|
53133
52637
|
background?: string;
|
|
53134
|
-
stroke?: {
|
|
53135
|
-
width: string | number;
|
|
53136
|
-
color: string;
|
|
53137
|
-
opacity: string | number;
|
|
53138
|
-
};
|
|
53139
52638
|
};
|
|
53140
52639
|
style?: {
|
|
53141
52640
|
letterSpacing: string | number;
|
|
@@ -53169,6 +52668,12 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53169
52668
|
borderRadius: string | number;
|
|
53170
52669
|
color?: string;
|
|
53171
52670
|
};
|
|
52671
|
+
border?: {
|
|
52672
|
+
width: string | number;
|
|
52673
|
+
color: string;
|
|
52674
|
+
opacity: string | number;
|
|
52675
|
+
radius: string | number;
|
|
52676
|
+
};
|
|
53172
52677
|
padding?: string | number | {
|
|
53173
52678
|
top: string | number;
|
|
53174
52679
|
right: string | number;
|
|
@@ -53197,7 +52702,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53197
52702
|
speed: string | number;
|
|
53198
52703
|
direction?: "left" | "right" | "up" | "down";
|
|
53199
52704
|
};
|
|
53200
|
-
position?: "top" | "bottom" | "center";
|
|
53201
52705
|
} | {
|
|
53202
52706
|
type: "html";
|
|
53203
52707
|
html: string;
|
|
@@ -53887,13 +53391,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
53887
53391
|
type: z.ZodEnum<{
|
|
53888
53392
|
"rich-caption": "rich-caption";
|
|
53889
53393
|
}>;
|
|
53890
|
-
src: z.
|
|
53891
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
53892
|
-
text: z.ZodString;
|
|
53893
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
53894
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
53895
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
53896
|
-
}, z.core.$strict>>>;
|
|
53394
|
+
src: z.ZodString;
|
|
53897
53395
|
font: z.ZodOptional<z.ZodObject<{
|
|
53898
53396
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
53899
53397
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -53901,11 +53399,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
53901
53399
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
53902
53400
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53903
53401
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
53904
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
53905
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53906
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
53907
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53908
|
-
}, z.core.$strict>>;
|
|
53909
53402
|
}, z.core.$strict>>;
|
|
53910
53403
|
style: z.ZodOptional<z.ZodObject<{
|
|
53911
53404
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -53951,6 +53444,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
53951
53444
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53952
53445
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53953
53446
|
}, z.core.$strict>>;
|
|
53447
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
53448
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53449
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
53450
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53451
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53452
|
+
}, z.core.$strict>>;
|
|
53954
53453
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
53955
53454
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
53956
53455
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -54001,13 +53500,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54001
53500
|
down: "down";
|
|
54002
53501
|
}>>;
|
|
54003
53502
|
}, z.core.$strict>>;
|
|
54004
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
54005
|
-
top: "top";
|
|
54006
|
-
bottom: "bottom";
|
|
54007
|
-
center: "center";
|
|
54008
|
-
}>>;
|
|
54009
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54010
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54011
53503
|
}, z.core.$strict>, z.ZodObject<{
|
|
54012
53504
|
type: z.ZodEnum<{
|
|
54013
53505
|
html: "html";
|
|
@@ -55172,15 +54664,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55172
54664
|
speed?: string | number;
|
|
55173
54665
|
} | {
|
|
55174
54666
|
type: "rich-caption";
|
|
55175
|
-
|
|
55176
|
-
maxLines: string | number;
|
|
55177
|
-
src?: string;
|
|
55178
|
-
words?: {
|
|
55179
|
-
text: string;
|
|
55180
|
-
start?: string | number;
|
|
55181
|
-
end?: string | number;
|
|
55182
|
-
confidence?: string | number;
|
|
55183
|
-
}[];
|
|
54667
|
+
src: string;
|
|
55184
54668
|
font?: {
|
|
55185
54669
|
family: string;
|
|
55186
54670
|
size: string | number;
|
|
@@ -55188,11 +54672,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55188
54672
|
color: string;
|
|
55189
54673
|
opacity: string | number;
|
|
55190
54674
|
background?: string;
|
|
55191
|
-
stroke?: {
|
|
55192
|
-
width: string | number;
|
|
55193
|
-
color: string;
|
|
55194
|
-
opacity: string | number;
|
|
55195
|
-
};
|
|
55196
54675
|
};
|
|
55197
54676
|
style?: {
|
|
55198
54677
|
letterSpacing: string | number;
|
|
@@ -55226,6 +54705,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55226
54705
|
borderRadius: string | number;
|
|
55227
54706
|
color?: string;
|
|
55228
54707
|
};
|
|
54708
|
+
border?: {
|
|
54709
|
+
width: string | number;
|
|
54710
|
+
color: string;
|
|
54711
|
+
opacity: string | number;
|
|
54712
|
+
radius: string | number;
|
|
54713
|
+
};
|
|
55229
54714
|
padding?: string | number | {
|
|
55230
54715
|
top: string | number;
|
|
55231
54716
|
right: string | number;
|
|
@@ -55254,7 +54739,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55254
54739
|
speed: string | number;
|
|
55255
54740
|
direction?: "left" | "right" | "up" | "down";
|
|
55256
54741
|
};
|
|
55257
|
-
position?: "top" | "bottom" | "center";
|
|
55258
54742
|
} | {
|
|
55259
54743
|
type: "html";
|
|
55260
54744
|
html: string;
|
|
@@ -55715,15 +55199,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55715
55199
|
speed?: string | number;
|
|
55716
55200
|
} | {
|
|
55717
55201
|
type: "rich-caption";
|
|
55718
|
-
|
|
55719
|
-
maxLines: string | number;
|
|
55720
|
-
src?: string;
|
|
55721
|
-
words?: {
|
|
55722
|
-
text: string;
|
|
55723
|
-
start?: string | number;
|
|
55724
|
-
end?: string | number;
|
|
55725
|
-
confidence?: string | number;
|
|
55726
|
-
}[];
|
|
55202
|
+
src: string;
|
|
55727
55203
|
font?: {
|
|
55728
55204
|
family: string;
|
|
55729
55205
|
size: string | number;
|
|
@@ -55731,11 +55207,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55731
55207
|
color: string;
|
|
55732
55208
|
opacity: string | number;
|
|
55733
55209
|
background?: string;
|
|
55734
|
-
stroke?: {
|
|
55735
|
-
width: string | number;
|
|
55736
|
-
color: string;
|
|
55737
|
-
opacity: string | number;
|
|
55738
|
-
};
|
|
55739
55210
|
};
|
|
55740
55211
|
style?: {
|
|
55741
55212
|
letterSpacing: string | number;
|
|
@@ -55769,6 +55240,12 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55769
55240
|
borderRadius: string | number;
|
|
55770
55241
|
color?: string;
|
|
55771
55242
|
};
|
|
55243
|
+
border?: {
|
|
55244
|
+
width: string | number;
|
|
55245
|
+
color: string;
|
|
55246
|
+
opacity: string | number;
|
|
55247
|
+
radius: string | number;
|
|
55248
|
+
};
|
|
55772
55249
|
padding?: string | number | {
|
|
55773
55250
|
top: string | number;
|
|
55774
55251
|
right: string | number;
|
|
@@ -55797,7 +55274,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55797
55274
|
speed: string | number;
|
|
55798
55275
|
direction?: "left" | "right" | "up" | "down";
|
|
55799
55276
|
};
|
|
55800
|
-
position?: "top" | "bottom" | "center";
|
|
55801
55277
|
} | {
|
|
55802
55278
|
type: "html";
|
|
55803
55279
|
html: string;
|
|
@@ -56486,13 +55962,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56486
55962
|
type: z.ZodEnum<{
|
|
56487
55963
|
"rich-caption": "rich-caption";
|
|
56488
55964
|
}>;
|
|
56489
|
-
src: z.
|
|
56490
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
56491
|
-
text: z.ZodString;
|
|
56492
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
56493
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
56494
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
56495
|
-
}, z.core.$strict>>>;
|
|
55965
|
+
src: z.ZodString;
|
|
56496
55966
|
font: z.ZodOptional<z.ZodObject<{
|
|
56497
55967
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
56498
55968
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -56500,11 +55970,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56500
55970
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56501
55971
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56502
55972
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56503
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
56504
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56505
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56506
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56507
|
-
}, z.core.$strict>>;
|
|
56508
55973
|
}, z.core.$strict>>;
|
|
56509
55974
|
style: z.ZodOptional<z.ZodObject<{
|
|
56510
55975
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -56550,6 +56015,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56550
56015
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56551
56016
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56552
56017
|
}, z.core.$strict>>;
|
|
56018
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
56019
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56020
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
56021
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56022
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56023
|
+
}, z.core.$strict>>;
|
|
56553
56024
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
56554
56025
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56555
56026
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -56600,13 +56071,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56600
56071
|
down: "down";
|
|
56601
56072
|
}>>;
|
|
56602
56073
|
}, z.core.$strict>>;
|
|
56603
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
56604
|
-
top: "top";
|
|
56605
|
-
bottom: "bottom";
|
|
56606
|
-
center: "center";
|
|
56607
|
-
}>>;
|
|
56608
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56609
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56610
56074
|
}, z.core.$strict>, z.ZodObject<{
|
|
56611
56075
|
type: z.ZodEnum<{
|
|
56612
56076
|
html: "html";
|
|
@@ -57771,15 +57235,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57771
57235
|
speed?: string | number;
|
|
57772
57236
|
} | {
|
|
57773
57237
|
type: "rich-caption";
|
|
57774
|
-
|
|
57775
|
-
maxLines: string | number;
|
|
57776
|
-
src?: string;
|
|
57777
|
-
words?: {
|
|
57778
|
-
text: string;
|
|
57779
|
-
start?: string | number;
|
|
57780
|
-
end?: string | number;
|
|
57781
|
-
confidence?: string | number;
|
|
57782
|
-
}[];
|
|
57238
|
+
src: string;
|
|
57783
57239
|
font?: {
|
|
57784
57240
|
family: string;
|
|
57785
57241
|
size: string | number;
|
|
@@ -57787,11 +57243,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57787
57243
|
color: string;
|
|
57788
57244
|
opacity: string | number;
|
|
57789
57245
|
background?: string;
|
|
57790
|
-
stroke?: {
|
|
57791
|
-
width: string | number;
|
|
57792
|
-
color: string;
|
|
57793
|
-
opacity: string | number;
|
|
57794
|
-
};
|
|
57795
57246
|
};
|
|
57796
57247
|
style?: {
|
|
57797
57248
|
letterSpacing: string | number;
|
|
@@ -57825,6 +57276,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57825
57276
|
borderRadius: string | number;
|
|
57826
57277
|
color?: string;
|
|
57827
57278
|
};
|
|
57279
|
+
border?: {
|
|
57280
|
+
width: string | number;
|
|
57281
|
+
color: string;
|
|
57282
|
+
opacity: string | number;
|
|
57283
|
+
radius: string | number;
|
|
57284
|
+
};
|
|
57828
57285
|
padding?: string | number | {
|
|
57829
57286
|
top: string | number;
|
|
57830
57287
|
right: string | number;
|
|
@@ -57853,7 +57310,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57853
57310
|
speed: string | number;
|
|
57854
57311
|
direction?: "left" | "right" | "up" | "down";
|
|
57855
57312
|
};
|
|
57856
|
-
position?: "top" | "bottom" | "center";
|
|
57857
57313
|
} | {
|
|
57858
57314
|
type: "html";
|
|
57859
57315
|
html: string;
|
|
@@ -58314,15 +57770,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58314
57770
|
speed?: string | number;
|
|
58315
57771
|
} | {
|
|
58316
57772
|
type: "rich-caption";
|
|
58317
|
-
|
|
58318
|
-
maxLines: string | number;
|
|
58319
|
-
src?: string;
|
|
58320
|
-
words?: {
|
|
58321
|
-
text: string;
|
|
58322
|
-
start?: string | number;
|
|
58323
|
-
end?: string | number;
|
|
58324
|
-
confidence?: string | number;
|
|
58325
|
-
}[];
|
|
57773
|
+
src: string;
|
|
58326
57774
|
font?: {
|
|
58327
57775
|
family: string;
|
|
58328
57776
|
size: string | number;
|
|
@@ -58330,11 +57778,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58330
57778
|
color: string;
|
|
58331
57779
|
opacity: string | number;
|
|
58332
57780
|
background?: string;
|
|
58333
|
-
stroke?: {
|
|
58334
|
-
width: string | number;
|
|
58335
|
-
color: string;
|
|
58336
|
-
opacity: string | number;
|
|
58337
|
-
};
|
|
58338
57781
|
};
|
|
58339
57782
|
style?: {
|
|
58340
57783
|
letterSpacing: string | number;
|
|
@@ -58368,6 +57811,12 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58368
57811
|
borderRadius: string | number;
|
|
58369
57812
|
color?: string;
|
|
58370
57813
|
};
|
|
57814
|
+
border?: {
|
|
57815
|
+
width: string | number;
|
|
57816
|
+
color: string;
|
|
57817
|
+
opacity: string | number;
|
|
57818
|
+
radius: string | number;
|
|
57819
|
+
};
|
|
58371
57820
|
padding?: string | number | {
|
|
58372
57821
|
top: string | number;
|
|
58373
57822
|
right: string | number;
|
|
@@ -58396,7 +57845,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58396
57845
|
speed: string | number;
|
|
58397
57846
|
direction?: "left" | "right" | "up" | "down";
|
|
58398
57847
|
};
|
|
58399
|
-
position?: "top" | "bottom" | "center";
|
|
58400
57848
|
} | {
|
|
58401
57849
|
type: "html";
|
|
58402
57850
|
html: string;
|
|
@@ -59132,13 +58580,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59132
58580
|
type: z.ZodEnum<{
|
|
59133
58581
|
"rich-caption": "rich-caption";
|
|
59134
58582
|
}>;
|
|
59135
|
-
src: z.
|
|
59136
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
59137
|
-
text: z.ZodString;
|
|
59138
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
59139
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
59140
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
59141
|
-
}, z.core.$strict>>>;
|
|
58583
|
+
src: z.ZodString;
|
|
59142
58584
|
font: z.ZodOptional<z.ZodObject<{
|
|
59143
58585
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
59144
58586
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -59146,11 +58588,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59146
58588
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
59147
58589
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59148
58590
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
59149
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
59150
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59151
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
59152
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59153
|
-
}, z.core.$strict>>;
|
|
59154
58591
|
}, z.core.$strict>>;
|
|
59155
58592
|
style: z.ZodOptional<z.ZodObject<{
|
|
59156
58593
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -59196,6 +58633,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59196
58633
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59197
58634
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59198
58635
|
}, z.core.$strict>>;
|
|
58636
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
58637
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58638
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
58639
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58640
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
58641
|
+
}, z.core.$strict>>;
|
|
59199
58642
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
59200
58643
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59201
58644
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -59246,13 +58689,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59246
58689
|
down: "down";
|
|
59247
58690
|
}>>;
|
|
59248
58691
|
}, z.core.$strict>>;
|
|
59249
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
59250
|
-
top: "top";
|
|
59251
|
-
bottom: "bottom";
|
|
59252
|
-
center: "center";
|
|
59253
|
-
}>>;
|
|
59254
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59255
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59256
58692
|
}, z.core.$strict>, z.ZodObject<{
|
|
59257
58693
|
type: z.ZodEnum<{
|
|
59258
58694
|
html: "html";
|
|
@@ -60417,15 +59853,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60417
59853
|
speed?: string | number;
|
|
60418
59854
|
} | {
|
|
60419
59855
|
type: "rich-caption";
|
|
60420
|
-
|
|
60421
|
-
maxLines: string | number;
|
|
60422
|
-
src?: string;
|
|
60423
|
-
words?: {
|
|
60424
|
-
text: string;
|
|
60425
|
-
start?: string | number;
|
|
60426
|
-
end?: string | number;
|
|
60427
|
-
confidence?: string | number;
|
|
60428
|
-
}[];
|
|
59856
|
+
src: string;
|
|
60429
59857
|
font?: {
|
|
60430
59858
|
family: string;
|
|
60431
59859
|
size: string | number;
|
|
@@ -60433,11 +59861,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60433
59861
|
color: string;
|
|
60434
59862
|
opacity: string | number;
|
|
60435
59863
|
background?: string;
|
|
60436
|
-
stroke?: {
|
|
60437
|
-
width: string | number;
|
|
60438
|
-
color: string;
|
|
60439
|
-
opacity: string | number;
|
|
60440
|
-
};
|
|
60441
59864
|
};
|
|
60442
59865
|
style?: {
|
|
60443
59866
|
letterSpacing: string | number;
|
|
@@ -60471,6 +59894,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60471
59894
|
borderRadius: string | number;
|
|
60472
59895
|
color?: string;
|
|
60473
59896
|
};
|
|
59897
|
+
border?: {
|
|
59898
|
+
width: string | number;
|
|
59899
|
+
color: string;
|
|
59900
|
+
opacity: string | number;
|
|
59901
|
+
radius: string | number;
|
|
59902
|
+
};
|
|
60474
59903
|
padding?: string | number | {
|
|
60475
59904
|
top: string | number;
|
|
60476
59905
|
right: string | number;
|
|
@@ -60499,7 +59928,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60499
59928
|
speed: string | number;
|
|
60500
59929
|
direction?: "left" | "right" | "up" | "down";
|
|
60501
59930
|
};
|
|
60502
|
-
position?: "top" | "bottom" | "center";
|
|
60503
59931
|
} | {
|
|
60504
59932
|
type: "html";
|
|
60505
59933
|
html: string;
|
|
@@ -60960,15 +60388,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60960
60388
|
speed?: string | number;
|
|
60961
60389
|
} | {
|
|
60962
60390
|
type: "rich-caption";
|
|
60963
|
-
|
|
60964
|
-
maxLines: string | number;
|
|
60965
|
-
src?: string;
|
|
60966
|
-
words?: {
|
|
60967
|
-
text: string;
|
|
60968
|
-
start?: string | number;
|
|
60969
|
-
end?: string | number;
|
|
60970
|
-
confidence?: string | number;
|
|
60971
|
-
}[];
|
|
60391
|
+
src: string;
|
|
60972
60392
|
font?: {
|
|
60973
60393
|
family: string;
|
|
60974
60394
|
size: string | number;
|
|
@@ -60976,11 +60396,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60976
60396
|
color: string;
|
|
60977
60397
|
opacity: string | number;
|
|
60978
60398
|
background?: string;
|
|
60979
|
-
stroke?: {
|
|
60980
|
-
width: string | number;
|
|
60981
|
-
color: string;
|
|
60982
|
-
opacity: string | number;
|
|
60983
|
-
};
|
|
60984
60399
|
};
|
|
60985
60400
|
style?: {
|
|
60986
60401
|
letterSpacing: string | number;
|
|
@@ -61014,6 +60429,12 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61014
60429
|
borderRadius: string | number;
|
|
61015
60430
|
color?: string;
|
|
61016
60431
|
};
|
|
60432
|
+
border?: {
|
|
60433
|
+
width: string | number;
|
|
60434
|
+
color: string;
|
|
60435
|
+
opacity: string | number;
|
|
60436
|
+
radius: string | number;
|
|
60437
|
+
};
|
|
61017
60438
|
padding?: string | number | {
|
|
61018
60439
|
top: string | number;
|
|
61019
60440
|
right: string | number;
|
|
@@ -61042,7 +60463,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61042
60463
|
speed: string | number;
|
|
61043
60464
|
direction?: "left" | "right" | "up" | "down";
|
|
61044
60465
|
};
|
|
61045
|
-
position?: "top" | "bottom" | "center";
|
|
61046
60466
|
} | {
|
|
61047
60467
|
type: "html";
|
|
61048
60468
|
html: string;
|
|
@@ -61757,13 +61177,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61757
61177
|
type: z.ZodEnum<{
|
|
61758
61178
|
"rich-caption": "rich-caption";
|
|
61759
61179
|
}>;
|
|
61760
|
-
src: z.
|
|
61761
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
61762
|
-
text: z.ZodString;
|
|
61763
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
61764
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
61765
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
61766
|
-
}, z.core.$strict>>>;
|
|
61180
|
+
src: z.ZodString;
|
|
61767
61181
|
font: z.ZodOptional<z.ZodObject<{
|
|
61768
61182
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
61769
61183
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -61771,11 +61185,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61771
61185
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
61772
61186
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61773
61187
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
61774
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
61775
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61776
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
61777
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61778
|
-
}, z.core.$strict>>;
|
|
61779
61188
|
}, z.core.$strict>>;
|
|
61780
61189
|
style: z.ZodOptional<z.ZodObject<{
|
|
61781
61190
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -61821,6 +61230,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61821
61230
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61822
61231
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61823
61232
|
}, z.core.$strict>>;
|
|
61233
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
61234
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61235
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
61236
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61237
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61238
|
+
}, z.core.$strict>>;
|
|
61824
61239
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
61825
61240
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61826
61241
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -61871,13 +61286,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
61871
61286
|
down: "down";
|
|
61872
61287
|
}>>;
|
|
61873
61288
|
}, z.core.$strict>>;
|
|
61874
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
61875
|
-
top: "top";
|
|
61876
|
-
bottom: "bottom";
|
|
61877
|
-
center: "center";
|
|
61878
|
-
}>>;
|
|
61879
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61880
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
61881
61289
|
}, z.core.$strict>, z.ZodObject<{
|
|
61882
61290
|
type: z.ZodEnum<{
|
|
61883
61291
|
html: "html";
|
|
@@ -63042,15 +62450,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63042
62450
|
speed?: string | number;
|
|
63043
62451
|
} | {
|
|
63044
62452
|
type: "rich-caption";
|
|
63045
|
-
|
|
63046
|
-
maxLines: string | number;
|
|
63047
|
-
src?: string;
|
|
63048
|
-
words?: {
|
|
63049
|
-
text: string;
|
|
63050
|
-
start?: string | number;
|
|
63051
|
-
end?: string | number;
|
|
63052
|
-
confidence?: string | number;
|
|
63053
|
-
}[];
|
|
62453
|
+
src: string;
|
|
63054
62454
|
font?: {
|
|
63055
62455
|
family: string;
|
|
63056
62456
|
size: string | number;
|
|
@@ -63058,11 +62458,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63058
62458
|
color: string;
|
|
63059
62459
|
opacity: string | number;
|
|
63060
62460
|
background?: string;
|
|
63061
|
-
stroke?: {
|
|
63062
|
-
width: string | number;
|
|
63063
|
-
color: string;
|
|
63064
|
-
opacity: string | number;
|
|
63065
|
-
};
|
|
63066
62461
|
};
|
|
63067
62462
|
style?: {
|
|
63068
62463
|
letterSpacing: string | number;
|
|
@@ -63096,6 +62491,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63096
62491
|
borderRadius: string | number;
|
|
63097
62492
|
color?: string;
|
|
63098
62493
|
};
|
|
62494
|
+
border?: {
|
|
62495
|
+
width: string | number;
|
|
62496
|
+
color: string;
|
|
62497
|
+
opacity: string | number;
|
|
62498
|
+
radius: string | number;
|
|
62499
|
+
};
|
|
63099
62500
|
padding?: string | number | {
|
|
63100
62501
|
top: string | number;
|
|
63101
62502
|
right: string | number;
|
|
@@ -63124,7 +62525,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63124
62525
|
speed: string | number;
|
|
63125
62526
|
direction?: "left" | "right" | "up" | "down";
|
|
63126
62527
|
};
|
|
63127
|
-
position?: "top" | "bottom" | "center";
|
|
63128
62528
|
} | {
|
|
63129
62529
|
type: "html";
|
|
63130
62530
|
html: string;
|
|
@@ -63585,15 +62985,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63585
62985
|
speed?: string | number;
|
|
63586
62986
|
} | {
|
|
63587
62987
|
type: "rich-caption";
|
|
63588
|
-
|
|
63589
|
-
maxLines: string | number;
|
|
63590
|
-
src?: string;
|
|
63591
|
-
words?: {
|
|
63592
|
-
text: string;
|
|
63593
|
-
start?: string | number;
|
|
63594
|
-
end?: string | number;
|
|
63595
|
-
confidence?: string | number;
|
|
63596
|
-
}[];
|
|
62988
|
+
src: string;
|
|
63597
62989
|
font?: {
|
|
63598
62990
|
family: string;
|
|
63599
62991
|
size: string | number;
|
|
@@ -63601,11 +62993,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63601
62993
|
color: string;
|
|
63602
62994
|
opacity: string | number;
|
|
63603
62995
|
background?: string;
|
|
63604
|
-
stroke?: {
|
|
63605
|
-
width: string | number;
|
|
63606
|
-
color: string;
|
|
63607
|
-
opacity: string | number;
|
|
63608
|
-
};
|
|
63609
62996
|
};
|
|
63610
62997
|
style?: {
|
|
63611
62998
|
letterSpacing: string | number;
|
|
@@ -63639,6 +63026,12 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63639
63026
|
borderRadius: string | number;
|
|
63640
63027
|
color?: string;
|
|
63641
63028
|
};
|
|
63029
|
+
border?: {
|
|
63030
|
+
width: string | number;
|
|
63031
|
+
color: string;
|
|
63032
|
+
opacity: string | number;
|
|
63033
|
+
radius: string | number;
|
|
63034
|
+
};
|
|
63642
63035
|
padding?: string | number | {
|
|
63643
63036
|
top: string | number;
|
|
63644
63037
|
right: string | number;
|
|
@@ -63667,7 +63060,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63667
63060
|
speed: string | number;
|
|
63668
63061
|
direction?: "left" | "right" | "up" | "down";
|
|
63669
63062
|
};
|
|
63670
|
-
position?: "top" | "bottom" | "center";
|
|
63671
63063
|
} | {
|
|
63672
63064
|
type: "html";
|
|
63673
63065
|
html: string;
|
|
@@ -64397,13 +63789,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64397
63789
|
type: z.ZodEnum<{
|
|
64398
63790
|
"rich-caption": "rich-caption";
|
|
64399
63791
|
}>;
|
|
64400
|
-
src: z.
|
|
64401
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
64402
|
-
text: z.ZodString;
|
|
64403
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
64404
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
64405
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
64406
|
-
}, z.core.$strict>>>;
|
|
63792
|
+
src: z.ZodString;
|
|
64407
63793
|
font: z.ZodOptional<z.ZodObject<{
|
|
64408
63794
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
64409
63795
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -64411,11 +63797,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64411
63797
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64412
63798
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64413
63799
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
64414
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
64415
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64416
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
64417
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64418
|
-
}, z.core.$strict>>;
|
|
64419
63800
|
}, z.core.$strict>>;
|
|
64420
63801
|
style: z.ZodOptional<z.ZodObject<{
|
|
64421
63802
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -64461,6 +63842,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64461
63842
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64462
63843
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64463
63844
|
}, z.core.$strict>>;
|
|
63845
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
63846
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
63847
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
63848
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
63849
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
63850
|
+
}, z.core.$strict>>;
|
|
64464
63851
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
64465
63852
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64466
63853
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -64511,13 +63898,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64511
63898
|
down: "down";
|
|
64512
63899
|
}>>;
|
|
64513
63900
|
}, z.core.$strict>>;
|
|
64514
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
64515
|
-
top: "top";
|
|
64516
|
-
bottom: "bottom";
|
|
64517
|
-
center: "center";
|
|
64518
|
-
}>>;
|
|
64519
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64520
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64521
63901
|
}, z.core.$strict>, z.ZodObject<{
|
|
64522
63902
|
type: z.ZodEnum<{
|
|
64523
63903
|
html: "html";
|
|
@@ -65682,15 +65062,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65682
65062
|
speed?: string | number;
|
|
65683
65063
|
} | {
|
|
65684
65064
|
type: "rich-caption";
|
|
65685
|
-
|
|
65686
|
-
maxLines: string | number;
|
|
65687
|
-
src?: string;
|
|
65688
|
-
words?: {
|
|
65689
|
-
text: string;
|
|
65690
|
-
start?: string | number;
|
|
65691
|
-
end?: string | number;
|
|
65692
|
-
confidence?: string | number;
|
|
65693
|
-
}[];
|
|
65065
|
+
src: string;
|
|
65694
65066
|
font?: {
|
|
65695
65067
|
family: string;
|
|
65696
65068
|
size: string | number;
|
|
@@ -65698,11 +65070,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65698
65070
|
color: string;
|
|
65699
65071
|
opacity: string | number;
|
|
65700
65072
|
background?: string;
|
|
65701
|
-
stroke?: {
|
|
65702
|
-
width: string | number;
|
|
65703
|
-
color: string;
|
|
65704
|
-
opacity: string | number;
|
|
65705
|
-
};
|
|
65706
65073
|
};
|
|
65707
65074
|
style?: {
|
|
65708
65075
|
letterSpacing: string | number;
|
|
@@ -65736,6 +65103,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65736
65103
|
borderRadius: string | number;
|
|
65737
65104
|
color?: string;
|
|
65738
65105
|
};
|
|
65106
|
+
border?: {
|
|
65107
|
+
width: string | number;
|
|
65108
|
+
color: string;
|
|
65109
|
+
opacity: string | number;
|
|
65110
|
+
radius: string | number;
|
|
65111
|
+
};
|
|
65739
65112
|
padding?: string | number | {
|
|
65740
65113
|
top: string | number;
|
|
65741
65114
|
right: string | number;
|
|
@@ -65764,7 +65137,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65764
65137
|
speed: string | number;
|
|
65765
65138
|
direction?: "left" | "right" | "up" | "down";
|
|
65766
65139
|
};
|
|
65767
|
-
position?: "top" | "bottom" | "center";
|
|
65768
65140
|
} | {
|
|
65769
65141
|
type: "html";
|
|
65770
65142
|
html: string;
|
|
@@ -66225,15 +65597,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66225
65597
|
speed?: string | number;
|
|
66226
65598
|
} | {
|
|
66227
65599
|
type: "rich-caption";
|
|
66228
|
-
|
|
66229
|
-
maxLines: string | number;
|
|
66230
|
-
src?: string;
|
|
66231
|
-
words?: {
|
|
66232
|
-
text: string;
|
|
66233
|
-
start?: string | number;
|
|
66234
|
-
end?: string | number;
|
|
66235
|
-
confidence?: string | number;
|
|
66236
|
-
}[];
|
|
65600
|
+
src: string;
|
|
66237
65601
|
font?: {
|
|
66238
65602
|
family: string;
|
|
66239
65603
|
size: string | number;
|
|
@@ -66241,11 +65605,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66241
65605
|
color: string;
|
|
66242
65606
|
opacity: string | number;
|
|
66243
65607
|
background?: string;
|
|
66244
|
-
stroke?: {
|
|
66245
|
-
width: string | number;
|
|
66246
|
-
color: string;
|
|
66247
|
-
opacity: string | number;
|
|
66248
|
-
};
|
|
66249
65608
|
};
|
|
66250
65609
|
style?: {
|
|
66251
65610
|
letterSpacing: string | number;
|
|
@@ -66279,6 +65638,12 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66279
65638
|
borderRadius: string | number;
|
|
66280
65639
|
color?: string;
|
|
66281
65640
|
};
|
|
65641
|
+
border?: {
|
|
65642
|
+
width: string | number;
|
|
65643
|
+
color: string;
|
|
65644
|
+
opacity: string | number;
|
|
65645
|
+
radius: string | number;
|
|
65646
|
+
};
|
|
66282
65647
|
padding?: string | number | {
|
|
66283
65648
|
top: string | number;
|
|
66284
65649
|
right: string | number;
|
|
@@ -66307,7 +65672,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66307
65672
|
speed: string | number;
|
|
66308
65673
|
direction?: "left" | "right" | "up" | "down";
|
|
66309
65674
|
};
|
|
66310
|
-
position?: "top" | "bottom" | "center";
|
|
66311
65675
|
} | {
|
|
66312
65676
|
type: "html";
|
|
66313
65677
|
html: string;
|
|
@@ -66999,13 +66363,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
66999
66363
|
type: z.ZodEnum<{
|
|
67000
66364
|
"rich-caption": "rich-caption";
|
|
67001
66365
|
}>;
|
|
67002
|
-
src: z.
|
|
67003
|
-
words: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
67004
|
-
text: z.ZodString;
|
|
67005
|
-
start: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
67006
|
-
end: z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>;
|
|
67007
|
-
confidence: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
67008
|
-
}, z.core.$strict>>>;
|
|
66366
|
+
src: z.ZodString;
|
|
67009
66367
|
font: z.ZodOptional<z.ZodObject<{
|
|
67010
66368
|
family: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
67011
66369
|
size: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -67013,11 +66371,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67013
66371
|
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
67014
66372
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67015
66373
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
67016
|
-
stroke: z.ZodOptional<z.ZodObject<{
|
|
67017
|
-
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67018
|
-
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
67019
|
-
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67020
|
-
}, z.core.$strict>>;
|
|
67021
66374
|
}, z.core.$strict>>;
|
|
67022
66375
|
style: z.ZodOptional<z.ZodObject<{
|
|
67023
66376
|
letterSpacing: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -67063,6 +66416,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67063
66416
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67064
66417
|
borderRadius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67065
66418
|
}, z.core.$strict>>;
|
|
66419
|
+
border: z.ZodOptional<z.ZodObject<{
|
|
66420
|
+
width: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66421
|
+
color: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
66422
|
+
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66423
|
+
radius: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
66424
|
+
}, z.core.$strict>>;
|
|
67066
66425
|
padding: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>, z.ZodObject<{
|
|
67067
66426
|
top: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67068
66427
|
right: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -67113,13 +66472,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67113
66472
|
down: "down";
|
|
67114
66473
|
}>>;
|
|
67115
66474
|
}, z.core.$strict>>;
|
|
67116
|
-
position: z.ZodOptional<z.ZodEnum<{
|
|
67117
|
-
top: "top";
|
|
67118
|
-
bottom: "bottom";
|
|
67119
|
-
center: "center";
|
|
67120
|
-
}>>;
|
|
67121
|
-
maxWidth: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67122
|
-
maxLines: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67123
66475
|
}, z.core.$strict>, z.ZodObject<{
|
|
67124
66476
|
type: z.ZodEnum<{
|
|
67125
66477
|
html: "html";
|
|
@@ -68284,15 +67636,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68284
67636
|
speed?: string | number;
|
|
68285
67637
|
} | {
|
|
68286
67638
|
type: "rich-caption";
|
|
68287
|
-
|
|
68288
|
-
maxLines: string | number;
|
|
68289
|
-
src?: string;
|
|
68290
|
-
words?: {
|
|
68291
|
-
text: string;
|
|
68292
|
-
start?: string | number;
|
|
68293
|
-
end?: string | number;
|
|
68294
|
-
confidence?: string | number;
|
|
68295
|
-
}[];
|
|
67639
|
+
src: string;
|
|
68296
67640
|
font?: {
|
|
68297
67641
|
family: string;
|
|
68298
67642
|
size: string | number;
|
|
@@ -68300,11 +67644,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68300
67644
|
color: string;
|
|
68301
67645
|
opacity: string | number;
|
|
68302
67646
|
background?: string;
|
|
68303
|
-
stroke?: {
|
|
68304
|
-
width: string | number;
|
|
68305
|
-
color: string;
|
|
68306
|
-
opacity: string | number;
|
|
68307
|
-
};
|
|
68308
67647
|
};
|
|
68309
67648
|
style?: {
|
|
68310
67649
|
letterSpacing: string | number;
|
|
@@ -68338,6 +67677,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68338
67677
|
borderRadius: string | number;
|
|
68339
67678
|
color?: string;
|
|
68340
67679
|
};
|
|
67680
|
+
border?: {
|
|
67681
|
+
width: string | number;
|
|
67682
|
+
color: string;
|
|
67683
|
+
opacity: string | number;
|
|
67684
|
+
radius: string | number;
|
|
67685
|
+
};
|
|
68341
67686
|
padding?: string | number | {
|
|
68342
67687
|
top: string | number;
|
|
68343
67688
|
right: string | number;
|
|
@@ -68366,7 +67711,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68366
67711
|
speed: string | number;
|
|
68367
67712
|
direction?: "left" | "right" | "up" | "down";
|
|
68368
67713
|
};
|
|
68369
|
-
position?: "top" | "bottom" | "center";
|
|
68370
67714
|
} | {
|
|
68371
67715
|
type: "html";
|
|
68372
67716
|
html: string;
|
|
@@ -68827,15 +68171,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68827
68171
|
speed?: string | number;
|
|
68828
68172
|
} | {
|
|
68829
68173
|
type: "rich-caption";
|
|
68830
|
-
|
|
68831
|
-
maxLines: string | number;
|
|
68832
|
-
src?: string;
|
|
68833
|
-
words?: {
|
|
68834
|
-
text: string;
|
|
68835
|
-
start?: string | number;
|
|
68836
|
-
end?: string | number;
|
|
68837
|
-
confidence?: string | number;
|
|
68838
|
-
}[];
|
|
68174
|
+
src: string;
|
|
68839
68175
|
font?: {
|
|
68840
68176
|
family: string;
|
|
68841
68177
|
size: string | number;
|
|
@@ -68843,11 +68179,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68843
68179
|
color: string;
|
|
68844
68180
|
opacity: string | number;
|
|
68845
68181
|
background?: string;
|
|
68846
|
-
stroke?: {
|
|
68847
|
-
width: string | number;
|
|
68848
|
-
color: string;
|
|
68849
|
-
opacity: string | number;
|
|
68850
|
-
};
|
|
68851
68182
|
};
|
|
68852
68183
|
style?: {
|
|
68853
68184
|
letterSpacing: string | number;
|
|
@@ -68881,6 +68212,12 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68881
68212
|
borderRadius: string | number;
|
|
68882
68213
|
color?: string;
|
|
68883
68214
|
};
|
|
68215
|
+
border?: {
|
|
68216
|
+
width: string | number;
|
|
68217
|
+
color: string;
|
|
68218
|
+
opacity: string | number;
|
|
68219
|
+
radius: string | number;
|
|
68220
|
+
};
|
|
68884
68221
|
padding?: string | number | {
|
|
68885
68222
|
top: string | number;
|
|
68886
68223
|
right: string | number;
|
|
@@ -68909,7 +68246,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68909
68246
|
speed: string | number;
|
|
68910
68247
|
direction?: "left" | "right" | "up" | "down";
|
|
68911
68248
|
};
|
|
68912
|
-
position?: "top" | "bottom" | "center";
|
|
68913
68249
|
} | {
|
|
68914
68250
|
type: "html";
|
|
68915
68251
|
html: string;
|