@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.
- package/dist/index.d.ts +4778 -6199
- package/dist/schema/index.cjs +1 -1
- package/dist/schema/index.d.ts +4778 -6199
- package/dist/schema/index.mjs +252 -235
- package/dist/shotstack-studio.es.js +5762 -5412
- package/dist/shotstack-studio.umd.js +32 -32
- package/package.json +2 -2
package/dist/schema/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
const
|
|
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 =
|
|
32
|
-
from:
|
|
33
|
-
to:
|
|
34
|
-
start:
|
|
35
|
-
length:
|
|
36
|
-
interpolation:
|
|
37
|
-
easing:
|
|
38
|
-
}),
|
|
39
|
-
from:
|
|
40
|
-
to:
|
|
41
|
-
}).array().or(
|
|
42
|
-
type:
|
|
43
|
-
src:
|
|
44
|
-
trim:
|
|
45
|
-
volume:
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
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 =
|
|
54
|
-
top:
|
|
55
|
-
right:
|
|
56
|
-
bottom:
|
|
57
|
-
left:
|
|
58
|
-
}),
|
|
59
|
-
type:
|
|
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 =
|
|
63
|
-
type:
|
|
63
|
+
}).strict(), T = t.string().url("Invalid luma url format."), m = t.object({
|
|
64
|
+
type: t.literal("luma"),
|
|
64
65
|
src: T
|
|
65
|
-
}),
|
|
66
|
-
offset:
|
|
67
|
-
color:
|
|
68
|
-
}).strict(), R =
|
|
69
|
-
type:
|
|
70
|
-
angle:
|
|
71
|
-
stops:
|
|
72
|
-
}).strict(), k =
|
|
73
|
-
family:
|
|
74
|
-
size:
|
|
75
|
-
weight:
|
|
76
|
-
color:
|
|
77
|
-
opacity:
|
|
78
|
-
}).strict(), F =
|
|
79
|
-
letterSpacing:
|
|
80
|
-
lineHeight:
|
|
81
|
-
textTransform:
|
|
82
|
-
textDecoration:
|
|
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 =
|
|
85
|
-
width:
|
|
86
|
-
color:
|
|
87
|
-
opacity:
|
|
88
|
-
}).strict(), L =
|
|
89
|
-
offsetX:
|
|
90
|
-
offsetY:
|
|
91
|
-
blur:
|
|
92
|
-
color:
|
|
93
|
-
opacity:
|
|
94
|
-
}).strict(), Q =
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
}).strict(), z =
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
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:
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
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((
|
|
151
|
-
color:
|
|
152
|
-
family:
|
|
153
|
-
size:
|
|
154
|
-
weight:
|
|
155
|
-
lineHeight:
|
|
156
|
-
}),
|
|
157
|
-
horizontal:
|
|
158
|
-
vertical:
|
|
159
|
-
}),
|
|
160
|
-
color:
|
|
161
|
-
opacity:
|
|
162
|
-
}),
|
|
163
|
-
width:
|
|
164
|
-
color:
|
|
165
|
-
}), h =
|
|
166
|
-
type:
|
|
167
|
-
text:
|
|
168
|
-
width:
|
|
169
|
-
height:
|
|
170
|
-
font:
|
|
171
|
-
alignment:
|
|
172
|
-
background:
|
|
173
|
-
stroke:
|
|
174
|
-
}),
|
|
175
|
-
top:
|
|
176
|
-
right:
|
|
177
|
-
bottom:
|
|
178
|
-
left:
|
|
179
|
-
}),
|
|
180
|
-
from:
|
|
181
|
-
to:
|
|
182
|
-
}).array().or(
|
|
183
|
-
type:
|
|
184
|
-
src:
|
|
185
|
-
trim:
|
|
186
|
-
crop:
|
|
187
|
-
volume:
|
|
188
|
-
}),
|
|
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
|
-
|
|
203
|
+
l,
|
|
191
204
|
b,
|
|
192
205
|
s,
|
|
193
|
-
|
|
206
|
+
c,
|
|
194
207
|
d,
|
|
195
|
-
|
|
208
|
+
m,
|
|
196
209
|
r
|
|
197
|
-
]).refine((
|
|
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),
|
|
213
|
+
}).array().or(n), _ = o.extend({
|
|
201
214
|
from: n,
|
|
202
215
|
to: n
|
|
203
|
-
}).array().or(n),
|
|
204
|
-
x:
|
|
205
|
-
y:
|
|
206
|
-
}),
|
|
207
|
-
from:
|
|
208
|
-
to:
|
|
209
|
-
}).array().or(
|
|
210
|
-
from:
|
|
211
|
-
to:
|
|
212
|
-
}).array().or(
|
|
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:
|
|
215
|
-
to:
|
|
216
|
-
}).array().or(
|
|
217
|
-
}),
|
|
218
|
-
in:
|
|
219
|
-
out:
|
|
220
|
-
}),
|
|
221
|
-
rotate:
|
|
222
|
-
}),
|
|
223
|
-
asset:
|
|
224
|
-
start:
|
|
225
|
-
length:
|
|
226
|
-
position:
|
|
227
|
-
fit:
|
|
228
|
-
offset:
|
|
229
|
-
opacity:
|
|
230
|
-
scale:
|
|
231
|
-
transform:
|
|
232
|
-
effect:
|
|
233
|
-
transition:
|
|
234
|
-
width:
|
|
235
|
-
height:
|
|
236
|
-
}).transform((
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
}),
|
|
242
|
-
clips:
|
|
243
|
-
}),
|
|
244
|
-
src:
|
|
245
|
-
}),
|
|
246
|
-
background:
|
|
247
|
-
fonts:
|
|
248
|
-
tracks:
|
|
249
|
-
}),
|
|
250
|
-
size:
|
|
251
|
-
width:
|
|
252
|
-
height:
|
|
253
|
-
}),
|
|
254
|
-
fps:
|
|
255
|
-
format:
|
|
256
|
-
}),
|
|
257
|
-
|
|
258
|
-
|
|
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
|
-
|
|
278
|
+
J as AssetSchema,
|
|
262
279
|
r as AudioAssetSchema,
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
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
|
-
|
|
288
|
+
c as ImageAssetSchema,
|
|
272
289
|
C as ImageAssetUrlSchema,
|
|
273
|
-
|
|
274
|
-
|
|
290
|
+
y as KeyframeEasingSchema,
|
|
291
|
+
x as KeyframeInterpolationSchema,
|
|
275
292
|
o as KeyframeSchema,
|
|
276
|
-
|
|
293
|
+
m as LumaAssetSchema,
|
|
277
294
|
T as LumaAssetUrlSchema,
|
|
278
|
-
|
|
279
|
-
|
|
295
|
+
pt as OutputSchema,
|
|
296
|
+
l as RichTextAssetSchema,
|
|
280
297
|
p as ShapeAssetCircleSchema,
|
|
281
|
-
|
|
282
|
-
|
|
298
|
+
S as ShapeAssetColorSchema,
|
|
299
|
+
H as ShapeAssetFillSchema,
|
|
283
300
|
f as ShapeAssetLineSchema,
|
|
284
301
|
u as ShapeAssetRectangleSchema,
|
|
285
302
|
b as ShapeAssetSchema,
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
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
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
309
|
+
Y as TextAssetStrokeSchema,
|
|
310
|
+
ut as TimelineSchema,
|
|
311
|
+
ct as TrackSchema,
|
|
312
|
+
M as VideoAssetCropSchema,
|
|
296
313
|
d as VideoAssetSchema,
|
|
297
|
-
|
|
298
|
-
|
|
314
|
+
D as VideoAssetUrlSchema,
|
|
315
|
+
q as VideoAssetVolumeSchema
|
|
299
316
|
};
|