@shotstack/schemas 1.7.0 → 1.8.2
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/README.md +89 -89
- package/dist/api.bundled.json +49 -833
- package/dist/json-schema/asset.json +115 -856
- package/dist/json-schema/audio-asset.json +31 -1
- package/dist/json-schema/blueprint.json +380 -0
- package/dist/json-schema/caption-detailer.json +275 -0
- package/dist/json-schema/clip.json +256 -949
- package/dist/json-schema/edit.json +247 -940
- package/dist/json-schema/index.cjs +5 -0
- package/dist/json-schema/index.d.ts +5 -0
- package/dist/json-schema/index.js +5 -0
- package/dist/json-schema/offset.json +31 -1
- package/dist/json-schema/rich-caption-asset.json +221 -140
- package/dist/json-schema/rich-text-content.json +370 -0
- package/dist/json-schema/rich-text-effects.json +400 -0
- package/dist/json-schema/rotate-transformation.json +31 -1
- package/dist/json-schema/schemas.json +264 -1044
- package/dist/json-schema/skew-transformation.json +31 -1
- package/dist/json-schema/svg-asset.json +6 -857
- package/dist/json-schema/template.json +541 -0
- package/dist/json-schema/text-to-speech-asset.json +31 -1
- package/dist/json-schema/timeline.json +256 -949
- package/dist/json-schema/track.json +256 -949
- package/dist/json-schema/transformation.json +52 -22
- package/dist/json-schema/transition.json +50 -2
- package/dist/json-schema/tween.json +31 -1
- package/dist/json-schema/video-asset.json +56 -26
- package/dist/schema.d.ts +43 -660
- package/dist/zod/zod.gen.cjs +914 -1640
- package/dist/zod/zod.gen.d.ts +306 -8714
- package/dist/zod/zod.gen.js +911 -1636
- package/dist/zod/zod.gen.ts +1593 -1880
- package/package.json +79 -79
- package/dist/json-schema/svg-arrow-shape.json +0 -49
- package/dist/json-schema/svg-circle-shape.json +0 -28
- package/dist/json-schema/svg-cross-shape.json +0 -42
- package/dist/json-schema/svg-ellipse-shape.json +0 -35
- package/dist/json-schema/svg-fill.json +0 -169
- package/dist/json-schema/svg-gradient-stop.json +0 -25
- package/dist/json-schema/svg-heart-shape.json +0 -28
- package/dist/json-schema/svg-line-shape.json +0 -35
- package/dist/json-schema/svg-linear-gradient-fill.json +0 -80
- package/dist/json-schema/svg-path-shape.json +0 -26
- package/dist/json-schema/svg-polygon-shape.json +0 -35
- package/dist/json-schema/svg-radial-gradient-fill.json +0 -66
- package/dist/json-schema/svg-rectangle-shape.json +0 -49
- package/dist/json-schema/svg-ring-shape.json +0 -35
- package/dist/json-schema/svg-shadow.json +0 -79
- package/dist/json-schema/svg-shape.json +0 -404
- package/dist/json-schema/svg-solid-fill.json +0 -40
- package/dist/json-schema/svg-star-shape.json +0 -42
- package/dist/json-schema/svg-stroke.json +0 -115
- package/dist/json-schema/svg-transform.json +0 -93
|
@@ -0,0 +1,541 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Template",
|
|
3
|
+
"strict": true,
|
|
4
|
+
"schema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"timeline": {
|
|
8
|
+
"$ref": "#/$defs/Timeline"
|
|
9
|
+
},
|
|
10
|
+
"output": {
|
|
11
|
+
"$ref": "#/$defs/Output"
|
|
12
|
+
},
|
|
13
|
+
"merge": {
|
|
14
|
+
"anyOf": [
|
|
15
|
+
{
|
|
16
|
+
"type": "array",
|
|
17
|
+
"items": {
|
|
18
|
+
"$ref": "#/$defs/MergeField"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"type": "null"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"additionalProperties": false,
|
|
28
|
+
"required": [
|
|
29
|
+
"timeline",
|
|
30
|
+
"output",
|
|
31
|
+
"merge"
|
|
32
|
+
],
|
|
33
|
+
"$defs": {
|
|
34
|
+
"Timeline": {
|
|
35
|
+
"properties": {
|
|
36
|
+
"tracks": {
|
|
37
|
+
"type": "array",
|
|
38
|
+
"items": {
|
|
39
|
+
"$ref": "#/$defs/Track"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"additionalProperties": false,
|
|
44
|
+
"required": [
|
|
45
|
+
"tracks"
|
|
46
|
+
],
|
|
47
|
+
"type": "object"
|
|
48
|
+
},
|
|
49
|
+
"Track": {
|
|
50
|
+
"properties": {
|
|
51
|
+
"clips": {
|
|
52
|
+
"type": "array",
|
|
53
|
+
"items": {
|
|
54
|
+
"$ref": "#/$defs/Clip"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"additionalProperties": false,
|
|
59
|
+
"required": [
|
|
60
|
+
"clips"
|
|
61
|
+
],
|
|
62
|
+
"type": "object"
|
|
63
|
+
},
|
|
64
|
+
"Clip": {
|
|
65
|
+
"properties": {
|
|
66
|
+
"asset": {
|
|
67
|
+
"$ref": "#/$defs/Asset"
|
|
68
|
+
},
|
|
69
|
+
"start": {
|
|
70
|
+
"anyOf": [
|
|
71
|
+
{
|
|
72
|
+
"type": "number",
|
|
73
|
+
"minimum": 0
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"type": "string"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"length": {
|
|
81
|
+
"anyOf": [
|
|
82
|
+
{
|
|
83
|
+
"type": "number",
|
|
84
|
+
"minimum": 0
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"type": "string"
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
"fit": {
|
|
92
|
+
"anyOf": [
|
|
93
|
+
{
|
|
94
|
+
"type": "string",
|
|
95
|
+
"enum": [
|
|
96
|
+
"cover",
|
|
97
|
+
"contain",
|
|
98
|
+
"crop",
|
|
99
|
+
"none"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"type": "null"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
"position": {
|
|
108
|
+
"anyOf": [
|
|
109
|
+
{
|
|
110
|
+
"type": "string",
|
|
111
|
+
"enum": [
|
|
112
|
+
"top",
|
|
113
|
+
"topRight",
|
|
114
|
+
"right",
|
|
115
|
+
"bottomRight",
|
|
116
|
+
"bottom",
|
|
117
|
+
"bottomLeft",
|
|
118
|
+
"left",
|
|
119
|
+
"topLeft",
|
|
120
|
+
"center"
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": "null"
|
|
125
|
+
}
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
"transition": {
|
|
129
|
+
"anyOf": [
|
|
130
|
+
{
|
|
131
|
+
"$ref": "#/$defs/Transition"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"type": "null"
|
|
135
|
+
}
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
"effect": {
|
|
139
|
+
"anyOf": [
|
|
140
|
+
{
|
|
141
|
+
"type": "string",
|
|
142
|
+
"enum": [
|
|
143
|
+
"zoomIn",
|
|
144
|
+
"zoomInSlow",
|
|
145
|
+
"zoomInFast",
|
|
146
|
+
"zoomOut",
|
|
147
|
+
"zoomOutSlow",
|
|
148
|
+
"zoomOutFast",
|
|
149
|
+
"slideLeft",
|
|
150
|
+
"slideLeftSlow",
|
|
151
|
+
"slideLeftFast",
|
|
152
|
+
"slideRight",
|
|
153
|
+
"slideRightSlow",
|
|
154
|
+
"slideRightFast",
|
|
155
|
+
"slideUp",
|
|
156
|
+
"slideUpSlow",
|
|
157
|
+
"slideUpFast",
|
|
158
|
+
"slideDown",
|
|
159
|
+
"slideDownSlow",
|
|
160
|
+
"slideDownFast"
|
|
161
|
+
]
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"type": "null"
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"additionalProperties": false,
|
|
170
|
+
"required": [
|
|
171
|
+
"asset",
|
|
172
|
+
"start",
|
|
173
|
+
"length",
|
|
174
|
+
"fit",
|
|
175
|
+
"position",
|
|
176
|
+
"transition",
|
|
177
|
+
"effect"
|
|
178
|
+
],
|
|
179
|
+
"type": "object"
|
|
180
|
+
},
|
|
181
|
+
"Asset": {
|
|
182
|
+
"anyOf": [
|
|
183
|
+
{
|
|
184
|
+
"$ref": "#/$defs/VideoAsset"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"$ref": "#/$defs/ImageAsset"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"$ref": "#/$defs/AudioAsset"
|
|
191
|
+
}
|
|
192
|
+
]
|
|
193
|
+
},
|
|
194
|
+
"VideoAsset": {
|
|
195
|
+
"type": "object",
|
|
196
|
+
"properties": {
|
|
197
|
+
"type": {
|
|
198
|
+
"enum": [
|
|
199
|
+
"video"
|
|
200
|
+
],
|
|
201
|
+
"type": "string"
|
|
202
|
+
},
|
|
203
|
+
"src": {
|
|
204
|
+
"type": "string"
|
|
205
|
+
},
|
|
206
|
+
"trim": {
|
|
207
|
+
"anyOf": [
|
|
208
|
+
{
|
|
209
|
+
"type": "number"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"type": "null"
|
|
213
|
+
}
|
|
214
|
+
]
|
|
215
|
+
},
|
|
216
|
+
"volume": {
|
|
217
|
+
"anyOf": [
|
|
218
|
+
{
|
|
219
|
+
"type": "number",
|
|
220
|
+
"minimum": 0,
|
|
221
|
+
"maximum": 1
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"type": "null"
|
|
225
|
+
}
|
|
226
|
+
]
|
|
227
|
+
},
|
|
228
|
+
"volumeEffect": {
|
|
229
|
+
"anyOf": [
|
|
230
|
+
{
|
|
231
|
+
"type": "string",
|
|
232
|
+
"enum": [
|
|
233
|
+
"none",
|
|
234
|
+
"fadeIn",
|
|
235
|
+
"fadeOut",
|
|
236
|
+
"fadeInFadeOut"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"type": "null"
|
|
241
|
+
}
|
|
242
|
+
]
|
|
243
|
+
},
|
|
244
|
+
"speed": {
|
|
245
|
+
"anyOf": [
|
|
246
|
+
{
|
|
247
|
+
"type": "number",
|
|
248
|
+
"minimum": 0,
|
|
249
|
+
"maximum": 10
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"type": "null"
|
|
253
|
+
}
|
|
254
|
+
]
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
"additionalProperties": false,
|
|
258
|
+
"required": [
|
|
259
|
+
"type",
|
|
260
|
+
"src",
|
|
261
|
+
"trim",
|
|
262
|
+
"volume",
|
|
263
|
+
"volumeEffect",
|
|
264
|
+
"speed"
|
|
265
|
+
]
|
|
266
|
+
},
|
|
267
|
+
"ImageAsset": {
|
|
268
|
+
"type": "object",
|
|
269
|
+
"properties": {
|
|
270
|
+
"type": {
|
|
271
|
+
"enum": [
|
|
272
|
+
"image"
|
|
273
|
+
],
|
|
274
|
+
"type": "string"
|
|
275
|
+
},
|
|
276
|
+
"src": {
|
|
277
|
+
"type": "string"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"additionalProperties": false,
|
|
281
|
+
"required": [
|
|
282
|
+
"type",
|
|
283
|
+
"src"
|
|
284
|
+
]
|
|
285
|
+
},
|
|
286
|
+
"AudioAsset": {
|
|
287
|
+
"type": "object",
|
|
288
|
+
"properties": {
|
|
289
|
+
"type": {
|
|
290
|
+
"enum": [
|
|
291
|
+
"audio"
|
|
292
|
+
],
|
|
293
|
+
"type": "string"
|
|
294
|
+
},
|
|
295
|
+
"src": {
|
|
296
|
+
"type": "string"
|
|
297
|
+
},
|
|
298
|
+
"trim": {
|
|
299
|
+
"anyOf": [
|
|
300
|
+
{
|
|
301
|
+
"type": "number"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"type": "null"
|
|
305
|
+
}
|
|
306
|
+
]
|
|
307
|
+
},
|
|
308
|
+
"volume": {
|
|
309
|
+
"anyOf": [
|
|
310
|
+
{
|
|
311
|
+
"type": "number",
|
|
312
|
+
"minimum": 0,
|
|
313
|
+
"maximum": 1
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"type": "null"
|
|
317
|
+
}
|
|
318
|
+
]
|
|
319
|
+
},
|
|
320
|
+
"effect": {
|
|
321
|
+
"anyOf": [
|
|
322
|
+
{
|
|
323
|
+
"type": "string",
|
|
324
|
+
"enum": [
|
|
325
|
+
"none",
|
|
326
|
+
"fadeIn",
|
|
327
|
+
"fadeOut",
|
|
328
|
+
"fadeInFadeOut"
|
|
329
|
+
]
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"type": "null"
|
|
333
|
+
}
|
|
334
|
+
]
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"additionalProperties": false,
|
|
338
|
+
"required": [
|
|
339
|
+
"type",
|
|
340
|
+
"src",
|
|
341
|
+
"trim",
|
|
342
|
+
"volume",
|
|
343
|
+
"effect"
|
|
344
|
+
]
|
|
345
|
+
},
|
|
346
|
+
"Transition": {
|
|
347
|
+
"properties": {
|
|
348
|
+
"in": {
|
|
349
|
+
"anyOf": [
|
|
350
|
+
{
|
|
351
|
+
"type": "string",
|
|
352
|
+
"enum": [
|
|
353
|
+
"none",
|
|
354
|
+
"fade",
|
|
355
|
+
"reveal",
|
|
356
|
+
"wipeLeft",
|
|
357
|
+
"wipeRight",
|
|
358
|
+
"slideLeft",
|
|
359
|
+
"slideRight",
|
|
360
|
+
"slideUp",
|
|
361
|
+
"slideDown",
|
|
362
|
+
"carouselLeft",
|
|
363
|
+
"carouselRight",
|
|
364
|
+
"carouselUp",
|
|
365
|
+
"carouselDown",
|
|
366
|
+
"shuffleTopRight",
|
|
367
|
+
"shuffleRightTop",
|
|
368
|
+
"shuffleRightBottom",
|
|
369
|
+
"shuffleBottomRight",
|
|
370
|
+
"shuffleBottomLeft",
|
|
371
|
+
"shuffleLeftBottom",
|
|
372
|
+
"shuffleLeftTop",
|
|
373
|
+
"shuffleTopLeft",
|
|
374
|
+
"zoom"
|
|
375
|
+
]
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"type": "null"
|
|
379
|
+
}
|
|
380
|
+
]
|
|
381
|
+
},
|
|
382
|
+
"out": {
|
|
383
|
+
"anyOf": [
|
|
384
|
+
{
|
|
385
|
+
"type": "string",
|
|
386
|
+
"enum": [
|
|
387
|
+
"none",
|
|
388
|
+
"fade",
|
|
389
|
+
"reveal",
|
|
390
|
+
"wipeLeft",
|
|
391
|
+
"wipeRight",
|
|
392
|
+
"slideLeft",
|
|
393
|
+
"slideRight",
|
|
394
|
+
"slideUp",
|
|
395
|
+
"slideDown",
|
|
396
|
+
"carouselLeft",
|
|
397
|
+
"carouselRight",
|
|
398
|
+
"carouselUp",
|
|
399
|
+
"carouselDown",
|
|
400
|
+
"shuffleTopRight",
|
|
401
|
+
"shuffleRightTop",
|
|
402
|
+
"shuffleRightBottom",
|
|
403
|
+
"shuffleBottomRight",
|
|
404
|
+
"shuffleBottomLeft",
|
|
405
|
+
"shuffleLeftBottom",
|
|
406
|
+
"shuffleLeftTop",
|
|
407
|
+
"shuffleTopLeft",
|
|
408
|
+
"zoom"
|
|
409
|
+
]
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"type": "null"
|
|
413
|
+
}
|
|
414
|
+
]
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"additionalProperties": false,
|
|
418
|
+
"type": "object",
|
|
419
|
+
"required": [
|
|
420
|
+
"in",
|
|
421
|
+
"out"
|
|
422
|
+
]
|
|
423
|
+
},
|
|
424
|
+
"Output": {
|
|
425
|
+
"properties": {
|
|
426
|
+
"format": {
|
|
427
|
+
"enum": [
|
|
428
|
+
"mp4",
|
|
429
|
+
"gif",
|
|
430
|
+
"mp3",
|
|
431
|
+
"jpg",
|
|
432
|
+
"png",
|
|
433
|
+
"bmp"
|
|
434
|
+
],
|
|
435
|
+
"type": "string"
|
|
436
|
+
},
|
|
437
|
+
"resolution": {
|
|
438
|
+
"anyOf": [
|
|
439
|
+
{
|
|
440
|
+
"type": "string",
|
|
441
|
+
"enum": [
|
|
442
|
+
"preview",
|
|
443
|
+
"mobile",
|
|
444
|
+
"sd",
|
|
445
|
+
"hd",
|
|
446
|
+
"1080",
|
|
447
|
+
"4k"
|
|
448
|
+
]
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"type": "null"
|
|
452
|
+
}
|
|
453
|
+
]
|
|
454
|
+
},
|
|
455
|
+
"aspectRatio": {
|
|
456
|
+
"anyOf": [
|
|
457
|
+
{
|
|
458
|
+
"type": "string",
|
|
459
|
+
"enum": [
|
|
460
|
+
"16:9",
|
|
461
|
+
"9:16",
|
|
462
|
+
"1:1",
|
|
463
|
+
"4:5",
|
|
464
|
+
"4:3"
|
|
465
|
+
]
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"type": "null"
|
|
469
|
+
}
|
|
470
|
+
]
|
|
471
|
+
},
|
|
472
|
+
"fps": {
|
|
473
|
+
"anyOf": [
|
|
474
|
+
{
|
|
475
|
+
"type": "number",
|
|
476
|
+
"enum": [
|
|
477
|
+
12,
|
|
478
|
+
15,
|
|
479
|
+
23.976,
|
|
480
|
+
24,
|
|
481
|
+
25,
|
|
482
|
+
29.97,
|
|
483
|
+
30,
|
|
484
|
+
48,
|
|
485
|
+
50,
|
|
486
|
+
59.94,
|
|
487
|
+
60
|
|
488
|
+
]
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"type": "null"
|
|
492
|
+
}
|
|
493
|
+
]
|
|
494
|
+
},
|
|
495
|
+
"quality": {
|
|
496
|
+
"anyOf": [
|
|
497
|
+
{
|
|
498
|
+
"type": "string",
|
|
499
|
+
"enum": [
|
|
500
|
+
"verylow",
|
|
501
|
+
"low",
|
|
502
|
+
"medium",
|
|
503
|
+
"high",
|
|
504
|
+
"veryhigh"
|
|
505
|
+
]
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"type": "null"
|
|
509
|
+
}
|
|
510
|
+
]
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
"additionalProperties": false,
|
|
514
|
+
"required": [
|
|
515
|
+
"format",
|
|
516
|
+
"resolution",
|
|
517
|
+
"aspectRatio",
|
|
518
|
+
"fps",
|
|
519
|
+
"quality"
|
|
520
|
+
],
|
|
521
|
+
"type": "object"
|
|
522
|
+
},
|
|
523
|
+
"MergeField": {
|
|
524
|
+
"type": "object",
|
|
525
|
+
"properties": {
|
|
526
|
+
"find": {
|
|
527
|
+
"type": "string"
|
|
528
|
+
},
|
|
529
|
+
"replace": {
|
|
530
|
+
"type": "string"
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
"additionalProperties": false,
|
|
534
|
+
"required": [
|
|
535
|
+
"find",
|
|
536
|
+
"replace"
|
|
537
|
+
]
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
}
|
|
@@ -185,7 +185,37 @@
|
|
|
185
185
|
"anyOf": [
|
|
186
186
|
{
|
|
187
187
|
"type": "string",
|
|
188
|
-
"description": "The easing function to use for the animation. Easing controls the rate of change of the animated value, allowing for more natural motion by speeding up or slowing down the animation at different points. Only applicable if interpolation is set to `bezier`."
|
|
188
|
+
"description": "The easing function to use for the animation. Easing controls the rate of change of the animated value, allowing for more natural motion by speeding up or slowing down the animation at different points. Only applicable if interpolation is set to `bezier`.",
|
|
189
|
+
"enum": [
|
|
190
|
+
"ease",
|
|
191
|
+
"easeIn",
|
|
192
|
+
"easeOut",
|
|
193
|
+
"easeInOut",
|
|
194
|
+
"easeInQuad",
|
|
195
|
+
"easeInCubic",
|
|
196
|
+
"easeInQuart",
|
|
197
|
+
"easeInQuint",
|
|
198
|
+
"easeInSine",
|
|
199
|
+
"easeInExpo",
|
|
200
|
+
"easeInCirc",
|
|
201
|
+
"easeInBack",
|
|
202
|
+
"easeOutQuad",
|
|
203
|
+
"easeOutCubic",
|
|
204
|
+
"easeOutQuart",
|
|
205
|
+
"easeOutQuint",
|
|
206
|
+
"easeOutSine",
|
|
207
|
+
"easeOutExpo",
|
|
208
|
+
"easeOutCirc",
|
|
209
|
+
"easeOutBack",
|
|
210
|
+
"easeInOutQuad",
|
|
211
|
+
"easeInOutCubic",
|
|
212
|
+
"easeInOutQuart",
|
|
213
|
+
"easeInOutQuint",
|
|
214
|
+
"easeInOutSine",
|
|
215
|
+
"easeInOutExpo",
|
|
216
|
+
"easeInOutCirc",
|
|
217
|
+
"easeInOutBack"
|
|
218
|
+
]
|
|
189
219
|
},
|
|
190
220
|
{
|
|
191
221
|
"type": "null"
|