@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.
Files changed (53) hide show
  1. package/README.md +89 -89
  2. package/dist/api.bundled.json +49 -833
  3. package/dist/json-schema/asset.json +115 -856
  4. package/dist/json-schema/audio-asset.json +31 -1
  5. package/dist/json-schema/blueprint.json +380 -0
  6. package/dist/json-schema/caption-detailer.json +275 -0
  7. package/dist/json-schema/clip.json +256 -949
  8. package/dist/json-schema/edit.json +247 -940
  9. package/dist/json-schema/index.cjs +5 -0
  10. package/dist/json-schema/index.d.ts +5 -0
  11. package/dist/json-schema/index.js +5 -0
  12. package/dist/json-schema/offset.json +31 -1
  13. package/dist/json-schema/rich-caption-asset.json +221 -140
  14. package/dist/json-schema/rich-text-content.json +370 -0
  15. package/dist/json-schema/rich-text-effects.json +400 -0
  16. package/dist/json-schema/rotate-transformation.json +31 -1
  17. package/dist/json-schema/schemas.json +264 -1044
  18. package/dist/json-schema/skew-transformation.json +31 -1
  19. package/dist/json-schema/svg-asset.json +6 -857
  20. package/dist/json-schema/template.json +541 -0
  21. package/dist/json-schema/text-to-speech-asset.json +31 -1
  22. package/dist/json-schema/timeline.json +256 -949
  23. package/dist/json-schema/track.json +256 -949
  24. package/dist/json-schema/transformation.json +52 -22
  25. package/dist/json-schema/transition.json +50 -2
  26. package/dist/json-schema/tween.json +31 -1
  27. package/dist/json-schema/video-asset.json +56 -26
  28. package/dist/schema.d.ts +43 -660
  29. package/dist/zod/zod.gen.cjs +914 -1640
  30. package/dist/zod/zod.gen.d.ts +306 -8714
  31. package/dist/zod/zod.gen.js +911 -1636
  32. package/dist/zod/zod.gen.ts +1593 -1880
  33. package/package.json +79 -79
  34. package/dist/json-schema/svg-arrow-shape.json +0 -49
  35. package/dist/json-schema/svg-circle-shape.json +0 -28
  36. package/dist/json-schema/svg-cross-shape.json +0 -42
  37. package/dist/json-schema/svg-ellipse-shape.json +0 -35
  38. package/dist/json-schema/svg-fill.json +0 -169
  39. package/dist/json-schema/svg-gradient-stop.json +0 -25
  40. package/dist/json-schema/svg-heart-shape.json +0 -28
  41. package/dist/json-schema/svg-line-shape.json +0 -35
  42. package/dist/json-schema/svg-linear-gradient-fill.json +0 -80
  43. package/dist/json-schema/svg-path-shape.json +0 -26
  44. package/dist/json-schema/svg-polygon-shape.json +0 -35
  45. package/dist/json-schema/svg-radial-gradient-fill.json +0 -66
  46. package/dist/json-schema/svg-rectangle-shape.json +0 -49
  47. package/dist/json-schema/svg-ring-shape.json +0 -35
  48. package/dist/json-schema/svg-shadow.json +0 -79
  49. package/dist/json-schema/svg-shape.json +0 -404
  50. package/dist/json-schema/svg-solid-fill.json +0 -40
  51. package/dist/json-schema/svg-star-shape.json +0 -42
  52. package/dist/json-schema/svg-stroke.json +0 -115
  53. package/dist/json-schema/svg-transform.json +0 -93
@@ -2,7 +2,7 @@
2
2
  "name": "Transformation",
3
3
  "strict": true,
4
4
  "schema": {
5
- "description": "Apply one or more transformations to a clip. Transformations alter the visual properties of a clip and can be combined to create new shapes ...",
5
+ "description": "Apply one or more transformations to a clip. Transformations alter the visual properties of a clip and can be combined t...",
6
6
  "type": "object",
7
7
  "additionalProperties": false,
8
8
  "properties": {
@@ -44,22 +44,22 @@
44
44
  ],
45
45
  "$defs": {
46
46
  "RotateTransformation": {
47
- "description": "Rotate a clip by the specified angle in degrees. Rotation origin is set based on the clips `p...",
47
+ "description": "Rotate a clip by the specified angle in degrees. Rotation origin is set based on...",
48
48
  "type": "object",
49
49
  "additionalProperties": false,
50
50
  "properties": {
51
51
  "angle": {
52
- "description": "Rotate a clip by the specified angle in degrees. Use a number or an array of [Tween](./#tocs_tween) objects to create a custom...",
52
+ "description": "Rotate a clip by the specified angle in degrees. Use a number or an array of [Tween](./#tocs_tween) objects ...",
53
53
  "anyOf": [
54
54
  {
55
55
  "type": "number",
56
- "description": "The angle to rotate the clip. Can be 0 to 360, or 0 to -360. Using a positive number rotates the clip clockwise, negative numbers counte...",
56
+ "description": "The angle to rotate the clip. Can be 0 to 360, or 0 to -360. Using a positive number rotates the clip clockwise, nega...",
57
57
  "minimum": -360,
58
58
  "maximum": 360
59
59
  },
60
60
  {
61
61
  "type": "array",
62
- "description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the rotation of an asset ...",
62
+ "description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the rotat...",
63
63
  "items": {
64
64
  "$ref": "#/$defs/Tween"
65
65
  }
@@ -75,13 +75,13 @@
75
75
  ]
76
76
  },
77
77
  "Tween": {
78
- "description": "Use a Tween to [animate properties over time](/docs/guide/architecting-an-application/animations/). The following properties are currently supported and can be animated:\n <ul>\n <li>Opacity - animate the transparency of a clip.</li>\n <li>Offset - animate the x and y position of a clip.</li>\n <li>Rotation - animate the rotation of a clip.</li>\n <li>Skew - animate the horizontal and vertical shearing effect.</li>\n <li>Volume - animate the audio...",
78
+ "description": "Use a Tween to [animate properties over time](/docs/guide/architecting-an-application/animations/). The following properties are currently supported and can be animated:\n <ul>\n <li>Opacity - animate the transparency of a clip.</li>\n <li>Offset - animate the x and y position of a clip.</li>\n <li>Rotation - animate the rotation of a clip.</li>\n <li>Skew - animate the horizontal and v...",
79
79
  "properties": {
80
80
  "from": {
81
81
  "anyOf": [
82
82
  {
83
83
  "type": "string",
84
- "description": "The initial property value at the start of the ani..."
84
+ "description": "The initial property value at the start of ..."
85
85
  },
86
86
  {
87
87
  "type": "null"
@@ -92,7 +92,7 @@
92
92
  "anyOf": [
93
93
  {
94
94
  "type": "string",
95
- "description": "The final property value at the end of the anim..."
95
+ "description": "The final property value at the end of t..."
96
96
  },
97
97
  {
98
98
  "type": "null"
@@ -103,7 +103,7 @@
103
103
  "anyOf": [
104
104
  {
105
105
  "type": "number",
106
- "description": "The time in seconds when the animation starts, relative to the clip, not the t..."
106
+ "description": "The time in seconds when the animation starts, relative to the clip..."
107
107
  },
108
108
  {
109
109
  "type": "null"
@@ -114,7 +114,7 @@
114
114
  "anyOf": [
115
115
  {
116
116
  "type": "number",
117
- "description": "The duration of the animation in se..."
117
+ "description": "The duration of the animation ..."
118
118
  },
119
119
  {
120
120
  "type": "null"
@@ -125,7 +125,7 @@
125
125
  "anyOf": [
126
126
  {
127
127
  "type": "string",
128
- "description": "The interpolation method to use for the animation. Available options are: <ul>\n <li>`linear` - a linear interpolation between the start and end values.</li>\n <li>`bezier` - a bezier curve interpolation between the start and end values.</li>\n <li>`constant` - an interpolation where the property instantly jumps from the start to the end value, without any gradu...",
128
+ "description": "The interpolation method to use for the animation. Available options are: <ul>\n <li>`linear` - a linear interpolation between the start and end values.</li>\n <li>`bezier` - a bezier curve interpolation between the start and end values.</li>\n <li>`constant` - an interpolation where the property instantly jumps...",
129
129
  "enum": [
130
130
  "linear",
131
131
  "bezier",
@@ -141,7 +141,37 @@
141
141
  "anyOf": [
142
142
  {
143
143
  "type": "string",
144
- "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 i..."
144
+ "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. O...",
145
+ "enum": [
146
+ "ease",
147
+ "easeIn",
148
+ "easeOut",
149
+ "easeInOut",
150
+ "easeInQuad",
151
+ "easeInCubic",
152
+ "easeInQuart",
153
+ "easeInQuint",
154
+ "easeInSine",
155
+ "easeInExpo",
156
+ "easeInCirc",
157
+ "easeInBack",
158
+ "easeOutQuad",
159
+ "easeOutCubic",
160
+ "easeOutQuart",
161
+ "easeOutQuint",
162
+ "easeOutSine",
163
+ "easeOutExpo",
164
+ "easeOutCirc",
165
+ "easeOutBack",
166
+ "easeInOutQuad",
167
+ "easeInOutCubic",
168
+ "easeInOutQuart",
169
+ "easeInOutQuint",
170
+ "easeInOutSine",
171
+ "easeInOutExpo",
172
+ "easeInOutCirc",
173
+ "easeInOutBack"
174
+ ]
145
175
  },
146
176
  {
147
177
  "type": "null"
@@ -161,22 +191,22 @@
161
191
  ]
162
192
  },
163
193
  "SkewTransformation": {
164
- "description": "Skew a clip so its edges are sheared at an angle. Use values between -100 and 100. Values over 3 or under -3 will skew the clip a...",
194
+ "description": "Skew a clip so its edges are sheared at an angle. Use values between -100 and 100. Values over 3 or under -3 w...",
165
195
  "type": "object",
166
196
  "additionalProperties": false,
167
197
  "properties": {
168
198
  "x": {
169
- "description": "Skew the clip along it's x ...",
199
+ "description": "Skew the clip along it'...",
170
200
  "anyOf": [
171
201
  {
172
202
  "type": "number",
173
- "description": "Range varies from -100 to 100. Positive numbers skew the asset right, negative left. The distance moved is relative to the width of the viewport - i.e. an X skew of 0.5 will skew the asset half the screen wid...",
203
+ "description": "Range varies from -100 to 100. Positive numbers skew the asset right, negative left. The distance moved is relative to the width of the viewport - i.e. an X skew of 0.5 will skew ...",
174
204
  "minimum": -100,
175
205
  "maximum": 100
176
206
  },
177
207
  {
178
208
  "type": "array",
179
- "description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the X skew of an asset ...",
209
+ "description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the X s...",
180
210
  "items": {
181
211
  "$ref": "#/$defs/Tween"
182
212
  }
@@ -187,17 +217,17 @@
187
217
  ]
188
218
  },
189
219
  "y": {
190
- "description": "Skew the clip along it's y ...",
220
+ "description": "Skew the clip along it'...",
191
221
  "anyOf": [
192
222
  {
193
223
  "type": "number",
194
- "description": "Range varies from -100 to 100. Positive numbers skew the asset up, negative down. The distance moved is relative to the height of the viewport - i.e. an Y skew of 0.5 will skew the asset half the sc...",
224
+ "description": "Range varies from -100 to 100. Positive numbers skew the asset up, negative down. The distance moved is relative to the height of the viewport - i.e. an Y skew of 0.5 wil...",
195
225
  "minimum": -100,
196
226
  "maximum": 100
197
227
  },
198
228
  {
199
229
  "type": "array",
200
- "description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the Y skew of an asset ...",
230
+ "description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the Y s...",
201
231
  "items": {
202
232
  "$ref": "#/$defs/Tween"
203
233
  }
@@ -214,7 +244,7 @@
214
244
  ]
215
245
  },
216
246
  "FlipTransformation": {
217
- "description": "Flip a clip vertically or horizontally. Acts as a mirror effect of the clip along the select...",
247
+ "description": "Flip a clip vertically or horizontally. Acts as a mirror effect of the clip alo...",
218
248
  "type": "object",
219
249
  "additionalProperties": false,
220
250
  "properties": {
@@ -222,7 +252,7 @@
222
252
  "anyOf": [
223
253
  {
224
254
  "type": "boolean",
225
- "description": "Flip a clip horizont..."
255
+ "description": "Flip a clip horiz..."
226
256
  },
227
257
  {
228
258
  "type": "null"
@@ -233,7 +263,7 @@
233
263
  "anyOf": [
234
264
  {
235
265
  "type": "boolean",
236
- "description": "Flip a clip vertic..."
266
+ "description": "Flip a clip ver..."
237
267
  },
238
268
  {
239
269
  "type": "null"
@@ -8,7 +8,31 @@
8
8
  "anyOf": [
9
9
  {
10
10
  "type": "string",
11
- "description": "The transition in. Available transitions are:\n <ul>\n <li>`fade` - fade in</li>\n <li>`reveal` - reveal from left to right</li>\n <li>`wipeLeft` - fade across screen to the left</li>\n <li>`wipeRight` - fade across screen to the right</li>\n <li>`slideLeft` - move slightly left and fade in</li>\n <li>`slideRight` - move slightly right and fade in</li>\n <li>`slideUp` - move slightly up and fade in</li>\n <li>`slideDown` - move slightly down and fade in</li>\n <li>`carouselLeft` - slide in from right to left</li>\n <li>`carouselRight` - slide in from left to right</li>\n <li>`carouselUp` - slide in from bottom to top</li>\n <li>`carouselDown` - slide in from top to bottom</li>\n <li>`shuffleTopRight` - rotate in from top right</li>\n <li>`shuffleRightTop` - rotate in from right top</li>\n <li>`shuffleRightBottom` - rotate in from right bottom</li>\n <li>`shuffleBottomRight` - rotate in from bottom right</li>\n <li>`shuffleBottomLeft` - rotate in from bottom left</li>\n <li>`shuffleLeftBottom` - rotate in from left bottom</li>\n <li>`shuffleLeftTop` - rotate in from left top</li>\n <li>`shuffleTopLeft` - rotate in from top left</li>\n <li>`zoom` - fast zoom in</li>\n </ul>\nThe transition speed can also be controlled by appending `Fast` or `Slow` to the transition, e.g. `fadeFast` or `CarouselLeftSlow`."
11
+ "description": "The transition in. Available transitions are:\n <ul>\n <li>`fade` - fade in</li>\n <li>`reveal` - reveal from left to right</li>\n <li>`wipeLeft` - fade across screen to the left</li>\n <li>`wipeRight` - fade across screen to the right</li>\n <li>`slideLeft` - move slightly left and fade in</li>\n <li>`slideRight` - move slightly right and fade in</li>\n <li>`slideUp` - move slightly up and fade in</li>\n <li>`slideDown` - move slightly down and fade in</li>\n <li>`carouselLeft` - slide in from right to left</li>\n <li>`carouselRight` - slide in from left to right</li>\n <li>`carouselUp` - slide in from bottom to top</li>\n <li>`carouselDown` - slide in from top to bottom</li>\n <li>`shuffleTopRight` - rotate in from top right</li>\n <li>`shuffleRightTop` - rotate in from right top</li>\n <li>`shuffleRightBottom` - rotate in from right bottom</li>\n <li>`shuffleBottomRight` - rotate in from bottom right</li>\n <li>`shuffleBottomLeft` - rotate in from bottom left</li>\n <li>`shuffleLeftBottom` - rotate in from left bottom</li>\n <li>`shuffleLeftTop` - rotate in from left top</li>\n <li>`shuffleTopLeft` - rotate in from top left</li>\n <li>`zoom` - fast zoom in</li>\n </ul>\nThe transition speed can also be controlled by appending `Fast` or `Slow` to the transition, e.g. `fadeFast` or `CarouselLeftSlow`.",
12
+ "enum": [
13
+ "none",
14
+ "fade",
15
+ "reveal",
16
+ "wipeLeft",
17
+ "wipeRight",
18
+ "slideLeft",
19
+ "slideRight",
20
+ "slideUp",
21
+ "slideDown",
22
+ "carouselLeft",
23
+ "carouselRight",
24
+ "carouselUp",
25
+ "carouselDown",
26
+ "shuffleTopRight",
27
+ "shuffleRightTop",
28
+ "shuffleRightBottom",
29
+ "shuffleBottomRight",
30
+ "shuffleBottomLeft",
31
+ "shuffleLeftBottom",
32
+ "shuffleLeftTop",
33
+ "shuffleTopLeft",
34
+ "zoom"
35
+ ]
12
36
  },
13
37
  {
14
38
  "type": "null"
@@ -19,7 +43,31 @@
19
43
  "anyOf": [
20
44
  {
21
45
  "type": "string",
22
- "description": "The transition out. Available transitions are:\n <ul>\n <li>`fade` - fade out</li>\n <li>`reveal` - reveal from right to left</li>\n <li>`wipeLeft` - fade across screen to the left</li>\n <li>`wipeRight` - fade across screen to the right</li>\n <li>`slideLeft` - move slightly left and fade out</li>\n <li>`slideRight` - move slightly right and fade out</li>\n <li>`slideUp` - move slightly up and fade out</li>\n <li>`slideDown` - move slightly down and fade out</li>\n <li>`carouselLeft` - slide out from right to left</li>\n <li>`carouselRight` - slide out from left to right</li>\n <li>`carouselUp` - slide out from bottom to top</li>\n <li>`carouselDown` - slide out from top to bottom</li>\n <li>`shuffleTopRight` - rotate out from top right</li>\n <li>`shuffleRightTop` - rotate out from right top</li>\n <li>`shuffleRightBottom` - rotate out from right bottom</li>\n <li>`shuffleBottomRight` - rotate out from bottom right</li>\n <li>`shuffleBottomLeft` - rotate out from bottom left</li>\n <li>`shuffleLeftBottom` - rotate out from left bottom</li>\n <li>`shuffleLeftTop` - rotate out from left top</li>\n <li>`shuffleTopLeft` - rotate out from top left</li>\n <li>`zoom` - fast zoom out</li>\n </ul>\nThe transition speed can also be controlled by appending `Fast` or `Slow` to the transition, e.g. `fadeFast` or `CarouselLeftSlow`."
46
+ "description": "The transition out. Available transitions are:\n <ul>\n <li>`fade` - fade out</li>\n <li>`reveal` - reveal from right to left</li>\n <li>`wipeLeft` - fade across screen to the left</li>\n <li>`wipeRight` - fade across screen to the right</li>\n <li>`slideLeft` - move slightly left and fade out</li>\n <li>`slideRight` - move slightly right and fade out</li>\n <li>`slideUp` - move slightly up and fade out</li>\n <li>`slideDown` - move slightly down and fade out</li>\n <li>`carouselLeft` - slide out from right to left</li>\n <li>`carouselRight` - slide out from left to right</li>\n <li>`carouselUp` - slide out from bottom to top</li>\n <li>`carouselDown` - slide out from top to bottom</li>\n <li>`shuffleTopRight` - rotate out from top right</li>\n <li>`shuffleRightTop` - rotate out from right top</li>\n <li>`shuffleRightBottom` - rotate out from right bottom</li>\n <li>`shuffleBottomRight` - rotate out from bottom right</li>\n <li>`shuffleBottomLeft` - rotate out from bottom left</li>\n <li>`shuffleLeftBottom` - rotate out from left bottom</li>\n <li>`shuffleLeftTop` - rotate out from left top</li>\n <li>`shuffleTopLeft` - rotate out from top left</li>\n <li>`zoom` - fast zoom out</li>\n </ul>\nThe transition speed can also be controlled by appending `Fast` or `Slow` to the transition, e.g. `fadeFast` or `CarouselLeftSlow`.",
47
+ "enum": [
48
+ "none",
49
+ "fade",
50
+ "reveal",
51
+ "wipeLeft",
52
+ "wipeRight",
53
+ "slideLeft",
54
+ "slideRight",
55
+ "slideUp",
56
+ "slideDown",
57
+ "carouselLeft",
58
+ "carouselRight",
59
+ "carouselUp",
60
+ "carouselDown",
61
+ "shuffleTopRight",
62
+ "shuffleRightTop",
63
+ "shuffleRightBottom",
64
+ "shuffleBottomRight",
65
+ "shuffleBottomLeft",
66
+ "shuffleLeftBottom",
67
+ "shuffleLeftTop",
68
+ "shuffleTopLeft",
69
+ "zoom"
70
+ ]
23
71
  },
24
72
  {
25
73
  "type": "null"
@@ -68,7 +68,37 @@
68
68
  "anyOf": [
69
69
  {
70
70
  "type": "string",
71
- "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`."
71
+ "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`.",
72
+ "enum": [
73
+ "ease",
74
+ "easeIn",
75
+ "easeOut",
76
+ "easeInOut",
77
+ "easeInQuad",
78
+ "easeInCubic",
79
+ "easeInQuart",
80
+ "easeInQuint",
81
+ "easeInSine",
82
+ "easeInExpo",
83
+ "easeInCirc",
84
+ "easeInBack",
85
+ "easeOutQuad",
86
+ "easeOutCubic",
87
+ "easeOutQuart",
88
+ "easeOutQuint",
89
+ "easeOutSine",
90
+ "easeOutExpo",
91
+ "easeOutCirc",
92
+ "easeOutBack",
93
+ "easeInOutQuad",
94
+ "easeInOutCubic",
95
+ "easeInOutQuart",
96
+ "easeInOutQuint",
97
+ "easeInOutSine",
98
+ "easeInOutExpo",
99
+ "easeInOutCirc",
100
+ "easeInOutBack"
101
+ ]
72
102
  },
73
103
  {
74
104
  "type": "null"
@@ -2,25 +2,25 @@
2
2
  "name": "VideoAsset",
3
3
  "strict": true,
4
4
  "schema": {
5
- "description": "The VideoAsset is used to create video sequences from video files. The src must be a ...",
5
+ "description": "The VideoAsset is used to create video sequences from video files. The ...",
6
6
  "type": "object",
7
7
  "properties": {
8
8
  "type": {
9
9
  "enum": [
10
10
  "video"
11
11
  ],
12
- "description": "The type of asset - set ...",
12
+ "description": "The type of asset -...",
13
13
  "type": "string"
14
14
  },
15
15
  "src": {
16
- "description": "The video source URL. The URL must be publicl...",
16
+ "description": "The video source URL. The URL must be...",
17
17
  "type": "string"
18
18
  },
19
19
  "transcode": {
20
20
  "anyOf": [
21
21
  {
22
22
  "type": "boolean",
23
- "description": "Set to `true` to force re-encoding of the video during preprocessing. This can help resolve compatibility issues, fix rotation problems, synchronize aud..."
23
+ "description": "Set to `true` to force re-encoding of the video during preprocessing. This can help resolve compatibility issues, fix rotation ..."
24
24
  },
25
25
  {
26
26
  "type": "null"
@@ -31,7 +31,7 @@
31
31
  "anyOf": [
32
32
  {
33
33
  "type": "number",
34
- "description": "The start trim point of the video clip, in seconds (defaults to 0). Videos will start from the in trim p..."
34
+ "description": "The start trim point of the video clip, in seconds (defaults to 0). Videos will start ..."
35
35
  },
36
36
  {
37
37
  "type": "null"
@@ -39,17 +39,17 @@
39
39
  ]
40
40
  },
41
41
  "volume": {
42
- "description": "Set the volume of the video clip. Use a number or an array of [Tween](./#...",
42
+ "description": "Set the volume of the video clip. Use a number or an array of...",
43
43
  "anyOf": [
44
44
  {
45
45
  "type": "number",
46
- "description": "The volume level for the video clip. Range varies from 0 to 1 wher...",
46
+ "description": "The volume level for the video clip. Range varies from...",
47
47
  "minimum": 0,
48
48
  "maximum": 1
49
49
  },
50
50
  {
51
51
  "type": "array",
52
- "description": "An array of [Tween](./#tocs_tween) objects used to create a custom vo...",
52
+ "description": "An array of [Tween](./#tocs_tween) objects used to create...",
53
53
  "items": {
54
54
  "$ref": "#/$defs/Tween"
55
55
  }
@@ -63,7 +63,7 @@
63
63
  "anyOf": [
64
64
  {
65
65
  "type": "string",
66
- "description": "Preset volume effects to apply to the video asset <ul>\n <li>`fadeIn` - fade volume in only</li>\n <li>`fadeOut` -...",
66
+ "description": "Preset volume effects to apply to the video asset <ul>\n <li>`fadeIn` - fade volume in only</li...",
67
67
  "enum": [
68
68
  "none",
69
69
  "fadeIn",
@@ -80,7 +80,7 @@
80
80
  "anyOf": [
81
81
  {
82
82
  "type": "number",
83
- "description": "Adjust the playback speed of the video clip between 0 (paused) and 10 (10x normal speed) where 1 is normal speed (defaults to 1). Adjusting the speed will also adjust the duration of the clip and may require you to adjust the Clip length. For example, if you set speed to 0.5, the c...",
83
+ "description": "Adjust the playback speed of the video clip between 0 (paused) and 10 (10x normal speed) where 1 is normal speed (defaults to 1). Adjusting the speed will also adjust the duration of the clip and may require you to adjust the Clip lengt...",
84
84
  "minimum": 0,
85
85
  "maximum": 10
86
86
  },
@@ -124,13 +124,13 @@
124
124
  ],
125
125
  "$defs": {
126
126
  "Tween": {
127
- "description": "Use a Tween to [animate properties over time](/docs/guide/architecting-an-application/animations/). The following properties are currently supported and can be animated:\n <ul>\n <li>Opacity - animate the transparency of a clip.</li>\n <li>Offset - animate the x and y position of a cl...",
127
+ "description": "Use a Tween to [animate properties over time](/docs/guide/architecting-an-application/animations/). The following properties are currently supported and can be animated:\n <ul>\n <li>Opacity - animate the transparency of a clip.</li>\n <l...",
128
128
  "properties": {
129
129
  "from": {
130
130
  "anyOf": [
131
131
  {
132
132
  "type": "string",
133
- "description": "The initial property value at ..."
133
+ "description": "The initial property valu..."
134
134
  },
135
135
  {
136
136
  "type": "null"
@@ -141,7 +141,7 @@
141
141
  "anyOf": [
142
142
  {
143
143
  "type": "string",
144
- "description": "The final property value at ..."
144
+ "description": "The final property valu..."
145
145
  },
146
146
  {
147
147
  "type": "null"
@@ -152,7 +152,7 @@
152
152
  "anyOf": [
153
153
  {
154
154
  "type": "number",
155
- "description": "The time in seconds when the animation starts, r..."
155
+ "description": "The time in seconds when the animation ..."
156
156
  },
157
157
  {
158
158
  "type": "null"
@@ -163,7 +163,7 @@
163
163
  "anyOf": [
164
164
  {
165
165
  "type": "number",
166
- "description": "The duration of the a..."
166
+ "description": "The duration of t..."
167
167
  },
168
168
  {
169
169
  "type": "null"
@@ -174,7 +174,7 @@
174
174
  "anyOf": [
175
175
  {
176
176
  "type": "string",
177
- "description": "The interpolation method to use for the animation. Available options are: <ul>\n <li>`linear` - a linear interpolation between the start and end values.</li>\n <li>`bezier` - a bezier curve interpolation between the start and en...",
177
+ "description": "The interpolation method to use for the animation. Available options are: <ul>\n <li>`linear` - a linear interpolation between the start and end values.</li>\n <li>`bezier` - a bezier curve ...",
178
178
  "enum": [
179
179
  "linear",
180
180
  "bezier",
@@ -190,7 +190,37 @@
190
190
  "anyOf": [
191
191
  {
192
192
  "type": "string",
193
- "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..."
193
+ "description": "The easing function to use for the animation. Easing controls the rate of change of the animated value, allowing for more na...",
194
+ "enum": [
195
+ "ease",
196
+ "easeIn",
197
+ "easeOut",
198
+ "easeInOut",
199
+ "easeInQuad",
200
+ "easeInCubic",
201
+ "easeInQuart",
202
+ "easeInQuint",
203
+ "easeInSine",
204
+ "easeInExpo",
205
+ "easeInCirc",
206
+ "easeInBack",
207
+ "easeOutQuad",
208
+ "easeOutCubic",
209
+ "easeOutQuart",
210
+ "easeOutQuint",
211
+ "easeOutSine",
212
+ "easeOutExpo",
213
+ "easeOutCirc",
214
+ "easeOutBack",
215
+ "easeInOutQuad",
216
+ "easeInOutCubic",
217
+ "easeInOutQuart",
218
+ "easeInOutQuint",
219
+ "easeInOutSine",
220
+ "easeInOutExpo",
221
+ "easeInOutCirc",
222
+ "easeInOutBack"
223
+ ]
194
224
  },
195
225
  {
196
226
  "type": "null"
@@ -210,13 +240,13 @@
210
240
  ]
211
241
  },
212
242
  "Crop": {
213
- "description": "Crop the sides of an asset by a relative amount. The size of the crop is specified using a scale between 0 and 1, relative to the screen width - i.e a left cro...",
243
+ "description": "Crop the sides of an asset by a relative amount. The size of the crop is specified using a scale between 0 and 1, relative to the scr...",
214
244
  "properties": {
215
245
  "top": {
216
246
  "anyOf": [
217
247
  {
218
248
  "type": "number",
219
- "description": "Crop from the ...",
249
+ "description": "Crop from t...",
220
250
  "minimum": 0,
221
251
  "maximum": 1
222
252
  },
@@ -229,7 +259,7 @@
229
259
  "anyOf": [
230
260
  {
231
261
  "type": "number",
232
- "description": "Crop from the bo...",
262
+ "description": "Crop from the...",
233
263
  "minimum": 0,
234
264
  "maximum": 1
235
265
  },
@@ -242,7 +272,7 @@
242
272
  "anyOf": [
243
273
  {
244
274
  "type": "number",
245
- "description": "Crop from the l...",
275
+ "description": "Crop from th...",
246
276
  "minimum": 0,
247
277
  "maximum": 1
248
278
  },
@@ -255,7 +285,7 @@
255
285
  "anyOf": [
256
286
  {
257
287
  "type": "number",
258
- "description": "Crop from the l...",
288
+ "description": "Crop from th...",
259
289
  "minimum": 0,
260
290
  "maximum": 1
261
291
  },
@@ -275,17 +305,17 @@
275
305
  ]
276
306
  },
277
307
  "ChromaKey": {
278
- "description": "Chroma key is a technique that replaces a specific color in a video with a different background image or video, enabling seamless...",
308
+ "description": "Chroma key is a technique that replaces a specific color in a video with a different background image or vi...",
279
309
  "properties": {
280
310
  "color": {
281
- "description": "The chroma key color as a hex value. Use green (#00b140) for green screens or blue (#0000FF)...",
311
+ "description": "The chroma key color as a hex value. Use green (#00b140) for green screens o...",
282
312
  "type": "string"
283
313
  },
284
314
  "threshold": {
285
315
  "anyOf": [
286
316
  {
287
317
  "type": "integer",
288
- "description": "Pixels within this distance from the key color are elimi...",
318
+ "description": "Pixels within this distance from the key color...",
289
319
  "minimum": 0,
290
320
  "maximum": 250
291
321
  },
@@ -298,7 +328,7 @@
298
328
  "anyOf": [
299
329
  {
300
330
  "type": "integer",
301
- "description": "Pixels within the halo distance from the threshold boundary are given an increa...",
331
+ "description": "Pixels within the halo distance from the threshold boundary are gi...",
302
332
  "minimum": 0,
303
333
  "maximum": 250
304
334
  },