@shotstack/shotstack-studio 1.9.0 → 1.10.0

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,289 @@ 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(), L = 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(), Q = 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(), z = 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: Q.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(), U = t.object({
122
+ src: t.string().url("Invalid font URL"),
123
+ family: t.string(),
124
+ weight: t.union([t.string(), t.number()]).default("400")
125
+ }).strict(), l = t.object({
126
+ type: t.literal("rich-text"),
127
+ text: t.string().max(1e4).default(""),
128
+ width: t.number().min(1).max(8192).optional(),
129
+ height: t.number().min(1).max(8192).optional(),
116
130
  font: k.optional(),
117
131
  style: F.optional(),
118
132
  stroke: P.optional(),
119
133
  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(),
134
+ background: z.optional(),
135
+ padding: V.optional(),
136
+ align: E.optional(),
137
+ animation: B.optional(),
138
+ customFonts: t.array(U).optional()
139
+ }).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({
140
+ width: t.number().positive(),
141
+ height: t.number().positive()
142
+ }).strict(), p = t.object({
143
+ radius: t.number().positive()
144
+ }).strict(), f = t.object({
145
+ length: t.number().positive(),
146
+ thickness: t.number().positive()
147
+ }).strict(), H = t.object({
148
+ color: S,
149
+ opacity: t.number().min(0).max(1)
150
+ }).strict(), K = t.object({
151
+ color: S,
152
+ width: t.number().positive()
153
+ }).strict(), b = t.object({
154
+ type: t.literal("shape"),
155
+ width: t.number().positive().optional(),
156
+ height: t.number().positive().optional(),
157
+ shape: t.enum(["rectangle", "circle", "line"]),
158
+ fill: H.optional(),
159
+ stroke: K.optional(),
147
160
  rectangle: u.optional(),
148
161
  circle: p.optional(),
149
162
  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([
163
+ }).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."), $ = t.object({
164
+ color: a.optional(),
165
+ family: t.string().optional(),
166
+ size: t.number().positive().optional(),
167
+ weight: t.number().optional(),
168
+ lineHeight: t.number().optional()
169
+ }).strict(), G = t.object({
170
+ horizontal: t.enum(["left", "center", "right"]).optional(),
171
+ vertical: t.enum(["top", "center", "bottom"]).optional()
172
+ }).strict(), X = t.object({
173
+ color: a,
174
+ opacity: t.number().min(0).max(1)
175
+ }).strict(), Y = t.object({
176
+ width: t.number().positive(),
177
+ color: a
178
+ }).strict(), h = t.object({
179
+ type: t.literal("text"),
180
+ text: t.string(),
181
+ width: t.number().positive().optional(),
182
+ height: t.number().positive().optional(),
183
+ font: $.optional(),
184
+ alignment: G.optional(),
185
+ background: X.optional(),
186
+ stroke: Y.optional()
187
+ }).strict(), D = t.string().url("Invalid video url format."), M = t.object({
188
+ top: t.number().min(0).optional(),
189
+ right: t.number().min(0).optional(),
190
+ bottom: t.number().min(0).optional(),
191
+ left: t.number().min(0).optional()
192
+ }).strict(), q = o.extend({
193
+ from: t.number().min(0).max(1),
194
+ to: t.number().min(0).max(1)
195
+ }).array().or(t.number().min(0).max(1)), d = t.object({
196
+ type: t.literal("video"),
197
+ src: D,
198
+ trim: t.number().optional(),
199
+ crop: M.optional(),
200
+ volume: q.optional()
201
+ }).strict(), J = t.union([
189
202
  h,
190
- c,
203
+ l,
191
204
  b,
192
205
  s,
193
- m,
206
+ c,
194
207
  d,
195
- l,
208
+ m,
196
209
  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({
210
+ ]).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), N = t.enum(["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]), W = t.enum(["crop", "cover", "contain", "none"]), n = t.number().min(-10).max(10).default(0), Z = o.extend({
198
211
  from: n,
199
212
  to: n
200
- }).array().or(n), W = o.extend({
213
+ }).array().or(n), _ = o.extend({
201
214
  from: n,
202
215
  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({
216
+ }).array().or(n), tt = t.object({
217
+ x: Z.default(0),
218
+ y: _.default(0)
219
+ }).strict(), et = o.extend({
220
+ from: t.number().min(0).max(1),
221
+ to: t.number().min(0).max(1)
222
+ }).array().or(t.number().min(0).max(1)), ot = o.extend({
223
+ from: t.number().min(0),
224
+ to: t.number().min(0)
225
+ }).array().or(t.number().min(0)), nt = t.object({
213
226
  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({
223
- asset: q,
224
- start: e.number().min(0),
225
- length: e.number().positive(),
226
- 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
- });
227
+ from: t.number(),
228
+ to: t.number()
229
+ }).array().or(t.number())
230
+ }).strict(), it = t.string(), g = t.string(), at = t.object({
231
+ in: g.optional(),
232
+ out: g.optional()
233
+ }).strict(), rt = t.object({
234
+ rotate: nt.default({ angle: 0 })
235
+ }).strict(), st = t.object({
236
+ asset: J,
237
+ start: t.union([t.number().min(0), t.literal("auto")]),
238
+ length: t.union([t.number().positive(), t.literal("auto"), t.literal("end")]),
239
+ position: N.default("center").optional(),
240
+ fit: W.optional(),
241
+ offset: tt.default({ x: 0, y: 0 }).optional(),
242
+ opacity: et.default(1).optional(),
243
+ scale: ot.default(1).optional(),
244
+ transform: rt.default({ rotate: { angle: 0 } }).optional(),
245
+ effect: it.optional(),
246
+ transition: at.optional(),
247
+ width: t.number().min(1).max(3840).optional(),
248
+ height: t.number().min(1).max(2160).optional()
249
+ }).strict().transform((e) => ({
250
+ ...e,
251
+ fit: e.fit ?? (e.asset.type === "rich-text" ? "none" : "crop"),
252
+ start: e.start,
253
+ length: e.length
254
+ })), ct = t.object({
255
+ clips: st.array()
256
+ }).strict(), mt = t.string().url("Invalid image url format."), lt = t.object({
257
+ src: mt
258
+ }).strict(), ut = t.object({
259
+ background: t.string().optional(),
260
+ fonts: lt.array().optional(),
261
+ tracks: ct.array()
262
+ }).strict(), pt = t.object({
263
+ size: t.object({
264
+ width: t.number().positive(),
265
+ height: t.number().positive()
266
+ }).strict(),
267
+ fps: t.number().positive().optional(),
268
+ format: t.string()
269
+ }).strict(), ft = t.object({
270
+ find: t.string().min(1),
271
+ replace: t.string()
272
+ }), bt = t.object({
273
+ timeline: ut,
274
+ output: pt,
275
+ merge: t.array(ft).optional()
276
+ }).strict();
260
277
  export {
261
- q as AssetSchema,
278
+ J as AssetSchema,
262
279
  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,
280
+ A as AudioAssetUrlSchema,
281
+ j as AudioAssetVolumeSchema,
282
+ st as ClipSchema,
283
+ bt as EditSchema,
284
+ lt as FontSourceSchema,
285
+ mt as FontSourceUrlSchema,
269
286
  s as HtmlAssetSchema,
270
287
  O as ImageAssetCropSchema,
271
- m as ImageAssetSchema,
288
+ c as ImageAssetSchema,
272
289
  C as ImageAssetUrlSchema,
273
- A as KeyframeEasingSchema,
274
- y as KeyframeInterpolationSchema,
290
+ y as KeyframeEasingSchema,
291
+ x as KeyframeInterpolationSchema,
275
292
  o as KeyframeSchema,
276
- l as LumaAssetSchema,
293
+ m as LumaAssetSchema,
277
294
  T as LumaAssetUrlSchema,
278
- ce as OutputSchema,
279
- c as RichTextAssetSchema,
295
+ pt as OutputSchema,
296
+ l as RichTextAssetSchema,
280
297
  p as ShapeAssetCircleSchema,
281
- g as ShapeAssetColorSchema,
282
- U as ShapeAssetFillSchema,
298
+ S as ShapeAssetColorSchema,
299
+ H as ShapeAssetFillSchema,
283
300
  f as ShapeAssetLineSchema,
284
301
  u as ShapeAssetRectangleSchema,
285
302
  b as ShapeAssetSchema,
286
- B as ShapeAssetStrokeSchema,
287
- K as TextAssetAlignmentSchema,
288
- $ as TextAssetBackgroundSchema,
289
- i as TextAssetColorSchema,
290
- H as TextAssetFontSchema,
303
+ K as ShapeAssetStrokeSchema,
304
+ G as TextAssetAlignmentSchema,
305
+ X as TextAssetBackgroundSchema,
306
+ a as TextAssetColorSchema,
307
+ $ as TextAssetFontSchema,
291
308
  h as TextAssetSchema,
292
- G as TextAssetStrokeSchema,
293
- le as TimelineSchema,
294
- re as TrackSchema,
295
- Y as VideoAssetCropSchema,
309
+ Y as TextAssetStrokeSchema,
310
+ ut as TimelineSchema,
311
+ ct as TrackSchema,
312
+ M as VideoAssetCropSchema,
296
313
  d as VideoAssetSchema,
297
- X as VideoAssetUrlSchema,
298
- D as VideoAssetVolumeSchema
314
+ D as VideoAssetUrlSchema,
315
+ q as VideoAssetVolumeSchema
299
316
  };