Skip to content

Commit

Permalink
Merge pull request #493 from marosvida/fix/simple-earn-flexible-rewar…
Browse files Browse the repository at this point in the history
…ds-type-param

extend GetFlexibleRewardsHistoryParams field type with 'ALL' option
  • Loading branch information
tiagosiebler authored Dec 16, 2024
2 parents 0469671 + 78a89d6 commit cdf6800
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "binance",
"version": "2.15.0",
"version": "2.15.1",
"description": "Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/types/spot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2894,7 +2894,7 @@ export interface GetFlexibleRewardsHistoryParams {
asset?: string;
startTime?: number;
endTime?: number;
type: 'BONUS' | 'REALTIME' | 'REWARDS';
type: 'BONUS' | 'REALTIME' | 'REWARDS' | 'ALL';
current?: number;
size?: number;
}
Expand Down

0 comments on commit cdf6800

Please sign in to comment.