fluncle 0.117.0 → 0.119.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.
Files changed (2) hide show
  1. package/bin/fluncle.mjs +8 -4
  2. package/package.json +1 -1
package/bin/fluncle.mjs CHANGED
@@ -557,7 +557,7 @@ function parseVersion(version) {
557
557
  var currentVersion;
558
558
  var init_version = __esm(() => {
559
559
  init_output();
560
- currentVersion = "0.117.0".trim() ? "0.117.0".trim() : "0.1.0";
560
+ currentVersion = "0.119.0".trim() ? "0.119.0".trim() : "0.1.0";
561
561
  });
562
562
 
563
563
  // src/update-notifier.ts
@@ -964,10 +964,12 @@ function mapTrack(track) {
964
964
  analyzedFrom: track.analyzedFrom,
965
965
  artists: track.artists,
966
966
  bpm: track.bpm,
967
+ bpmSource: track.bpmSource,
967
968
  durationMs: track.durationMs,
968
969
  enrichmentStatus: track.enrichmentStatus,
969
970
  isrc: track.isrc,
970
971
  key: track.key,
972
+ keySource: track.keySource,
971
973
  label: track.label,
972
974
  logId: track.logId,
973
975
  note: track.note,
@@ -1719,10 +1721,12 @@ function mapTrack2(track) {
1719
1721
  analyzedFrom: track.analyzedFrom,
1720
1722
  artists: track.artists,
1721
1723
  bpm: track.bpm,
1724
+ bpmSource: track.bpmSource,
1722
1725
  durationMs: track.durationMs,
1723
1726
  enrichmentStatus: track.enrichmentStatus,
1724
1727
  isrc: track.isrc,
1725
1728
  key: track.key,
1729
+ keySource: track.keySource,
1726
1730
  label: track.label,
1727
1731
  logId: track.logId,
1728
1732
  note: track.note,
@@ -2251,7 +2255,7 @@ function parseVersion2(version) {
2251
2255
  var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
2252
2256
  var init_version2 = __esm(() => {
2253
2257
  init_output();
2254
- currentVersion2 = "0.117.0".trim() ? "0.117.0".trim() : "0.1.0";
2258
+ currentVersion2 = "0.119.0".trim() ? "0.119.0".trim() : "0.1.0";
2255
2259
  });
2256
2260
 
2257
2261
  // ../../packages/registry/src/index.ts
@@ -7924,7 +7928,7 @@ function addAdminCommands(program2) {
7924
7928
  const { queueCommand: queueCommand2 } = await Promise.resolve().then(() => (init_admin_tracks(), exports_admin_tracks));
7925
7929
  await runAdminQueue(options, queueCommand2);
7926
7930
  });
7927
- adminTracks.command("list").description("List findings, filterable by musical-key presence (--no-key / --has-key)").option("--limit <limit>", "Number of findings to show (1-100)", "50").option("--all", "Fetch the ENTIRE catalogue, paginating past the 100-row cap (overrides --limit)", false).option("--no-key", "Only findings with NO stored musical key (the key-backfill backlog)").option("--has-key <bool>", "Filter by key presence: true (has key) or false (missing)").option("--order <order>", "Sort: asc (oldest first) or desc (newest first)", "desc").option("--json", "Print JSON", false).action(async (options) => {
7931
+ adminTracks.command("list").description("List findings, filterable by musical-key presence (--no-key / --has-key)").option("--limit <limit>", "Number of findings to show (1-100)", "50").option("--all", "Fetch the ENTIRE catalogue, paginating past the 100-row cap (overrides --limit)", false).option("--no-key", "Only findings with NO stored musical key (the Rekordbox-sync backlog)").option("--has-key <bool>", "Filter by key presence: true (has key) or false (missing)").option("--order <order>", "Sort: asc (oldest first) or desc (newest first)", "desc").option("--json", "Print JSON", false).action(async (options) => {
7928
7932
  const { listCommand: listCommand2 } = await Promise.resolve().then(() => (init_admin_tracks(), exports_admin_tracks));
7929
7933
  await runAdminTracksList(options, listCommand2);
7930
7934
  });
@@ -9745,7 +9749,7 @@ function assertParseArgsCompatiblePositionals(args) {
9745
9749
  if (third && !fourth) {
9746
9750
  throw new Error(`Missing submission id for: ${third}`);
9747
9751
  }
9748
- if (third && fourth && third !== "review" && third !== "reject" && third !== "approve") {
9752
+ if (third && fourth && third !== "review" && third !== "reject" && third !== "approve" && third !== "triage") {
9749
9753
  throw new Error(`Unknown submissions command: ${third}`);
9750
9754
  }
9751
9755
  }
package/package.json CHANGED
@@ -31,5 +31,5 @@
31
31
  "url": "git+https://github.com/mauricekleine/fluncle.git"
32
32
  },
33
33
  "type": "module",
34
- "version": "0.117.0"
34
+ "version": "0.119.0"
35
35
  }