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