@shotstack/schemas 1.4.8 → 1.5.1
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 +18 -0
- package/dist/schema.d.ts +14 -0
- package/dist/zod/zod.gen.cjs +348 -399
- package/dist/zod/zod.gen.d.ts +4195 -4379
- package/dist/zod/zod.gen.js +348 -399
- package/dist/zod/zod.gen.ts +358 -409
- package/package.json +7 -2
package/dist/api.bundled.json
CHANGED
|
@@ -910,6 +910,19 @@
|
|
|
910
910
|
"mount"
|
|
911
911
|
],
|
|
912
912
|
"deprecated": true
|
|
913
|
+
},
|
|
914
|
+
"instance": {
|
|
915
|
+
"description": "The instance type to use for rendering. Different instance types have different capabilities and performance characteristics. Use `a1` for high-resolution 4K renders.",
|
|
916
|
+
"type": "string",
|
|
917
|
+
"example": "a1"
|
|
918
|
+
},
|
|
919
|
+
"poster": {
|
|
920
|
+
"description": "Generate a poster image from a specific point on the timeline.",
|
|
921
|
+
"$ref": "#/components/schemas/Poster"
|
|
922
|
+
},
|
|
923
|
+
"thumbnail": {
|
|
924
|
+
"description": "Generate a thumbnail image from a specific point on the timeline.",
|
|
925
|
+
"$ref": "#/components/schemas/Thumbnail"
|
|
913
926
|
}
|
|
914
927
|
},
|
|
915
928
|
"required": [
|
|
@@ -3745,6 +3758,11 @@
|
|
|
3745
3758
|
"type": "number",
|
|
3746
3759
|
"example": 0.25
|
|
3747
3760
|
},
|
|
3761
|
+
"bottom": {
|
|
3762
|
+
"description": "The margin below the text. Pushes captions up the screen.",
|
|
3763
|
+
"type": "number",
|
|
3764
|
+
"example": 0.25
|
|
3765
|
+
},
|
|
3748
3766
|
"left": {
|
|
3749
3767
|
"description": "The margin to the left of the text. Pushes captions to the right.",
|
|
3750
3768
|
"type": "number",
|
package/dist/schema.d.ts
CHANGED
|
@@ -448,6 +448,15 @@ export interface components {
|
|
|
448
448
|
* @enum {string}
|
|
449
449
|
*/
|
|
450
450
|
disk?: "local" | "mount";
|
|
451
|
+
/**
|
|
452
|
+
* @description The instance type to use for rendering. Different instance types have different capabilities and performance characteristics. Use `a1` for high-resolution 4K renders.
|
|
453
|
+
* @example a1
|
|
454
|
+
*/
|
|
455
|
+
instance?: string;
|
|
456
|
+
/** @description Generate a poster image from a specific point on the timeline. */
|
|
457
|
+
poster?: components["schemas"]["Poster"];
|
|
458
|
+
/** @description Generate a thumbnail image from a specific point on the timeline. */
|
|
459
|
+
thumbnail?: components["schemas"]["Thumbnail"];
|
|
451
460
|
};
|
|
452
461
|
/** @description A timeline represents the contents of a video edit over time, an audio edit over time, in seconds, or an image layout. A timeline consists of layers called tracks. Tracks are composed of titles, images, audio, html or video segments referred to as clips which are placed along the track at specific starting point and lasting for a specific amount of time. */
|
|
453
462
|
Timeline: {
|
|
@@ -2328,6 +2337,11 @@ export interface components {
|
|
|
2328
2337
|
* @example 0.25
|
|
2329
2338
|
*/
|
|
2330
2339
|
top?: number;
|
|
2340
|
+
/**
|
|
2341
|
+
* @description The margin below the text. Pushes captions up the screen.
|
|
2342
|
+
* @example 0.25
|
|
2343
|
+
*/
|
|
2344
|
+
bottom?: number;
|
|
2331
2345
|
/**
|
|
2332
2346
|
* @description The margin to the left of the text. Pushes captions to the right.
|
|
2333
2347
|
* @example 0.05
|