Skip to content

Commit 70e04d6

Browse files
authored
Merge pull request #618 from tiagosiebler/featendpointrelease
feat(v3.1.7, #615): add feat withdraw endpoint
2 parents 289904f + 4501331 commit 70e04d6

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "binance",
3-
"version": "3.1.6",
3+
"version": "3.1.7",
44
"description": "Professional Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

src/types/spot.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4491,17 +4491,17 @@ export interface GetFiatPaymentsHistoryResponse {
44914491
}
44924492

44934493
export interface WithdrawFiatAccountInfo {
4494-
accountNumber: string;
4495-
agency: string;
4496-
bankCodeForPix: string;
4497-
accountType: string;
4494+
accountNumber: string;
4495+
agency: string;
4496+
bankCodeForPix: string;
4497+
accountType: string;
44984498
}
44994499

45004500
export interface WithdrawFiatParams {
4501-
currency: string;
4502-
apiPaymentMethod: string;
4503-
amount: number;
4504-
accountInfo?: WithdrawFiatAccountInfo;
4501+
currency: string;
4502+
apiPaymentMethod: string;
4503+
amount: number;
4504+
accountInfo?: WithdrawFiatAccountInfo;
45054505
}
45064506

45074507
export interface GetC2CTradeHistoryParams {

0 commit comments

Comments
 (0)