@grvt/client 1.4.2 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/TDG/index.d.ts +2 -4
- package/TDG/index.js +1 -1
- package/interfaces/codegen/data.interface.d.ts +9 -1
- package/interfaces/codegen/data.interface.js +2 -0
- package/interfaces/codegen/enum-int.js +2 -1
- package/interfaces/codegen/schema-maps/api_transfer_ack.d.ts +2 -0
- package/interfaces/codegen/schema-maps/api_transfer_ack.js +14 -0
- package/interfaces/codegen/schema-maps/api_transfer_response.d.ts +2 -0
- package/interfaces/codegen/schema-maps/api_transfer_response.js +13 -0
- package/interfaces/codegen/schema-maps/index.d.ts +2 -0
- package/interfaces/codegen/schema-maps/index.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/TDG/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type AxiosRequestConfig } from 'axios';
|
|
2
|
-
import { type IApiAggregatedAccountSummaryResponse, type IApiCancelAllOrdersRequest, type IApiCancelAllOrdersResponse, type IApiCancelOrderRequest, type IApiCancelOrderResponse, type IApiCreateBulkOrdersRequest, type IApiCreateBulkOrdersResponse, type IApiCreateOrderRequest, type IApiCreateOrderResponse, type IApiDedustPositionRequest, type IApiDedustPositionResponse, type IApiDepositHistoryRequest, type IApiDepositHistoryResponse, type IApiFillHistoryRequest, type IApiFillHistoryResponse, type IApiFundingAccountSummaryResponse, type IApiFundingPaymentHistoryRequest, type IApiFundingPaymentHistoryResponse, type IApiGetAllInitialLeverageRequest, type IApiGetAllInitialLeverageResponse, type IApiGetMarginTiersResponse, type IApiGetOrderGroupRequest, type IApiGetOrderGroupResponse, type IApiGetOrderRequest, type IApiGetOrderResponse, type IApiOpenOrdersRequest, type IApiOpenOrdersResponse, type IApiOrderHistoryRequest, type IApiOrderHistoryResponse, type IApiPositionsRequest, type IApiPositionsResponse, type IApiPreDepositCheckRequest, type IApiPreDepositCheckResponse, type IApiPreOrderCheckRequest, type IApiPreOrderCheckResponse, type IApiQueryListFundingAccountSummaryRequest, type IApiQueryListFundingAccountSummaryResponse, type IApiQueryListSubAccountSummaryRequest, type IApiQueryListSubAccountSummaryResponse, type IApiQueryTradingPerformanceRequest, type IApiQueryTradingPerformanceResponse, type IApiQueryTradingPerformanceTrendRequest, type IApiQueryTradingPerformanceTrendResponse, type IApiSetInitialLeverageRequest, type IApiSetInitialLeverageResponse, type IApiSocializedLossStatusResponse, type IApiSubAccountHistoryRequest, type IApiSubAccountHistoryResponse, type IApiSubAccountSummaryRequest, type IApiSubAccountSummaryResponse, type IApiTimedAssetExposureRequest, type IApiTimedAssetExposureResponse, type IApiTransferHistoryRequest, type IApiTransferHistoryResponse, type IApiTransferRequest, type IApiWithdrawalHistoryRequest, type IApiWithdrawalHistoryResponse, type IApiWithdrawalRequest, type IConfig } from '../interfaces';
|
|
2
|
+
import { type IApiAggregatedAccountSummaryResponse, type IApiCancelAllOrdersRequest, type IApiCancelAllOrdersResponse, type IApiCancelOrderRequest, type IApiCancelOrderResponse, type IApiCreateBulkOrdersRequest, type IApiCreateBulkOrdersResponse, type IApiCreateOrderRequest, type IApiCreateOrderResponse, type IApiDedustPositionRequest, type IApiDedustPositionResponse, type IApiDepositHistoryRequest, type IApiDepositHistoryResponse, type IApiFillHistoryRequest, type IApiFillHistoryResponse, type IApiFundingAccountSummaryResponse, type IApiFundingPaymentHistoryRequest, type IApiFundingPaymentHistoryResponse, type IApiGetAllInitialLeverageRequest, type IApiGetAllInitialLeverageResponse, type IApiGetMarginTiersResponse, type IApiGetOrderGroupRequest, type IApiGetOrderGroupResponse, type IApiGetOrderRequest, type IApiGetOrderResponse, type IApiOpenOrdersRequest, type IApiOpenOrdersResponse, type IApiOrderHistoryRequest, type IApiOrderHistoryResponse, type IApiPositionsRequest, type IApiPositionsResponse, type IApiPreDepositCheckRequest, type IApiPreDepositCheckResponse, type IApiPreOrderCheckRequest, type IApiPreOrderCheckResponse, type IApiQueryListFundingAccountSummaryRequest, type IApiQueryListFundingAccountSummaryResponse, type IApiQueryListSubAccountSummaryRequest, type IApiQueryListSubAccountSummaryResponse, type IApiQueryTradingPerformanceRequest, type IApiQueryTradingPerformanceResponse, type IApiQueryTradingPerformanceTrendRequest, type IApiQueryTradingPerformanceTrendResponse, type IApiSetInitialLeverageRequest, type IApiSetInitialLeverageResponse, type IApiSocializedLossStatusResponse, type IApiSubAccountHistoryRequest, type IApiSubAccountHistoryResponse, type IApiSubAccountSummaryRequest, type IApiSubAccountSummaryResponse, type IApiTimedAssetExposureRequest, type IApiTimedAssetExposureResponse, type IApiTransferHistoryRequest, type IApiTransferHistoryResponse, type IApiTransferRequest, type IApiTransferResponse, type IApiWithdrawalHistoryRequest, type IApiWithdrawalHistoryResponse, type IApiWithdrawalRequest, type IConfig } from '../interfaces';
|
|
3
3
|
export declare class TDG {
|
|
4
4
|
private readonly _axios;
|
|
5
5
|
private readonly _fullUrl;
|
|
@@ -19,9 +19,7 @@ export declare class TDG {
|
|
|
19
19
|
* TODO: missing response interface
|
|
20
20
|
* @see https://api-docs.grvt.io/trading_api/#transfer
|
|
21
21
|
*/
|
|
22
|
-
transfer(payload: IApiTransferRequest, config?: AxiosRequestConfig): Promise<
|
|
23
|
-
acknowledgement: boolean;
|
|
24
|
-
}>;
|
|
22
|
+
transfer(payload: IApiTransferRequest, config?: AxiosRequestConfig): Promise<IApiTransferResponse>;
|
|
25
23
|
/**
|
|
26
24
|
* @see https://api-docs.grvt.io/trading_api/#transfer-history
|
|
27
25
|
*/
|
package/TDG/index.js
CHANGED
|
@@ -37,7 +37,7 @@ class TDG {
|
|
|
37
37
|
*/
|
|
38
38
|
transfer(payload, config) {
|
|
39
39
|
return this._axios.post(this._liteUrl + '/transfer', utils_1.Utils.schemaMap(payload, interfaces_1.API_TRANSFER_REQUEST_MAP.FULL_TO_LITE, true), config).then((response) => {
|
|
40
|
-
return utils_1.Utils.schemaMap(response.data, interfaces_1.
|
|
40
|
+
return utils_1.Utils.schemaMap(response.data, interfaces_1.API_TRANSFER_RESPONSE_MAP.LITE_TO_FULL);
|
|
41
41
|
}).catch(utils_1.Utils.coverApiError);
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare enum EBridgeType {
|
|
2
|
-
XY = "XY"
|
|
2
|
+
XY = "XY",
|
|
3
|
+
RHINO = "RHINO"
|
|
3
4
|
}
|
|
4
5
|
export declare enum EBrokerTag {
|
|
5
6
|
UNSPECIFIED = "UNSPECIFIED",
|
|
@@ -725,6 +726,10 @@ export interface IApiTradingPerformanceTrend {
|
|
|
725
726
|
trading_volume?: string;
|
|
726
727
|
realized_pnl?: string;
|
|
727
728
|
}
|
|
729
|
+
export interface IApiTransferAck {
|
|
730
|
+
ack?: boolean;
|
|
731
|
+
tx_id?: string;
|
|
732
|
+
}
|
|
728
733
|
export interface IApiTransferHistoryRequest {
|
|
729
734
|
currency?: ECurrency[];
|
|
730
735
|
start_time?: string;
|
|
@@ -749,6 +754,9 @@ export interface IApiTransferRequest {
|
|
|
749
754
|
transfer_type?: ETransferType;
|
|
750
755
|
transfer_metadata?: string;
|
|
751
756
|
}
|
|
757
|
+
export interface IApiTransferResponse {
|
|
758
|
+
result?: IApiTransferAck;
|
|
759
|
+
}
|
|
752
760
|
export interface IApiUserCategoryAffinityScoreRequest {
|
|
753
761
|
account_id?: string;
|
|
754
762
|
start_time?: string;
|
|
@@ -5,6 +5,8 @@ var EBridgeType;
|
|
|
5
5
|
(function (EBridgeType) {
|
|
6
6
|
// XY Bridge type
|
|
7
7
|
EBridgeType["XY"] = "XY";
|
|
8
|
+
// Rhino Bridge type
|
|
9
|
+
EBridgeType["RHINO"] = "RHINO";
|
|
8
10
|
})(EBridgeType || (exports.EBridgeType = EBridgeType = {}));
|
|
9
11
|
// BrokerTag is a tag for the broker that the order is sent from.
|
|
10
12
|
var EBrokerTag;
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.EVenueInt = exports.EVaultTypeInt = exports.ETriggerTypeInt = exports.ETriggerByInt = exports.ETransferTypeInt = exports.ETimeIntervalInt = exports.ETimeInForceInt = exports.ESubAccountTradeIntervalInt = exports.ERewardProgramTypeInt = exports.ERewardEpochStatusInt = exports.EOrderStatusInt = exports.EOrderRejectReasonInt = exports.EMarginTypeInt = exports.EKindInt = exports.EInstrumentSettlementPeriodInt = exports.EEpochBadgeTypeInt = exports.ECurrencyInt = exports.ECandlestickTypeInt = exports.ECandlestickIntervalInt = exports.ECancelStatusInt = exports.EBrokerTagInt = exports.EBridgeTypeInt = void 0;
|
|
4
4
|
const data_interface_1 = require("./data.interface");
|
|
5
5
|
exports.EBridgeTypeInt = Object.freeze({
|
|
6
|
-
[data_interface_1.EBridgeType.XY]: 1
|
|
6
|
+
[data_interface_1.EBridgeType.XY]: 1,
|
|
7
|
+
[data_interface_1.EBridgeType.RHINO]: 2
|
|
7
8
|
});
|
|
8
9
|
exports.EBrokerTagInt = Object.freeze({
|
|
9
10
|
[data_interface_1.EBrokerTag.UNSPECIFIED]: 0,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.API_TRANSFER_ACK_MAP = void 0;
|
|
4
|
+
// Schema map for the 'API_TRANSFER_ACK' struct.
|
|
5
|
+
exports.API_TRANSFER_ACK_MAP = Object.freeze({
|
|
6
|
+
FULL_TO_LITE: {
|
|
7
|
+
ack: 'a',
|
|
8
|
+
tx_id: 'ti'
|
|
9
|
+
},
|
|
10
|
+
LITE_TO_FULL: {
|
|
11
|
+
a: 'ack',
|
|
12
|
+
ti: 'tx_id'
|
|
13
|
+
}
|
|
14
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.API_TRANSFER_RESPONSE_MAP = void 0;
|
|
4
|
+
const api_transfer_ack_1 = require("./api_transfer_ack");
|
|
5
|
+
// Schema map for the 'API_TRANSFER_RESPONSE' struct.
|
|
6
|
+
exports.API_TRANSFER_RESPONSE_MAP = Object.freeze({
|
|
7
|
+
FULL_TO_LITE: {
|
|
8
|
+
result: ['r', api_transfer_ack_1.API_TRANSFER_ACK_MAP.FULL_TO_LITE]
|
|
9
|
+
},
|
|
10
|
+
LITE_TO_FULL: {
|
|
11
|
+
r: ['result', api_transfer_ack_1.API_TRANSFER_ACK_MAP.LITE_TO_FULL]
|
|
12
|
+
}
|
|
13
|
+
});
|
|
@@ -120,9 +120,11 @@ export * from './api_trade_history_response';
|
|
|
120
120
|
export * from './api_trade_request';
|
|
121
121
|
export * from './api_trade_response';
|
|
122
122
|
export * from './api_trading_performance_trend';
|
|
123
|
+
export * from './api_transfer_ack';
|
|
123
124
|
export * from './api_transfer_history_request';
|
|
124
125
|
export * from './api_transfer_history_response';
|
|
125
126
|
export * from './api_transfer_request';
|
|
127
|
+
export * from './api_transfer_response';
|
|
126
128
|
export * from './api_user_category_affinity_score_request';
|
|
127
129
|
export * from './api_user_category_affinity_score_response';
|
|
128
130
|
export * from './api_withdrawal_history_request';
|
|
@@ -136,9 +136,11 @@ __exportStar(require("./api_trade_history_response"), exports);
|
|
|
136
136
|
__exportStar(require("./api_trade_request"), exports);
|
|
137
137
|
__exportStar(require("./api_trade_response"), exports);
|
|
138
138
|
__exportStar(require("./api_trading_performance_trend"), exports);
|
|
139
|
+
__exportStar(require("./api_transfer_ack"), exports);
|
|
139
140
|
__exportStar(require("./api_transfer_history_request"), exports);
|
|
140
141
|
__exportStar(require("./api_transfer_history_response"), exports);
|
|
141
142
|
__exportStar(require("./api_transfer_request"), exports);
|
|
143
|
+
__exportStar(require("./api_transfer_response"), exports);
|
|
142
144
|
__exportStar(require("./api_user_category_affinity_score_request"), exports);
|
|
143
145
|
__exportStar(require("./api_user_category_affinity_score_response"), exports);
|
|
144
146
|
__exportStar(require("./api_withdrawal_history_request"), exports);
|