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