@shotstack/schemas 1.9.5 → 1.9.6
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 +1 -2
- package/dist/json-schema/asset.json +1 -4
- package/dist/json-schema/clip.json +1 -4
- package/dist/json-schema/edit.json +1 -4
- package/dist/json-schema/rich-caption-active-font.json +1 -4
- package/dist/json-schema/rich-caption-active.json +1 -4
- package/dist/json-schema/rich-caption-asset.json +1 -4
- package/dist/json-schema/schemas.json +1 -4
- package/dist/json-schema/timeline.json +1 -4
- package/dist/json-schema/track.json +1 -4
- package/dist/schema.d.ts +1 -2
- package/dist/zod/zod.gen.cjs +1 -1
- package/dist/zod/zod.gen.d.ts +73 -73
- package/dist/zod/zod.gen.js +1 -1
- package/dist/zod/zod.gen.ts +1 -1
- package/package.json +1 -1
package/dist/api.bundled.json
CHANGED
|
@@ -2082,8 +2082,7 @@
|
|
|
2082
2082
|
"description": "The active word color using hexadecimal color notation.",
|
|
2083
2083
|
"type": "string",
|
|
2084
2084
|
"pattern": "^#[A-Fa-f0-9]{6}$",
|
|
2085
|
-
"
|
|
2086
|
-
"example": "#ffff00"
|
|
2085
|
+
"example": "#C96741"
|
|
2087
2086
|
},
|
|
2088
2087
|
"background": {
|
|
2089
2088
|
"description": "The background color behind the active word using hexadecimal color notation.",
|
|
@@ -2417,10 +2417,7 @@
|
|
|
2417
2417
|
"anyOf": [
|
|
2418
2418
|
{
|
|
2419
2419
|
"type": "string",
|
|
2420
|
-
"description": "The active word color using hexadecimal color notation."
|
|
2421
|
-
"enum": [
|
|
2422
|
-
"#ffff00"
|
|
2423
|
-
]
|
|
2420
|
+
"description": "The active word color using hexadecimal color notation."
|
|
2424
2421
|
},
|
|
2425
2422
|
{
|
|
2426
2423
|
"type": "null"
|
package/dist/schema.d.ts
CHANGED
|
@@ -1088,8 +1088,7 @@ export interface components {
|
|
|
1088
1088
|
RichCaptionActiveFont: {
|
|
1089
1089
|
/**
|
|
1090
1090
|
* @description The active word color using hexadecimal color notation.
|
|
1091
|
-
* @
|
|
1092
|
-
* @example #ffff00
|
|
1091
|
+
* @example #C96741
|
|
1093
1092
|
*/
|
|
1094
1093
|
color?: string;
|
|
1095
1094
|
/**
|
package/dist/zod/zod.gen.cjs
CHANGED
|
@@ -1371,7 +1371,7 @@ exports.templateResponseSchema = exports.templateresponseTemplateResponseSchema;
|
|
|
1371
1371
|
* Font properties for the active/highlighted word.
|
|
1372
1372
|
*/
|
|
1373
1373
|
exports.richcaptionpropertiesRichCaptionActiveFontSchema = zod_1.z.object({
|
|
1374
|
-
color: zod_1.z.optional(zod_1.z.union([zod_1.z.string().regex(/^#[A-Fa-f0-9]{6}$/), zod_1.z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)]))
|
|
1374
|
+
color: zod_1.z.optional(zod_1.z.union([zod_1.z.string().regex(/^#[A-Fa-f0-9]{6}$/), zod_1.z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])),
|
|
1375
1375
|
background: zod_1.z.optional(zod_1.z.union([zod_1.z.string().regex(/^#[A-Fa-f0-9]{6}$/), zod_1.z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])),
|
|
1376
1376
|
opacity: zod_1.z.optional(zod_1.z.union([zod_1.z.preprocess(((v) => { if (v === '' || v === null || v === undefined)
|
|
1377
1377
|
return undefined; if (Array.isArray(v))
|
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -4651,7 +4651,7 @@ export declare const templateResponseSchema: z.ZodObject<{
|
|
|
4651
4651
|
* Font properties for the active/highlighted word.
|
|
4652
4652
|
*/
|
|
4653
4653
|
export declare const richcaptionpropertiesRichCaptionActiveFontSchema: z.ZodObject<{
|
|
4654
|
-
color: z.
|
|
4654
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4655
4655
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4656
4656
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4657
4657
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -4662,7 +4662,7 @@ export declare const richcaptionpropertiesRichCaptionActiveFontSchema: z.ZodObje
|
|
|
4662
4662
|
}>>;
|
|
4663
4663
|
}, z.core.$strict>;
|
|
4664
4664
|
export declare const richCaptionActiveFontSchema: z.ZodObject<{
|
|
4665
|
-
color: z.
|
|
4665
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4666
4666
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4667
4667
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4668
4668
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -4915,7 +4915,7 @@ export declare const richTextStrokeSchema: z.ZodObject<{
|
|
|
4915
4915
|
*/
|
|
4916
4916
|
export declare const richcaptionpropertiesRichCaptionActiveSchema: z.ZodObject<{
|
|
4917
4917
|
font: z.ZodOptional<z.ZodObject<{
|
|
4918
|
-
color: z.
|
|
4918
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4919
4919
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4920
4920
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4921
4921
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -4945,7 +4945,7 @@ export declare const richcaptionpropertiesRichCaptionActiveSchema: z.ZodObject<{
|
|
|
4945
4945
|
}, z.core.$strict>;
|
|
4946
4946
|
export declare const richCaptionActiveSchema: z.ZodObject<{
|
|
4947
4947
|
font: z.ZodOptional<z.ZodObject<{
|
|
4948
|
-
color: z.
|
|
4948
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4949
4949
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
4950
4950
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
4951
4951
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -5062,7 +5062,7 @@ export declare const richcaptionassetRichCaptionAssetSchema: z.ZodObject<{
|
|
|
5062
5062
|
}, z.core.$strict>>;
|
|
5063
5063
|
active: z.ZodOptional<z.ZodObject<{
|
|
5064
5064
|
font: z.ZodOptional<z.ZodObject<{
|
|
5065
|
-
color: z.
|
|
5065
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5066
5066
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5067
5067
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5068
5068
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -5192,7 +5192,7 @@ export declare const richCaptionAssetSchema: z.ZodObject<{
|
|
|
5192
5192
|
}, z.core.$strict>>;
|
|
5193
5193
|
active: z.ZodOptional<z.ZodObject<{
|
|
5194
5194
|
font: z.ZodOptional<z.ZodObject<{
|
|
5195
|
-
color: z.
|
|
5195
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5196
5196
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
5197
5197
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
5198
5198
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -11276,7 +11276,7 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
11276
11276
|
}, z.core.$strict>>;
|
|
11277
11277
|
active: z.ZodOptional<z.ZodObject<{
|
|
11278
11278
|
font: z.ZodOptional<z.ZodObject<{
|
|
11279
|
-
color: z.
|
|
11279
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11280
11280
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
11281
11281
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
11282
11282
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -12122,7 +12122,7 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
12122
12122
|
}, z.core.$strict>>;
|
|
12123
12123
|
active: z.ZodOptional<z.ZodObject<{
|
|
12124
12124
|
font: z.ZodOptional<z.ZodObject<{
|
|
12125
|
-
color: z.
|
|
12125
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12126
12126
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12127
12127
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12128
12128
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -12972,7 +12972,7 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
12972
12972
|
}, z.core.$strict>>;
|
|
12973
12973
|
active: z.ZodOptional<z.ZodObject<{
|
|
12974
12974
|
font: z.ZodOptional<z.ZodObject<{
|
|
12975
|
-
color: z.
|
|
12975
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12976
12976
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
12977
12977
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
12978
12978
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -14302,7 +14302,7 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
14302
14302
|
}, z.core.$strict>>;
|
|
14303
14303
|
active: z.ZodOptional<z.ZodObject<{
|
|
14304
14304
|
font: z.ZodOptional<z.ZodObject<{
|
|
14305
|
-
color: z.
|
|
14305
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
14306
14306
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
14307
14307
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
14308
14308
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -15636,7 +15636,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
15636
15636
|
}, z.core.$strict>>;
|
|
15637
15637
|
active: z.ZodOptional<z.ZodObject<{
|
|
15638
15638
|
font: z.ZodOptional<z.ZodObject<{
|
|
15639
|
-
color: z.
|
|
15639
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15640
15640
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
15641
15641
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
15642
15642
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -16906,8 +16906,8 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
16906
16906
|
active?: {
|
|
16907
16907
|
scale: string | number;
|
|
16908
16908
|
font?: {
|
|
16909
|
-
color: string;
|
|
16910
16909
|
opacity: string | number;
|
|
16910
|
+
color?: string;
|
|
16911
16911
|
background?: string;
|
|
16912
16912
|
size?: string | number;
|
|
16913
16913
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -17449,8 +17449,8 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
17449
17449
|
active?: {
|
|
17450
17450
|
scale: string | number;
|
|
17451
17451
|
font?: {
|
|
17452
|
-
color: string;
|
|
17453
17452
|
opacity: string | number;
|
|
17453
|
+
color?: string;
|
|
17454
17454
|
background?: string;
|
|
17455
17455
|
size?: string | number;
|
|
17456
17456
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -18055,7 +18055,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
18055
18055
|
}, z.core.$strict>>;
|
|
18056
18056
|
active: z.ZodOptional<z.ZodObject<{
|
|
18057
18057
|
font: z.ZodOptional<z.ZodObject<{
|
|
18058
|
-
color: z.
|
|
18058
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18059
18059
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
18060
18060
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
18061
18061
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -19325,8 +19325,8 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19325
19325
|
active?: {
|
|
19326
19326
|
scale: string | number;
|
|
19327
19327
|
font?: {
|
|
19328
|
-
color: string;
|
|
19329
19328
|
opacity: string | number;
|
|
19329
|
+
color?: string;
|
|
19330
19330
|
background?: string;
|
|
19331
19331
|
size?: string | number;
|
|
19332
19332
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -19868,8 +19868,8 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
19868
19868
|
active?: {
|
|
19869
19869
|
scale: string | number;
|
|
19870
19870
|
font?: {
|
|
19871
|
-
color: string;
|
|
19872
19871
|
opacity: string | number;
|
|
19872
|
+
color?: string;
|
|
19873
19873
|
background?: string;
|
|
19874
19874
|
size?: string | number;
|
|
19875
19875
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -20491,7 +20491,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
20491
20491
|
}, z.core.$strict>>;
|
|
20492
20492
|
active: z.ZodOptional<z.ZodObject<{
|
|
20493
20493
|
font: z.ZodOptional<z.ZodObject<{
|
|
20494
|
-
color: z.
|
|
20494
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20495
20495
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
20496
20496
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
20497
20497
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -21761,8 +21761,8 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
21761
21761
|
active?: {
|
|
21762
21762
|
scale: string | number;
|
|
21763
21763
|
font?: {
|
|
21764
|
-
color: string;
|
|
21765
21764
|
opacity: string | number;
|
|
21765
|
+
color?: string;
|
|
21766
21766
|
background?: string;
|
|
21767
21767
|
size?: string | number;
|
|
21768
21768
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -22304,8 +22304,8 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
22304
22304
|
active?: {
|
|
22305
22305
|
scale: string | number;
|
|
22306
22306
|
font?: {
|
|
22307
|
-
color: string;
|
|
22308
22307
|
opacity: string | number;
|
|
22308
|
+
color?: string;
|
|
22309
22309
|
background?: string;
|
|
22310
22310
|
size?: string | number;
|
|
22311
22311
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -22926,7 +22926,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
22926
22926
|
}, z.core.$strict>>;
|
|
22927
22927
|
active: z.ZodOptional<z.ZodObject<{
|
|
22928
22928
|
font: z.ZodOptional<z.ZodObject<{
|
|
22929
|
-
color: z.
|
|
22929
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
22930
22930
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
22931
22931
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
22932
22932
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -24196,8 +24196,8 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24196
24196
|
active?: {
|
|
24197
24197
|
scale: string | number;
|
|
24198
24198
|
font?: {
|
|
24199
|
-
color: string;
|
|
24200
24199
|
opacity: string | number;
|
|
24200
|
+
color?: string;
|
|
24201
24201
|
background?: string;
|
|
24202
24202
|
size?: string | number;
|
|
24203
24203
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -24739,8 +24739,8 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
24739
24739
|
active?: {
|
|
24740
24740
|
scale: string | number;
|
|
24741
24741
|
font?: {
|
|
24742
|
-
color: string;
|
|
24743
24742
|
opacity: string | number;
|
|
24743
|
+
color?: string;
|
|
24744
24744
|
background?: string;
|
|
24745
24745
|
size?: string | number;
|
|
24746
24746
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -25365,7 +25365,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
25365
25365
|
}, z.core.$strict>>;
|
|
25366
25366
|
active: z.ZodOptional<z.ZodObject<{
|
|
25367
25367
|
font: z.ZodOptional<z.ZodObject<{
|
|
25368
|
-
color: z.
|
|
25368
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
25369
25369
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
25370
25370
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
25371
25371
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -26635,8 +26635,8 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
26635
26635
|
active?: {
|
|
26636
26636
|
scale: string | number;
|
|
26637
26637
|
font?: {
|
|
26638
|
-
color: string;
|
|
26639
26638
|
opacity: string | number;
|
|
26639
|
+
color?: string;
|
|
26640
26640
|
background?: string;
|
|
26641
26641
|
size?: string | number;
|
|
26642
26642
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -27178,8 +27178,8 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
27178
27178
|
active?: {
|
|
27179
27179
|
scale: string | number;
|
|
27180
27180
|
font?: {
|
|
27181
|
-
color: string;
|
|
27182
27181
|
opacity: string | number;
|
|
27182
|
+
color?: string;
|
|
27183
27183
|
background?: string;
|
|
27184
27184
|
size?: string | number;
|
|
27185
27185
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -27966,7 +27966,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
27966
27966
|
}, z.core.$strict>>;
|
|
27967
27967
|
active: z.ZodOptional<z.ZodObject<{
|
|
27968
27968
|
font: z.ZodOptional<z.ZodObject<{
|
|
27969
|
-
color: z.
|
|
27969
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27970
27970
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
27971
27971
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
27972
27972
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -29236,8 +29236,8 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29236
29236
|
active?: {
|
|
29237
29237
|
scale: string | number;
|
|
29238
29238
|
font?: {
|
|
29239
|
-
color: string;
|
|
29240
29239
|
opacity: string | number;
|
|
29240
|
+
color?: string;
|
|
29241
29241
|
background?: string;
|
|
29242
29242
|
size?: string | number;
|
|
29243
29243
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -29779,8 +29779,8 @@ export declare const editSchema: z.ZodObject<{
|
|
|
29779
29779
|
active?: {
|
|
29780
29780
|
scale: string | number;
|
|
29781
29781
|
font?: {
|
|
29782
|
-
color: string;
|
|
29783
29782
|
opacity: string | number;
|
|
29783
|
+
color?: string;
|
|
29784
29784
|
background?: string;
|
|
29785
29785
|
size?: string | number;
|
|
29786
29786
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -30589,7 +30589,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
30589
30589
|
}, z.core.$strict>>;
|
|
30590
30590
|
active: z.ZodOptional<z.ZodObject<{
|
|
30591
30591
|
font: z.ZodOptional<z.ZodObject<{
|
|
30592
|
-
color: z.
|
|
30592
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
30593
30593
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
30594
30594
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
30595
30595
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -31859,8 +31859,8 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
31859
31859
|
active?: {
|
|
31860
31860
|
scale: string | number;
|
|
31861
31861
|
font?: {
|
|
31862
|
-
color: string;
|
|
31863
31862
|
opacity: string | number;
|
|
31863
|
+
color?: string;
|
|
31864
31864
|
background?: string;
|
|
31865
31865
|
size?: string | number;
|
|
31866
31866
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -32402,8 +32402,8 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
32402
32402
|
active?: {
|
|
32403
32403
|
scale: string | number;
|
|
32404
32404
|
font?: {
|
|
32405
|
-
color: string;
|
|
32406
32405
|
opacity: string | number;
|
|
32406
|
+
color?: string;
|
|
32407
32407
|
background?: string;
|
|
32408
32408
|
size?: string | number;
|
|
32409
32409
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -33212,7 +33212,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
33212
33212
|
}, z.core.$strict>>;
|
|
33213
33213
|
active: z.ZodOptional<z.ZodObject<{
|
|
33214
33214
|
font: z.ZodOptional<z.ZodObject<{
|
|
33215
|
-
color: z.
|
|
33215
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33216
33216
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
33217
33217
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
33218
33218
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -34482,8 +34482,8 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
34482
34482
|
active?: {
|
|
34483
34483
|
scale: string | number;
|
|
34484
34484
|
font?: {
|
|
34485
|
-
color: string;
|
|
34486
34485
|
opacity: string | number;
|
|
34486
|
+
color?: string;
|
|
34487
34487
|
background?: string;
|
|
34488
34488
|
size?: string | number;
|
|
34489
34489
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -35025,8 +35025,8 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
35025
35025
|
active?: {
|
|
35026
35026
|
scale: string | number;
|
|
35027
35027
|
font?: {
|
|
35028
|
-
color: string;
|
|
35029
35028
|
opacity: string | number;
|
|
35029
|
+
color?: string;
|
|
35030
35030
|
background?: string;
|
|
35031
35031
|
size?: string | number;
|
|
35032
35032
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -35841,7 +35841,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
35841
35841
|
}, z.core.$strict>>;
|
|
35842
35842
|
active: z.ZodOptional<z.ZodObject<{
|
|
35843
35843
|
font: z.ZodOptional<z.ZodObject<{
|
|
35844
|
-
color: z.
|
|
35844
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
35845
35845
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
35846
35846
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
35847
35847
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -37111,8 +37111,8 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37111
37111
|
active?: {
|
|
37112
37112
|
scale: string | number;
|
|
37113
37113
|
font?: {
|
|
37114
|
-
color: string;
|
|
37115
37114
|
opacity: string | number;
|
|
37115
|
+
color?: string;
|
|
37116
37116
|
background?: string;
|
|
37117
37117
|
size?: string | number;
|
|
37118
37118
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -37654,8 +37654,8 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
37654
37654
|
active?: {
|
|
37655
37655
|
scale: string | number;
|
|
37656
37656
|
font?: {
|
|
37657
|
-
color: string;
|
|
37658
37657
|
opacity: string | number;
|
|
37658
|
+
color?: string;
|
|
37659
37659
|
background?: string;
|
|
37660
37660
|
size?: string | number;
|
|
37661
37661
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -38468,7 +38468,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
38468
38468
|
}, z.core.$strict>>;
|
|
38469
38469
|
active: z.ZodOptional<z.ZodObject<{
|
|
38470
38470
|
font: z.ZodOptional<z.ZodObject<{
|
|
38471
|
-
color: z.
|
|
38471
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
38472
38472
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
38473
38473
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
38474
38474
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -39738,8 +39738,8 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
39738
39738
|
active?: {
|
|
39739
39739
|
scale: string | number;
|
|
39740
39740
|
font?: {
|
|
39741
|
-
color: string;
|
|
39742
39741
|
opacity: string | number;
|
|
39742
|
+
color?: string;
|
|
39743
39743
|
background?: string;
|
|
39744
39744
|
size?: string | number;
|
|
39745
39745
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -40281,8 +40281,8 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
40281
40281
|
active?: {
|
|
40282
40282
|
scale: string | number;
|
|
40283
40283
|
font?: {
|
|
40284
|
-
color: string;
|
|
40285
40284
|
opacity: string | number;
|
|
40285
|
+
color?: string;
|
|
40286
40286
|
background?: string;
|
|
40287
40287
|
size?: string | number;
|
|
40288
40288
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -41080,7 +41080,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
41080
41080
|
}, z.core.$strict>>;
|
|
41081
41081
|
active: z.ZodOptional<z.ZodObject<{
|
|
41082
41082
|
font: z.ZodOptional<z.ZodObject<{
|
|
41083
|
-
color: z.
|
|
41083
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
41084
41084
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
41085
41085
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
41086
41086
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -42350,8 +42350,8 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42350
42350
|
active?: {
|
|
42351
42351
|
scale: string | number;
|
|
42352
42352
|
font?: {
|
|
42353
|
-
color: string;
|
|
42354
42353
|
opacity: string | number;
|
|
42354
|
+
color?: string;
|
|
42355
42355
|
background?: string;
|
|
42356
42356
|
size?: string | number;
|
|
42357
42357
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -42893,8 +42893,8 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
42893
42893
|
active?: {
|
|
42894
42894
|
scale: string | number;
|
|
42895
42895
|
font?: {
|
|
42896
|
-
color: string;
|
|
42897
42896
|
opacity: string | number;
|
|
42897
|
+
color?: string;
|
|
42898
42898
|
background?: string;
|
|
42899
42899
|
size?: string | number;
|
|
42900
42900
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -43686,7 +43686,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
43686
43686
|
}, z.core.$strict>>;
|
|
43687
43687
|
active: z.ZodOptional<z.ZodObject<{
|
|
43688
43688
|
font: z.ZodOptional<z.ZodObject<{
|
|
43689
|
-
color: z.
|
|
43689
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
43690
43690
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
43691
43691
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
43692
43692
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -44956,8 +44956,8 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
44956
44956
|
active?: {
|
|
44957
44957
|
scale: string | number;
|
|
44958
44958
|
font?: {
|
|
44959
|
-
color: string;
|
|
44960
44959
|
opacity: string | number;
|
|
44960
|
+
color?: string;
|
|
44961
44961
|
background?: string;
|
|
44962
44962
|
size?: string | number;
|
|
44963
44963
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -45499,8 +45499,8 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
45499
45499
|
active?: {
|
|
45500
45500
|
scale: string | number;
|
|
45501
45501
|
font?: {
|
|
45502
|
-
color: string;
|
|
45503
45502
|
opacity: string | number;
|
|
45503
|
+
color?: string;
|
|
45504
45504
|
background?: string;
|
|
45505
45505
|
size?: string | number;
|
|
45506
45506
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -46298,7 +46298,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
46298
46298
|
}, z.core.$strict>>;
|
|
46299
46299
|
active: z.ZodOptional<z.ZodObject<{
|
|
46300
46300
|
font: z.ZodOptional<z.ZodObject<{
|
|
46301
|
-
color: z.
|
|
46301
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
46302
46302
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
46303
46303
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
46304
46304
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -47568,8 +47568,8 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
47568
47568
|
active?: {
|
|
47569
47569
|
scale: string | number;
|
|
47570
47570
|
font?: {
|
|
47571
|
-
color: string;
|
|
47572
47571
|
opacity: string | number;
|
|
47572
|
+
color?: string;
|
|
47573
47573
|
background?: string;
|
|
47574
47574
|
size?: string | number;
|
|
47575
47575
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -48111,8 +48111,8 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
48111
48111
|
active?: {
|
|
48112
48112
|
scale: string | number;
|
|
48113
48113
|
font?: {
|
|
48114
|
-
color: string;
|
|
48115
48114
|
opacity: string | number;
|
|
48115
|
+
color?: string;
|
|
48116
48116
|
background?: string;
|
|
48117
48117
|
size?: string | number;
|
|
48118
48118
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -48908,7 +48908,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
48908
48908
|
}, z.core.$strict>>;
|
|
48909
48909
|
active: z.ZodOptional<z.ZodObject<{
|
|
48910
48910
|
font: z.ZodOptional<z.ZodObject<{
|
|
48911
|
-
color: z.
|
|
48911
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
48912
48912
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
48913
48913
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
48914
48914
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -50178,8 +50178,8 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50178
50178
|
active?: {
|
|
50179
50179
|
scale: string | number;
|
|
50180
50180
|
font?: {
|
|
50181
|
-
color: string;
|
|
50182
50181
|
opacity: string | number;
|
|
50182
|
+
color?: string;
|
|
50183
50183
|
background?: string;
|
|
50184
50184
|
size?: string | number;
|
|
50185
50185
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -50721,8 +50721,8 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
50721
50721
|
active?: {
|
|
50722
50722
|
scale: string | number;
|
|
50723
50723
|
font?: {
|
|
50724
|
-
color: string;
|
|
50725
50724
|
opacity: string | number;
|
|
50725
|
+
color?: string;
|
|
50726
50726
|
background?: string;
|
|
50727
50727
|
size?: string | number;
|
|
50728
50728
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -51516,7 +51516,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
51516
51516
|
}, z.core.$strict>>;
|
|
51517
51517
|
active: z.ZodOptional<z.ZodObject<{
|
|
51518
51518
|
font: z.ZodOptional<z.ZodObject<{
|
|
51519
|
-
color: z.
|
|
51519
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
51520
51520
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
51521
51521
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
51522
51522
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -52786,8 +52786,8 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
52786
52786
|
active?: {
|
|
52787
52787
|
scale: string | number;
|
|
52788
52788
|
font?: {
|
|
52789
|
-
color: string;
|
|
52790
52789
|
opacity: string | number;
|
|
52790
|
+
color?: string;
|
|
52791
52791
|
background?: string;
|
|
52792
52792
|
size?: string | number;
|
|
52793
52793
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -53329,8 +53329,8 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
53329
53329
|
active?: {
|
|
53330
53330
|
scale: string | number;
|
|
53331
53331
|
font?: {
|
|
53332
|
-
color: string;
|
|
53333
53332
|
opacity: string | number;
|
|
53333
|
+
color?: string;
|
|
53334
53334
|
background?: string;
|
|
53335
53335
|
size?: string | number;
|
|
53336
53336
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -54120,7 +54120,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
54120
54120
|
}, z.core.$strict>>;
|
|
54121
54121
|
active: z.ZodOptional<z.ZodObject<{
|
|
54122
54122
|
font: z.ZodOptional<z.ZodObject<{
|
|
54123
|
-
color: z.
|
|
54123
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
54124
54124
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
54125
54125
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
54126
54126
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -55390,8 +55390,8 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55390
55390
|
active?: {
|
|
55391
55391
|
scale: string | number;
|
|
55392
55392
|
font?: {
|
|
55393
|
-
color: string;
|
|
55394
55393
|
opacity: string | number;
|
|
55394
|
+
color?: string;
|
|
55395
55395
|
background?: string;
|
|
55396
55396
|
size?: string | number;
|
|
55397
55397
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -55933,8 +55933,8 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
55933
55933
|
active?: {
|
|
55934
55934
|
scale: string | number;
|
|
55935
55935
|
font?: {
|
|
55936
|
-
color: string;
|
|
55937
55936
|
opacity: string | number;
|
|
55937
|
+
color?: string;
|
|
55938
55938
|
background?: string;
|
|
55939
55939
|
size?: string | number;
|
|
55940
55940
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -56723,7 +56723,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
56723
56723
|
}, z.core.$strict>>;
|
|
56724
56724
|
active: z.ZodOptional<z.ZodObject<{
|
|
56725
56725
|
font: z.ZodOptional<z.ZodObject<{
|
|
56726
|
-
color: z.
|
|
56726
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56727
56727
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
56728
56728
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
56729
56729
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -57993,8 +57993,8 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
57993
57993
|
active?: {
|
|
57994
57994
|
scale: string | number;
|
|
57995
57995
|
font?: {
|
|
57996
|
-
color: string;
|
|
57997
57996
|
opacity: string | number;
|
|
57997
|
+
color?: string;
|
|
57998
57998
|
background?: string;
|
|
57999
57999
|
size?: string | number;
|
|
58000
58000
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -58536,8 +58536,8 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
58536
58536
|
active?: {
|
|
58537
58537
|
scale: string | number;
|
|
58538
58538
|
font?: {
|
|
58539
|
-
color: string;
|
|
58540
58539
|
opacity: string | number;
|
|
58540
|
+
color?: string;
|
|
58541
58541
|
background?: string;
|
|
58542
58542
|
size?: string | number;
|
|
58543
58543
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -59373,7 +59373,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
59373
59373
|
}, z.core.$strict>>;
|
|
59374
59374
|
active: z.ZodOptional<z.ZodObject<{
|
|
59375
59375
|
font: z.ZodOptional<z.ZodObject<{
|
|
59376
|
-
color: z.
|
|
59376
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
59377
59377
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
59378
59378
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
59379
59379
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -60643,8 +60643,8 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
60643
60643
|
active?: {
|
|
60644
60644
|
scale: string | number;
|
|
60645
60645
|
font?: {
|
|
60646
|
-
color: string;
|
|
60647
60646
|
opacity: string | number;
|
|
60647
|
+
color?: string;
|
|
60648
60648
|
background?: string;
|
|
60649
60649
|
size?: string | number;
|
|
60650
60650
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -61186,8 +61186,8 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
61186
61186
|
active?: {
|
|
61187
61187
|
scale: string | number;
|
|
61188
61188
|
font?: {
|
|
61189
|
-
color: string;
|
|
61190
61189
|
opacity: string | number;
|
|
61190
|
+
color?: string;
|
|
61191
61191
|
background?: string;
|
|
61192
61192
|
size?: string | number;
|
|
61193
61193
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -62002,7 +62002,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
62002
62002
|
}, z.core.$strict>>;
|
|
62003
62003
|
active: z.ZodOptional<z.ZodObject<{
|
|
62004
62004
|
font: z.ZodOptional<z.ZodObject<{
|
|
62005
|
-
color: z.
|
|
62005
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
62006
62006
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
62007
62007
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
62008
62008
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -63272,8 +63272,8 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63272
63272
|
active?: {
|
|
63273
63273
|
scale: string | number;
|
|
63274
63274
|
font?: {
|
|
63275
|
-
color: string;
|
|
63276
63275
|
opacity: string | number;
|
|
63276
|
+
color?: string;
|
|
63277
63277
|
background?: string;
|
|
63278
63278
|
size?: string | number;
|
|
63279
63279
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -63815,8 +63815,8 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
63815
63815
|
active?: {
|
|
63816
63816
|
scale: string | number;
|
|
63817
63817
|
font?: {
|
|
63818
|
-
color: string;
|
|
63819
63818
|
opacity: string | number;
|
|
63819
|
+
color?: string;
|
|
63820
63820
|
background?: string;
|
|
63821
63821
|
size?: string | number;
|
|
63822
63822
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -64646,7 +64646,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
64646
64646
|
}, z.core.$strict>>;
|
|
64647
64647
|
active: z.ZodOptional<z.ZodObject<{
|
|
64648
64648
|
font: z.ZodOptional<z.ZodObject<{
|
|
64649
|
-
color: z.
|
|
64649
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
64650
64650
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
64651
64651
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
64652
64652
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -65916,8 +65916,8 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
65916
65916
|
active?: {
|
|
65917
65917
|
scale: string | number;
|
|
65918
65918
|
font?: {
|
|
65919
|
-
color: string;
|
|
65920
65919
|
opacity: string | number;
|
|
65920
|
+
color?: string;
|
|
65921
65921
|
background?: string;
|
|
65922
65922
|
size?: string | number;
|
|
65923
65923
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -66459,8 +66459,8 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
66459
66459
|
active?: {
|
|
66460
66460
|
scale: string | number;
|
|
66461
66461
|
font?: {
|
|
66462
|
-
color: string;
|
|
66463
66462
|
opacity: string | number;
|
|
66463
|
+
color?: string;
|
|
66464
66464
|
background?: string;
|
|
66465
66465
|
size?: string | number;
|
|
66466
66466
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -67252,7 +67252,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
67252
67252
|
}, z.core.$strict>>;
|
|
67253
67253
|
active: z.ZodOptional<z.ZodObject<{
|
|
67254
67254
|
font: z.ZodOptional<z.ZodObject<{
|
|
67255
|
-
color: z.
|
|
67255
|
+
color: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
67256
67256
|
background: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>;
|
|
67257
67257
|
opacity: z.ZodDefault<z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>>;
|
|
67258
67258
|
size: z.ZodOptional<z.ZodUnion<readonly [z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>, z.ZodString]>>;
|
|
@@ -68522,8 +68522,8 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
68522
68522
|
active?: {
|
|
68523
68523
|
scale: string | number;
|
|
68524
68524
|
font?: {
|
|
68525
|
-
color: string;
|
|
68526
68525
|
opacity: string | number;
|
|
68526
|
+
color?: string;
|
|
68527
68527
|
background?: string;
|
|
68528
68528
|
size?: string | number;
|
|
68529
68529
|
textDecoration?: "none" | "underline" | "line-through";
|
|
@@ -69065,8 +69065,8 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
69065
69065
|
active?: {
|
|
69066
69066
|
scale: string | number;
|
|
69067
69067
|
font?: {
|
|
69068
|
-
color: string;
|
|
69069
69068
|
opacity: string | number;
|
|
69069
|
+
color?: string;
|
|
69070
69070
|
background?: string;
|
|
69071
69071
|
size?: string | number;
|
|
69072
69072
|
textDecoration?: "none" | "underline" | "line-through";
|
package/dist/zod/zod.gen.js
CHANGED
|
@@ -1361,7 +1361,7 @@ export const templateResponseSchema = templateresponseTemplateResponseSchema;
|
|
|
1361
1361
|
* Font properties for the active/highlighted word.
|
|
1362
1362
|
*/
|
|
1363
1363
|
export const richcaptionpropertiesRichCaptionActiveFontSchema = z.object({
|
|
1364
|
-
color: z.optional(z.union([z.string().regex(/^#[A-Fa-f0-9]{6}$/), z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)]))
|
|
1364
|
+
color: z.optional(z.union([z.string().regex(/^#[A-Fa-f0-9]{6}$/), z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])),
|
|
1365
1365
|
background: z.optional(z.union([z.string().regex(/^#[A-Fa-f0-9]{6}$/), z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])),
|
|
1366
1366
|
opacity: z.optional(z.union([z.preprocess(((v) => { if (v === '' || v === null || v === undefined)
|
|
1367
1367
|
return undefined; if (Array.isArray(v))
|
package/dist/zod/zod.gen.ts
CHANGED
|
@@ -1335,7 +1335,7 @@ export const templateResponseSchema = templateresponseTemplateResponseSchema;
|
|
|
1335
1335
|
* Font properties for the active/highlighted word.
|
|
1336
1336
|
*/
|
|
1337
1337
|
export const richcaptionpropertiesRichCaptionActiveFontSchema = z.object({
|
|
1338
|
-
color: z.optional(z.union([z.string().regex(/^#[A-Fa-f0-9]{6}$/), z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)]))
|
|
1338
|
+
color: z.optional(z.union([z.string().regex(/^#[A-Fa-f0-9]{6}$/), z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])),
|
|
1339
1339
|
background: z.optional(z.union([z.string().regex(/^#[A-Fa-f0-9]{6}$/), z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])),
|
|
1340
1340
|
opacity: z.optional(z.union([z.preprocess(((v: unknown) => { if (v === '' || v === null || v === undefined) return undefined; if (Array.isArray(v)) return v; if (typeof v === 'string') { if (/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/.test(v)) return v; return Number(v); } return v; }), z.number().gte(0).lte(1)), z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])).default(1),
|
|
1341
1341
|
size: z.optional(z.union([z.preprocess(((v: unknown) => { if (v === '' || v === null || v === undefined) return undefined; if (Array.isArray(v)) return v; if (typeof v === 'string') { if (/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/.test(v)) return v; return Number(v); } return v; }), z.number().gte(1).lte(500)), z.string().regex(/^\{\{\s*[A-Za-z0-9_]+\s*\}\}$/)])),
|