fix(v2.3.6): update history funding params

This commit is contained in:
JJ-Cro
2025-07-17 11:47:06 +02:00
parent 03354ffce2
commit 3440ac0e21
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "bitget-api", "name": "bitget-api",
"version": "2.3.5", "version": "2.3.6",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "bitget-api", "name": "bitget-api",
"version": "2.3.5", "version": "2.3.6",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"axios": "^1.6.1", "axios": "^1.6.1",

View File

@@ -1,6 +1,6 @@
{ {
"name": "bitget-api", "name": "bitget-api",
"version": "2.3.5", "version": "2.3.6",
"description": "Node.js & JavaScript SDK for Bitget REST APIs & WebSockets, with TypeScript & end-to-end tests.", "description": "Node.js & JavaScript SDK for Bitget REST APIs & WebSockets, with TypeScript & end-to-end tests.",
"main": "lib/index.js", "main": "lib/index.js",
"types": "lib/index.d.ts", "types": "lib/index.d.ts",

View File

@@ -1242,7 +1242,7 @@ export class RestClientV2 extends BaseRestClient {
symbol: string; symbol: string;
productType: FuturesProductTypeV2; productType: FuturesProductTypeV2;
pageSize?: string; pageSize?: string;
pageNumber?: string; pageNo?: string;
}): Promise<APIResponse<FuturesHistoricalFundingRateV2>> { }): Promise<APIResponse<FuturesHistoricalFundingRateV2>> {
return this.get('/api/v2/mix/market/history-fund-rate', params); return this.get('/api/v2/mix/market/history-fund-rate', params);
} }