@grvt/client 1.4.29 → 1.4.30

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.
@@ -1800,6 +1800,7 @@ export interface IVaultInvestorSummary {
1800
1800
  total_equity?: string;
1801
1801
  all_time_realized_pnl?: string;
1802
1802
  pending_redemption?: IVaultRedemption;
1803
+ can_burn?: boolean;
1803
1804
  }
1804
1805
  export interface IVaultLpInfo {
1805
1806
  lp_token_balance?: string;
@@ -11,7 +11,8 @@ exports.VAULT_INVESTOR_SUMMARY_MAP = Object.freeze({
11
11
  current_price: 'cp',
12
12
  total_equity: 'te',
13
13
  all_time_realized_pnl: 'at',
14
- pending_redemption: ['pr', vault_redemption_1.VAULT_REDEMPTION_MAP.FULL_TO_LITE]
14
+ pending_redemption: ['pr', vault_redemption_1.VAULT_REDEMPTION_MAP.FULL_TO_LITE],
15
+ can_burn: 'cb'
15
16
  },
16
17
  LITE_TO_FULL: {
17
18
  sa: 'sub_account_id',
@@ -20,6 +21,7 @@ exports.VAULT_INVESTOR_SUMMARY_MAP = Object.freeze({
20
21
  cp: 'current_price',
21
22
  te: 'total_equity',
22
23
  at: 'all_time_realized_pnl',
23
- pr: ['pending_redemption', vault_redemption_1.VAULT_REDEMPTION_MAP.LITE_TO_FULL]
24
+ pr: ['pending_redemption', vault_redemption_1.VAULT_REDEMPTION_MAP.LITE_TO_FULL],
25
+ cb: 'can_burn'
24
26
  }
25
27
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grvt/client",
3
- "version": "1.4.29",
3
+ "version": "1.4.30",
4
4
  "description": "Node.js & JavaScript client for GRVT REST APIs & WebSockets",
5
5
  "repository": {
6
6
  "type": "git",