@tyleretters/discography 0.0.18 → 0.0.20

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.
@@ -13,6 +13,7 @@ export declare const discography: ({
13
13
  title: string;
14
14
  length: string;
15
15
  mp3_url: string;
16
+ wav_url: string;
16
17
  id: string;
17
18
  }[];
18
19
  streams: {
@@ -26,8 +27,37 @@ export declare const discography: ({
26
27
  release_slug: string;
27
28
  cover_url: string;
28
29
  mp3_url: string;
30
+ wav_url: string;
29
31
  id: string;
30
32
  monospaceNotes?: undefined;
33
+ } | {
34
+ title: string;
35
+ project: string;
36
+ released: string;
37
+ type: string;
38
+ format: string;
39
+ role: string;
40
+ label: string;
41
+ mp3: boolean;
42
+ wav: boolean;
43
+ tracks: {
44
+ number: number;
45
+ title: string;
46
+ length: string;
47
+ mp3_url: string;
48
+ wav_url: string;
49
+ id: string;
50
+ }[];
51
+ notes: string;
52
+ credits: string;
53
+ project_slug: string;
54
+ release_slug: string;
55
+ cover_url: string;
56
+ mp3_url: string;
57
+ wav_url: string;
58
+ id: string;
59
+ streams?: undefined;
60
+ monospaceNotes?: undefined;
31
61
  } | {
32
62
  title: string;
33
63
  project: string;
@@ -52,6 +82,7 @@ export declare const discography: ({
52
82
  id: string;
53
83
  streams?: undefined;
54
84
  mp3_url?: undefined;
85
+ wav_url?: undefined;
55
86
  monospaceNotes?: undefined;
56
87
  } | {
57
88
  title: string;
@@ -67,6 +98,8 @@ export declare const discography: ({
67
98
  number: number;
68
99
  title: string;
69
100
  length: string;
101
+ mp3_url: string;
102
+ wav_url: string;
70
103
  id: string;
71
104
  }[];
72
105
  monospaceNotes: boolean;
@@ -75,7 +108,8 @@ export declare const discography: ({
75
108
  project_slug: string;
76
109
  release_slug: string;
77
110
  cover_url: string;
111
+ mp3_url: string;
112
+ wav_url: string;
78
113
  id: string;
79
114
  streams?: undefined;
80
- mp3_url?: undefined;
81
115
  })[];