Skip to content

Commit

Permalink
fix: qualityScore should be optional (#35)
Browse files Browse the repository at this point in the history
According to our API, the qualityScore is optional.
  • Loading branch information
PabloReszczynski authored Aug 5, 2024
1 parent d102429 commit c668a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/auctions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface AuctionDisjunctiveCategories {

interface AuctionProduct {
ids: string[];
qualityScores: number[];
qualityScores?: number[];
}

interface AuctionBase {
Expand Down

0 comments on commit c668a89

Please sign in to comment.