musiciwant 1.1.0 → 1.1.1
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/index.d.ts +8 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -33,10 +33,18 @@ export interface Song {
|
|
|
33
33
|
youtube_id: string | null;
|
|
34
34
|
spotify_url: string | null;
|
|
35
35
|
youtube_url: string | null;
|
|
36
|
+
/** ISRC (MusicBrainz-sourced; null until a confident match exists — never fabricated). */
|
|
37
|
+
isrc: string | null;
|
|
38
|
+
/** First release date (MusicBrainz). */
|
|
39
|
+
release_date: string | null;
|
|
40
|
+
/** Genres/tags (MusicBrainz). */
|
|
41
|
+
genres: string[];
|
|
36
42
|
/** Present on single-song lookups. */
|
|
37
43
|
moods?: string[];
|
|
38
44
|
/** Present on single-song lookups. */
|
|
39
45
|
recommended_for?: string[];
|
|
46
|
+
/** All-platform listen links. Present on single-song lookups. */
|
|
47
|
+
listen?: Record<string, string>;
|
|
40
48
|
url: string;
|
|
41
49
|
}
|
|
42
50
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "musiciwant",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Independent music analysis API client — BPM, dynamic range, sensory intensity, moods, misophonia flags. A Spotify Audio Features alternative.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|