@shotstack/schemas 1.3.6 → 1.3.9
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/api.bundled.json +2 -2
- package/dist/schema.d.ts +1 -1
- package/dist/zod/zod.gen.cjs +164 -164
- package/dist/zod/zod.gen.d.ts +5189 -5189
- package/dist/zod/zod.gen.js +164 -164
- package/dist/zod/zod.gen.ts +164 -164
- package/package.json +1 -1
package/dist/api.bundled.json
CHANGED
|
@@ -3134,7 +3134,7 @@
|
|
|
3134
3134
|
"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 animation.",
|
|
3135
3135
|
"oneOf": [
|
|
3136
3136
|
{
|
|
3137
|
-
"type": "
|
|
3137
|
+
"type": "number",
|
|
3138
3138
|
"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 counter-clockwise.",
|
|
3139
3139
|
"format": "float",
|
|
3140
3140
|
"minimum": -360,
|
|
@@ -6223,7 +6223,7 @@
|
|
|
6223
6223
|
},
|
|
6224
6224
|
"height": {
|
|
6225
6225
|
"description": "The height in pixels of the ingested source file, if a video or image.",
|
|
6226
|
-
"type": "
|
|
6226
|
+
"type": "integer",
|
|
6227
6227
|
"example": 1080
|
|
6228
6228
|
},
|
|
6229
6229
|
"duration": {
|
package/dist/schema.d.ts
CHANGED
|
@@ -4130,7 +4130,7 @@ export interface components {
|
|
|
4130
4130
|
* @description The height in pixels of the ingested source file, if a video or image.
|
|
4131
4131
|
* @example 1080
|
|
4132
4132
|
*/
|
|
4133
|
-
height?:
|
|
4133
|
+
height?: number;
|
|
4134
4134
|
/**
|
|
4135
4135
|
* Format: float
|
|
4136
4136
|
* @description The duration in seconds of the ingested source file, if a video or audio file.
|