@vosjs/cli 0.25.1 → 0.27.0

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/cli.js CHANGED
@@ -495,7 +495,7 @@ async function cmdCheck(argv) {
495
495
  return result.ok ? EXIT_OK : EXIT_ERROR;
496
496
  }
497
497
  async function delegate(argv, viaAlias = false) {
498
- const { run } = await import("./run-NTVAMME2.js");
498
+ const { run } = await import("./run-XR464TW5.js");
499
499
  if (viaAlias && argv[0]) {
500
500
  process.stderr.write(
501
501
  `note: "vos voila ${argv[0]}" is now "vos ${argv[0]}".
package/dist/index.d.ts CHANGED
@@ -371,6 +371,8 @@ interface PlanOptions {
371
371
  motion?: MotionProposalInput & {
372
372
  again?: boolean;
373
373
  };
374
+ /** The frame that stands for the take (output seconds): --still, LAUNCH.md still:. */
375
+ still?: number | null;
374
376
  }
375
377
  declare function planTake(dir: string, opts?: PlanOptions): Promise<PlanSummary>;
376
378
 
package/dist/index.js CHANGED
@@ -30,7 +30,7 @@ import {
30
30
  validateActions,
31
31
  waitForPageDone,
32
32
  writeSyncState
33
- } from "./chunk-GHJ2BFQG.js";
33
+ } from "./chunk-IJ5A4TL3.js";
34
34
  import {
35
35
  BrowserUnavailableError,
36
36
  configDuration,
@@ -1,9 +1,9 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  run
4
- } from "./chunk-GHJ2BFQG.js";
4
+ } from "./chunk-IJ5A4TL3.js";
5
5
  import "./chunk-NHKHTIDR.js";
6
6
  export {
7
7
  run
8
8
  };
9
- //# sourceMappingURL=run-NTVAMME2.js.map
9
+ //# sourceMappingURL=run-XR464TW5.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vosjs/cli",
3
- "version": "0.25.1",
3
+ "version": "0.27.0",
4
4
  "description": "The vos CLI: record the real product from a scripted browser flow, auto-zoom from the cursor track, cut as data in doc.json, render deterministic video and stills, deliver a release's media per destination spec, and sync with vos.so. One binary, every verb, MIT.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -48,14 +48,14 @@
48
48
  "dependencies": {
49
49
  "mediabunny": "^1.55.7",
50
50
  "playwright": "^1.49.0",
51
- "@vosjs/core": "^0.23.6",
51
+ "@vosjs/core": "^0.23.7",
52
52
  "@vosjs/editor": "^1.3.1",
53
- "@vosjs/render-core": "^0.2.5",
54
- "@vosjs/shared": "^0.4.1",
55
53
  "@vosjs/elements": "^0.8.1",
56
- "@vosjs/studio-core": "^0.15.1",
57
- "@vosjs/tween": "^0.8.2",
58
- "@vosjs/timeline": "^0.4.1"
54
+ "@vosjs/render-core": "^0.2.6",
55
+ "@vosjs/shared": "^0.4.1",
56
+ "@vosjs/studio-core": "^0.17.0",
57
+ "@vosjs/timeline": "^0.4.1",
58
+ "@vosjs/tween": "^0.8.2"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@types/node": "^22",
@@ -670,6 +670,11 @@
670
670
  },
671
671
  "required": ["id"]
672
672
  }
673
+ },
674
+ "still": {
675
+ "type": "number",
676
+ "minimum": 0,
677
+ "description": "The frame that stands for this take, in OUTPUT seconds: the cover the shelf shows, the still a kit leads with (vos plan --still <t>, LAUNCH.md still:). Absent, the take's own last freeze (a poster's rest; a template's freezes never count), else the hero moment after the card and the opening clips have entered."
673
678
  }
674
679
  }
675
680
  },
@@ -1080,7 +1085,7 @@
1080
1085
  },
1081
1086
  "key": {
1082
1087
  "type": "string",
1083
- "description": "image/video kinds: media URL or take-dir file (e.g. \"/logo.png\", \"/clip.webm\") \u2014 required for media"
1088
+ "description": "image/video kinds: media URL or take-dir file (e.g. \"/logo.png\", \"/clip.webm\") \u2014 required for media. A media layer may show a DOCUMENT media by reference: media:<id> (media: alone is the primary), which brings the media's facts (its cursor track, its recorded page) and follows its kind."
1084
1089
  },
1085
1090
  "width": {
1086
1091
  "type": "number",
@@ -1102,6 +1107,44 @@
1102
1107
  "loop": {
1103
1108
  "type": "boolean",
1104
1109
  "description": "video kind: loop while active (default: hold the last frame)"
1110
+ },
1111
+ "frame": {
1112
+ "type": "object",
1113
+ "description": "A media layer as a CARD, drawn by the card painter on its own plane above the primary card: a browser bar (allowed on any card, opens off; its address defaults to the media's recorded page for a media:<id> layer), a lean in degrees (the tilt convention), the layered shadow, and for a document media its cursor dot and click rings. Absent = the flat picture.",
1114
+ "additionalProperties": false,
1115
+ "properties": {
1116
+ "browserBar": {
1117
+ "$ref": "#/oneOf/0/properties/frame/properties/browserBar"
1118
+ },
1119
+ "lean": {
1120
+ "type": "object",
1121
+ "additionalProperties": false,
1122
+ "properties": {
1123
+ "rx": {
1124
+ "type": "number"
1125
+ },
1126
+ "ry": {
1127
+ "type": "number"
1128
+ }
1129
+ }
1130
+ },
1131
+ "shadow": {
1132
+ "type": "number",
1133
+ "minimum": 0,
1134
+ "maximum": 1
1135
+ },
1136
+ "shadowContact": {
1137
+ "type": "number",
1138
+ "minimum": 0,
1139
+ "maximum": 1
1140
+ },
1141
+ "shadowColor": {
1142
+ "type": "string"
1143
+ },
1144
+ "cursor": {
1145
+ "type": "boolean"
1146
+ }
1147
+ }
1105
1148
  }
1106
1149
  }
1107
1150
  }