@vosjs/cli 0.23.0 → 0.24.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/README.md +2 -0
- package/dist/{chunk-SLCQCRNI.js → chunk-NOR522G5.js} +133 -10
- package/dist/chunk-NOR522G5.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{run-UU4WYO4C.js → run-UZW5LPJQ.js} +2 -2
- package/package.json +5 -5
- package/schema/doc.schema.json +60 -4
- package/dist/chunk-SLCQCRNI.js.map +0 -1
- /package/dist/{run-UU4WYO4C.js.map → run-UZW5LPJQ.js.map} +0 -0
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-
|
|
498
|
+
const { run } = await import("./run-UZW5LPJQ.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.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vosjs/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.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",
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"@vosjs/core": "^0.23.6",
|
|
52
52
|
"@vosjs/editor": "^1.3.1",
|
|
53
53
|
"@vosjs/elements": "^0.8.1",
|
|
54
|
-
"@vosjs/render-core": "^0.2.
|
|
54
|
+
"@vosjs/render-core": "^0.2.5",
|
|
55
55
|
"@vosjs/shared": "^0.4.1",
|
|
56
|
-
"@vosjs/studio-core": "^0.
|
|
57
|
-
"@vosjs/
|
|
58
|
-
"@vosjs/
|
|
56
|
+
"@vosjs/studio-core": "^0.14.0",
|
|
57
|
+
"@vosjs/tween": "^0.8.2",
|
|
58
|
+
"@vosjs/timeline": "^0.4.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@types/node": "^22",
|
package/schema/doc.schema.json
CHANGED
|
@@ -47,6 +47,10 @@
|
|
|
47
47
|
"minimum": 0,
|
|
48
48
|
"maximum": 30,
|
|
49
49
|
"description": "LEGACY spelling of a freeze at this segment's end, read into `freeze` on every path; write `freeze` instead"
|
|
50
|
+
},
|
|
51
|
+
"media": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "the media this belongs to: a `media[].id`; absent = the primary, `source`"
|
|
50
54
|
}
|
|
51
55
|
},
|
|
52
56
|
"additionalProperties": true
|
|
@@ -131,6 +135,10 @@
|
|
|
131
135
|
}
|
|
132
136
|
},
|
|
133
137
|
"description": "Re-record tie: `vos plan --reuse` re-times this span onto a NEW recording of the same script by resolving the step in the new meta.steps. Metadata only — `in`/`out` stay authoritative and lowering never reads it, so it costs nothing at render time"
|
|
138
|
+
},
|
|
139
|
+
"media": {
|
|
140
|
+
"type": "string",
|
|
141
|
+
"description": "the media this belongs to: a `media[].id`; absent = the primary, `source`"
|
|
134
142
|
}
|
|
135
143
|
},
|
|
136
144
|
"additionalProperties": true
|
|
@@ -222,6 +230,10 @@
|
|
|
222
230
|
}
|
|
223
231
|
},
|
|
224
232
|
"description": "Re-record tie: `vos plan --reuse` re-times this span onto a NEW recording of the same script by resolving the step in the new meta.steps. Metadata only — `in`/`out` stay authoritative and lowering never reads it, so it costs nothing at render time"
|
|
233
|
+
},
|
|
234
|
+
"media": {
|
|
235
|
+
"type": "string",
|
|
236
|
+
"description": "the media this belongs to: a `media[].id`; absent = the primary, `source`"
|
|
225
237
|
}
|
|
226
238
|
},
|
|
227
239
|
"additionalProperties": true
|
|
@@ -278,6 +290,10 @@
|
|
|
278
290
|
"note": {
|
|
279
291
|
"type": "string",
|
|
280
292
|
"description": "why, in the deleter's words"
|
|
293
|
+
},
|
|
294
|
+
"media": {
|
|
295
|
+
"type": "string",
|
|
296
|
+
"description": "the media this belongs to: a `media[].id`; absent = the primary, `source`"
|
|
281
297
|
}
|
|
282
298
|
},
|
|
283
299
|
"additionalProperties": false
|
|
@@ -358,6 +374,10 @@
|
|
|
358
374
|
"type": "string",
|
|
359
375
|
"enum": ["auto", "manual"],
|
|
360
376
|
"description": "reserved for a future planner; spans you add or edit are 'manual'"
|
|
377
|
+
},
|
|
378
|
+
"media": {
|
|
379
|
+
"type": "string",
|
|
380
|
+
"description": "the media this belongs to: a `media[].id`; absent = the primary, `source`"
|
|
361
381
|
}
|
|
362
382
|
}
|
|
363
383
|
}
|
|
@@ -580,13 +600,33 @@
|
|
|
580
600
|
"required": ["key", "aspect"],
|
|
581
601
|
"additionalProperties": false,
|
|
582
602
|
"properties": {
|
|
583
|
-
"key": {
|
|
584
|
-
|
|
603
|
+
"key": {
|
|
604
|
+
"type": "string"
|
|
605
|
+
},
|
|
606
|
+
"aspect": {
|
|
607
|
+
"type": "number",
|
|
608
|
+
"exclusiveMinimum": 0
|
|
609
|
+
}
|
|
585
610
|
},
|
|
586
611
|
"description": "the brand's mark as an image (a take-dir path or a URL the render page can load) with its width-over-height, drawn above the wordmark; a wide mark (a stylised wordmark asset) stands alone. vos deliver fetches BRAND.md's logoUrl into the take's brand/ folder and sets this"
|
|
587
612
|
}
|
|
588
613
|
},
|
|
589
614
|
"description": "the end card the clip closes on: a hold on the last frame (default 2.5 s) while the card recedes and the words rise as the house title, caption and label overlays. The clip's last frame is its poster"
|
|
615
|
+
},
|
|
616
|
+
"media": {
|
|
617
|
+
"type": "array",
|
|
618
|
+
"description": "The take's OTHER media (concat, a layer's source): each the `source` shape (a media plus the facts only a capture has) with an `id` a segment or a source-anchored span names. The primary stays `source`. Absent = one media.",
|
|
619
|
+
"items": {
|
|
620
|
+
"type": "object",
|
|
621
|
+
"additionalProperties": true,
|
|
622
|
+
"properties": {
|
|
623
|
+
"id": {
|
|
624
|
+
"type": "string",
|
|
625
|
+
"description": "stable identity a segment or a span names (m1, m2, …)"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"required": ["id"]
|
|
629
|
+
}
|
|
590
630
|
}
|
|
591
631
|
}
|
|
592
632
|
},
|
|
@@ -701,8 +741,12 @@
|
|
|
701
741
|
"type": "object",
|
|
702
742
|
"additionalProperties": false,
|
|
703
743
|
"properties": {
|
|
704
|
-
"enter": {
|
|
705
|
-
|
|
744
|
+
"enter": {
|
|
745
|
+
"$ref": "#/definitions/animStep"
|
|
746
|
+
},
|
|
747
|
+
"exit": {
|
|
748
|
+
"$ref": "#/definitions/animStep"
|
|
749
|
+
},
|
|
706
750
|
"idle": {
|
|
707
751
|
"enum": ["spin", "float", null],
|
|
708
752
|
"description": "props only: what it does while it stays"
|
|
@@ -1263,6 +1307,10 @@
|
|
|
1263
1307
|
"duck": {
|
|
1264
1308
|
"type": "boolean",
|
|
1265
1309
|
"description": "duck under the mic while speech is detected"
|
|
1310
|
+
},
|
|
1311
|
+
"media": {
|
|
1312
|
+
"type": "string",
|
|
1313
|
+
"description": "the media this belongs to: a `media[].id`; absent = the primary, `source`"
|
|
1266
1314
|
}
|
|
1267
1315
|
},
|
|
1268
1316
|
"additionalProperties": true
|
|
@@ -1331,6 +1379,10 @@
|
|
|
1331
1379
|
"from": {
|
|
1332
1380
|
"type": "string",
|
|
1333
1381
|
"description": "the template (a vos id, or 'endcard') that placed it, the clips' `from`: a re-apply replaces it, a loop drops it"
|
|
1382
|
+
},
|
|
1383
|
+
"media": {
|
|
1384
|
+
"type": "string",
|
|
1385
|
+
"description": "the media this belongs to: a `media[].id`; absent = the primary, `source`"
|
|
1334
1386
|
}
|
|
1335
1387
|
},
|
|
1336
1388
|
"additionalProperties": false
|
|
@@ -1382,6 +1434,10 @@
|
|
|
1382
1434
|
}
|
|
1383
1435
|
},
|
|
1384
1436
|
"description": "Re-record tie: `vos plan --reuse` re-times this span onto a NEW recording of the same script by resolving the step in the new meta.steps. Metadata only — `in`/`out` stay authoritative and lowering never reads it, so it costs nothing at render time"
|
|
1437
|
+
},
|
|
1438
|
+
"media": {
|
|
1439
|
+
"type": "string",
|
|
1440
|
+
"description": "the media this belongs to: a `media[].id`; absent = the primary, `source`"
|
|
1385
1441
|
}
|
|
1386
1442
|
},
|
|
1387
1443
|
"additionalProperties": true
|