Merge pull request #76 from JJ-Cro/update17072025
Some checks failed
Build, Lint & Test / Build, Lint & Test (push) Has been cancelled
Publish to NPM / publish-npm (push) Has been cancelled

fix(v2.3.6): update history funding params
This commit is contained in:
Tiago
2025-07-17 10:48:41 +01:00
committed by GitHub
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

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

View File

@@ -1,6 +1,6 @@
{
"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.",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

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