@shotstack/shotstack-studio 1.9.0 → 1.10.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.
@@ -1,5 +1,5 @@
1
- import * as e from "zod";
2
- const y = e.enum(["linear", "bezier", "constant"]), A = e.enum([
1
+ import * as t from "zod";
2
+ const x = t.enum(["linear", "bezier", "constant"]), y = t.enum([
3
3
  "ease",
4
4
  "easeIn",
5
5
  "easeOut",
@@ -28,272 +28,282 @@ const y = e.enum(["linear", "bezier", "constant"]), A = e.enum([
28
28
  "easeInOutExpo",
29
29
  "easeInOutCirc",
30
30
  "easeInOutBack"
31
- ]), o = e.object({
32
- from: e.number(),
33
- to: e.number(),
34
- start: e.number().min(0),
35
- length: e.number().positive(),
36
- interpolation: y.optional(),
37
- easing: A.optional()
38
- }), j = e.string().url("Invalid audio url format."), v = o.extend({
39
- from: e.number().min(0).max(1),
40
- to: e.number().min(0).max(1)
41
- }).array().or(e.number().min(0).max(1)), r = e.object({
42
- type: e.literal("audio"),
43
- src: j,
44
- trim: e.number().optional(),
45
- volume: v.optional()
46
- }), I = e.enum(["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]), s = e.object({
47
- type: e.literal("html"),
48
- html: e.string(),
49
- css: e.string(),
50
- width: e.number().positive().optional(),
51
- height: e.number().positive().optional(),
31
+ ]), o = t.object({
32
+ from: t.number(),
33
+ to: t.number(),
34
+ start: t.number().min(0),
35
+ length: t.number().positive(),
36
+ interpolation: x.optional(),
37
+ easing: y.optional()
38
+ }).strict(), A = t.string().url("Invalid audio url format."), j = o.extend({
39
+ from: t.number().min(0).max(1),
40
+ to: t.number().min(0).max(1)
41
+ }).array().or(t.number().min(0).max(1)), v = t.enum(["none", "fadeIn", "fadeOut", "fadeInFadeOut"]), r = t.object({
42
+ type: t.literal("audio"),
43
+ src: A,
44
+ trim: t.number().optional(),
45
+ volume: j.optional(),
46
+ effect: v.optional()
47
+ }).strict(), I = t.enum(["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]), s = t.object({
48
+ type: t.literal("html"),
49
+ html: t.string(),
50
+ css: t.string(),
51
+ width: t.number().positive().optional(),
52
+ height: t.number().positive().optional(),
52
53
  position: I.optional()
53
- }), C = e.string().url("Invalid image url format."), O = e.object({
54
- top: e.number().min(0).optional(),
55
- right: e.number().min(0).optional(),
56
- bottom: e.number().min(0).optional(),
57
- left: e.number().min(0).optional()
58
- }), m = e.object({
59
- type: e.literal("image"),
54
+ }).strict(), C = t.string().url("Invalid image url format."), O = t.object({
55
+ top: t.number().min(0).optional(),
56
+ right: t.number().min(0).optional(),
57
+ bottom: t.number().min(0).optional(),
58
+ left: t.number().min(0).optional()
59
+ }).strict(), c = t.object({
60
+ type: t.literal("image"),
60
61
  src: C,
61
62
  crop: O.optional()
62
- }), T = e.string().url("Invalid luma url format."), l = e.object({
63
- type: e.literal("luma"),
63
+ }).strict(), T = t.string().url("Invalid luma url format."), m = t.object({
64
+ type: t.literal("luma"),
64
65
  src: T
65
- }), a = e.string().regex(/^#[A-Fa-f0-9]{6}$/, "Invalid hex color format"), w = e.object({
66
- offset: e.number().min(0).max(1),
67
- color: a
68
- }).strict(), R = e.object({
69
- type: e.enum(["linear", "radial"]).default("linear"),
70
- angle: e.number().min(0).max(360).default(0),
71
- stops: e.array(w).min(2)
72
- }).strict(), k = e.object({
73
- family: e.string().default("Roboto"),
74
- size: e.number().min(8).max(500).default(48),
75
- weight: e.union([e.string(), e.number()]).default("400"),
76
- color: a.default("#000000"),
77
- opacity: e.number().min(0).max(1).default(1)
78
- }).strict(), F = e.object({
79
- letterSpacing: e.number().default(0),
80
- lineHeight: e.number().min(0.1).max(10).default(1.2),
81
- textTransform: e.enum(["none", "uppercase", "lowercase", "capitalize"]).default("none"),
82
- textDecoration: e.enum(["none", "underline", "line-through"]).default("none"),
66
+ }).strict(), i = t.string().regex(/^#[A-Fa-f0-9]{6}$/, "Invalid hex color format"), w = t.object({
67
+ offset: t.number().min(0).max(1),
68
+ color: i
69
+ }).strict(), R = t.object({
70
+ type: t.enum(["linear", "radial"]).default("linear"),
71
+ angle: t.number().min(0).max(360).default(0),
72
+ stops: t.array(w).min(2)
73
+ }).strict(), k = t.object({
74
+ family: t.string().default("Roboto"),
75
+ size: t.number().min(8).max(500).default(48),
76
+ weight: t.union([t.string(), t.number()]).default("400"),
77
+ color: i.default("#000000"),
78
+ opacity: t.number().min(0).max(1).default(1)
79
+ }).strict(), F = t.object({
80
+ letterSpacing: t.number().default(0),
81
+ lineHeight: t.number().min(0.1).max(10).default(1.2),
82
+ textTransform: t.enum(["none", "uppercase", "lowercase", "capitalize"]).default("none"),
83
+ textDecoration: t.enum(["none", "underline", "line-through"]).default("none"),
83
84
  gradient: R.optional()
84
- }).strict(), P = e.object({
85
- width: e.number().min(0).default(0),
86
- color: a.default("#000000"),
87
- opacity: e.number().min(0).max(1).default(1)
88
- }).strict(), L = e.object({
89
- offsetX: e.number().default(0),
90
- offsetY: e.number().default(0),
91
- blur: e.number().min(0).default(0),
92
- color: a.default("#000000"),
93
- opacity: e.number().min(0).max(1).default(0.5)
94
- }).strict(), Q = e.object({
95
- color: a.optional(),
96
- opacity: e.number().min(0).max(1).default(1),
97
- borderRadius: e.number().min(0).default(0)
98
- }).strict(), z = e.object({
99
- horizontal: e.enum(["left", "center", "right"]).default("left"),
100
- vertical: e.enum(["top", "middle", "bottom"]).default("middle")
101
- }).strict(), V = e.object({
102
- preset: e.enum(["fadeIn", "slideIn", "typewriter", "shift", "ascend", "movingLetters", "bounce", "elastic", "pulse"]),
103
- speed: e.number().min(0.1).max(10).default(1),
104
- duration: e.number().min(0.1).max(60).optional(),
105
- style: e.enum(["character", "word"]).optional(),
106
- direction: e.enum(["left", "right", "up", "down"]).optional()
107
- }).strict(), E = e.object({
108
- src: e.string().url("Invalid font URL"),
109
- family: e.string(),
110
- weight: e.union([e.string(), e.number()]).default("400")
111
- }).strict(), c = e.object({
112
- type: e.literal("rich-text"),
113
- text: e.string().max(1e4).default(""),
114
- width: e.number().min(1).max(8192).optional(),
115
- height: e.number().min(1).max(8192).optional(),
85
+ }).strict(), P = t.object({
86
+ width: t.number().min(0).default(0),
87
+ color: i.default("#000000"),
88
+ opacity: t.number().min(0).max(1).default(1)
89
+ }).strict(), Q = t.object({
90
+ offsetX: t.number().default(0),
91
+ offsetY: t.number().default(0),
92
+ blur: t.number().min(0).default(0),
93
+ color: i.default("#000000"),
94
+ opacity: t.number().min(0).max(1).default(0.5)
95
+ }).strict(), z = t.object({
96
+ width: t.number().min(0).default(0),
97
+ color: i.default("#000000"),
98
+ opacity: t.number().min(0).max(1).default(1)
99
+ }).strict(), L = t.object({
100
+ color: i.optional(),
101
+ opacity: t.number().min(0).max(1).default(1),
102
+ borderRadius: t.number().min(0).default(0),
103
+ border: z.optional()
104
+ }).strict(), V = t.union([
105
+ t.number().min(0),
106
+ t.object({
107
+ top: t.number().min(0).default(0),
108
+ right: t.number().min(0).default(0),
109
+ bottom: t.number().min(0).default(0),
110
+ left: t.number().min(0).default(0)
111
+ }).strict()
112
+ ]), E = t.object({
113
+ horizontal: t.enum(["left", "center", "right"]).default("left"),
114
+ vertical: t.enum(["top", "middle", "bottom"]).default("middle")
115
+ }).strict(), B = t.object({
116
+ preset: t.enum(["fadeIn", "slideIn", "typewriter", "shift", "ascend", "movingLetters", "bounce", "elastic", "pulse"]),
117
+ speed: t.number().min(0.1).max(10).default(1),
118
+ duration: t.number().min(0.1).max(60).optional(),
119
+ style: t.enum(["character", "word"]).optional(),
120
+ direction: t.enum(["left", "right", "up", "down"]).optional()
121
+ }).strict(), l = t.object({
122
+ type: t.literal("rich-text"),
123
+ text: t.string().max(1e4).default(""),
116
124
  font: k.optional(),
117
125
  style: F.optional(),
118
126
  stroke: P.optional(),
119
- shadow: L.optional(),
120
- background: Q.optional(),
121
- align: z.optional(),
122
- animation: V.optional(),
123
- cacheEnabled: e.boolean().default(!0),
124
- pixelRatio: e.number().min(1).max(4).default(2),
125
- customFonts: e.array(E).optional()
126
- }).strict(), g = e.string().regex(/^#([A-Fa-f0-9]{8}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})|transparent$/, "Invalid color format."), u = e.object({
127
- width: e.number().positive(),
128
- height: e.number().positive()
129
- }), p = e.object({
130
- radius: e.number().positive()
131
- }), f = e.object({
132
- length: e.number().positive(),
133
- thickness: e.number().positive()
134
- }), U = e.object({
135
- color: g,
136
- opacity: e.number().min(0).max(1)
137
- }), B = e.object({
138
- color: g,
139
- width: e.number().positive()
140
- }), b = e.object({
141
- type: e.literal("shape"),
142
- width: e.number().positive().optional(),
143
- height: e.number().positive().optional(),
144
- shape: e.enum(["rectangle", "circle", "line"]),
145
- fill: U.optional(),
146
- stroke: B.optional(),
127
+ shadow: Q.optional(),
128
+ background: L.optional(),
129
+ padding: V.optional(),
130
+ align: E.optional(),
131
+ animation: B.optional()
132
+ }).strict(), S = t.string().regex(/^#([A-Fa-f0-9]{8}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})|transparent$/, "Invalid color format."), u = t.object({
133
+ width: t.number().positive(),
134
+ height: t.number().positive()
135
+ }).strict(), p = t.object({
136
+ radius: t.number().positive()
137
+ }).strict(), f = t.object({
138
+ length: t.number().positive(),
139
+ thickness: t.number().positive()
140
+ }).strict(), H = t.object({
141
+ color: S,
142
+ opacity: t.number().min(0).max(1)
143
+ }).strict(), U = t.object({
144
+ color: S,
145
+ width: t.number().positive()
146
+ }).strict(), b = t.object({
147
+ type: t.literal("shape"),
148
+ width: t.number().positive().optional(),
149
+ height: t.number().positive().optional(),
150
+ shape: t.enum(["rectangle", "circle", "line"]),
151
+ fill: H.optional(),
152
+ stroke: U.optional(),
147
153
  rectangle: u.optional(),
148
154
  circle: p.optional(),
149
155
  line: f.optional()
150
- }).refine((t) => t.shape === "rectangle" ? u.safeParse(t.rectangle) : t.shape === "circle" ? p.safeParse(t.circle) : t.shape === "line" ? f.safeParse(t.line) : !1), i = e.string().regex(/^#([A-Fa-f0-9]{8}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})|transparent$/, "Invalid color format."), H = e.object({
151
- color: i.optional(),
152
- family: e.string().optional(),
153
- size: e.number().positive().optional(),
154
- weight: e.number().optional(),
155
- lineHeight: e.number().optional()
156
- }), K = e.object({
157
- horizontal: e.enum(["left", "center", "right"]).optional(),
158
- vertical: e.enum(["top", "center", "bottom"]).optional()
159
- }), $ = e.object({
160
- color: i,
161
- opacity: e.number().min(0).max(1)
162
- }), G = e.object({
163
- width: e.number().positive(),
164
- color: i
165
- }), h = e.object({
166
- type: e.literal("text"),
167
- text: e.string(),
168
- width: e.number().positive().optional(),
169
- height: e.number().positive().optional(),
170
- font: H.optional(),
171
- alignment: K.optional(),
172
- background: $.optional(),
173
- stroke: G.optional()
174
- }), X = e.string().url("Invalid video url format."), Y = e.object({
175
- top: e.number().min(0).optional(),
176
- right: e.number().min(0).optional(),
177
- bottom: e.number().min(0).optional(),
178
- left: e.number().min(0).optional()
179
- }), D = o.extend({
180
- from: e.number().min(0).max(1),
181
- to: e.number().min(0).max(1)
182
- }).array().or(e.number().min(0).max(1)), d = e.object({
183
- type: e.literal("video"),
184
- src: X,
185
- trim: e.number().optional(),
186
- crop: Y.optional(),
187
- volume: D.optional()
188
- }), q = e.union([
156
+ }).strict().refine((e) => e.shape === "rectangle" ? u.safeParse(e.rectangle) : e.shape === "circle" ? p.safeParse(e.circle) : e.shape === "line" ? f.safeParse(e.line) : !1), a = t.string().regex(/^#([A-Fa-f0-9]{8}|[A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})|transparent$/, "Invalid color format."), K = t.object({
157
+ color: a.optional(),
158
+ family: t.string().optional(),
159
+ size: t.number().positive().optional(),
160
+ weight: t.number().optional(),
161
+ lineHeight: t.number().optional()
162
+ }).strict(), $ = t.object({
163
+ horizontal: t.enum(["left", "center", "right"]).optional(),
164
+ vertical: t.enum(["top", "center", "bottom"]).optional()
165
+ }).strict(), G = t.object({
166
+ color: a,
167
+ opacity: t.number().min(0).max(1)
168
+ }).strict(), X = t.object({
169
+ width: t.number().positive(),
170
+ color: a
171
+ }).strict(), h = t.object({
172
+ type: t.literal("text"),
173
+ text: t.string(),
174
+ width: t.number().positive().optional(),
175
+ height: t.number().positive().optional(),
176
+ font: K.optional(),
177
+ alignment: $.optional(),
178
+ background: G.optional(),
179
+ stroke: X.optional()
180
+ }).strict(), Y = t.string().url("Invalid video url format."), D = t.object({
181
+ top: t.number().min(0).optional(),
182
+ right: t.number().min(0).optional(),
183
+ bottom: t.number().min(0).optional(),
184
+ left: t.number().min(0).optional()
185
+ }).strict(), M = o.extend({
186
+ from: t.number().min(0).max(1),
187
+ to: t.number().min(0).max(1)
188
+ }).array().or(t.number().min(0).max(1)), d = t.object({
189
+ type: t.literal("video"),
190
+ src: Y,
191
+ trim: t.number().optional(),
192
+ crop: D.optional(),
193
+ volume: M.optional()
194
+ }).strict(), q = t.union([
189
195
  h,
190
- c,
196
+ l,
191
197
  b,
192
198
  s,
193
- m,
199
+ c,
194
200
  d,
195
- l,
201
+ m,
196
202
  r
197
- ]).refine((t) => t.type === "text" ? h.safeParse(t) : t.type === "rich-text" ? c.safeParse(t) : t.type === "shape" ? b.safeParse(t) : t.type === "html" ? s.safeParse(t) : t.type === "image" ? m.safeParse(t) : t.type === "video" ? d.safeParse(t) : t.type === "luma" ? l.safeParse(t) : t.type === "audio" ? r.safeParse(t) : !1), J = e.enum(["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]), M = e.enum(["crop", "cover", "contain", "none"]), n = e.number().min(-10).max(10).default(0), N = o.extend({
203
+ ]).refine((e) => e.type === "text" ? h.safeParse(e) : e.type === "rich-text" ? l.safeParse(e) : e.type === "shape" ? b.safeParse(e) : e.type === "html" ? s.safeParse(e) : e.type === "image" ? c.safeParse(e) : e.type === "video" ? d.safeParse(e) : e.type === "luma" ? m.safeParse(e) : e.type === "audio" ? r.safeParse(e) : !1), J = t.enum(["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]), N = t.enum(["crop", "cover", "contain", "none"]), n = t.number().min(-10).max(10).default(0), W = o.extend({
198
204
  from: n,
199
205
  to: n
200
- }).array().or(n), W = o.extend({
206
+ }).array().or(n), Z = o.extend({
201
207
  from: n,
202
208
  to: n
203
- }).array().or(n), Z = e.object({
204
- x: N.default(0),
205
- y: W.default(0)
206
- }), _ = o.extend({
207
- from: e.number().min(0).max(1),
208
- to: e.number().min(0).max(1)
209
- }).array().or(e.number().min(0).max(1)), ee = o.extend({
210
- from: e.number().min(0),
211
- to: e.number().min(0)
212
- }).array().or(e.number().min(0)), te = e.object({
209
+ }).array().or(n), _ = t.object({
210
+ x: W.default(0),
211
+ y: Z.default(0)
212
+ }).strict(), tt = o.extend({
213
+ from: t.number().min(0).max(1),
214
+ to: t.number().min(0).max(1)
215
+ }).array().or(t.number().min(0).max(1)), et = o.extend({
216
+ from: t.number().min(0),
217
+ to: t.number().min(0)
218
+ }).array().or(t.number().min(0)), ot = t.object({
213
219
  angle: o.extend({
214
- from: e.number(),
215
- to: e.number()
216
- }).array().or(e.number())
217
- }), oe = e.string(), S = e.string(), ne = e.object({
218
- in: S.optional(),
219
- out: S.optional()
220
- }), ae = e.object({
221
- rotate: te.default({ angle: 0 })
222
- }), ie = e.object({
220
+ from: t.number(),
221
+ to: t.number()
222
+ }).array().or(t.number())
223
+ }).strict(), nt = t.string(), g = t.string(), it = t.object({
224
+ in: g.optional(),
225
+ out: g.optional()
226
+ }).strict(), at = t.object({
227
+ rotate: ot.default({ angle: 0 })
228
+ }).strict(), rt = t.object({
223
229
  asset: q,
224
- start: e.number().min(0),
225
- length: e.number().positive(),
230
+ start: t.union([t.number().min(0), t.literal("auto")]),
231
+ length: t.union([t.number().positive(), t.literal("auto"), t.literal("end")]),
226
232
  position: J.default("center").optional(),
227
- fit: M.optional(),
228
- offset: Z.default({ x: 0, y: 0 }).optional(),
229
- opacity: _.default(1).optional(),
230
- scale: ee.default(1).optional(),
231
- transform: ae.default({ rotate: { angle: 0 } }).optional(),
232
- effect: oe.optional(),
233
- transition: ne.optional(),
234
- width: e.number().min(1).max(3840).optional(),
235
- height: e.number().min(1).max(2160).optional()
236
- }).transform((t) => {
237
- if (t.fit !== void 0)
238
- return t;
239
- const x = t.asset.type === "rich-text" ? "none" : "crop";
240
- return { ...t, fit: x };
241
- }), re = e.object({
242
- clips: ie.array()
243
- }), se = e.string().url("Invalid image url format."), me = e.object({
244
- src: se
245
- }), le = e.object({
246
- background: e.string().optional(),
247
- fonts: me.array().optional(),
248
- tracks: re.array()
249
- }), ce = e.object({
250
- size: e.object({
251
- width: e.number().positive(),
252
- height: e.number().positive()
253
- }),
254
- fps: e.number().positive().optional(),
255
- format: e.string()
256
- }), ue = e.object({
257
- timeline: le,
258
- output: ce
259
- });
233
+ fit: N.optional(),
234
+ offset: _.default({ x: 0, y: 0 }).optional(),
235
+ opacity: tt.default(1).optional(),
236
+ scale: et.default(1).optional(),
237
+ transform: at.default({ rotate: { angle: 0 } }).optional(),
238
+ effect: nt.optional(),
239
+ transition: it.optional(),
240
+ width: t.number().min(1).max(3840).optional(),
241
+ height: t.number().min(1).max(2160).optional()
242
+ }).strict().transform((e) => ({
243
+ ...e,
244
+ fit: e.fit ?? (e.asset.type === "rich-text" ? "none" : "crop"),
245
+ start: e.start,
246
+ length: e.length
247
+ })), st = t.object({
248
+ clips: rt.array()
249
+ }).strict(), ct = t.string().url("Invalid image url format."), mt = t.object({
250
+ src: ct
251
+ }).strict(), lt = t.object({
252
+ background: t.string().optional(),
253
+ fonts: mt.array().optional(),
254
+ tracks: st.array()
255
+ }).strict(), ut = t.object({
256
+ size: t.object({
257
+ width: t.number().positive(),
258
+ height: t.number().positive()
259
+ }).strict(),
260
+ fps: t.number().positive().optional(),
261
+ format: t.string()
262
+ }).strict(), pt = t.object({
263
+ find: t.string().min(1),
264
+ replace: t.string()
265
+ }), ft = t.object({
266
+ timeline: lt,
267
+ output: ut,
268
+ merge: t.array(pt).optional()
269
+ }).strict();
260
270
  export {
261
271
  q as AssetSchema,
262
272
  r as AudioAssetSchema,
263
- j as AudioAssetUrlSchema,
264
- v as AudioAssetVolumeSchema,
265
- ie as ClipSchema,
266
- ue as EditSchema,
267
- me as FontSourceSchema,
268
- se as FontSourceUrlSchema,
273
+ A as AudioAssetUrlSchema,
274
+ j as AudioAssetVolumeSchema,
275
+ rt as ClipSchema,
276
+ ft as EditSchema,
277
+ mt as FontSourceSchema,
278
+ ct as FontSourceUrlSchema,
269
279
  s as HtmlAssetSchema,
270
280
  O as ImageAssetCropSchema,
271
- m as ImageAssetSchema,
281
+ c as ImageAssetSchema,
272
282
  C as ImageAssetUrlSchema,
273
- A as KeyframeEasingSchema,
274
- y as KeyframeInterpolationSchema,
283
+ y as KeyframeEasingSchema,
284
+ x as KeyframeInterpolationSchema,
275
285
  o as KeyframeSchema,
276
- l as LumaAssetSchema,
286
+ m as LumaAssetSchema,
277
287
  T as LumaAssetUrlSchema,
278
- ce as OutputSchema,
279
- c as RichTextAssetSchema,
288
+ ut as OutputSchema,
289
+ l as RichTextAssetSchema,
280
290
  p as ShapeAssetCircleSchema,
281
- g as ShapeAssetColorSchema,
282
- U as ShapeAssetFillSchema,
291
+ S as ShapeAssetColorSchema,
292
+ H as ShapeAssetFillSchema,
283
293
  f as ShapeAssetLineSchema,
284
294
  u as ShapeAssetRectangleSchema,
285
295
  b as ShapeAssetSchema,
286
- B as ShapeAssetStrokeSchema,
287
- K as TextAssetAlignmentSchema,
288
- $ as TextAssetBackgroundSchema,
289
- i as TextAssetColorSchema,
290
- H as TextAssetFontSchema,
296
+ U as ShapeAssetStrokeSchema,
297
+ $ as TextAssetAlignmentSchema,
298
+ G as TextAssetBackgroundSchema,
299
+ a as TextAssetColorSchema,
300
+ K as TextAssetFontSchema,
291
301
  h as TextAssetSchema,
292
- G as TextAssetStrokeSchema,
293
- le as TimelineSchema,
294
- re as TrackSchema,
295
- Y as VideoAssetCropSchema,
302
+ X as TextAssetStrokeSchema,
303
+ lt as TimelineSchema,
304
+ st as TrackSchema,
305
+ D as VideoAssetCropSchema,
296
306
  d as VideoAssetSchema,
297
- X as VideoAssetUrlSchema,
298
- D as VideoAssetVolumeSchema
307
+ Y as VideoAssetUrlSchema,
308
+ M as VideoAssetVolumeSchema
299
309
  };