@shotstack/schemas 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.bundled.json +18 -0
- package/dist/schema.d.ts +14 -0
- package/dist/zod/zod.gen.cjs +7 -0
- package/dist/zod/zod.gen.d.ts +242 -77
- package/dist/zod/zod.gen.js +7 -0
- package/dist/zod/zod.gen.ts +4 -0
- package/package.json +1 -1
package/dist/zod/zod.gen.d.ts
CHANGED
|
@@ -56,11 +56,13 @@ export declare const captionFontSchema: z.ZodObject<{
|
|
|
56
56
|
*/
|
|
57
57
|
export declare const captionpropertiesCaptionMarginSchema: z.ZodObject<{
|
|
58
58
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
59
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
59
60
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
60
61
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
61
62
|
}, z.core.$strict>;
|
|
62
63
|
export declare const captionMarginSchema: z.ZodObject<{
|
|
63
64
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
65
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
64
66
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
65
67
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
66
68
|
}, z.core.$strict>;
|
|
@@ -98,6 +100,7 @@ export declare const captionassetCaptionAssetSchema: z.ZodObject<{
|
|
|
98
100
|
}, z.core.$strict>>;
|
|
99
101
|
margin: z.ZodOptional<z.ZodObject<{
|
|
100
102
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
103
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
101
104
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
102
105
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
103
106
|
}, z.core.$strict>>;
|
|
@@ -126,6 +129,7 @@ export declare const captionAssetSchema: z.ZodObject<{
|
|
|
126
129
|
}, z.core.$strict>>;
|
|
127
130
|
margin: z.ZodOptional<z.ZodObject<{
|
|
128
131
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
132
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
129
133
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
130
134
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
131
135
|
}, z.core.$strict>>;
|
|
@@ -3552,9 +3556,9 @@ export declare const htmlassetHtmlAssetSchema: z.ZodObject<{
|
|
|
3552
3556
|
background: z.ZodOptional<z.ZodString>;
|
|
3553
3557
|
position: z.ZodOptional<z.ZodEnum<{
|
|
3554
3558
|
top: "top";
|
|
3559
|
+
bottom: "bottom";
|
|
3555
3560
|
left: "left";
|
|
3556
3561
|
right: "right";
|
|
3557
|
-
bottom: "bottom";
|
|
3558
3562
|
topRight: "topRight";
|
|
3559
3563
|
bottomRight: "bottomRight";
|
|
3560
3564
|
bottomLeft: "bottomLeft";
|
|
@@ -3573,9 +3577,9 @@ export declare const htmlAssetSchema: z.ZodObject<{
|
|
|
3573
3577
|
background: z.ZodOptional<z.ZodString>;
|
|
3574
3578
|
position: z.ZodOptional<z.ZodEnum<{
|
|
3575
3579
|
top: "top";
|
|
3580
|
+
bottom: "bottom";
|
|
3576
3581
|
left: "left";
|
|
3577
3582
|
right: "right";
|
|
3578
|
-
bottom: "bottom";
|
|
3579
3583
|
topRight: "topRight";
|
|
3580
3584
|
bottomRight: "bottomRight";
|
|
3581
3585
|
bottomLeft: "bottomLeft";
|
|
@@ -9228,9 +9232,9 @@ export declare const titleassetTitleAssetSchema: z.ZodObject<{
|
|
|
9228
9232
|
background: z.ZodOptional<z.ZodString>;
|
|
9229
9233
|
position: z.ZodOptional<z.ZodEnum<{
|
|
9230
9234
|
top: "top";
|
|
9235
|
+
bottom: "bottom";
|
|
9231
9236
|
left: "left";
|
|
9232
9237
|
right: "right";
|
|
9233
|
-
bottom: "bottom";
|
|
9234
9238
|
topRight: "topRight";
|
|
9235
9239
|
bottomRight: "bottomRight";
|
|
9236
9240
|
bottomLeft: "bottomLeft";
|
|
@@ -9352,9 +9356,9 @@ export declare const titleAssetSchema: z.ZodObject<{
|
|
|
9352
9356
|
background: z.ZodOptional<z.ZodString>;
|
|
9353
9357
|
position: z.ZodOptional<z.ZodEnum<{
|
|
9354
9358
|
top: "top";
|
|
9359
|
+
bottom: "bottom";
|
|
9355
9360
|
left: "left";
|
|
9356
9361
|
right: "right";
|
|
9357
|
-
bottom: "bottom";
|
|
9358
9362
|
topRight: "topRight";
|
|
9359
9363
|
bottomRight: "bottomRight";
|
|
9360
9364
|
bottomLeft: "bottomLeft";
|
|
@@ -10159,6 +10163,7 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10159
10163
|
}, z.core.$strict>>;
|
|
10160
10164
|
margin: z.ZodOptional<z.ZodObject<{
|
|
10161
10165
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
10166
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
10162
10167
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
10163
10168
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
10164
10169
|
}, z.core.$strict>>;
|
|
@@ -10175,9 +10180,9 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10175
10180
|
background: z.ZodOptional<z.ZodString>;
|
|
10176
10181
|
position: z.ZodOptional<z.ZodEnum<{
|
|
10177
10182
|
top: "top";
|
|
10183
|
+
bottom: "bottom";
|
|
10178
10184
|
left: "left";
|
|
10179
10185
|
right: "right";
|
|
10180
|
-
bottom: "bottom";
|
|
10181
10186
|
topRight: "topRight";
|
|
10182
10187
|
bottomRight: "bottomRight";
|
|
10183
10188
|
bottomLeft: "bottomLeft";
|
|
@@ -10214,9 +10219,9 @@ export declare const assetAssetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10214
10219
|
background: z.ZodOptional<z.ZodString>;
|
|
10215
10220
|
position: z.ZodOptional<z.ZodEnum<{
|
|
10216
10221
|
top: "top";
|
|
10222
|
+
bottom: "bottom";
|
|
10217
10223
|
left: "left";
|
|
10218
10224
|
right: "right";
|
|
10219
|
-
bottom: "bottom";
|
|
10220
10225
|
topRight: "topRight";
|
|
10221
10226
|
bottomRight: "bottomRight";
|
|
10222
10227
|
bottomLeft: "bottomLeft";
|
|
@@ -10813,6 +10818,7 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10813
10818
|
}, z.core.$strict>>;
|
|
10814
10819
|
margin: z.ZodOptional<z.ZodObject<{
|
|
10815
10820
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
10821
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
10816
10822
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
10817
10823
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
10818
10824
|
}, z.core.$strict>>;
|
|
@@ -10829,9 +10835,9 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10829
10835
|
background: z.ZodOptional<z.ZodString>;
|
|
10830
10836
|
position: z.ZodOptional<z.ZodEnum<{
|
|
10831
10837
|
top: "top";
|
|
10838
|
+
bottom: "bottom";
|
|
10832
10839
|
left: "left";
|
|
10833
10840
|
right: "right";
|
|
10834
|
-
bottom: "bottom";
|
|
10835
10841
|
topRight: "topRight";
|
|
10836
10842
|
bottomRight: "bottomRight";
|
|
10837
10843
|
bottomLeft: "bottomLeft";
|
|
@@ -10868,9 +10874,9 @@ export declare const assetSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10868
10874
|
background: z.ZodOptional<z.ZodString>;
|
|
10869
10875
|
position: z.ZodOptional<z.ZodEnum<{
|
|
10870
10876
|
top: "top";
|
|
10877
|
+
bottom: "bottom";
|
|
10871
10878
|
left: "left";
|
|
10872
10879
|
right: "right";
|
|
10873
|
-
bottom: "bottom";
|
|
10874
10880
|
topRight: "topRight";
|
|
10875
10881
|
bottomRight: "bottomRight";
|
|
10876
10882
|
bottomLeft: "bottomLeft";
|
|
@@ -11471,6 +11477,7 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
11471
11477
|
}, z.core.$strict>>;
|
|
11472
11478
|
margin: z.ZodOptional<z.ZodObject<{
|
|
11473
11479
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
11480
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
11474
11481
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
11475
11482
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
11476
11483
|
}, z.core.$strict>>;
|
|
@@ -11487,9 +11494,9 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
11487
11494
|
background: z.ZodOptional<z.ZodString>;
|
|
11488
11495
|
position: z.ZodOptional<z.ZodEnum<{
|
|
11489
11496
|
top: "top";
|
|
11497
|
+
bottom: "bottom";
|
|
11490
11498
|
left: "left";
|
|
11491
11499
|
right: "right";
|
|
11492
|
-
bottom: "bottom";
|
|
11493
11500
|
topRight: "topRight";
|
|
11494
11501
|
bottomRight: "bottomRight";
|
|
11495
11502
|
bottomLeft: "bottomLeft";
|
|
@@ -11526,9 +11533,9 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
11526
11533
|
background: z.ZodOptional<z.ZodString>;
|
|
11527
11534
|
position: z.ZodOptional<z.ZodEnum<{
|
|
11528
11535
|
top: "top";
|
|
11536
|
+
bottom: "bottom";
|
|
11529
11537
|
left: "left";
|
|
11530
11538
|
right: "right";
|
|
11531
|
-
bottom: "bottom";
|
|
11532
11539
|
topRight: "topRight";
|
|
11533
11540
|
bottomRight: "bottomRight";
|
|
11534
11541
|
bottomLeft: "bottomLeft";
|
|
@@ -11874,9 +11881,9 @@ export declare const clipClipSchema: z.ZodObject<{
|
|
|
11874
11881
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
11875
11882
|
position: z.ZodOptional<z.ZodEnum<{
|
|
11876
11883
|
top: "top";
|
|
11884
|
+
bottom: "bottom";
|
|
11877
11885
|
left: "left";
|
|
11878
11886
|
right: "right";
|
|
11879
|
-
bottom: "bottom";
|
|
11880
11887
|
topRight: "topRight";
|
|
11881
11888
|
bottomRight: "bottomRight";
|
|
11882
11889
|
bottomLeft: "bottomLeft";
|
|
@@ -12609,6 +12616,7 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
12609
12616
|
}, z.core.$strict>>;
|
|
12610
12617
|
margin: z.ZodOptional<z.ZodObject<{
|
|
12611
12618
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
12619
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
12612
12620
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
12613
12621
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
12614
12622
|
}, z.core.$strict>>;
|
|
@@ -12625,9 +12633,9 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
12625
12633
|
background: z.ZodOptional<z.ZodString>;
|
|
12626
12634
|
position: z.ZodOptional<z.ZodEnum<{
|
|
12627
12635
|
top: "top";
|
|
12636
|
+
bottom: "bottom";
|
|
12628
12637
|
left: "left";
|
|
12629
12638
|
right: "right";
|
|
12630
|
-
bottom: "bottom";
|
|
12631
12639
|
topRight: "topRight";
|
|
12632
12640
|
bottomRight: "bottomRight";
|
|
12633
12641
|
bottomLeft: "bottomLeft";
|
|
@@ -12664,9 +12672,9 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
12664
12672
|
background: z.ZodOptional<z.ZodString>;
|
|
12665
12673
|
position: z.ZodOptional<z.ZodEnum<{
|
|
12666
12674
|
top: "top";
|
|
12675
|
+
bottom: "bottom";
|
|
12667
12676
|
left: "left";
|
|
12668
12677
|
right: "right";
|
|
12669
|
-
bottom: "bottom";
|
|
12670
12678
|
topRight: "topRight";
|
|
12671
12679
|
bottomRight: "bottomRight";
|
|
12672
12680
|
bottomLeft: "bottomLeft";
|
|
@@ -13012,9 +13020,9 @@ export declare const clipSchema: z.ZodObject<{
|
|
|
13012
13020
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
13013
13021
|
position: z.ZodOptional<z.ZodEnum<{
|
|
13014
13022
|
top: "top";
|
|
13023
|
+
bottom: "bottom";
|
|
13015
13024
|
left: "left";
|
|
13016
13025
|
right: "right";
|
|
13017
|
-
bottom: "bottom";
|
|
13018
13026
|
topRight: "topRight";
|
|
13019
13027
|
bottomRight: "bottomRight";
|
|
13020
13028
|
bottomLeft: "bottomLeft";
|
|
@@ -13751,6 +13759,7 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
13751
13759
|
}, z.core.$strict>>;
|
|
13752
13760
|
margin: z.ZodOptional<z.ZodObject<{
|
|
13753
13761
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
13762
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
13754
13763
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
13755
13764
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
13756
13765
|
}, z.core.$strict>>;
|
|
@@ -13767,9 +13776,9 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
13767
13776
|
background: z.ZodOptional<z.ZodString>;
|
|
13768
13777
|
position: z.ZodOptional<z.ZodEnum<{
|
|
13769
13778
|
top: "top";
|
|
13779
|
+
bottom: "bottom";
|
|
13770
13780
|
left: "left";
|
|
13771
13781
|
right: "right";
|
|
13772
|
-
bottom: "bottom";
|
|
13773
13782
|
topRight: "topRight";
|
|
13774
13783
|
bottomRight: "bottomRight";
|
|
13775
13784
|
bottomLeft: "bottomLeft";
|
|
@@ -13806,9 +13815,9 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
13806
13815
|
background: z.ZodOptional<z.ZodString>;
|
|
13807
13816
|
position: z.ZodOptional<z.ZodEnum<{
|
|
13808
13817
|
top: "top";
|
|
13818
|
+
bottom: "bottom";
|
|
13809
13819
|
left: "left";
|
|
13810
13820
|
right: "right";
|
|
13811
|
-
bottom: "bottom";
|
|
13812
13821
|
topRight: "topRight";
|
|
13813
13822
|
bottomRight: "bottomRight";
|
|
13814
13823
|
bottomLeft: "bottomLeft";
|
|
@@ -14154,9 +14163,9 @@ export declare const trackTrackSchema: z.ZodObject<{
|
|
|
14154
14163
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
14155
14164
|
position: z.ZodOptional<z.ZodEnum<{
|
|
14156
14165
|
top: "top";
|
|
14166
|
+
bottom: "bottom";
|
|
14157
14167
|
left: "left";
|
|
14158
14168
|
right: "right";
|
|
14159
|
-
bottom: "bottom";
|
|
14160
14169
|
topRight: "topRight";
|
|
14161
14170
|
bottomRight: "bottomRight";
|
|
14162
14171
|
bottomLeft: "bottomLeft";
|
|
@@ -14891,6 +14900,7 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
14891
14900
|
}, z.core.$strict>>;
|
|
14892
14901
|
margin: z.ZodOptional<z.ZodObject<{
|
|
14893
14902
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
14903
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
14894
14904
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
14895
14905
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
14896
14906
|
}, z.core.$strict>>;
|
|
@@ -14907,9 +14917,9 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
14907
14917
|
background: z.ZodOptional<z.ZodString>;
|
|
14908
14918
|
position: z.ZodOptional<z.ZodEnum<{
|
|
14909
14919
|
top: "top";
|
|
14920
|
+
bottom: "bottom";
|
|
14910
14921
|
left: "left";
|
|
14911
14922
|
right: "right";
|
|
14912
|
-
bottom: "bottom";
|
|
14913
14923
|
topRight: "topRight";
|
|
14914
14924
|
bottomRight: "bottomRight";
|
|
14915
14925
|
bottomLeft: "bottomLeft";
|
|
@@ -14946,9 +14956,9 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
14946
14956
|
background: z.ZodOptional<z.ZodString>;
|
|
14947
14957
|
position: z.ZodOptional<z.ZodEnum<{
|
|
14948
14958
|
top: "top";
|
|
14959
|
+
bottom: "bottom";
|
|
14949
14960
|
left: "left";
|
|
14950
14961
|
right: "right";
|
|
14951
|
-
bottom: "bottom";
|
|
14952
14962
|
topRight: "topRight";
|
|
14953
14963
|
bottomRight: "bottomRight";
|
|
14954
14964
|
bottomLeft: "bottomLeft";
|
|
@@ -15294,9 +15304,9 @@ export declare const trackSchema: z.ZodObject<{
|
|
|
15294
15304
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
15295
15305
|
position: z.ZodOptional<z.ZodEnum<{
|
|
15296
15306
|
top: "top";
|
|
15307
|
+
bottom: "bottom";
|
|
15297
15308
|
left: "left";
|
|
15298
15309
|
right: "right";
|
|
15299
|
-
bottom: "bottom";
|
|
15300
15310
|
topRight: "topRight";
|
|
15301
15311
|
bottomRight: "bottomRight";
|
|
15302
15312
|
bottomLeft: "bottomLeft";
|
|
@@ -16048,6 +16058,7 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
16048
16058
|
}, z.core.$strict>>;
|
|
16049
16059
|
margin: z.ZodOptional<z.ZodObject<{
|
|
16050
16060
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
16061
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
16051
16062
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
16052
16063
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
16053
16064
|
}, z.core.$strict>>;
|
|
@@ -16064,9 +16075,9 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
16064
16075
|
background: z.ZodOptional<z.ZodString>;
|
|
16065
16076
|
position: z.ZodOptional<z.ZodEnum<{
|
|
16066
16077
|
top: "top";
|
|
16078
|
+
bottom: "bottom";
|
|
16067
16079
|
left: "left";
|
|
16068
16080
|
right: "right";
|
|
16069
|
-
bottom: "bottom";
|
|
16070
16081
|
topRight: "topRight";
|
|
16071
16082
|
bottomRight: "bottomRight";
|
|
16072
16083
|
bottomLeft: "bottomLeft";
|
|
@@ -16103,9 +16114,9 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
16103
16114
|
background: z.ZodOptional<z.ZodString>;
|
|
16104
16115
|
position: z.ZodOptional<z.ZodEnum<{
|
|
16105
16116
|
top: "top";
|
|
16117
|
+
bottom: "bottom";
|
|
16106
16118
|
left: "left";
|
|
16107
16119
|
right: "right";
|
|
16108
|
-
bottom: "bottom";
|
|
16109
16120
|
topRight: "topRight";
|
|
16110
16121
|
bottomRight: "bottomRight";
|
|
16111
16122
|
bottomLeft: "bottomLeft";
|
|
@@ -16451,9 +16462,9 @@ export declare const timelineTimelineSchema: z.ZodObject<{
|
|
|
16451
16462
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
16452
16463
|
position: z.ZodOptional<z.ZodEnum<{
|
|
16453
16464
|
top: "top";
|
|
16465
|
+
bottom: "bottom";
|
|
16454
16466
|
left: "left";
|
|
16455
16467
|
right: "right";
|
|
16456
|
-
bottom: "bottom";
|
|
16457
16468
|
topRight: "topRight";
|
|
16458
16469
|
bottomRight: "bottomRight";
|
|
16459
16470
|
bottomLeft: "bottomLeft";
|
|
@@ -17204,6 +17215,7 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
17204
17215
|
}, z.core.$strict>>;
|
|
17205
17216
|
margin: z.ZodOptional<z.ZodObject<{
|
|
17206
17217
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
17218
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
17207
17219
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
17208
17220
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
17209
17221
|
}, z.core.$strict>>;
|
|
@@ -17220,9 +17232,9 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
17220
17232
|
background: z.ZodOptional<z.ZodString>;
|
|
17221
17233
|
position: z.ZodOptional<z.ZodEnum<{
|
|
17222
17234
|
top: "top";
|
|
17235
|
+
bottom: "bottom";
|
|
17223
17236
|
left: "left";
|
|
17224
17237
|
right: "right";
|
|
17225
|
-
bottom: "bottom";
|
|
17226
17238
|
topRight: "topRight";
|
|
17227
17239
|
bottomRight: "bottomRight";
|
|
17228
17240
|
bottomLeft: "bottomLeft";
|
|
@@ -17259,9 +17271,9 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
17259
17271
|
background: z.ZodOptional<z.ZodString>;
|
|
17260
17272
|
position: z.ZodOptional<z.ZodEnum<{
|
|
17261
17273
|
top: "top";
|
|
17274
|
+
bottom: "bottom";
|
|
17262
17275
|
left: "left";
|
|
17263
17276
|
right: "right";
|
|
17264
|
-
bottom: "bottom";
|
|
17265
17277
|
topRight: "topRight";
|
|
17266
17278
|
bottomRight: "bottomRight";
|
|
17267
17279
|
bottomLeft: "bottomLeft";
|
|
@@ -17607,9 +17619,9 @@ export declare const timelineSchema: z.ZodObject<{
|
|
|
17607
17619
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
17608
17620
|
position: z.ZodOptional<z.ZodEnum<{
|
|
17609
17621
|
top: "top";
|
|
17622
|
+
bottom: "bottom";
|
|
17610
17623
|
left: "left";
|
|
17611
17624
|
right: "right";
|
|
17612
|
-
bottom: "bottom";
|
|
17613
17625
|
topRight: "topRight";
|
|
17614
17626
|
bottomRight: "bottomRight";
|
|
17615
17627
|
bottomLeft: "bottomLeft";
|
|
@@ -18364,6 +18376,7 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
18364
18376
|
}, z.core.$strict>>;
|
|
18365
18377
|
margin: z.ZodOptional<z.ZodObject<{
|
|
18366
18378
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
18379
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
18367
18380
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
18368
18381
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
18369
18382
|
}, z.core.$strict>>;
|
|
@@ -18380,9 +18393,9 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
18380
18393
|
background: z.ZodOptional<z.ZodString>;
|
|
18381
18394
|
position: z.ZodOptional<z.ZodEnum<{
|
|
18382
18395
|
top: "top";
|
|
18396
|
+
bottom: "bottom";
|
|
18383
18397
|
left: "left";
|
|
18384
18398
|
right: "right";
|
|
18385
|
-
bottom: "bottom";
|
|
18386
18399
|
topRight: "topRight";
|
|
18387
18400
|
bottomRight: "bottomRight";
|
|
18388
18401
|
bottomLeft: "bottomLeft";
|
|
@@ -18419,9 +18432,9 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
18419
18432
|
background: z.ZodOptional<z.ZodString>;
|
|
18420
18433
|
position: z.ZodOptional<z.ZodEnum<{
|
|
18421
18434
|
top: "top";
|
|
18435
|
+
bottom: "bottom";
|
|
18422
18436
|
left: "left";
|
|
18423
18437
|
right: "right";
|
|
18424
|
-
bottom: "bottom";
|
|
18425
18438
|
topRight: "topRight";
|
|
18426
18439
|
bottomRight: "bottomRight";
|
|
18427
18440
|
bottomLeft: "bottomLeft";
|
|
@@ -18767,9 +18780,9 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
18767
18780
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
18768
18781
|
position: z.ZodOptional<z.ZodEnum<{
|
|
18769
18782
|
top: "top";
|
|
18783
|
+
bottom: "bottom";
|
|
18770
18784
|
left: "left";
|
|
18771
18785
|
right: "right";
|
|
18772
|
-
bottom: "bottom";
|
|
18773
18786
|
topRight: "topRight";
|
|
18774
18787
|
bottomRight: "bottomRight";
|
|
18775
18788
|
bottomLeft: "bottomLeft";
|
|
@@ -19343,6 +19356,14 @@ export declare const editEditSchema: z.ZodObject<{
|
|
|
19343
19356
|
local: "local";
|
|
19344
19357
|
mount: "mount";
|
|
19345
19358
|
}>>;
|
|
19359
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
19360
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
19361
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
19362
|
+
}, z.core.$strict>>;
|
|
19363
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
19364
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
19365
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
19366
|
+
}, z.core.$strict>>;
|
|
19346
19367
|
}, z.core.$strict>;
|
|
19347
19368
|
export declare const editSchema: z.ZodObject<{
|
|
19348
19369
|
timeline: z.ZodObject<{
|
|
@@ -19665,6 +19686,7 @@ export declare const editSchema: z.ZodObject<{
|
|
|
19665
19686
|
}, z.core.$strict>>;
|
|
19666
19687
|
margin: z.ZodOptional<z.ZodObject<{
|
|
19667
19688
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
19689
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
19668
19690
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
19669
19691
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
19670
19692
|
}, z.core.$strict>>;
|
|
@@ -19681,9 +19703,9 @@ export declare const editSchema: z.ZodObject<{
|
|
|
19681
19703
|
background: z.ZodOptional<z.ZodString>;
|
|
19682
19704
|
position: z.ZodOptional<z.ZodEnum<{
|
|
19683
19705
|
top: "top";
|
|
19706
|
+
bottom: "bottom";
|
|
19684
19707
|
left: "left";
|
|
19685
19708
|
right: "right";
|
|
19686
|
-
bottom: "bottom";
|
|
19687
19709
|
topRight: "topRight";
|
|
19688
19710
|
bottomRight: "bottomRight";
|
|
19689
19711
|
bottomLeft: "bottomLeft";
|
|
@@ -19720,9 +19742,9 @@ export declare const editSchema: z.ZodObject<{
|
|
|
19720
19742
|
background: z.ZodOptional<z.ZodString>;
|
|
19721
19743
|
position: z.ZodOptional<z.ZodEnum<{
|
|
19722
19744
|
top: "top";
|
|
19745
|
+
bottom: "bottom";
|
|
19723
19746
|
left: "left";
|
|
19724
19747
|
right: "right";
|
|
19725
|
-
bottom: "bottom";
|
|
19726
19748
|
topRight: "topRight";
|
|
19727
19749
|
bottomRight: "bottomRight";
|
|
19728
19750
|
bottomLeft: "bottomLeft";
|
|
@@ -20068,9 +20090,9 @@ export declare const editSchema: z.ZodObject<{
|
|
|
20068
20090
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
20069
20091
|
position: z.ZodOptional<z.ZodEnum<{
|
|
20070
20092
|
top: "top";
|
|
20093
|
+
bottom: "bottom";
|
|
20071
20094
|
left: "left";
|
|
20072
20095
|
right: "right";
|
|
20073
|
-
bottom: "bottom";
|
|
20074
20096
|
topRight: "topRight";
|
|
20075
20097
|
bottomRight: "bottomRight";
|
|
20076
20098
|
bottomLeft: "bottomLeft";
|
|
@@ -20644,6 +20666,14 @@ export declare const editSchema: z.ZodObject<{
|
|
|
20644
20666
|
local: "local";
|
|
20645
20667
|
mount: "mount";
|
|
20646
20668
|
}>>;
|
|
20669
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
20670
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
20671
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
20672
|
+
}, z.core.$strict>>;
|
|
20673
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
20674
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
20675
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
20676
|
+
}, z.core.$strict>>;
|
|
20647
20677
|
}, z.core.$strict>;
|
|
20648
20678
|
/**
|
|
20649
20679
|
* The response data returned with the [RenderResponse](#tocs_renderresponse) including status and URL.
|
|
@@ -20988,6 +21018,7 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
20988
21018
|
}, z.core.$strict>>;
|
|
20989
21019
|
margin: z.ZodOptional<z.ZodObject<{
|
|
20990
21020
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
21021
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
20991
21022
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
20992
21023
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
20993
21024
|
}, z.core.$strict>>;
|
|
@@ -21004,9 +21035,9 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
21004
21035
|
background: z.ZodOptional<z.ZodString>;
|
|
21005
21036
|
position: z.ZodOptional<z.ZodEnum<{
|
|
21006
21037
|
top: "top";
|
|
21038
|
+
bottom: "bottom";
|
|
21007
21039
|
left: "left";
|
|
21008
21040
|
right: "right";
|
|
21009
|
-
bottom: "bottom";
|
|
21010
21041
|
topRight: "topRight";
|
|
21011
21042
|
bottomRight: "bottomRight";
|
|
21012
21043
|
bottomLeft: "bottomLeft";
|
|
@@ -21043,9 +21074,9 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
21043
21074
|
background: z.ZodOptional<z.ZodString>;
|
|
21044
21075
|
position: z.ZodOptional<z.ZodEnum<{
|
|
21045
21076
|
top: "top";
|
|
21077
|
+
bottom: "bottom";
|
|
21046
21078
|
left: "left";
|
|
21047
21079
|
right: "right";
|
|
21048
|
-
bottom: "bottom";
|
|
21049
21080
|
topRight: "topRight";
|
|
21050
21081
|
bottomRight: "bottomRight";
|
|
21051
21082
|
bottomLeft: "bottomLeft";
|
|
@@ -21391,9 +21422,9 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
21391
21422
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
21392
21423
|
position: z.ZodOptional<z.ZodEnum<{
|
|
21393
21424
|
top: "top";
|
|
21425
|
+
bottom: "bottom";
|
|
21394
21426
|
left: "left";
|
|
21395
21427
|
right: "right";
|
|
21396
|
-
bottom: "bottom";
|
|
21397
21428
|
topRight: "topRight";
|
|
21398
21429
|
bottomRight: "bottomRight";
|
|
21399
21430
|
bottomLeft: "bottomLeft";
|
|
@@ -21967,6 +21998,14 @@ export declare const renderresponsedataRenderResponseDataSchema: z.ZodObject<{
|
|
|
21967
21998
|
local: "local";
|
|
21968
21999
|
mount: "mount";
|
|
21969
22000
|
}>>;
|
|
22001
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
22002
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
22003
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
22004
|
+
}, z.core.$strict>>;
|
|
22005
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
22006
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
22007
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
22008
|
+
}, z.core.$strict>>;
|
|
21970
22009
|
}, z.core.$strict>>;
|
|
21971
22010
|
created: z.ZodOptional<z.ZodString>;
|
|
21972
22011
|
updated: z.ZodOptional<z.ZodString>;
|
|
@@ -22311,6 +22350,7 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
22311
22350
|
}, z.core.$strict>>;
|
|
22312
22351
|
margin: z.ZodOptional<z.ZodObject<{
|
|
22313
22352
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
22353
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
22314
22354
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
22315
22355
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
22316
22356
|
}, z.core.$strict>>;
|
|
@@ -22327,9 +22367,9 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
22327
22367
|
background: z.ZodOptional<z.ZodString>;
|
|
22328
22368
|
position: z.ZodOptional<z.ZodEnum<{
|
|
22329
22369
|
top: "top";
|
|
22370
|
+
bottom: "bottom";
|
|
22330
22371
|
left: "left";
|
|
22331
22372
|
right: "right";
|
|
22332
|
-
bottom: "bottom";
|
|
22333
22373
|
topRight: "topRight";
|
|
22334
22374
|
bottomRight: "bottomRight";
|
|
22335
22375
|
bottomLeft: "bottomLeft";
|
|
@@ -22366,9 +22406,9 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
22366
22406
|
background: z.ZodOptional<z.ZodString>;
|
|
22367
22407
|
position: z.ZodOptional<z.ZodEnum<{
|
|
22368
22408
|
top: "top";
|
|
22409
|
+
bottom: "bottom";
|
|
22369
22410
|
left: "left";
|
|
22370
22411
|
right: "right";
|
|
22371
|
-
bottom: "bottom";
|
|
22372
22412
|
topRight: "topRight";
|
|
22373
22413
|
bottomRight: "bottomRight";
|
|
22374
22414
|
bottomLeft: "bottomLeft";
|
|
@@ -22714,9 +22754,9 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
22714
22754
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
22715
22755
|
position: z.ZodOptional<z.ZodEnum<{
|
|
22716
22756
|
top: "top";
|
|
22757
|
+
bottom: "bottom";
|
|
22717
22758
|
left: "left";
|
|
22718
22759
|
right: "right";
|
|
22719
|
-
bottom: "bottom";
|
|
22720
22760
|
topRight: "topRight";
|
|
22721
22761
|
bottomRight: "bottomRight";
|
|
22722
22762
|
bottomLeft: "bottomLeft";
|
|
@@ -23290,6 +23330,14 @@ export declare const renderResponseDataSchema: z.ZodObject<{
|
|
|
23290
23330
|
local: "local";
|
|
23291
23331
|
mount: "mount";
|
|
23292
23332
|
}>>;
|
|
23333
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
23334
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
23335
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
23336
|
+
}, z.core.$strict>>;
|
|
23337
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
23338
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
23339
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
23340
|
+
}, z.core.$strict>>;
|
|
23293
23341
|
}, z.core.$strict>>;
|
|
23294
23342
|
created: z.ZodOptional<z.ZodString>;
|
|
23295
23343
|
updated: z.ZodOptional<z.ZodString>;
|
|
@@ -23640,6 +23688,7 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
23640
23688
|
}, z.core.$strict>>;
|
|
23641
23689
|
margin: z.ZodOptional<z.ZodObject<{
|
|
23642
23690
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
23691
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
23643
23692
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
23644
23693
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
23645
23694
|
}, z.core.$strict>>;
|
|
@@ -23656,9 +23705,9 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
23656
23705
|
background: z.ZodOptional<z.ZodString>;
|
|
23657
23706
|
position: z.ZodOptional<z.ZodEnum<{
|
|
23658
23707
|
top: "top";
|
|
23708
|
+
bottom: "bottom";
|
|
23659
23709
|
left: "left";
|
|
23660
23710
|
right: "right";
|
|
23661
|
-
bottom: "bottom";
|
|
23662
23711
|
topRight: "topRight";
|
|
23663
23712
|
bottomRight: "bottomRight";
|
|
23664
23713
|
bottomLeft: "bottomLeft";
|
|
@@ -23695,9 +23744,9 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
23695
23744
|
background: z.ZodOptional<z.ZodString>;
|
|
23696
23745
|
position: z.ZodOptional<z.ZodEnum<{
|
|
23697
23746
|
top: "top";
|
|
23747
|
+
bottom: "bottom";
|
|
23698
23748
|
left: "left";
|
|
23699
23749
|
right: "right";
|
|
23700
|
-
bottom: "bottom";
|
|
23701
23750
|
topRight: "topRight";
|
|
23702
23751
|
bottomRight: "bottomRight";
|
|
23703
23752
|
bottomLeft: "bottomLeft";
|
|
@@ -24043,9 +24092,9 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
24043
24092
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
24044
24093
|
position: z.ZodOptional<z.ZodEnum<{
|
|
24045
24094
|
top: "top";
|
|
24095
|
+
bottom: "bottom";
|
|
24046
24096
|
left: "left";
|
|
24047
24097
|
right: "right";
|
|
24048
|
-
bottom: "bottom";
|
|
24049
24098
|
topRight: "topRight";
|
|
24050
24099
|
bottomRight: "bottomRight";
|
|
24051
24100
|
bottomLeft: "bottomLeft";
|
|
@@ -24619,6 +24668,14 @@ export declare const renderresponseRenderResponseSchema: z.ZodObject<{
|
|
|
24619
24668
|
local: "local";
|
|
24620
24669
|
mount: "mount";
|
|
24621
24670
|
}>>;
|
|
24671
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
24672
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
24673
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
24674
|
+
}, z.core.$strict>>;
|
|
24675
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
24676
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
24677
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
24678
|
+
}, z.core.$strict>>;
|
|
24622
24679
|
}, z.core.$strict>>;
|
|
24623
24680
|
created: z.ZodOptional<z.ZodString>;
|
|
24624
24681
|
updated: z.ZodOptional<z.ZodString>;
|
|
@@ -24967,6 +25024,7 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
24967
25024
|
}, z.core.$strict>>;
|
|
24968
25025
|
margin: z.ZodOptional<z.ZodObject<{
|
|
24969
25026
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
25027
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
24970
25028
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
24971
25029
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
24972
25030
|
}, z.core.$strict>>;
|
|
@@ -24983,9 +25041,9 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
24983
25041
|
background: z.ZodOptional<z.ZodString>;
|
|
24984
25042
|
position: z.ZodOptional<z.ZodEnum<{
|
|
24985
25043
|
top: "top";
|
|
25044
|
+
bottom: "bottom";
|
|
24986
25045
|
left: "left";
|
|
24987
25046
|
right: "right";
|
|
24988
|
-
bottom: "bottom";
|
|
24989
25047
|
topRight: "topRight";
|
|
24990
25048
|
bottomRight: "bottomRight";
|
|
24991
25049
|
bottomLeft: "bottomLeft";
|
|
@@ -25022,9 +25080,9 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
25022
25080
|
background: z.ZodOptional<z.ZodString>;
|
|
25023
25081
|
position: z.ZodOptional<z.ZodEnum<{
|
|
25024
25082
|
top: "top";
|
|
25083
|
+
bottom: "bottom";
|
|
25025
25084
|
left: "left";
|
|
25026
25085
|
right: "right";
|
|
25027
|
-
bottom: "bottom";
|
|
25028
25086
|
topRight: "topRight";
|
|
25029
25087
|
bottomRight: "bottomRight";
|
|
25030
25088
|
bottomLeft: "bottomLeft";
|
|
@@ -25370,9 +25428,9 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
25370
25428
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
25371
25429
|
position: z.ZodOptional<z.ZodEnum<{
|
|
25372
25430
|
top: "top";
|
|
25431
|
+
bottom: "bottom";
|
|
25373
25432
|
left: "left";
|
|
25374
25433
|
right: "right";
|
|
25375
|
-
bottom: "bottom";
|
|
25376
25434
|
topRight: "topRight";
|
|
25377
25435
|
bottomRight: "bottomRight";
|
|
25378
25436
|
bottomLeft: "bottomLeft";
|
|
@@ -25946,6 +26004,14 @@ export declare const renderResponseSchema: z.ZodObject<{
|
|
|
25946
26004
|
local: "local";
|
|
25947
26005
|
mount: "mount";
|
|
25948
26006
|
}>>;
|
|
26007
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
26008
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
26009
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
26010
|
+
}, z.core.$strict>>;
|
|
26011
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
26012
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
26013
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
26014
|
+
}, z.core.$strict>>;
|
|
25949
26015
|
}, z.core.$strict>>;
|
|
25950
26016
|
created: z.ZodOptional<z.ZodString>;
|
|
25951
26017
|
updated: z.ZodOptional<z.ZodString>;
|
|
@@ -26279,6 +26345,7 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
26279
26345
|
}, z.core.$strict>>;
|
|
26280
26346
|
margin: z.ZodOptional<z.ZodObject<{
|
|
26281
26347
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
26348
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
26282
26349
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
26283
26350
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
26284
26351
|
}, z.core.$strict>>;
|
|
@@ -26295,9 +26362,9 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
26295
26362
|
background: z.ZodOptional<z.ZodString>;
|
|
26296
26363
|
position: z.ZodOptional<z.ZodEnum<{
|
|
26297
26364
|
top: "top";
|
|
26365
|
+
bottom: "bottom";
|
|
26298
26366
|
left: "left";
|
|
26299
26367
|
right: "right";
|
|
26300
|
-
bottom: "bottom";
|
|
26301
26368
|
topRight: "topRight";
|
|
26302
26369
|
bottomRight: "bottomRight";
|
|
26303
26370
|
bottomLeft: "bottomLeft";
|
|
@@ -26334,9 +26401,9 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
26334
26401
|
background: z.ZodOptional<z.ZodString>;
|
|
26335
26402
|
position: z.ZodOptional<z.ZodEnum<{
|
|
26336
26403
|
top: "top";
|
|
26404
|
+
bottom: "bottom";
|
|
26337
26405
|
left: "left";
|
|
26338
26406
|
right: "right";
|
|
26339
|
-
bottom: "bottom";
|
|
26340
26407
|
topRight: "topRight";
|
|
26341
26408
|
bottomRight: "bottomRight";
|
|
26342
26409
|
bottomLeft: "bottomLeft";
|
|
@@ -26682,9 +26749,9 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
26682
26749
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
26683
26750
|
position: z.ZodOptional<z.ZodEnum<{
|
|
26684
26751
|
top: "top";
|
|
26752
|
+
bottom: "bottom";
|
|
26685
26753
|
left: "left";
|
|
26686
26754
|
right: "right";
|
|
26687
|
-
bottom: "bottom";
|
|
26688
26755
|
topRight: "topRight";
|
|
26689
26756
|
bottomRight: "bottomRight";
|
|
26690
26757
|
bottomLeft: "bottomLeft";
|
|
@@ -27258,6 +27325,14 @@ export declare const templatedataresponsedataTemplateDataResponseDataSchema: z.Z
|
|
|
27258
27325
|
local: "local";
|
|
27259
27326
|
mount: "mount";
|
|
27260
27327
|
}>>;
|
|
27328
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
27329
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
27330
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
27331
|
+
}, z.core.$strict>>;
|
|
27332
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
27333
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
27334
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
27335
|
+
}, z.core.$strict>>;
|
|
27261
27336
|
}, z.core.$strict>;
|
|
27262
27337
|
}, z.core.$strict>;
|
|
27263
27338
|
export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
@@ -27585,6 +27660,7 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
27585
27660
|
}, z.core.$strict>>;
|
|
27586
27661
|
margin: z.ZodOptional<z.ZodObject<{
|
|
27587
27662
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
27663
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
27588
27664
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
27589
27665
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
27590
27666
|
}, z.core.$strict>>;
|
|
@@ -27601,9 +27677,9 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
27601
27677
|
background: z.ZodOptional<z.ZodString>;
|
|
27602
27678
|
position: z.ZodOptional<z.ZodEnum<{
|
|
27603
27679
|
top: "top";
|
|
27680
|
+
bottom: "bottom";
|
|
27604
27681
|
left: "left";
|
|
27605
27682
|
right: "right";
|
|
27606
|
-
bottom: "bottom";
|
|
27607
27683
|
topRight: "topRight";
|
|
27608
27684
|
bottomRight: "bottomRight";
|
|
27609
27685
|
bottomLeft: "bottomLeft";
|
|
@@ -27640,9 +27716,9 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
27640
27716
|
background: z.ZodOptional<z.ZodString>;
|
|
27641
27717
|
position: z.ZodOptional<z.ZodEnum<{
|
|
27642
27718
|
top: "top";
|
|
27719
|
+
bottom: "bottom";
|
|
27643
27720
|
left: "left";
|
|
27644
27721
|
right: "right";
|
|
27645
|
-
bottom: "bottom";
|
|
27646
27722
|
topRight: "topRight";
|
|
27647
27723
|
bottomRight: "bottomRight";
|
|
27648
27724
|
bottomLeft: "bottomLeft";
|
|
@@ -27988,9 +28064,9 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
27988
28064
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
27989
28065
|
position: z.ZodOptional<z.ZodEnum<{
|
|
27990
28066
|
top: "top";
|
|
28067
|
+
bottom: "bottom";
|
|
27991
28068
|
left: "left";
|
|
27992
28069
|
right: "right";
|
|
27993
|
-
bottom: "bottom";
|
|
27994
28070
|
topRight: "topRight";
|
|
27995
28071
|
bottomRight: "bottomRight";
|
|
27996
28072
|
bottomLeft: "bottomLeft";
|
|
@@ -28564,6 +28640,14 @@ export declare const templateDataResponseDataSchema: z.ZodObject<{
|
|
|
28564
28640
|
local: "local";
|
|
28565
28641
|
mount: "mount";
|
|
28566
28642
|
}>>;
|
|
28643
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
28644
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
28645
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
28646
|
+
}, z.core.$strict>>;
|
|
28647
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
28648
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
28649
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
28650
|
+
}, z.core.$strict>>;
|
|
28567
28651
|
}, z.core.$strict>;
|
|
28568
28652
|
}, z.core.$strict>;
|
|
28569
28653
|
/**
|
|
@@ -28897,6 +28981,7 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
28897
28981
|
}, z.core.$strict>>;
|
|
28898
28982
|
margin: z.ZodOptional<z.ZodObject<{
|
|
28899
28983
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
28984
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
28900
28985
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
28901
28986
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
28902
28987
|
}, z.core.$strict>>;
|
|
@@ -28913,9 +28998,9 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
28913
28998
|
background: z.ZodOptional<z.ZodString>;
|
|
28914
28999
|
position: z.ZodOptional<z.ZodEnum<{
|
|
28915
29000
|
top: "top";
|
|
29001
|
+
bottom: "bottom";
|
|
28916
29002
|
left: "left";
|
|
28917
29003
|
right: "right";
|
|
28918
|
-
bottom: "bottom";
|
|
28919
29004
|
topRight: "topRight";
|
|
28920
29005
|
bottomRight: "bottomRight";
|
|
28921
29006
|
bottomLeft: "bottomLeft";
|
|
@@ -28952,9 +29037,9 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
28952
29037
|
background: z.ZodOptional<z.ZodString>;
|
|
28953
29038
|
position: z.ZodOptional<z.ZodEnum<{
|
|
28954
29039
|
top: "top";
|
|
29040
|
+
bottom: "bottom";
|
|
28955
29041
|
left: "left";
|
|
28956
29042
|
right: "right";
|
|
28957
|
-
bottom: "bottom";
|
|
28958
29043
|
topRight: "topRight";
|
|
28959
29044
|
bottomRight: "bottomRight";
|
|
28960
29045
|
bottomLeft: "bottomLeft";
|
|
@@ -29300,9 +29385,9 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
29300
29385
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
29301
29386
|
position: z.ZodOptional<z.ZodEnum<{
|
|
29302
29387
|
top: "top";
|
|
29388
|
+
bottom: "bottom";
|
|
29303
29389
|
left: "left";
|
|
29304
29390
|
right: "right";
|
|
29305
|
-
bottom: "bottom";
|
|
29306
29391
|
topRight: "topRight";
|
|
29307
29392
|
bottomRight: "bottomRight";
|
|
29308
29393
|
bottomLeft: "bottomLeft";
|
|
@@ -29876,6 +29961,14 @@ export declare const templatedataresponseTemplateDataResponseSchema: z.ZodObject
|
|
|
29876
29961
|
local: "local";
|
|
29877
29962
|
mount: "mount";
|
|
29878
29963
|
}>>;
|
|
29964
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
29965
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
29966
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
29967
|
+
}, z.core.$strict>>;
|
|
29968
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
29969
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
29970
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
29971
|
+
}, z.core.$strict>>;
|
|
29879
29972
|
}, z.core.$strict>;
|
|
29880
29973
|
}, z.core.$strict>;
|
|
29881
29974
|
}, z.core.$strict>;
|
|
@@ -30207,6 +30300,7 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
30207
30300
|
}, z.core.$strict>>;
|
|
30208
30301
|
margin: z.ZodOptional<z.ZodObject<{
|
|
30209
30302
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
30303
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
30210
30304
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
30211
30305
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
30212
30306
|
}, z.core.$strict>>;
|
|
@@ -30223,9 +30317,9 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
30223
30317
|
background: z.ZodOptional<z.ZodString>;
|
|
30224
30318
|
position: z.ZodOptional<z.ZodEnum<{
|
|
30225
30319
|
top: "top";
|
|
30320
|
+
bottom: "bottom";
|
|
30226
30321
|
left: "left";
|
|
30227
30322
|
right: "right";
|
|
30228
|
-
bottom: "bottom";
|
|
30229
30323
|
topRight: "topRight";
|
|
30230
30324
|
bottomRight: "bottomRight";
|
|
30231
30325
|
bottomLeft: "bottomLeft";
|
|
@@ -30262,9 +30356,9 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
30262
30356
|
background: z.ZodOptional<z.ZodString>;
|
|
30263
30357
|
position: z.ZodOptional<z.ZodEnum<{
|
|
30264
30358
|
top: "top";
|
|
30359
|
+
bottom: "bottom";
|
|
30265
30360
|
left: "left";
|
|
30266
30361
|
right: "right";
|
|
30267
|
-
bottom: "bottom";
|
|
30268
30362
|
topRight: "topRight";
|
|
30269
30363
|
bottomRight: "bottomRight";
|
|
30270
30364
|
bottomLeft: "bottomLeft";
|
|
@@ -30610,9 +30704,9 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
30610
30704
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
30611
30705
|
position: z.ZodOptional<z.ZodEnum<{
|
|
30612
30706
|
top: "top";
|
|
30707
|
+
bottom: "bottom";
|
|
30613
30708
|
left: "left";
|
|
30614
30709
|
right: "right";
|
|
30615
|
-
bottom: "bottom";
|
|
30616
30710
|
topRight: "topRight";
|
|
30617
30711
|
bottomRight: "bottomRight";
|
|
30618
30712
|
bottomLeft: "bottomLeft";
|
|
@@ -31186,6 +31280,14 @@ export declare const templateDataResponseSchema: z.ZodObject<{
|
|
|
31186
31280
|
local: "local";
|
|
31187
31281
|
mount: "mount";
|
|
31188
31282
|
}>>;
|
|
31283
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
31284
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
31285
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
31286
|
+
}, z.core.$strict>>;
|
|
31287
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
31288
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
31289
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
31290
|
+
}, z.core.$strict>>;
|
|
31189
31291
|
}, z.core.$strict>;
|
|
31190
31292
|
}, z.core.$strict>;
|
|
31191
31293
|
}, z.core.$strict>;
|
|
@@ -31515,6 +31617,7 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
31515
31617
|
}, z.core.$strict>>;
|
|
31516
31618
|
margin: z.ZodOptional<z.ZodObject<{
|
|
31517
31619
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
31620
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
31518
31621
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
31519
31622
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
31520
31623
|
}, z.core.$strict>>;
|
|
@@ -31531,9 +31634,9 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
31531
31634
|
background: z.ZodOptional<z.ZodString>;
|
|
31532
31635
|
position: z.ZodOptional<z.ZodEnum<{
|
|
31533
31636
|
top: "top";
|
|
31637
|
+
bottom: "bottom";
|
|
31534
31638
|
left: "left";
|
|
31535
31639
|
right: "right";
|
|
31536
|
-
bottom: "bottom";
|
|
31537
31640
|
topRight: "topRight";
|
|
31538
31641
|
bottomRight: "bottomRight";
|
|
31539
31642
|
bottomLeft: "bottomLeft";
|
|
@@ -31570,9 +31673,9 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
31570
31673
|
background: z.ZodOptional<z.ZodString>;
|
|
31571
31674
|
position: z.ZodOptional<z.ZodEnum<{
|
|
31572
31675
|
top: "top";
|
|
31676
|
+
bottom: "bottom";
|
|
31573
31677
|
left: "left";
|
|
31574
31678
|
right: "right";
|
|
31575
|
-
bottom: "bottom";
|
|
31576
31679
|
topRight: "topRight";
|
|
31577
31680
|
bottomRight: "bottomRight";
|
|
31578
31681
|
bottomLeft: "bottomLeft";
|
|
@@ -31918,9 +32021,9 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
31918
32021
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
31919
32022
|
position: z.ZodOptional<z.ZodEnum<{
|
|
31920
32023
|
top: "top";
|
|
32024
|
+
bottom: "bottom";
|
|
31921
32025
|
left: "left";
|
|
31922
32026
|
right: "right";
|
|
31923
|
-
bottom: "bottom";
|
|
31924
32027
|
topRight: "topRight";
|
|
31925
32028
|
bottomRight: "bottomRight";
|
|
31926
32029
|
bottomLeft: "bottomLeft";
|
|
@@ -32494,6 +32597,14 @@ export declare const templateTemplateSchema: z.ZodObject<{
|
|
|
32494
32597
|
local: "local";
|
|
32495
32598
|
mount: "mount";
|
|
32496
32599
|
}>>;
|
|
32600
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
32601
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
32602
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
32603
|
+
}, z.core.$strict>>;
|
|
32604
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
32605
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
32606
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
32607
|
+
}, z.core.$strict>>;
|
|
32497
32608
|
}, z.core.$strict>>;
|
|
32498
32609
|
}, z.core.$strict>;
|
|
32499
32610
|
export declare const templateSchema: z.ZodObject<{
|
|
@@ -32819,6 +32930,7 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
32819
32930
|
}, z.core.$strict>>;
|
|
32820
32931
|
margin: z.ZodOptional<z.ZodObject<{
|
|
32821
32932
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
32933
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
32822
32934
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
32823
32935
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
32824
32936
|
}, z.core.$strict>>;
|
|
@@ -32835,9 +32947,9 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
32835
32947
|
background: z.ZodOptional<z.ZodString>;
|
|
32836
32948
|
position: z.ZodOptional<z.ZodEnum<{
|
|
32837
32949
|
top: "top";
|
|
32950
|
+
bottom: "bottom";
|
|
32838
32951
|
left: "left";
|
|
32839
32952
|
right: "right";
|
|
32840
|
-
bottom: "bottom";
|
|
32841
32953
|
topRight: "topRight";
|
|
32842
32954
|
bottomRight: "bottomRight";
|
|
32843
32955
|
bottomLeft: "bottomLeft";
|
|
@@ -32874,9 +32986,9 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
32874
32986
|
background: z.ZodOptional<z.ZodString>;
|
|
32875
32987
|
position: z.ZodOptional<z.ZodEnum<{
|
|
32876
32988
|
top: "top";
|
|
32989
|
+
bottom: "bottom";
|
|
32877
32990
|
left: "left";
|
|
32878
32991
|
right: "right";
|
|
32879
|
-
bottom: "bottom";
|
|
32880
32992
|
topRight: "topRight";
|
|
32881
32993
|
bottomRight: "bottomRight";
|
|
32882
32994
|
bottomLeft: "bottomLeft";
|
|
@@ -33222,9 +33334,9 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
33222
33334
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
33223
33335
|
position: z.ZodOptional<z.ZodEnum<{
|
|
33224
33336
|
top: "top";
|
|
33337
|
+
bottom: "bottom";
|
|
33225
33338
|
left: "left";
|
|
33226
33339
|
right: "right";
|
|
33227
|
-
bottom: "bottom";
|
|
33228
33340
|
topRight: "topRight";
|
|
33229
33341
|
bottomRight: "bottomRight";
|
|
33230
33342
|
bottomLeft: "bottomLeft";
|
|
@@ -33798,6 +33910,14 @@ export declare const templateSchema: z.ZodObject<{
|
|
|
33798
33910
|
local: "local";
|
|
33799
33911
|
mount: "mount";
|
|
33800
33912
|
}>>;
|
|
33913
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
33914
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
33915
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
33916
|
+
}, z.core.$strict>>;
|
|
33917
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
33918
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
33919
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
33920
|
+
}, z.core.$strict>>;
|
|
33801
33921
|
}, z.core.$strict>>;
|
|
33802
33922
|
}, z.core.$strict>;
|
|
33803
33923
|
export declare const postRenderRequest: z.ZodObject<{
|
|
@@ -34122,6 +34242,7 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
34122
34242
|
}, z.core.$strict>>;
|
|
34123
34243
|
margin: z.ZodOptional<z.ZodObject<{
|
|
34124
34244
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
34245
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
34125
34246
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
34126
34247
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
34127
34248
|
}, z.core.$strict>>;
|
|
@@ -34138,9 +34259,9 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
34138
34259
|
background: z.ZodOptional<z.ZodString>;
|
|
34139
34260
|
position: z.ZodOptional<z.ZodEnum<{
|
|
34140
34261
|
top: "top";
|
|
34262
|
+
bottom: "bottom";
|
|
34141
34263
|
left: "left";
|
|
34142
34264
|
right: "right";
|
|
34143
|
-
bottom: "bottom";
|
|
34144
34265
|
topRight: "topRight";
|
|
34145
34266
|
bottomRight: "bottomRight";
|
|
34146
34267
|
bottomLeft: "bottomLeft";
|
|
@@ -34177,9 +34298,9 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
34177
34298
|
background: z.ZodOptional<z.ZodString>;
|
|
34178
34299
|
position: z.ZodOptional<z.ZodEnum<{
|
|
34179
34300
|
top: "top";
|
|
34301
|
+
bottom: "bottom";
|
|
34180
34302
|
left: "left";
|
|
34181
34303
|
right: "right";
|
|
34182
|
-
bottom: "bottom";
|
|
34183
34304
|
topRight: "topRight";
|
|
34184
34305
|
bottomRight: "bottomRight";
|
|
34185
34306
|
bottomLeft: "bottomLeft";
|
|
@@ -34525,9 +34646,9 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
34525
34646
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
34526
34647
|
position: z.ZodOptional<z.ZodEnum<{
|
|
34527
34648
|
top: "top";
|
|
34649
|
+
bottom: "bottom";
|
|
34528
34650
|
left: "left";
|
|
34529
34651
|
right: "right";
|
|
34530
|
-
bottom: "bottom";
|
|
34531
34652
|
topRight: "topRight";
|
|
34532
34653
|
bottomRight: "bottomRight";
|
|
34533
34654
|
bottomLeft: "bottomLeft";
|
|
@@ -35101,6 +35222,14 @@ export declare const postRenderRequest: z.ZodObject<{
|
|
|
35101
35222
|
local: "local";
|
|
35102
35223
|
mount: "mount";
|
|
35103
35224
|
}>>;
|
|
35225
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
35226
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
35227
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
35228
|
+
}, z.core.$strict>>;
|
|
35229
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
35230
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
35231
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
35232
|
+
}, z.core.$strict>>;
|
|
35104
35233
|
}, z.core.$strict>;
|
|
35105
35234
|
path: z.ZodOptional<z.ZodNever>;
|
|
35106
35235
|
query: z.ZodOptional<z.ZodNever>;
|
|
@@ -35472,6 +35601,7 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
35472
35601
|
}, z.core.$strict>>;
|
|
35473
35602
|
margin: z.ZodOptional<z.ZodObject<{
|
|
35474
35603
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
35604
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
35475
35605
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
35476
35606
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
35477
35607
|
}, z.core.$strict>>;
|
|
@@ -35488,9 +35618,9 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
35488
35618
|
background: z.ZodOptional<z.ZodString>;
|
|
35489
35619
|
position: z.ZodOptional<z.ZodEnum<{
|
|
35490
35620
|
top: "top";
|
|
35621
|
+
bottom: "bottom";
|
|
35491
35622
|
left: "left";
|
|
35492
35623
|
right: "right";
|
|
35493
|
-
bottom: "bottom";
|
|
35494
35624
|
topRight: "topRight";
|
|
35495
35625
|
bottomRight: "bottomRight";
|
|
35496
35626
|
bottomLeft: "bottomLeft";
|
|
@@ -35527,9 +35657,9 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
35527
35657
|
background: z.ZodOptional<z.ZodString>;
|
|
35528
35658
|
position: z.ZodOptional<z.ZodEnum<{
|
|
35529
35659
|
top: "top";
|
|
35660
|
+
bottom: "bottom";
|
|
35530
35661
|
left: "left";
|
|
35531
35662
|
right: "right";
|
|
35532
|
-
bottom: "bottom";
|
|
35533
35663
|
topRight: "topRight";
|
|
35534
35664
|
bottomRight: "bottomRight";
|
|
35535
35665
|
bottomLeft: "bottomLeft";
|
|
@@ -35875,9 +36005,9 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
35875
36005
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
35876
36006
|
position: z.ZodOptional<z.ZodEnum<{
|
|
35877
36007
|
top: "top";
|
|
36008
|
+
bottom: "bottom";
|
|
35878
36009
|
left: "left";
|
|
35879
36010
|
right: "right";
|
|
35880
|
-
bottom: "bottom";
|
|
35881
36011
|
topRight: "topRight";
|
|
35882
36012
|
bottomRight: "bottomRight";
|
|
35883
36013
|
bottomLeft: "bottomLeft";
|
|
@@ -36451,6 +36581,14 @@ export declare const getRenderResponse: z.ZodObject<{
|
|
|
36451
36581
|
local: "local";
|
|
36452
36582
|
mount: "mount";
|
|
36453
36583
|
}>>;
|
|
36584
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
36585
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
36586
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
36587
|
+
}, z.core.$strict>>;
|
|
36588
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
36589
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
36590
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
36591
|
+
}, z.core.$strict>>;
|
|
36454
36592
|
}, z.core.$strict>>;
|
|
36455
36593
|
created: z.ZodOptional<z.ZodString>;
|
|
36456
36594
|
updated: z.ZodOptional<z.ZodString>;
|
|
@@ -36801,6 +36939,7 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
36801
36939
|
}, z.core.$strict>>;
|
|
36802
36940
|
margin: z.ZodOptional<z.ZodObject<{
|
|
36803
36941
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
36942
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
36804
36943
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
36805
36944
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
36806
36945
|
}, z.core.$strict>>;
|
|
@@ -36817,9 +36956,9 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
36817
36956
|
background: z.ZodOptional<z.ZodString>;
|
|
36818
36957
|
position: z.ZodOptional<z.ZodEnum<{
|
|
36819
36958
|
top: "top";
|
|
36959
|
+
bottom: "bottom";
|
|
36820
36960
|
left: "left";
|
|
36821
36961
|
right: "right";
|
|
36822
|
-
bottom: "bottom";
|
|
36823
36962
|
topRight: "topRight";
|
|
36824
36963
|
bottomRight: "bottomRight";
|
|
36825
36964
|
bottomLeft: "bottomLeft";
|
|
@@ -36856,9 +36995,9 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
36856
36995
|
background: z.ZodOptional<z.ZodString>;
|
|
36857
36996
|
position: z.ZodOptional<z.ZodEnum<{
|
|
36858
36997
|
top: "top";
|
|
36998
|
+
bottom: "bottom";
|
|
36859
36999
|
left: "left";
|
|
36860
37000
|
right: "right";
|
|
36861
|
-
bottom: "bottom";
|
|
36862
37001
|
topRight: "topRight";
|
|
36863
37002
|
bottomRight: "bottomRight";
|
|
36864
37003
|
bottomLeft: "bottomLeft";
|
|
@@ -37204,9 +37343,9 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
37204
37343
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
37205
37344
|
position: z.ZodOptional<z.ZodEnum<{
|
|
37206
37345
|
top: "top";
|
|
37346
|
+
bottom: "bottom";
|
|
37207
37347
|
left: "left";
|
|
37208
37348
|
right: "right";
|
|
37209
|
-
bottom: "bottom";
|
|
37210
37349
|
topRight: "topRight";
|
|
37211
37350
|
bottomRight: "bottomRight";
|
|
37212
37351
|
bottomLeft: "bottomLeft";
|
|
@@ -37780,6 +37919,14 @@ export declare const postTemplateRequest: z.ZodObject<{
|
|
|
37780
37919
|
local: "local";
|
|
37781
37920
|
mount: "mount";
|
|
37782
37921
|
}>>;
|
|
37922
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
37923
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
37924
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
37925
|
+
}, z.core.$strict>>;
|
|
37926
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
37927
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
37928
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
37929
|
+
}, z.core.$strict>>;
|
|
37783
37930
|
}, z.core.$strict>>;
|
|
37784
37931
|
}, z.core.$strict>;
|
|
37785
37932
|
path: z.ZodOptional<z.ZodNever>;
|
|
@@ -38145,6 +38292,7 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
38145
38292
|
}, z.core.$strict>>;
|
|
38146
38293
|
margin: z.ZodOptional<z.ZodObject<{
|
|
38147
38294
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
38295
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
38148
38296
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
38149
38297
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
38150
38298
|
}, z.core.$strict>>;
|
|
@@ -38161,9 +38309,9 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
38161
38309
|
background: z.ZodOptional<z.ZodString>;
|
|
38162
38310
|
position: z.ZodOptional<z.ZodEnum<{
|
|
38163
38311
|
top: "top";
|
|
38312
|
+
bottom: "bottom";
|
|
38164
38313
|
left: "left";
|
|
38165
38314
|
right: "right";
|
|
38166
|
-
bottom: "bottom";
|
|
38167
38315
|
topRight: "topRight";
|
|
38168
38316
|
bottomRight: "bottomRight";
|
|
38169
38317
|
bottomLeft: "bottomLeft";
|
|
@@ -38200,9 +38348,9 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
38200
38348
|
background: z.ZodOptional<z.ZodString>;
|
|
38201
38349
|
position: z.ZodOptional<z.ZodEnum<{
|
|
38202
38350
|
top: "top";
|
|
38351
|
+
bottom: "bottom";
|
|
38203
38352
|
left: "left";
|
|
38204
38353
|
right: "right";
|
|
38205
|
-
bottom: "bottom";
|
|
38206
38354
|
topRight: "topRight";
|
|
38207
38355
|
bottomRight: "bottomRight";
|
|
38208
38356
|
bottomLeft: "bottomLeft";
|
|
@@ -38548,9 +38696,9 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
38548
38696
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
38549
38697
|
position: z.ZodOptional<z.ZodEnum<{
|
|
38550
38698
|
top: "top";
|
|
38699
|
+
bottom: "bottom";
|
|
38551
38700
|
left: "left";
|
|
38552
38701
|
right: "right";
|
|
38553
|
-
bottom: "bottom";
|
|
38554
38702
|
topRight: "topRight";
|
|
38555
38703
|
bottomRight: "bottomRight";
|
|
38556
38704
|
bottomLeft: "bottomLeft";
|
|
@@ -39124,6 +39272,14 @@ export declare const getTemplateResponse: z.ZodObject<{
|
|
|
39124
39272
|
local: "local";
|
|
39125
39273
|
mount: "mount";
|
|
39126
39274
|
}>>;
|
|
39275
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
39276
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
39277
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
39278
|
+
}, z.core.$strict>>;
|
|
39279
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
39280
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
39281
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
39282
|
+
}, z.core.$strict>>;
|
|
39127
39283
|
}, z.core.$strict>;
|
|
39128
39284
|
}, z.core.$strict>;
|
|
39129
39285
|
}, z.core.$strict>;
|
|
@@ -39451,6 +39607,7 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
39451
39607
|
}, z.core.$strict>>;
|
|
39452
39608
|
margin: z.ZodOptional<z.ZodObject<{
|
|
39453
39609
|
top: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
39610
|
+
bottom: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
39454
39611
|
left: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
39455
39612
|
right: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
39456
39613
|
}, z.core.$strict>>;
|
|
@@ -39467,9 +39624,9 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
39467
39624
|
background: z.ZodOptional<z.ZodString>;
|
|
39468
39625
|
position: z.ZodOptional<z.ZodEnum<{
|
|
39469
39626
|
top: "top";
|
|
39627
|
+
bottom: "bottom";
|
|
39470
39628
|
left: "left";
|
|
39471
39629
|
right: "right";
|
|
39472
|
-
bottom: "bottom";
|
|
39473
39630
|
topRight: "topRight";
|
|
39474
39631
|
bottomRight: "bottomRight";
|
|
39475
39632
|
bottomLeft: "bottomLeft";
|
|
@@ -39506,9 +39663,9 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
39506
39663
|
background: z.ZodOptional<z.ZodString>;
|
|
39507
39664
|
position: z.ZodOptional<z.ZodEnum<{
|
|
39508
39665
|
top: "top";
|
|
39666
|
+
bottom: "bottom";
|
|
39509
39667
|
left: "left";
|
|
39510
39668
|
right: "right";
|
|
39511
|
-
bottom: "bottom";
|
|
39512
39669
|
topRight: "topRight";
|
|
39513
39670
|
bottomRight: "bottomRight";
|
|
39514
39671
|
bottomLeft: "bottomLeft";
|
|
@@ -39854,9 +40011,9 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
39854
40011
|
height: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>>;
|
|
39855
40012
|
position: z.ZodOptional<z.ZodEnum<{
|
|
39856
40013
|
top: "top";
|
|
40014
|
+
bottom: "bottom";
|
|
39857
40015
|
left: "left";
|
|
39858
40016
|
right: "right";
|
|
39859
|
-
bottom: "bottom";
|
|
39860
40017
|
topRight: "topRight";
|
|
39861
40018
|
bottomRight: "bottomRight";
|
|
39862
40019
|
bottomLeft: "bottomLeft";
|
|
@@ -40430,6 +40587,14 @@ export declare const putTemplateRequest: z.ZodObject<{
|
|
|
40430
40587
|
local: "local";
|
|
40431
40588
|
mount: "mount";
|
|
40432
40589
|
}>>;
|
|
40590
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
40591
|
+
poster: z.ZodOptional<z.ZodObject<{
|
|
40592
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
40593
|
+
}, z.core.$strict>>;
|
|
40594
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
40595
|
+
capture: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
40596
|
+
scale: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodNumber>;
|
|
40597
|
+
}, z.core.$strict>>;
|
|
40433
40598
|
}, z.core.$strict>>;
|
|
40434
40599
|
}, z.core.$strict>;
|
|
40435
40600
|
path: z.ZodObject<{
|