Skip to content

Commit

Permalink
Merge pull request #455 from zikeji/dev
Browse files Browse the repository at this point in the history
Add BIN to auction endpoint
  • Loading branch information
zikeji committed Sep 17, 2024
2 parents 04806eb + 63f2e52 commit 7ab7566
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions src/types/AugmentedTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,17 @@ export type SkyblockNewsResponse = Paths.V2SkyblockNews.Get.Responses.$200 &
}[];
};

export type SkyblockAuctionResponse = Paths.V2SkyblockAuction.Get.Responses.$200 &
Record<string, unknown>;

export type SkyblockAuctionsResponse = Paths.V2SkyblockAuctions.Get.Responses.$200 &
Record<string, unknown>;
export type SkyblockAuctionResponse = Paths.V2SkyblockAuction.Get.Responses.$200 & {
auctions?: {
bin?: boolean;
}[];
} & Record<string, unknown>;

export type SkyblockAuctionsResponse = Paths.V2SkyblockAuctions.Get.Responses.$200 & {
auctions?: {
bin?: boolean;
}[];
} & Record<string, unknown>;

export type SkyblockAuctionsEndedResponse = Paths.V2SkyblockAuctionsEnded.Get.Responses.$200 &
Record<string, unknown> & {
Expand Down

0 comments on commit 7ab7566

Please sign in to comment.