@shotstack/schemas 1.9.8 → 1.9.10
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 +15 -14
- package/dist/json-schema/asset.json +23 -14
- package/dist/json-schema/caption-asset.json +1 -1
- package/dist/json-schema/clip.json +23 -14
- package/dist/json-schema/edit.json +23 -14
- package/dist/json-schema/rich-caption-active-font.json +25 -1
- package/dist/json-schema/rich-caption-active.json +26 -16
- package/dist/json-schema/rich-caption-asset.json +23 -14
- package/dist/json-schema/schemas.json +30 -20
- package/dist/json-schema/svg-asset.json +2 -2
- package/dist/json-schema/timeline.json +23 -14
- package/dist/json-schema/track.json +23 -14
- package/dist/schema.d.ts +17 -19
- package/dist/zod/zod.gen.cjs +4 -16
- package/dist/zod/zod.gen.d.ts +147 -79
- package/dist/zod/zod.gen.js +4 -16
- package/dist/zod/zod.gen.ts +4 -10
- package/package.json +1 -1
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ export declare const captionMarginSchema: z.ZodObject<{
|
|
|
70
70
|
* flexibility with styling and layout. For example you can scale, position or crop a video without modifying the
|
|
71
71
|
* captions.
|
|
72
72
|
*
|
|
73
|
-
* To sync captions with a video or audio file use a [Video](#tocs_videoasset
|
|
73
|
+
* To sync captions with a video or audio file use a [Video](#tocs_videoasset) or [Audio](#tocs_audioasset) with
|
|
74
74
|
* matching start and end time.
|
|
75
75
|
*
|
|
76
76
|
*/
|
|
@@ -1534,6 +1534,8 @@ export declare const templateResponseSchema: z.ZodObject<{
|
|
|
1534
1534
|
* Font properties for the active/highlighted word.
|
|
1535
1535
|
*/
|
|
1536
1536
|
export declare const richcaptionpropertiesRichCaptionActiveFontSchema: z.ZodObject<{
|
|
1537
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1538
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1537
1539
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1538
1540
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1539
1541
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1545,6 +1547,8 @@ export declare const richcaptionpropertiesRichCaptionActiveFontSchema: z.ZodObje
|
|
|
1545
1547
|
}>>;
|
|
1546
1548
|
}, z.core.$strict>;
|
|
1547
1549
|
export declare const richCaptionActiveFontSchema: z.ZodObject<{
|
|
1550
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1551
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1548
1552
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1549
1553
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1550
1554
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1798,6 +1802,8 @@ export declare const richTextStrokeSchema: z.ZodObject<{
|
|
|
1798
1802
|
*/
|
|
1799
1803
|
export declare const richcaptionpropertiesRichCaptionActiveSchema: z.ZodObject<{
|
|
1800
1804
|
font: z.ZodOptional<z.ZodObject<{
|
|
1805
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1806
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1801
1807
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1802
1808
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1803
1809
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1824,10 +1830,11 @@ export declare const richcaptionpropertiesRichCaptionActiveSchema: z.ZodObject<{
|
|
|
1824
1830
|
}, z.core.$strict>, z.ZodEnum<{
|
|
1825
1831
|
none: "none";
|
|
1826
1832
|
}>]>>;
|
|
1827
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
1828
1833
|
}, z.core.$strict>;
|
|
1829
1834
|
export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
1830
1835
|
font: z.ZodOptional<z.ZodObject<{
|
|
1836
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1837
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1831
1838
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1832
1839
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1833
1840
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1854,7 +1861,6 @@ export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
|
1854
1861
|
}, z.core.$strict>, z.ZodEnum<{
|
|
1855
1862
|
none: "none";
|
|
1856
1863
|
}>]>>;
|
|
1857
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
1858
1864
|
}, z.core.$strict>;
|
|
1859
1865
|
/**
|
|
1860
1866
|
* The RichCaptionAsset provides word-level caption animations with rich-text styling. It supports
|
|
@@ -1945,6 +1951,8 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
1945
1951
|
}, z.core.$strict>>;
|
|
1946
1952
|
active: z.ZodOptional<z.ZodObject<{
|
|
1947
1953
|
font: z.ZodOptional<z.ZodObject<{
|
|
1954
|
+
family: z.ZodOptional<z.ZodString>;
|
|
1955
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
1948
1956
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1949
1957
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
1950
1958
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -1971,7 +1979,6 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
1971
1979
|
}, z.core.$strict>, z.ZodEnum<{
|
|
1972
1980
|
none: "none";
|
|
1973
1981
|
}>]>>;
|
|
1974
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
1975
1982
|
}, z.core.$strict>>;
|
|
1976
1983
|
animation: z.ZodOptional<z.ZodObject<{
|
|
1977
1984
|
style: z.ZodEnum<{
|
|
@@ -2075,6 +2082,8 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
2075
2082
|
}, z.core.$strict>>;
|
|
2076
2083
|
active: z.ZodOptional<z.ZodObject<{
|
|
2077
2084
|
font: z.ZodOptional<z.ZodObject<{
|
|
2085
|
+
family: z.ZodOptional<z.ZodString>;
|
|
2086
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
2078
2087
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
2079
2088
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
2080
2089
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -2101,7 +2110,6 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
2101
2110
|
}, z.core.$strict>, z.ZodEnum<{
|
|
2102
2111
|
none: "none";
|
|
2103
2112
|
}>]>>;
|
|
2104
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
2105
2113
|
}, z.core.$strict>>;
|
|
2106
2114
|
animation: z.ZodOptional<z.ZodObject<{
|
|
2107
2115
|
style: z.ZodEnum<{
|
|
@@ -4645,13 +4653,6 @@ export declare const soundtrackSchema: z.ZodObject<{
|
|
|
4645
4653
|
/**
|
|
4646
4654
|
* The SvgAsset is used to add scalable vector graphics (SVG) to a video using raw SVG markup.
|
|
4647
4655
|
*
|
|
4648
|
-
* ```json
|
|
4649
|
-
* {
|
|
4650
|
-
* "type": "svg",
|
|
4651
|
-
* "src": "<svg width=\"100\" height=\"100\"><circle cx=\"50\" cy=\"50\" r=\"40\" fill=\"#FF0000\"/></svg>"
|
|
4652
|
-
* }
|
|
4653
|
-
* ```
|
|
4654
|
-
*
|
|
4655
4656
|
* **Supported elements:** `<path>`, `<rect>`, `<circle>`, `<ellipse>`,
|
|
4656
4657
|
* `<line>`, `<polygon>`, `<polyline>`
|
|
4657
4658
|
*
|
|
@@ -7292,6 +7293,8 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7292
7293
|
}, z.core.$strict>>;
|
|
7293
7294
|
active: z.ZodOptional<z.ZodObject<{
|
|
7294
7295
|
font: z.ZodOptional<z.ZodObject<{
|
|
7296
|
+
family: z.ZodOptional<z.ZodString>;
|
|
7297
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
7295
7298
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
7296
7299
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
7297
7300
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -7318,7 +7321,6 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
7318
7321
|
}, z.core.$strict>, z.ZodEnum<{
|
|
7319
7322
|
none: "none";
|
|
7320
7323
|
}>]>>;
|
|
7321
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
7322
7324
|
}, z.core.$strict>>;
|
|
7323
7325
|
animation: z.ZodOptional<z.ZodObject<{
|
|
7324
7326
|
style: z.ZodEnum<{
|
|
@@ -8008,6 +8010,8 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8008
8010
|
}, z.core.$strict>>;
|
|
8009
8011
|
active: z.ZodOptional<z.ZodObject<{
|
|
8010
8012
|
font: z.ZodOptional<z.ZodObject<{
|
|
8013
|
+
family: z.ZodOptional<z.ZodString>;
|
|
8014
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
8011
8015
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
8012
8016
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
8013
8017
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -8034,7 +8038,6 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8034
8038
|
}, z.core.$strict>, z.ZodEnum<{
|
|
8035
8039
|
none: "none";
|
|
8036
8040
|
}>]>>;
|
|
8037
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
8038
8041
|
}, z.core.$strict>>;
|
|
8039
8042
|
animation: z.ZodOptional<z.ZodObject<{
|
|
8040
8043
|
style: z.ZodEnum<{
|
|
@@ -8728,6 +8731,8 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
8728
8731
|
}, z.core.$strict>>;
|
|
8729
8732
|
active: z.ZodOptional<z.ZodObject<{
|
|
8730
8733
|
font: z.ZodOptional<z.ZodObject<{
|
|
8734
|
+
family: z.ZodOptional<z.ZodString>;
|
|
8735
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
8731
8736
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
8732
8737
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
8733
8738
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -8754,7 +8759,6 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
8754
8759
|
}, z.core.$strict>, z.ZodEnum<{
|
|
8755
8760
|
none: "none";
|
|
8756
8761
|
}>]>>;
|
|
8757
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
8758
8762
|
}, z.core.$strict>>;
|
|
8759
8763
|
animation: z.ZodOptional<z.ZodObject<{
|
|
8760
8764
|
style: z.ZodEnum<{
|
|
@@ -9928,6 +9932,8 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
9928
9932
|
}, z.core.$strict>>;
|
|
9929
9933
|
active: z.ZodOptional<z.ZodObject<{
|
|
9930
9934
|
font: z.ZodOptional<z.ZodObject<{
|
|
9935
|
+
family: z.ZodOptional<z.ZodString>;
|
|
9936
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
9931
9937
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
9932
9938
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
9933
9939
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -9954,7 +9960,6 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
9954
9960
|
}, z.core.$strict>, z.ZodEnum<{
|
|
9955
9961
|
none: "none";
|
|
9956
9962
|
}>]>>;
|
|
9957
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
9958
9963
|
}, z.core.$strict>>;
|
|
9959
9964
|
animation: z.ZodOptional<z.ZodObject<{
|
|
9960
9965
|
style: z.ZodEnum<{
|
|
@@ -11132,6 +11137,8 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
11132
11137
|
}, z.core.$strict>>;
|
|
11133
11138
|
active: z.ZodOptional<z.ZodObject<{
|
|
11134
11139
|
font: z.ZodOptional<z.ZodObject<{
|
|
11140
|
+
family: z.ZodOptional<z.ZodString>;
|
|
11141
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
11135
11142
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11136
11143
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11137
11144
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -11158,7 +11165,6 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
11158
11165
|
}, z.core.$strict>, z.ZodEnum<{
|
|
11159
11166
|
none: "none";
|
|
11160
11167
|
}>]>>;
|
|
11161
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11162
11168
|
}, z.core.$strict>>;
|
|
11163
11169
|
animation: z.ZodOptional<z.ZodObject<{
|
|
11164
11170
|
style: z.ZodEnum<{
|
|
@@ -12173,9 +12179,10 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
12173
12179
|
vertical?: "top" | "bottom" | "middle";
|
|
12174
12180
|
};
|
|
12175
12181
|
active?: {
|
|
12176
|
-
scale: string | number;
|
|
12177
12182
|
font?: {
|
|
12183
|
+
weight: unknown;
|
|
12178
12184
|
opacity: string | number;
|
|
12185
|
+
family?: string;
|
|
12179
12186
|
color?: string;
|
|
12180
12187
|
background?: string;
|
|
12181
12188
|
size?: string | number;
|
|
@@ -12622,9 +12629,10 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
12622
12629
|
vertical?: "top" | "bottom" | "middle";
|
|
12623
12630
|
};
|
|
12624
12631
|
active?: {
|
|
12625
|
-
scale: string | number;
|
|
12626
12632
|
font?: {
|
|
12633
|
+
weight: unknown;
|
|
12627
12634
|
opacity: string | number;
|
|
12635
|
+
family?: string;
|
|
12628
12636
|
color?: string;
|
|
12629
12637
|
background?: string;
|
|
12630
12638
|
size?: string | number;
|
|
@@ -13233,6 +13241,8 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
13233
13241
|
}, z.core.$strict>>;
|
|
13234
13242
|
active: z.ZodOptional<z.ZodObject<{
|
|
13235
13243
|
font: z.ZodOptional<z.ZodObject<{
|
|
13244
|
+
family: z.ZodOptional<z.ZodString>;
|
|
13245
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
13236
13246
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
13237
13247
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
13238
13248
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -13259,7 +13269,6 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
13259
13269
|
}, z.core.$strict>, z.ZodEnum<{
|
|
13260
13270
|
none: "none";
|
|
13261
13271
|
}>]>>;
|
|
13262
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
13263
13272
|
}, z.core.$strict>>;
|
|
13264
13273
|
animation: z.ZodOptional<z.ZodObject<{
|
|
13265
13274
|
style: z.ZodEnum<{
|
|
@@ -14274,9 +14283,10 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
14274
14283
|
vertical?: "top" | "bottom" | "middle";
|
|
14275
14284
|
};
|
|
14276
14285
|
active?: {
|
|
14277
|
-
scale: string | number;
|
|
14278
14286
|
font?: {
|
|
14287
|
+
weight: unknown;
|
|
14279
14288
|
opacity: string | number;
|
|
14289
|
+
family?: string;
|
|
14280
14290
|
color?: string;
|
|
14281
14291
|
background?: string;
|
|
14282
14292
|
size?: string | number;
|
|
@@ -14723,9 +14733,10 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
14723
14733
|
vertical?: "top" | "bottom" | "middle";
|
|
14724
14734
|
};
|
|
14725
14735
|
active?: {
|
|
14726
|
-
scale: string | number;
|
|
14727
14736
|
font?: {
|
|
14737
|
+
weight: unknown;
|
|
14728
14738
|
opacity: string | number;
|
|
14739
|
+
family?: string;
|
|
14729
14740
|
color?: string;
|
|
14730
14741
|
background?: string;
|
|
14731
14742
|
size?: string | number;
|
|
@@ -15351,6 +15362,8 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
15351
15362
|
}, z.core.$strict>>;
|
|
15352
15363
|
active: z.ZodOptional<z.ZodObject<{
|
|
15353
15364
|
font: z.ZodOptional<z.ZodObject<{
|
|
15365
|
+
family: z.ZodOptional<z.ZodString>;
|
|
15366
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
15354
15367
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15355
15368
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15356
15369
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -15377,7 +15390,6 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
15377
15390
|
}, z.core.$strict>, z.ZodEnum<{
|
|
15378
15391
|
none: "none";
|
|
15379
15392
|
}>]>>;
|
|
15380
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15381
15393
|
}, z.core.$strict>>;
|
|
15382
15394
|
animation: z.ZodOptional<z.ZodObject<{
|
|
15383
15395
|
style: z.ZodEnum<{
|
|
@@ -16392,9 +16404,10 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
16392
16404
|
vertical?: "top" | "bottom" | "middle";
|
|
16393
16405
|
};
|
|
16394
16406
|
active?: {
|
|
16395
|
-
scale: string | number;
|
|
16396
16407
|
font?: {
|
|
16408
|
+
weight: unknown;
|
|
16397
16409
|
opacity: string | number;
|
|
16410
|
+
family?: string;
|
|
16398
16411
|
color?: string;
|
|
16399
16412
|
background?: string;
|
|
16400
16413
|
size?: string | number;
|
|
@@ -16841,9 +16854,10 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
16841
16854
|
vertical?: "top" | "bottom" | "middle";
|
|
16842
16855
|
};
|
|
16843
16856
|
active?: {
|
|
16844
|
-
scale: string | number;
|
|
16845
16857
|
font?: {
|
|
16858
|
+
weight: unknown;
|
|
16846
16859
|
opacity: string | number;
|
|
16860
|
+
family?: string;
|
|
16847
16861
|
color?: string;
|
|
16848
16862
|
background?: string;
|
|
16849
16863
|
size?: string | number;
|
|
@@ -17468,6 +17482,8 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
17468
17482
|
}, z.core.$strict>>;
|
|
17469
17483
|
active: z.ZodOptional<z.ZodObject<{
|
|
17470
17484
|
font: z.ZodOptional<z.ZodObject<{
|
|
17485
|
+
family: z.ZodOptional<z.ZodString>;
|
|
17486
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
17471
17487
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
17472
17488
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
17473
17489
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -17494,7 +17510,6 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
17494
17510
|
}, z.core.$strict>, z.ZodEnum<{
|
|
17495
17511
|
none: "none";
|
|
17496
17512
|
}>]>>;
|
|
17497
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
17498
17513
|
}, z.core.$strict>>;
|
|
17499
17514
|
animation: z.ZodOptional<z.ZodObject<{
|
|
17500
17515
|
style: z.ZodEnum<{
|
|
@@ -18509,9 +18524,10 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
18509
18524
|
vertical?: "top" | "bottom" | "middle";
|
|
18510
18525
|
};
|
|
18511
18526
|
active?: {
|
|
18512
|
-
scale: string | number;
|
|
18513
18527
|
font?: {
|
|
18528
|
+
weight: unknown;
|
|
18514
18529
|
opacity: string | number;
|
|
18530
|
+
family?: string;
|
|
18515
18531
|
color?: string;
|
|
18516
18532
|
background?: string;
|
|
18517
18533
|
size?: string | number;
|
|
@@ -18958,9 +18974,10 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
18958
18974
|
vertical?: "top" | "bottom" | "middle";
|
|
18959
18975
|
};
|
|
18960
18976
|
active?: {
|
|
18961
|
-
scale: string | number;
|
|
18962
18977
|
font?: {
|
|
18978
|
+
weight: unknown;
|
|
18963
18979
|
opacity: string | number;
|
|
18980
|
+
family?: string;
|
|
18964
18981
|
color?: string;
|
|
18965
18982
|
background?: string;
|
|
18966
18983
|
size?: string | number;
|
|
@@ -19589,6 +19606,8 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
19589
19606
|
}, z.core.$strict>>;
|
|
19590
19607
|
active: z.ZodOptional<z.ZodObject<{
|
|
19591
19608
|
font: z.ZodOptional<z.ZodObject<{
|
|
19609
|
+
family: z.ZodOptional<z.ZodString>;
|
|
19610
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
19592
19611
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19593
19612
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
19594
19613
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -19615,7 +19634,6 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
19615
19634
|
}, z.core.$strict>, z.ZodEnum<{
|
|
19616
19635
|
none: "none";
|
|
19617
19636
|
}>]>>;
|
|
19618
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
19619
19637
|
}, z.core.$strict>>;
|
|
19620
19638
|
animation: z.ZodOptional<z.ZodObject<{
|
|
19621
19639
|
style: z.ZodEnum<{
|
|
@@ -20630,9 +20648,10 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
20630
20648
|
vertical?: "top" | "bottom" | "middle";
|
|
20631
20649
|
};
|
|
20632
20650
|
active?: {
|
|
20633
|
-
scale: string | number;
|
|
20634
20651
|
font?: {
|
|
20652
|
+
weight: unknown;
|
|
20635
20653
|
opacity: string | number;
|
|
20654
|
+
family?: string;
|
|
20636
20655
|
color?: string;
|
|
20637
20656
|
background?: string;
|
|
20638
20657
|
size?: string | number;
|
|
@@ -21079,9 +21098,10 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
21079
21098
|
vertical?: "top" | "bottom" | "middle";
|
|
21080
21099
|
};
|
|
21081
21100
|
active?: {
|
|
21082
|
-
scale: string | number;
|
|
21083
21101
|
font?: {
|
|
21102
|
+
weight: unknown;
|
|
21084
21103
|
opacity: string | number;
|
|
21104
|
+
family?: string;
|
|
21085
21105
|
color?: string;
|
|
21086
21106
|
background?: string;
|
|
21087
21107
|
size?: string | number;
|
|
@@ -21872,6 +21892,8 @@ export declare const editSchema: z.ZodObject<{
|
|
|
21872
21892
|
}, z.core.$strict>>;
|
|
21873
21893
|
active: z.ZodOptional<z.ZodObject<{
|
|
21874
21894
|
font: z.ZodOptional<z.ZodObject<{
|
|
21895
|
+
family: z.ZodOptional<z.ZodString>;
|
|
21896
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
21875
21897
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
21876
21898
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
21877
21899
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -21898,7 +21920,6 @@ export declare const editSchema: z.ZodObject<{
|
|
|
21898
21920
|
}, z.core.$strict>, z.ZodEnum<{
|
|
21899
21921
|
none: "none";
|
|
21900
21922
|
}>]>>;
|
|
21901
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
21902
21923
|
}, z.core.$strict>>;
|
|
21903
21924
|
animation: z.ZodOptional<z.ZodObject<{
|
|
21904
21925
|
style: z.ZodEnum<{
|
|
@@ -22913,9 +22934,10 @@ export declare const editSchema: z.ZodObject<{
|
|
|
22913
22934
|
vertical?: "top" | "bottom" | "middle";
|
|
22914
22935
|
};
|
|
22915
22936
|
active?: {
|
|
22916
|
-
scale: string | number;
|
|
22917
22937
|
font?: {
|
|
22938
|
+
weight: unknown;
|
|
22918
22939
|
opacity: string | number;
|
|
22940
|
+
family?: string;
|
|
22919
22941
|
color?: string;
|
|
22920
22942
|
background?: string;
|
|
22921
22943
|
size?: string | number;
|
|
@@ -23362,9 +23384,10 @@ export declare const editSchema: z.ZodObject<{
|
|
|
23362
23384
|
vertical?: "top" | "bottom" | "middle";
|
|
23363
23385
|
};
|
|
23364
23386
|
active?: {
|
|
23365
|
-
scale: string | number;
|
|
23366
23387
|
font?: {
|
|
23388
|
+
weight: unknown;
|
|
23367
23389
|
opacity: string | number;
|
|
23390
|
+
family?: string;
|
|
23368
23391
|
color?: string;
|
|
23369
23392
|
background?: string;
|
|
23370
23393
|
size?: string | number;
|
|
@@ -24177,6 +24200,8 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
24177
24200
|
}, z.core.$strict>>;
|
|
24178
24201
|
active: z.ZodOptional<z.ZodObject<{
|
|
24179
24202
|
font: z.ZodOptional<z.ZodObject<{
|
|
24203
|
+
family: z.ZodOptional<z.ZodString>;
|
|
24204
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
24180
24205
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
24181
24206
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
24182
24207
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -24203,7 +24228,6 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
24203
24228
|
}, z.core.$strict>, z.ZodEnum<{
|
|
24204
24229
|
none: "none";
|
|
24205
24230
|
}>]>>;
|
|
24206
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
24207
24231
|
}, z.core.$strict>>;
|
|
24208
24232
|
animation: z.ZodOptional<z.ZodObject<{
|
|
24209
24233
|
style: z.ZodEnum<{
|
|
@@ -25218,9 +25242,10 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
25218
25242
|
vertical?: "top" | "bottom" | "middle";
|
|
25219
25243
|
};
|
|
25220
25244
|
active?: {
|
|
25221
|
-
scale: string | number;
|
|
25222
25245
|
font?: {
|
|
25246
|
+
weight: unknown;
|
|
25223
25247
|
opacity: string | number;
|
|
25248
|
+
family?: string;
|
|
25224
25249
|
color?: string;
|
|
25225
25250
|
background?: string;
|
|
25226
25251
|
size?: string | number;
|
|
@@ -25667,9 +25692,10 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
25667
25692
|
vertical?: "top" | "bottom" | "middle";
|
|
25668
25693
|
};
|
|
25669
25694
|
active?: {
|
|
25670
|
-
scale: string | number;
|
|
25671
25695
|
font?: {
|
|
25696
|
+
weight: unknown;
|
|
25672
25697
|
opacity: string | number;
|
|
25698
|
+
family?: string;
|
|
25673
25699
|
color?: string;
|
|
25674
25700
|
background?: string;
|
|
25675
25701
|
size?: string | number;
|
|
@@ -26482,6 +26508,8 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
26482
26508
|
}, z.core.$strict>>;
|
|
26483
26509
|
active: z.ZodOptional<z.ZodObject<{
|
|
26484
26510
|
font: z.ZodOptional<z.ZodObject<{
|
|
26511
|
+
family: z.ZodOptional<z.ZodString>;
|
|
26512
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
26485
26513
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
26486
26514
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
26487
26515
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -26508,7 +26536,6 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
26508
26536
|
}, z.core.$strict>, z.ZodEnum<{
|
|
26509
26537
|
none: "none";
|
|
26510
26538
|
}>]>>;
|
|
26511
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
26512
26539
|
}, z.core.$strict>>;
|
|
26513
26540
|
animation: z.ZodOptional<z.ZodObject<{
|
|
26514
26541
|
style: z.ZodEnum<{
|
|
@@ -27523,9 +27550,10 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
27523
27550
|
vertical?: "top" | "bottom" | "middle";
|
|
27524
27551
|
};
|
|
27525
27552
|
active?: {
|
|
27526
|
-
scale: string | number;
|
|
27527
27553
|
font?: {
|
|
27554
|
+
weight: unknown;
|
|
27528
27555
|
opacity: string | number;
|
|
27556
|
+
family?: string;
|
|
27529
27557
|
color?: string;
|
|
27530
27558
|
background?: string;
|
|
27531
27559
|
size?: string | number;
|
|
@@ -27972,9 +28000,10 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
27972
28000
|
vertical?: "top" | "bottom" | "middle";
|
|
27973
28001
|
};
|
|
27974
28002
|
active?: {
|
|
27975
|
-
scale: string | number;
|
|
27976
28003
|
font?: {
|
|
28004
|
+
weight: unknown;
|
|
27977
28005
|
opacity: string | number;
|
|
28006
|
+
family?: string;
|
|
27978
28007
|
color?: string;
|
|
27979
28008
|
background?: string;
|
|
27980
28009
|
size?: string | number;
|
|
@@ -28793,6 +28822,8 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
28793
28822
|
}, z.core.$strict>>;
|
|
28794
28823
|
active: z.ZodOptional<z.ZodObject<{
|
|
28795
28824
|
font: z.ZodOptional<z.ZodObject<{
|
|
28825
|
+
family: z.ZodOptional<z.ZodString>;
|
|
28826
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
28796
28827
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
28797
28828
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
28798
28829
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -28819,7 +28850,6 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
28819
28850
|
}, z.core.$strict>, z.ZodEnum<{
|
|
28820
28851
|
none: "none";
|
|
28821
28852
|
}>]>>;
|
|
28822
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
28823
28853
|
}, z.core.$strict>>;
|
|
28824
28854
|
animation: z.ZodOptional<z.ZodObject<{
|
|
28825
28855
|
style: z.ZodEnum<{
|
|
@@ -29834,9 +29864,10 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
29834
29864
|
vertical?: "top" | "bottom" | "middle";
|
|
29835
29865
|
};
|
|
29836
29866
|
active?: {
|
|
29837
|
-
scale: string | number;
|
|
29838
29867
|
font?: {
|
|
29868
|
+
weight: unknown;
|
|
29839
29869
|
opacity: string | number;
|
|
29870
|
+
family?: string;
|
|
29840
29871
|
color?: string;
|
|
29841
29872
|
background?: string;
|
|
29842
29873
|
size?: string | number;
|
|
@@ -30283,9 +30314,10 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
30283
30314
|
vertical?: "top" | "bottom" | "middle";
|
|
30284
30315
|
};
|
|
30285
30316
|
active?: {
|
|
30286
|
-
scale: string | number;
|
|
30287
30317
|
font?: {
|
|
30318
|
+
weight: unknown;
|
|
30288
30319
|
opacity: string | number;
|
|
30320
|
+
family?: string;
|
|
30289
30321
|
color?: string;
|
|
30290
30322
|
background?: string;
|
|
30291
30323
|
size?: string | number;
|
|
@@ -31102,6 +31134,8 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
31102
31134
|
}, z.core.$strict>>;
|
|
31103
31135
|
active: z.ZodOptional<z.ZodObject<{
|
|
31104
31136
|
font: z.ZodOptional<z.ZodObject<{
|
|
31137
|
+
family: z.ZodOptional<z.ZodString>;
|
|
31138
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
31105
31139
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
31106
31140
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
31107
31141
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -31128,7 +31162,6 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
31128
31162
|
}, z.core.$strict>, z.ZodEnum<{
|
|
31129
31163
|
none: "none";
|
|
31130
31164
|
}>]>>;
|
|
31131
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
31132
31165
|
}, z.core.$strict>>;
|
|
31133
31166
|
animation: z.ZodOptional<z.ZodObject<{
|
|
31134
31167
|
style: z.ZodEnum<{
|
|
@@ -32143,9 +32176,10 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
32143
32176
|
vertical?: "top" | "bottom" | "middle";
|
|
32144
32177
|
};
|
|
32145
32178
|
active?: {
|
|
32146
|
-
scale: string | number;
|
|
32147
32179
|
font?: {
|
|
32180
|
+
weight: unknown;
|
|
32148
32181
|
opacity: string | number;
|
|
32182
|
+
family?: string;
|
|
32149
32183
|
color?: string;
|
|
32150
32184
|
background?: string;
|
|
32151
32185
|
size?: string | number;
|
|
@@ -32592,9 +32626,10 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
32592
32626
|
vertical?: "top" | "bottom" | "middle";
|
|
32593
32627
|
};
|
|
32594
32628
|
active?: {
|
|
32595
|
-
scale: string | number;
|
|
32596
32629
|
font?: {
|
|
32630
|
+
weight: unknown;
|
|
32597
32631
|
opacity: string | number;
|
|
32632
|
+
family?: string;
|
|
32598
32633
|
color?: string;
|
|
32599
32634
|
background?: string;
|
|
32600
32635
|
size?: string | number;
|
|
@@ -33396,6 +33431,8 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
33396
33431
|
}, z.core.$strict>>;
|
|
33397
33432
|
active: z.ZodOptional<z.ZodObject<{
|
|
33398
33433
|
font: z.ZodOptional<z.ZodObject<{
|
|
33434
|
+
family: z.ZodOptional<z.ZodString>;
|
|
33435
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
33399
33436
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33400
33437
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33401
33438
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -33422,7 +33459,6 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
33422
33459
|
}, z.core.$strict>, z.ZodEnum<{
|
|
33423
33460
|
none: "none";
|
|
33424
33461
|
}>]>>;
|
|
33425
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33426
33462
|
}, z.core.$strict>>;
|
|
33427
33463
|
animation: z.ZodOptional<z.ZodObject<{
|
|
33428
33464
|
style: z.ZodEnum<{
|
|
@@ -34437,9 +34473,10 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
34437
34473
|
vertical?: "top" | "bottom" | "middle";
|
|
34438
34474
|
};
|
|
34439
34475
|
active?: {
|
|
34440
|
-
scale: string | number;
|
|
34441
34476
|
font?: {
|
|
34477
|
+
weight: unknown;
|
|
34442
34478
|
opacity: string | number;
|
|
34479
|
+
family?: string;
|
|
34443
34480
|
color?: string;
|
|
34444
34481
|
background?: string;
|
|
34445
34482
|
size?: string | number;
|
|
@@ -34886,9 +34923,10 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
34886
34923
|
vertical?: "top" | "bottom" | "middle";
|
|
34887
34924
|
};
|
|
34888
34925
|
active?: {
|
|
34889
|
-
scale: string | number;
|
|
34890
34926
|
font?: {
|
|
34927
|
+
weight: unknown;
|
|
34891
34928
|
opacity: string | number;
|
|
34929
|
+
family?: string;
|
|
34892
34930
|
color?: string;
|
|
34893
34931
|
background?: string;
|
|
34894
34932
|
size?: string | number;
|
|
@@ -35684,6 +35722,8 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
35684
35722
|
}, z.core.$strict>>;
|
|
35685
35723
|
active: z.ZodOptional<z.ZodObject<{
|
|
35686
35724
|
font: z.ZodOptional<z.ZodObject<{
|
|
35725
|
+
family: z.ZodOptional<z.ZodString>;
|
|
35726
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
35687
35727
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
35688
35728
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
35689
35729
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -35710,7 +35750,6 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
35710
35750
|
}, z.core.$strict>, z.ZodEnum<{
|
|
35711
35751
|
none: "none";
|
|
35712
35752
|
}>]>>;
|
|
35713
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35714
35753
|
}, z.core.$strict>>;
|
|
35715
35754
|
animation: z.ZodOptional<z.ZodObject<{
|
|
35716
35755
|
style: z.ZodEnum<{
|
|
@@ -36725,9 +36764,10 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
36725
36764
|
vertical?: "top" | "bottom" | "middle";
|
|
36726
36765
|
};
|
|
36727
36766
|
active?: {
|
|
36728
|
-
scale: string | number;
|
|
36729
36767
|
font?: {
|
|
36768
|
+
weight: unknown;
|
|
36730
36769
|
opacity: string | number;
|
|
36770
|
+
family?: string;
|
|
36731
36771
|
color?: string;
|
|
36732
36772
|
background?: string;
|
|
36733
36773
|
size?: string | number;
|
|
@@ -37174,9 +37214,10 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
37174
37214
|
vertical?: "top" | "bottom" | "middle";
|
|
37175
37215
|
};
|
|
37176
37216
|
active?: {
|
|
37177
|
-
scale: string | number;
|
|
37178
37217
|
font?: {
|
|
37218
|
+
weight: unknown;
|
|
37179
37219
|
opacity: string | number;
|
|
37220
|
+
family?: string;
|
|
37180
37221
|
color?: string;
|
|
37181
37222
|
background?: string;
|
|
37182
37223
|
size?: string | number;
|
|
@@ -37978,6 +38019,8 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
37978
38019
|
}, z.core.$strict>>;
|
|
37979
38020
|
active: z.ZodOptional<z.ZodObject<{
|
|
37980
38021
|
font: z.ZodOptional<z.ZodObject<{
|
|
38022
|
+
family: z.ZodOptional<z.ZodString>;
|
|
38023
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
37981
38024
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
37982
38025
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
37983
38026
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -38004,7 +38047,6 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
38004
38047
|
}, z.core.$strict>, z.ZodEnum<{
|
|
38005
38048
|
none: "none";
|
|
38006
38049
|
}>]>>;
|
|
38007
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38008
38050
|
}, z.core.$strict>>;
|
|
38009
38051
|
animation: z.ZodOptional<z.ZodObject<{
|
|
38010
38052
|
style: z.ZodEnum<{
|
|
@@ -39019,9 +39061,10 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
39019
39061
|
vertical?: "top" | "bottom" | "middle";
|
|
39020
39062
|
};
|
|
39021
39063
|
active?: {
|
|
39022
|
-
scale: string | number;
|
|
39023
39064
|
font?: {
|
|
39065
|
+
weight: unknown;
|
|
39024
39066
|
opacity: string | number;
|
|
39067
|
+
family?: string;
|
|
39025
39068
|
color?: string;
|
|
39026
39069
|
background?: string;
|
|
39027
39070
|
size?: string | number;
|
|
@@ -39468,9 +39511,10 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
39468
39511
|
vertical?: "top" | "bottom" | "middle";
|
|
39469
39512
|
};
|
|
39470
39513
|
active?: {
|
|
39471
|
-
scale: string | number;
|
|
39472
39514
|
font?: {
|
|
39515
|
+
weight: unknown;
|
|
39473
39516
|
opacity: string | number;
|
|
39517
|
+
family?: string;
|
|
39474
39518
|
color?: string;
|
|
39475
39519
|
background?: string;
|
|
39476
39520
|
size?: string | number;
|
|
@@ -40270,6 +40314,8 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
40270
40314
|
}, z.core.$strict>>;
|
|
40271
40315
|
active: z.ZodOptional<z.ZodObject<{
|
|
40272
40316
|
font: z.ZodOptional<z.ZodObject<{
|
|
40317
|
+
family: z.ZodOptional<z.ZodString>;
|
|
40318
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
40273
40319
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40274
40320
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
40275
40321
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -40296,7 +40342,6 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
40296
40342
|
}, z.core.$strict>, z.ZodEnum<{
|
|
40297
40343
|
none: "none";
|
|
40298
40344
|
}>]>>;
|
|
40299
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
40300
40345
|
}, z.core.$strict>>;
|
|
40301
40346
|
animation: z.ZodOptional<z.ZodObject<{
|
|
40302
40347
|
style: z.ZodEnum<{
|
|
@@ -41311,9 +41356,10 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
41311
41356
|
vertical?: "top" | "bottom" | "middle";
|
|
41312
41357
|
};
|
|
41313
41358
|
active?: {
|
|
41314
|
-
scale: string | number;
|
|
41315
41359
|
font?: {
|
|
41360
|
+
weight: unknown;
|
|
41316
41361
|
opacity: string | number;
|
|
41362
|
+
family?: string;
|
|
41317
41363
|
color?: string;
|
|
41318
41364
|
background?: string;
|
|
41319
41365
|
size?: string | number;
|
|
@@ -41760,9 +41806,10 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
41760
41806
|
vertical?: "top" | "bottom" | "middle";
|
|
41761
41807
|
};
|
|
41762
41808
|
active?: {
|
|
41763
|
-
scale: string | number;
|
|
41764
41809
|
font?: {
|
|
41810
|
+
weight: unknown;
|
|
41765
41811
|
opacity: string | number;
|
|
41812
|
+
family?: string;
|
|
41766
41813
|
color?: string;
|
|
41767
41814
|
background?: string;
|
|
41768
41815
|
size?: string | number;
|
|
@@ -42560,6 +42607,8 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
42560
42607
|
}, z.core.$strict>>;
|
|
42561
42608
|
active: z.ZodOptional<z.ZodObject<{
|
|
42562
42609
|
font: z.ZodOptional<z.ZodObject<{
|
|
42610
|
+
family: z.ZodOptional<z.ZodString>;
|
|
42611
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
42563
42612
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
42564
42613
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
42565
42614
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -42586,7 +42635,6 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
42586
42635
|
}, z.core.$strict>, z.ZodEnum<{
|
|
42587
42636
|
none: "none";
|
|
42588
42637
|
}>]>>;
|
|
42589
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
42590
42638
|
}, z.core.$strict>>;
|
|
42591
42639
|
animation: z.ZodOptional<z.ZodObject<{
|
|
42592
42640
|
style: z.ZodEnum<{
|
|
@@ -43601,9 +43649,10 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
43601
43649
|
vertical?: "top" | "bottom" | "middle";
|
|
43602
43650
|
};
|
|
43603
43651
|
active?: {
|
|
43604
|
-
scale: string | number;
|
|
43605
43652
|
font?: {
|
|
43653
|
+
weight: unknown;
|
|
43606
43654
|
opacity: string | number;
|
|
43655
|
+
family?: string;
|
|
43607
43656
|
color?: string;
|
|
43608
43657
|
background?: string;
|
|
43609
43658
|
size?: string | number;
|
|
@@ -44050,9 +44099,10 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
44050
44099
|
vertical?: "top" | "bottom" | "middle";
|
|
44051
44100
|
};
|
|
44052
44101
|
active?: {
|
|
44053
|
-
scale: string | number;
|
|
44054
44102
|
font?: {
|
|
44103
|
+
weight: unknown;
|
|
44055
44104
|
opacity: string | number;
|
|
44105
|
+
family?: string;
|
|
44056
44106
|
color?: string;
|
|
44057
44107
|
background?: string;
|
|
44058
44108
|
size?: string | number;
|
|
@@ -44846,6 +44896,8 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
44846
44896
|
}, z.core.$strict>>;
|
|
44847
44897
|
active: z.ZodOptional<z.ZodObject<{
|
|
44848
44898
|
font: z.ZodOptional<z.ZodObject<{
|
|
44899
|
+
family: z.ZodOptional<z.ZodString>;
|
|
44900
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
44849
44901
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
44850
44902
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
44851
44903
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -44872,7 +44924,6 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
44872
44924
|
}, z.core.$strict>, z.ZodEnum<{
|
|
44873
44925
|
none: "none";
|
|
44874
44926
|
}>]>>;
|
|
44875
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
44876
44927
|
}, z.core.$strict>>;
|
|
44877
44928
|
animation: z.ZodOptional<z.ZodObject<{
|
|
44878
44929
|
style: z.ZodEnum<{
|
|
@@ -45887,9 +45938,10 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
45887
45938
|
vertical?: "top" | "bottom" | "middle";
|
|
45888
45939
|
};
|
|
45889
45940
|
active?: {
|
|
45890
|
-
scale: string | number;
|
|
45891
45941
|
font?: {
|
|
45942
|
+
weight: unknown;
|
|
45892
45943
|
opacity: string | number;
|
|
45944
|
+
family?: string;
|
|
45893
45945
|
color?: string;
|
|
45894
45946
|
background?: string;
|
|
45895
45947
|
size?: string | number;
|
|
@@ -46336,9 +46388,10 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
46336
46388
|
vertical?: "top" | "bottom" | "middle";
|
|
46337
46389
|
};
|
|
46338
46390
|
active?: {
|
|
46339
|
-
scale: string | number;
|
|
46340
46391
|
font?: {
|
|
46392
|
+
weight: unknown;
|
|
46341
46393
|
opacity: string | number;
|
|
46394
|
+
family?: string;
|
|
46342
46395
|
color?: string;
|
|
46343
46396
|
background?: string;
|
|
46344
46397
|
size?: string | number;
|
|
@@ -47131,6 +47184,8 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
47131
47184
|
}, z.core.$strict>>;
|
|
47132
47185
|
active: z.ZodOptional<z.ZodObject<{
|
|
47133
47186
|
font: z.ZodOptional<z.ZodObject<{
|
|
47187
|
+
family: z.ZodOptional<z.ZodString>;
|
|
47188
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
47134
47189
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
47135
47190
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
47136
47191
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -47157,7 +47212,6 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
47157
47212
|
}, z.core.$strict>, z.ZodEnum<{
|
|
47158
47213
|
none: "none";
|
|
47159
47214
|
}>]>>;
|
|
47160
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
47161
47215
|
}, z.core.$strict>>;
|
|
47162
47216
|
animation: z.ZodOptional<z.ZodObject<{
|
|
47163
47217
|
style: z.ZodEnum<{
|
|
@@ -48172,9 +48226,10 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
48172
48226
|
vertical?: "top" | "bottom" | "middle";
|
|
48173
48227
|
};
|
|
48174
48228
|
active?: {
|
|
48175
|
-
scale: string | number;
|
|
48176
48229
|
font?: {
|
|
48230
|
+
weight: unknown;
|
|
48177
48231
|
opacity: string | number;
|
|
48232
|
+
family?: string;
|
|
48178
48233
|
color?: string;
|
|
48179
48234
|
background?: string;
|
|
48180
48235
|
size?: string | number;
|
|
@@ -48621,9 +48676,10 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
48621
48676
|
vertical?: "top" | "bottom" | "middle";
|
|
48622
48677
|
};
|
|
48623
48678
|
active?: {
|
|
48624
|
-
scale: string | number;
|
|
48625
48679
|
font?: {
|
|
48680
|
+
weight: unknown;
|
|
48626
48681
|
opacity: string | number;
|
|
48682
|
+
family?: string;
|
|
48627
48683
|
color?: string;
|
|
48628
48684
|
background?: string;
|
|
48629
48685
|
size?: string | number;
|
|
@@ -49463,6 +49519,8 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
49463
49519
|
}, z.core.$strict>>;
|
|
49464
49520
|
active: z.ZodOptional<z.ZodObject<{
|
|
49465
49521
|
font: z.ZodOptional<z.ZodObject<{
|
|
49522
|
+
family: z.ZodOptional<z.ZodString>;
|
|
49523
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
49466
49524
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
49467
49525
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
49468
49526
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -49489,7 +49547,6 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
49489
49547
|
}, z.core.$strict>, z.ZodEnum<{
|
|
49490
49548
|
none: "none";
|
|
49491
49549
|
}>]>>;
|
|
49492
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
49493
49550
|
}, z.core.$strict>>;
|
|
49494
49551
|
animation: z.ZodOptional<z.ZodObject<{
|
|
49495
49552
|
style: z.ZodEnum<{
|
|
@@ -50504,9 +50561,10 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
50504
50561
|
vertical?: "top" | "bottom" | "middle";
|
|
50505
50562
|
};
|
|
50506
50563
|
active?: {
|
|
50507
|
-
scale: string | number;
|
|
50508
50564
|
font?: {
|
|
50565
|
+
weight: unknown;
|
|
50509
50566
|
opacity: string | number;
|
|
50567
|
+
family?: string;
|
|
50510
50568
|
color?: string;
|
|
50511
50569
|
background?: string;
|
|
50512
50570
|
size?: string | number;
|
|
@@ -50953,9 +51011,10 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
50953
51011
|
vertical?: "top" | "bottom" | "middle";
|
|
50954
51012
|
};
|
|
50955
51013
|
active?: {
|
|
50956
|
-
scale: string | number;
|
|
50957
51014
|
font?: {
|
|
51015
|
+
weight: unknown;
|
|
50958
51016
|
opacity: string | number;
|
|
51017
|
+
family?: string;
|
|
50959
51018
|
color?: string;
|
|
50960
51019
|
background?: string;
|
|
50961
51020
|
size?: string | number;
|
|
@@ -51774,6 +51833,8 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
51774
51833
|
}, z.core.$strict>>;
|
|
51775
51834
|
active: z.ZodOptional<z.ZodObject<{
|
|
51776
51835
|
font: z.ZodOptional<z.ZodObject<{
|
|
51836
|
+
family: z.ZodOptional<z.ZodString>;
|
|
51837
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
51777
51838
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
51778
51839
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
51779
51840
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -51800,7 +51861,6 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
51800
51861
|
}, z.core.$strict>, z.ZodEnum<{
|
|
51801
51862
|
none: "none";
|
|
51802
51863
|
}>]>>;
|
|
51803
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51804
51864
|
}, z.core.$strict>>;
|
|
51805
51865
|
animation: z.ZodOptional<z.ZodObject<{
|
|
51806
51866
|
style: z.ZodEnum<{
|
|
@@ -52815,9 +52875,10 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
52815
52875
|
vertical?: "top" | "bottom" | "middle";
|
|
52816
52876
|
};
|
|
52817
52877
|
active?: {
|
|
52818
|
-
scale: string | number;
|
|
52819
52878
|
font?: {
|
|
52879
|
+
weight: unknown;
|
|
52820
52880
|
opacity: string | number;
|
|
52881
|
+
family?: string;
|
|
52821
52882
|
color?: string;
|
|
52822
52883
|
background?: string;
|
|
52823
52884
|
size?: string | number;
|
|
@@ -53264,9 +53325,10 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
53264
53325
|
vertical?: "top" | "bottom" | "middle";
|
|
53265
53326
|
};
|
|
53266
53327
|
active?: {
|
|
53267
|
-
scale: string | number;
|
|
53268
53328
|
font?: {
|
|
53329
|
+
weight: unknown;
|
|
53269
53330
|
opacity: string | number;
|
|
53331
|
+
family?: string;
|
|
53270
53332
|
color?: string;
|
|
53271
53333
|
background?: string;
|
|
53272
53334
|
size?: string | number;
|
|
@@ -54100,6 +54162,8 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
54100
54162
|
}, z.core.$strict>>;
|
|
54101
54163
|
active: z.ZodOptional<z.ZodObject<{
|
|
54102
54164
|
font: z.ZodOptional<z.ZodObject<{
|
|
54165
|
+
family: z.ZodOptional<z.ZodString>;
|
|
54166
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
54103
54167
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
54104
54168
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
54105
54169
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -54126,7 +54190,6 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
54126
54190
|
}, z.core.$strict>, z.ZodEnum<{
|
|
54127
54191
|
none: "none";
|
|
54128
54192
|
}>]>>;
|
|
54129
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54130
54193
|
}, z.core.$strict>>;
|
|
54131
54194
|
animation: z.ZodOptional<z.ZodObject<{
|
|
54132
54195
|
style: z.ZodEnum<{
|
|
@@ -55141,9 +55204,10 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
55141
55204
|
vertical?: "top" | "bottom" | "middle";
|
|
55142
55205
|
};
|
|
55143
55206
|
active?: {
|
|
55144
|
-
scale: string | number;
|
|
55145
55207
|
font?: {
|
|
55208
|
+
weight: unknown;
|
|
55146
55209
|
opacity: string | number;
|
|
55210
|
+
family?: string;
|
|
55147
55211
|
color?: string;
|
|
55148
55212
|
background?: string;
|
|
55149
55213
|
size?: string | number;
|
|
@@ -55590,9 +55654,10 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
55590
55654
|
vertical?: "top" | "bottom" | "middle";
|
|
55591
55655
|
};
|
|
55592
55656
|
active?: {
|
|
55593
|
-
scale: string | number;
|
|
55594
55657
|
font?: {
|
|
55658
|
+
weight: unknown;
|
|
55595
55659
|
opacity: string | number;
|
|
55660
|
+
family?: string;
|
|
55596
55661
|
color?: string;
|
|
55597
55662
|
background?: string;
|
|
55598
55663
|
size?: string | number;
|
|
@@ -56388,6 +56453,8 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
56388
56453
|
}, z.core.$strict>>;
|
|
56389
56454
|
active: z.ZodOptional<z.ZodObject<{
|
|
56390
56455
|
font: z.ZodOptional<z.ZodObject<{
|
|
56456
|
+
family: z.ZodOptional<z.ZodString>;
|
|
56457
|
+
weight: z.ZodDefault<z.ZodOptional<z.ZodUnknown>>;
|
|
56391
56458
|
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56392
56459
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56393
56460
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
@@ -56414,7 +56481,6 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
56414
56481
|
}, z.core.$strict>, z.ZodEnum<{
|
|
56415
56482
|
none: "none";
|
|
56416
56483
|
}>]>>;
|
|
56417
|
-
scale: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56418
56484
|
}, z.core.$strict>>;
|
|
56419
56485
|
animation: z.ZodOptional<z.ZodObject<{
|
|
56420
56486
|
style: z.ZodEnum<{
|
|
@@ -57429,9 +57495,10 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
57429
57495
|
vertical?: "top" | "bottom" | "middle";
|
|
57430
57496
|
};
|
|
57431
57497
|
active?: {
|
|
57432
|
-
scale: string | number;
|
|
57433
57498
|
font?: {
|
|
57499
|
+
weight: unknown;
|
|
57434
57500
|
opacity: string | number;
|
|
57501
|
+
family?: string;
|
|
57435
57502
|
color?: string;
|
|
57436
57503
|
background?: string;
|
|
57437
57504
|
size?: string | number;
|
|
@@ -57878,9 +57945,10 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
57878
57945
|
vertical?: "top" | "bottom" | "middle";
|
|
57879
57946
|
};
|
|
57880
57947
|
active?: {
|
|
57881
|
-
scale: string | number;
|
|
57882
57948
|
font?: {
|
|
57949
|
+
weight: unknown;
|
|
57883
57950
|
opacity: string | number;
|
|
57951
|
+
family?: string;
|
|
57884
57952
|
color?: string;
|
|
57885
57953
|
background?: string;
|
|
57886
57954
|
size?: string | number;
|