@tyleretters/discography 2.1.1 → 2.1.3

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/dist/types.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export interface Release {
2
2
  title: string;
3
+ slug?: string;
3
4
  project: string;
4
5
  released: string;
5
6
  type: string;
@@ -11,6 +12,7 @@ export interface Release {
11
12
  wav: boolean;
12
13
  wav_url?: string;
13
14
  tracks: Array<Track>;
15
+ trackIds?: string[];
14
16
  streams?: Array<Stream>;
15
17
  monospaceNotes?: boolean;
16
18
  notes: string;
@@ -23,6 +25,7 @@ export interface Release {
23
25
  export interface Track {
24
26
  number: number;
25
27
  title: string;
28
+ slug?: string;
26
29
  length: string;
27
30
  mp3_url?: string;
28
31
  wav_url?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tyleretters/discography",
3
3
  "type": "module",
4
- "version": "2.1.1",
4
+ "version": "2.1.3",
5
5
  "description": "A canonical discography of the music of Tyler Etters.",
6
6
  "main": "dist/index.es.js",
7
7
  "types": "dist/index.d.ts",