@shotstack/schemas 1.4.4 → 1.4.5
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 +4 -2
- package/dist/schema.d.ts +2 -0
- package/dist/zod/zod.gen.cjs +907 -1042
- package/dist/zod/zod.gen.d.ts +1 -1
- package/dist/zod/zod.gen.js +908 -1043
- package/dist/zod/zod.gen.ts +1589 -1509
- package/package.json +1 -1
package/dist/api.bundled.json
CHANGED
|
@@ -1078,14 +1078,16 @@
|
|
|
1078
1078
|
},
|
|
1079
1079
|
"width": {
|
|
1080
1080
|
"description": "Set the width of the clip bounding box in pixels. This constrains the width of the clip, overriding the default behavior where clips fill the viewport width.",
|
|
1081
|
-
"type": "
|
|
1081
|
+
"type": "number",
|
|
1082
|
+
"format": "float",
|
|
1082
1083
|
"minimum": 1,
|
|
1083
1084
|
"maximum": 3840,
|
|
1084
1085
|
"example": 800
|
|
1085
1086
|
},
|
|
1086
1087
|
"height": {
|
|
1087
1088
|
"description": "Set the height of the clip bounding box in pixels. This constrains the height of the clip, overriding the default behavior where clips fill the viewport height.",
|
|
1088
|
-
"type": "
|
|
1089
|
+
"type": "number",
|
|
1090
|
+
"format": "float",
|
|
1089
1091
|
"minimum": 1,
|
|
1090
1092
|
"maximum": 2160,
|
|
1091
1093
|
"example": 600
|
package/dist/schema.d.ts
CHANGED
|
@@ -515,11 +515,13 @@ export interface components {
|
|
|
515
515
|
/** @description Scale the asset to a fraction of the viewport size - i.e. setting the scale to 0.5 will scale asset to half the size of the viewport. This is useful for picture-in-picture video and scaling images such as logos and watermarks. Use a number or an array of [Tween](./#tocs_tween) objects to create a custom animation. */
|
|
516
516
|
scale?: number | components["schemas"]["Tween"][];
|
|
517
517
|
/**
|
|
518
|
+
* Format: float
|
|
518
519
|
* @description Set the width of the clip bounding box in pixels. This constrains the width of the clip, overriding the default behavior where clips fill the viewport width.
|
|
519
520
|
* @example 800
|
|
520
521
|
*/
|
|
521
522
|
width?: number;
|
|
522
523
|
/**
|
|
524
|
+
* Format: float
|
|
523
525
|
* @description Set the height of the clip bounding box in pixels. This constrains the height of the clip, overriding the default behavior where clips fill the viewport height.
|
|
524
526
|
* @example 600
|
|
525
527
|
*/
|