makefx 1.6.1 → 1.6.2

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/makefx.mjs +1 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -61,4 +61,4 @@ IDs, or runs. Retired commands and aliases are not redirected.
61
61
 
62
62
  Run `makefx --help` or `makefx <noun> --help` for current options.
63
63
 
64
- Version: 1.6.1
64
+ Version: 1.6.2
package/makefx.mjs CHANGED
@@ -4438,7 +4438,7 @@ require_websocket_server();
4438
4438
  var wrapper_default = import_websocket.default;
4439
4439
  //#endregion
4440
4440
  //#region src/cli/version.ts
4441
- var CLI_VERSION = "1.6.1+00259d259e65";
4441
+ var CLI_VERSION = "1.6.2+1c90176554ef";
4442
4442
  var CLI_VERSION_HEADER = "X-MakeFX-CLI-Version";
4443
4443
  function cliVersionHeaders() {
4444
4444
  return {
@@ -7067,7 +7067,6 @@ async function preflightLocalSeedanceReferences(options, deps, state) {
7067
7067
  if (videoBytes >= 50 * 1024 * 1024) throw new Error("Seedance reference videos must total under 50 MB");
7068
7068
  const hasCompleteVideoDurations = inspections.video.every((item) => item.durationMs !== void 0);
7069
7069
  if (inspections.video.length > 0 && hasCompleteVideoDurations && (videoDurationMs < 2e3 || videoDurationMs > 15e3)) throw new Error("Seedance reference videos must total 2 to 15 seconds");
7070
- if (inspections.audio.reduce((total, item) => total + (item.durationMs ?? 0), 0) > 15e3) throw new Error("Seedance reference audio must total at most 15 seconds");
7071
7070
  }
7072
7071
  async function resolveReferenceVariantIds(refs, ctx, deps, variants = [], mediaKind = CLI_GENERATION_MEDIA_KIND, assets = [], expectedReferenceMediaKind) {
7073
7072
  const variantIds = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "makefx",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Command-line interface for AI-assisted game asset production with Make Effects.",
5
5
  "license": "MIT",
6
6
  "type": "module",