@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
|
@@ -121,7 +121,37 @@
|
|
|
121
121
|
"anyOf": [
|
|
122
122
|
{
|
|
123
123
|
"type": "string",
|
|
124
|
-
"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`."
|
|
124
|
+
"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`.",
|
|
125
|
+
"enum": [
|
|
126
|
+
"ease",
|
|
127
|
+
"easeIn",
|
|
128
|
+
"easeOut",
|
|
129
|
+
"easeInOut",
|
|
130
|
+
"easeInQuad",
|
|
131
|
+
"easeInCubic",
|
|
132
|
+
"easeInQuart",
|
|
133
|
+
"easeInQuint",
|
|
134
|
+
"easeInSine",
|
|
135
|
+
"easeInExpo",
|
|
136
|
+
"easeInCirc",
|
|
137
|
+
"easeInBack",
|
|
138
|
+
"easeOutQuad",
|
|
139
|
+
"easeOutCubic",
|
|
140
|
+
"easeOutQuart",
|
|
141
|
+
"easeOutQuint",
|
|
142
|
+
"easeOutSine",
|
|
143
|
+
"easeOutExpo",
|
|
144
|
+
"easeOutCirc",
|
|
145
|
+
"easeOutBack",
|
|
146
|
+
"easeInOutQuad",
|
|
147
|
+
"easeInOutCubic",
|
|
148
|
+
"easeInOutQuart",
|
|
149
|
+
"easeInOutQuint",
|
|
150
|
+
"easeInOutSine",
|
|
151
|
+
"easeInOutExpo",
|
|
152
|
+
"easeInOutCirc",
|
|
153
|
+
"easeInOutBack"
|
|
154
|
+
]
|
|
125
155
|
},
|
|
126
156
|
{
|
|
127
157
|
"type": "null"
|