@tyleretters/discography 1.0.2 → 1.0.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.
@@ -12,6 +12,7 @@ export declare const discography: ({
12
12
  number: number;
13
13
  title: string;
14
14
  length: string;
15
+ mp3_url: string;
15
16
  id: string;
16
17
  }[];
17
18
  streams: {
@@ -24,8 +25,8 @@ export declare const discography: ({
24
25
  project_slug: string;
25
26
  release_slug: string;
26
27
  cover_url: string;
28
+ mp3_url: string;
27
29
  id: string;
28
- mp3_url?: undefined;
29
30
  wav_url?: undefined;
30
31
  monospaceNotes?: undefined;
31
32
  } | {
@@ -142,4 +143,34 @@ export declare const discography: ({
142
143
  wav_url: string;
143
144
  id: string;
144
145
  streams?: undefined;
146
+ } | {
147
+ title: string;
148
+ project: string;
149
+ released: string;
150
+ type: string;
151
+ format: string;
152
+ role: string;
153
+ label: string;
154
+ mp3: boolean;
155
+ wav: boolean;
156
+ tracks: {
157
+ number: number;
158
+ title: string;
159
+ length: string;
160
+ id: string;
161
+ }[];
162
+ streams: {
163
+ platform: string;
164
+ url: string;
165
+ id: string;
166
+ }[];
167
+ notes: string;
168
+ credits: string;
169
+ project_slug: string;
170
+ release_slug: string;
171
+ cover_url: string;
172
+ id: string;
173
+ mp3_url?: undefined;
174
+ wav_url?: undefined;
175
+ monospaceNotes?: undefined;
145
176
  })[];