chore(): remove deprecated functions from SDK
This commit is contained in:
@@ -127,7 +127,6 @@ import {
|
|||||||
GetRepaymentHistoryParamsV5,
|
GetRepaymentHistoryParamsV5,
|
||||||
GetRiskLimitParamsV5,
|
GetRiskLimitParamsV5,
|
||||||
GetSettlementRecordParamsV5,
|
GetSettlementRecordParamsV5,
|
||||||
GetSpotLeveragedTokenOrderHistoryParamsV5,
|
|
||||||
GetSpreadInstrumentsInfoParamsV5,
|
GetSpreadInstrumentsInfoParamsV5,
|
||||||
GetSpreadOpenOrdersParamsV5,
|
GetSpreadOpenOrdersParamsV5,
|
||||||
GetSpreadOrderHistoryParamsV5,
|
GetSpreadOrderHistoryParamsV5,
|
||||||
@@ -147,8 +146,6 @@ import {
|
|||||||
InternalDepositRecordV5,
|
InternalDepositRecordV5,
|
||||||
InternalTransferRecordV5,
|
InternalTransferRecordV5,
|
||||||
IssueVoucherParamsV5,
|
IssueVoucherParamsV5,
|
||||||
LeverageTokenInfoV5,
|
|
||||||
LeveragedTokenMarketResultV5,
|
|
||||||
LoanLTVAdjustmentHistoryV5,
|
LoanLTVAdjustmentHistoryV5,
|
||||||
LongShortRatioV5,
|
LongShortRatioV5,
|
||||||
MMPModifyParamsV5,
|
MMPModifyParamsV5,
|
||||||
@@ -184,10 +181,6 @@ import {
|
|||||||
PreUpgradeTransaction,
|
PreUpgradeTransaction,
|
||||||
PreUpgradeUSDCSessionSettlement,
|
PreUpgradeUSDCSessionSettlement,
|
||||||
PublicTradeV5,
|
PublicTradeV5,
|
||||||
PurchaseSpotLeveragedTokenParamsV5,
|
|
||||||
PurchaseSpotLeveragedTokenResultV5,
|
|
||||||
RedeemSpotLeveragedTokenParamsV5,
|
|
||||||
RedeemSpotLeveragedTokenResultV5,
|
|
||||||
RepayLiabilityParamsV5,
|
RepayLiabilityParamsV5,
|
||||||
RepayLiabilityResultV5,
|
RepayLiabilityResultV5,
|
||||||
RepaymentHistoryV5,
|
RepaymentHistoryV5,
|
||||||
@@ -203,7 +196,6 @@ import {
|
|||||||
SetTradingStopParamsV5,
|
SetTradingStopParamsV5,
|
||||||
SettlementRecordV5,
|
SettlementRecordV5,
|
||||||
SpotBorrowCheckResultV5,
|
SpotBorrowCheckResultV5,
|
||||||
SpotLeveragedTokenOrderHistoryV5,
|
|
||||||
SpotMarginStateV5,
|
SpotMarginStateV5,
|
||||||
SpreadInstrumentInfoV5,
|
SpreadInstrumentInfoV5,
|
||||||
SpreadOpenOrderV5,
|
SpreadOpenOrderV5,
|
||||||
@@ -2135,69 +2127,6 @@ export class RestClientV5 extends BaseRestClient {
|
|||||||
return this.getPrivate('/v5/user/aff-customer-info', params);
|
return this.getPrivate('/v5/user/aff-customer-info', params);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
****** Spot Leverage Token APIs
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Query leverage token information
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
getLeveragedTokenInfo(
|
|
||||||
ltCoin?: string,
|
|
||||||
): Promise<APIResponseV3WithTime<{ list: LeverageTokenInfoV5[] }>> {
|
|
||||||
return this.get('/v5/spot-lever-token/info', { ltCoin });
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get leverage token market information.
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
getLeveragedTokenMarket(
|
|
||||||
ltCoin: string,
|
|
||||||
): Promise<APIResponseV3WithTime<LeveragedTokenMarketResultV5>> {
|
|
||||||
return this.get('/v5/spot-lever-token/reference', { ltCoin });
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This endpoint allows you to purchase a leveraged token with a specified amount.
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
purchaseSpotLeveragedToken(
|
|
||||||
params: PurchaseSpotLeveragedTokenParamsV5,
|
|
||||||
): Promise<APIResponseV3WithTime<PurchaseSpotLeveragedTokenResultV5>> {
|
|
||||||
return this.postPrivate('/v5/spot-lever-token/purchase', params);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Redeem leveraged token.
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
redeemSpotLeveragedToken(
|
|
||||||
params: RedeemSpotLeveragedTokenParamsV5,
|
|
||||||
): Promise<APIResponseV3WithTime<RedeemSpotLeveragedTokenResultV5>> {
|
|
||||||
return this.postPrivate('/v5/spot-lever-token/redeem', params);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get purchase or redemption history
|
|
||||||
*
|
|
||||||
* @deprecated
|
|
||||||
*/
|
|
||||||
getSpotLeveragedTokenOrderHistory(
|
|
||||||
params?: GetSpotLeveragedTokenOrderHistoryParamsV5,
|
|
||||||
): Promise<
|
|
||||||
APIResponseV3WithTime<{ list: SpotLeveragedTokenOrderHistoryV5[] }>
|
|
||||||
> {
|
|
||||||
return this.getPrivate('/v5/spot-lever-token/order-record', params);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
****** Spot Margin Trade APIs (UTA)
|
****** Spot Margin Trade APIs (UTA)
|
||||||
|
|||||||
Reference in New Issue
Block a user