fluncle 0.122.0 → 0.124.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 +4 -74
  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.122.0".trim() ? "0.122.0".trim() : "0.1.0";
560
+ currentVersion = "0.124.0".trim() ? "0.124.0".trim() : "0.1.0";
561
561
  });
562
562
 
563
563
  // src/update-notifier.ts
@@ -953,42 +953,7 @@ __export(exports_recent, {
953
953
  fetchRecentPage: () => fetchRecentPage
954
954
  });
955
955
  function mapTrack(track) {
956
- if (track.type === "mixtape") {
957
- return track;
958
- }
959
- return {
960
- addedAt: track.addedAt,
961
- addedToSpotify: track.addedToSpotify,
962
- album: track.album,
963
- albumImageUrl: track.albumImageUrl,
964
- analyzedFrom: track.analyzedFrom,
965
- artists: track.artists,
966
- bpm: track.bpm,
967
- bpmSource: track.bpmSource,
968
- durationMs: track.durationMs,
969
- enrichmentStatus: track.enrichmentStatus,
970
- isrc: track.isrc,
971
- key: track.key,
972
- keySource: track.keySource,
973
- label: track.label,
974
- logId: track.logId,
975
- note: track.note,
976
- popularity: track.popularity,
977
- postedToTelegram: track.postedToTelegram,
978
- previewUrl: track.previewUrl,
979
- releaseDate: track.releaseDate,
980
- sourceAudioKey: track.sourceAudioKey,
981
- spotifyUrl: track.spotifyUrl,
982
- title: track.title,
983
- trackId: track.trackId,
984
- type: "finding",
985
- videoGrain: track.videoGrain,
986
- videoModel: track.videoModel,
987
- videoModelReasoning: track.videoModelReasoning,
988
- videoRegister: track.videoRegister,
989
- videoUrl: track.videoUrl,
990
- videoVehicle: track.videoVehicle
991
- };
956
+ return track;
992
957
  }
993
958
  async function fetchRecentPage(cursor, limit = 10) {
994
959
  const params = new URLSearchParams({ limit: String(limit) });
@@ -1710,42 +1675,7 @@ var init_open_external = __esm(() => {
1710
1675
 
1711
1676
  // src/commands/recent.ts
1712
1677
  function mapTrack2(track) {
1713
- if (track.type === "mixtape") {
1714
- return track;
1715
- }
1716
- return {
1717
- addedAt: track.addedAt,
1718
- addedToSpotify: track.addedToSpotify,
1719
- album: track.album,
1720
- albumImageUrl: track.albumImageUrl,
1721
- analyzedFrom: track.analyzedFrom,
1722
- artists: track.artists,
1723
- bpm: track.bpm,
1724
- bpmSource: track.bpmSource,
1725
- durationMs: track.durationMs,
1726
- enrichmentStatus: track.enrichmentStatus,
1727
- isrc: track.isrc,
1728
- key: track.key,
1729
- keySource: track.keySource,
1730
- label: track.label,
1731
- logId: track.logId,
1732
- note: track.note,
1733
- popularity: track.popularity,
1734
- postedToTelegram: track.postedToTelegram,
1735
- previewUrl: track.previewUrl,
1736
- releaseDate: track.releaseDate,
1737
- sourceAudioKey: track.sourceAudioKey,
1738
- spotifyUrl: track.spotifyUrl,
1739
- title: track.title,
1740
- trackId: track.trackId,
1741
- type: "finding",
1742
- videoGrain: track.videoGrain,
1743
- videoModel: track.videoModel,
1744
- videoModelReasoning: track.videoModelReasoning,
1745
- videoRegister: track.videoRegister,
1746
- videoUrl: track.videoUrl,
1747
- videoVehicle: track.videoVehicle
1748
- };
1678
+ return track;
1749
1679
  }
1750
1680
  async function recentCommand2(limit) {
1751
1681
  const results = [];
@@ -2255,7 +2185,7 @@ function parseVersion2(version) {
2255
2185
  var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
2256
2186
  var init_version2 = __esm(() => {
2257
2187
  init_output();
2258
- currentVersion2 = "0.122.0".trim() ? "0.122.0".trim() : "0.1.0";
2188
+ currentVersion2 = "0.124.0".trim() ? "0.124.0".trim() : "0.1.0";
2259
2189
  });
2260
2190
 
2261
2191
  // ../../packages/registry/src/index.ts
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.122.0"
34
+ "version": "0.124.0"
35
35
  }