@grvt/client 1.4.25 → 1.4.26
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.
|
@@ -965,6 +965,7 @@ export interface IApiVaultInvestorHistory {
|
|
|
965
965
|
size?: string;
|
|
966
966
|
realized_pnl?: string;
|
|
967
967
|
performance_fee?: string;
|
|
968
|
+
off_chain_account_id?: string;
|
|
968
969
|
}
|
|
969
970
|
export interface IApiVaultInvestorSummaryRequest {
|
|
970
971
|
main_account_id?: string;
|
|
@@ -1016,8 +1017,7 @@ export interface IApiVaultViewRedemptionQueueResponse {
|
|
|
1016
1017
|
redemption_queue?: IVaultRedemptionReqView[];
|
|
1017
1018
|
pending_redemption_token_count?: string;
|
|
1018
1019
|
urgent_redemption_token_count?: string;
|
|
1019
|
-
|
|
1020
|
-
currency?: string;
|
|
1020
|
+
auto_redeemable_balance?: string;
|
|
1021
1021
|
}
|
|
1022
1022
|
export interface IApiWithdrawalHistoryRequest {
|
|
1023
1023
|
currency?: string[];
|
|
@@ -11,7 +11,8 @@ exports.API_VAULT_INVESTOR_HISTORY_MAP = Object.freeze({
|
|
|
11
11
|
price: 'p',
|
|
12
12
|
size: 's',
|
|
13
13
|
realized_pnl: 'rp',
|
|
14
|
-
performance_fee: 'pf'
|
|
14
|
+
performance_fee: 'pf',
|
|
15
|
+
off_chain_account_id: 'oc'
|
|
15
16
|
},
|
|
16
17
|
LITE_TO_FULL: {
|
|
17
18
|
et: 'event_time',
|
|
@@ -21,6 +22,7 @@ exports.API_VAULT_INVESTOR_HISTORY_MAP = Object.freeze({
|
|
|
21
22
|
p: 'price',
|
|
22
23
|
s: 'size',
|
|
23
24
|
rp: 'realized_pnl',
|
|
24
|
-
pf: 'performance_fee'
|
|
25
|
+
pf: 'performance_fee',
|
|
26
|
+
oc: 'off_chain_account_id'
|
|
25
27
|
}
|
|
26
28
|
});
|
|
@@ -8,14 +8,12 @@ exports.API_VAULT_VIEW_REDEMPTION_QUEUE_RESPONSE_MAP = Object.freeze({
|
|
|
8
8
|
redemption_queue: ['rq', [vault_redemption_req_view_1.VAULT_REDEMPTION_REQ_VIEW_MAP.FULL_TO_LITE]],
|
|
9
9
|
pending_redemption_token_count: 'pr',
|
|
10
10
|
urgent_redemption_token_count: 'ur',
|
|
11
|
-
|
|
12
|
-
currency: 'c'
|
|
11
|
+
auto_redeemable_balance: 'ar'
|
|
13
12
|
},
|
|
14
13
|
LITE_TO_FULL: {
|
|
15
14
|
rq: ['redemption_queue', [vault_redemption_req_view_1.VAULT_REDEMPTION_REQ_VIEW_MAP.LITE_TO_FULL]],
|
|
16
15
|
pr: 'pending_redemption_token_count',
|
|
17
16
|
ur: 'urgent_redemption_token_count',
|
|
18
|
-
ar: '
|
|
19
|
-
c: 'currency'
|
|
17
|
+
ar: 'auto_redeemable_balance'
|
|
20
18
|
}
|
|
21
19
|
});
|