remove deprecated REST endpoint

This commit is contained in:
tiagosiebler
2021-10-06 19:33:48 +01:00
parent b6434bf4f5
commit a810bc8c59
5 changed files with 2 additions and 40 deletions

View File

@@ -77,19 +77,6 @@ export class InverseClient extends SharedEndpoints {
return this.requestWrapper.get('v2/public/trading-records', params);
}
/**
* @deprecated use getLiquidations() instead
*/
getPublicLiquidations(params: {
symbol: string;
from?: number;
limit?: number;
start_time?: number;
end_time?: number;
}): GenericAPIResponse {
return this.getLiquidations(params);
}
getMarkPriceKline(params: {
symbol: string;
interval: string;

View File

@@ -30,19 +30,6 @@ export default class SharedEndpoints {
return this.requestWrapper.get('v2/public/symbols');
}
/**
* Get liquidated orders
*/
getLiquidations(params: {
symbol: string;
from?: number;
limit?: number;
start_time?: number;
end_time?: number;
}): GenericAPIResponse {
return this.requestWrapper.get('v2/public/liq-records', params);
}
/**
*
* Market Data : Advanced