Skip to content

Commit

Permalink
fix(types): GetReleaseResponse.community should be an object, not arr…
Browse files Browse the repository at this point in the history
…ay (#318)
  • Loading branch information
lionralfs authored Aug 8, 2024
1 parent 0e0100b commit ca9a14f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,15 @@ export type GetReleaseResponse = {
artists: Array<Artist>;
data_quality: string;
thumb: string;
community: Array<{
community: {
contributors: Array<{ resource_url: string; username: string }>;
data_quality: string;
have: number;
rating: { average: number; count: number };
status: Status;
submitter: { resource_url: string; username: string };
want: number;
}>;
};
companies: Array<{
catno: string;
entity_type: string;
Expand Down

0 comments on commit ca9a14f

Please sign in to comment.