@ember-finance/sdk 1.0.9 → 1.0.11

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.
Files changed (77) hide show
  1. package/dist/index.d.ts +0 -1
  2. package/dist/index.js +0 -1
  3. package/dist/src/common/types.d.ts +0 -1
  4. package/dist/src/common/types.js +0 -1
  5. package/dist/src/vaults/api/apis/accounts-api.d.ts +22 -6
  6. package/dist/src/vaults/api/apis/accounts-api.js +17 -0
  7. package/dist/src/vaults/api/apis/vaults-api.d.ts +32 -14
  8. package/dist/src/vaults/api/apis/vaults-api.js +19 -0
  9. package/dist/src/vaults/api/base.d.ts +24 -0
  10. package/dist/src/vaults/api/base.js +19 -0
  11. package/dist/src/vaults/api/common.d.ts +37 -0
  12. package/dist/src/vaults/api/common.js +37 -0
  13. package/dist/src/vaults/api/configuration.d.ts +17 -0
  14. package/dist/src/vaults/api/models/account-transaction-transaction-data.d.ts +1 -0
  15. package/dist/src/vaults/api/models/account-transaction.d.ts +12 -0
  16. package/dist/src/vaults/api/models/account-withdrawal-request.d.ts +38 -0
  17. package/dist/src/vaults/api/models/apy-history.d.ts +13 -0
  18. package/dist/src/vaults/api/models/asset.d.ts +19 -0
  19. package/dist/src/vaults/api/models/borrowed.d.ts +16 -0
  20. package/dist/src/vaults/api/models/coin-price.d.ts +9 -0
  21. package/dist/src/vaults/api/models/deposit-transaction.d.ts +30 -0
  22. package/dist/src/vaults/api/models/exposure-coin.d.ts +14 -0
  23. package/dist/src/vaults/api/models/exposure-protocol.d.ts +25 -0
  24. package/dist/src/vaults/api/models/exposure.d.ts +11 -0
  25. package/dist/src/vaults/api/models/fee.d.ts +14 -0
  26. package/dist/src/vaults/api/models/history-interval.d.ts +5 -0
  27. package/dist/src/vaults/api/models/history-interval.js +5 -0
  28. package/dist/src/vaults/api/models/lp.d.ts +31 -0
  29. package/dist/src/vaults/api/models/manager.d.ts +22 -0
  30. package/dist/src/vaults/api/models/min-withdrawal-shares-updated-event.d.ts +13 -0
  31. package/dist/src/vaults/api/models/perps.d.ts +9 -0
  32. package/dist/src/vaults/api/models/pnl-history-interval.d.ts +5 -0
  33. package/dist/src/vaults/api/models/pnl-history-interval.js +5 -0
  34. package/dist/src/vaults/api/models/pnl-history.d.ts +11 -0
  35. package/dist/src/vaults/api/models/position-value.d.ts +28 -0
  36. package/dist/src/vaults/api/models/position-value.js +5 -0
  37. package/dist/src/vaults/api/models/position.d.ts +13 -0
  38. package/dist/src/vaults/api/models/process-requests-summary-event.d.ts +25 -0
  39. package/dist/src/vaults/api/models/protocol-fee-collected-event.d.ts +19 -0
  40. package/dist/src/vaults/api/models/protocol-info.d.ts +14 -0
  41. package/dist/src/vaults/api/models/protocol.d.ts +13 -0
  42. package/dist/src/vaults/api/models/raw-event-event-data.d.ts +1 -0
  43. package/dist/src/vaults/api/models/raw-event.d.ts +16 -0
  44. package/dist/src/vaults/api/models/redeem-request-cancelled-transaction.d.ts +23 -0
  45. package/dist/src/vaults/api/models/redeem-request-processed-transaction.d.ts +30 -0
  46. package/dist/src/vaults/api/models/redeem-request-skipped-transaction.d.ts +23 -0
  47. package/dist/src/vaults/api/models/redeem-request-transaction.d.ts +23 -0
  48. package/dist/src/vaults/api/models/reported-apy.d.ts +15 -0
  49. package/dist/src/vaults/api/models/request-processed-event.d.ts +25 -0
  50. package/dist/src/vaults/api/models/request-redeemed-event.d.ts +23 -0
  51. package/dist/src/vaults/api/models/reward-token.d.ts +21 -0
  52. package/dist/src/vaults/api/models/reward.d.ts +14 -0
  53. package/dist/src/vaults/api/models/share-price-history.d.ts +9 -0
  54. package/dist/src/vaults/api/models/strategy.d.ts +19 -0
  55. package/dist/src/vaults/api/models/sub-account.d.ts +12 -0
  56. package/dist/src/vaults/api/models/supplied.d.ts +16 -0
  57. package/dist/src/vaults/api/models/tvl-history.d.ts +9 -0
  58. package/dist/src/vaults/api/models/ultra-coin-info.d.ts +17 -0
  59. package/dist/src/vaults/api/models/update-vault-strategies.d.ts +18 -0
  60. package/dist/src/vaults/api/models/vault-admin-changed-event.d.ts +13 -0
  61. package/dist/src/vaults/api/models/vault-created-event.d.ts +22 -0
  62. package/dist/src/vaults/api/models/vault-deposit-event.d.ts +23 -0
  63. package/dist/src/vaults/api/models/vault-deposit-without-minting-shares-event.d.ts +19 -0
  64. package/dist/src/vaults/api/models/vault-detail.d.ts +85 -0
  65. package/dist/src/vaults/api/models/vault-fee-percentage-updated-event.d.ts +13 -0
  66. package/dist/src/vaults/api/models/vault-info.d.ts +27 -0
  67. package/dist/src/vaults/api/models/vault-max-tvl-updated-event.d.ts +13 -0
  68. package/dist/src/vaults/api/models/vault-operator-changed-event.d.ts +13 -0
  69. package/dist/src/vaults/api/models/vault-paused-status-updated-event.d.ts +11 -0
  70. package/dist/src/vaults/api/models/vault-platform-fee-charged-event.d.ts +15 -0
  71. package/dist/src/vaults/api/models/vault-protocol.d.ts +13 -0
  72. package/dist/src/vaults/api/models/vault-rate-updated-event.d.ts +13 -0
  73. package/dist/src/vaults/api/models/vault-slice.d.ts +15 -0
  74. package/dist/src/vaults/api/models/vault-sub-account-updated-event.d.ts +17 -0
  75. package/dist/src/vaults/api/models/vault-withdrawal-without-redeeming-shares-event.d.ts +19 -0
  76. package/dist/src/vaults/api/models/yield-aggregate-value.d.ts +19 -0
  77. package/package.json +4 -3
@@ -9,41 +9,64 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultDepositEvent
16
+ */
12
17
  export interface VaultDepositEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultDepositEvent
15
22
  */
16
23
  vaultId?: string;
17
24
  /**
18
25
  * The address of the account
26
+ * @type {string}
27
+ * @memberof VaultDepositEvent
19
28
  */
20
29
  accountAddress?: string;
21
30
  /**
22
31
  * The amount of the deposit
32
+ * @type {string}
33
+ * @memberof VaultDepositEvent
23
34
  */
24
35
  totalAmount?: string;
25
36
  /**
26
37
  * The amount of the shares minted
38
+ * @type {string}
39
+ * @memberof VaultDepositEvent
27
40
  */
28
41
  sharesMinted?: string;
29
42
  /**
30
43
  * The amount of the shares burnt
44
+ * @type {string}
45
+ * @memberof VaultDepositEvent
31
46
  */
32
47
  previousBalance?: string;
33
48
  /**
34
49
  * The amount of the shares burnt
50
+ * @type {string}
51
+ * @memberof VaultDepositEvent
35
52
  */
36
53
  currentBalance?: string;
37
54
  /**
38
55
  * The total amount of the shares
56
+ * @type {string}
57
+ * @memberof VaultDepositEvent
39
58
  */
40
59
  totalShares?: string;
41
60
  /**
42
61
  * The sequence number of the deposit
62
+ * @type {string}
63
+ * @memberof VaultDepositEvent
43
64
  */
44
65
  sequenceNumber?: string;
45
66
  /**
46
67
  * The type of the asset coin
68
+ * @type {string}
69
+ * @memberof VaultDepositEvent
47
70
  */
48
71
  coinType?: string;
49
72
  }
@@ -9,33 +9,52 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultDepositWithoutMintingSharesEvent
16
+ */
12
17
  export interface VaultDepositWithoutMintingSharesEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultDepositWithoutMintingSharesEvent
15
22
  */
16
23
  vaultId?: string;
17
24
  /**
18
25
  * The sequence number of the event
26
+ * @type {string}
27
+ * @memberof VaultDepositWithoutMintingSharesEvent
19
28
  */
20
29
  sequenceNumber?: string;
21
30
  /**
22
31
  * The type of the coin
32
+ * @type {string}
33
+ * @memberof VaultDepositWithoutMintingSharesEvent
23
34
  */
24
35
  coinType?: string;
25
36
  /**
26
37
  * The amount of the shares
38
+ * @type {string}
39
+ * @memberof VaultDepositWithoutMintingSharesEvent
27
40
  */
28
41
  amount?: string;
29
42
  /**
30
43
  * The address of the sub account
44
+ * @type {string}
45
+ * @memberof VaultDepositWithoutMintingSharesEvent
31
46
  */
32
47
  subAccount?: string;
33
48
  /**
34
49
  * The new balance of the vault
50
+ * @type {string}
51
+ * @memberof VaultDepositWithoutMintingSharesEvent
35
52
  */
36
53
  newBalance?: string;
37
54
  /**
38
55
  * The previous balance of the vault
56
+ * @type {string}
57
+ * @memberof VaultDepositWithoutMintingSharesEvent
39
58
  */
40
59
  previousBalance?: string;
41
60
  }
@@ -14,75 +14,160 @@ import type { Manager } from "./manager";
14
14
  import type { ReportedApy } from "./reported-apy";
15
15
  import type { RewardToken } from "./reward-token";
16
16
  import type { SubAccount } from "./sub-account";
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface VaultDetail
21
+ */
17
22
  export interface VaultDetail {
18
23
  /**
19
24
  * Object ID of the vault
25
+ * @type {string}
26
+ * @memberof VaultDetail
20
27
  */
21
28
  id: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof VaultDetail
33
+ */
22
34
  name: string;
23
35
  /**
24
36
  * Name of the vault
37
+ * @type {string}
38
+ * @memberof VaultDetail
25
39
  */
26
40
  longName: string;
27
41
  /**
28
42
  * Strategy of the vault
43
+ * @type {string}
44
+ * @memberof VaultDetail
29
45
  */
30
46
  strategy: string;
31
47
  /**
32
48
  * Address of the vault
49
+ * @type {string}
50
+ * @memberof VaultDetail
33
51
  */
34
52
  address: string;
35
53
  /**
36
54
  * Description of the vault (offchain data)
55
+ * @type {string}
56
+ * @memberof VaultDetail
37
57
  */
38
58
  description: string;
39
59
  /**
40
60
  * Logo of the vault (offchain data)
61
+ * @type {string}
62
+ * @memberof VaultDetail
41
63
  */
42
64
  logoUrl: string;
43
65
  /**
44
66
  * Public type of the vault
67
+ * @type {string}
68
+ * @memberof VaultDetail
45
69
  */
46
70
  publicType: string;
47
71
  /**
48
72
  * Internal type of the vault
73
+ * @type {string}
74
+ * @memberof VaultDetail
49
75
  */
50
76
  internalType?: string;
77
+ /**
78
+ *
79
+ * @type {Asset}
80
+ * @memberof VaultDetail
81
+ */
51
82
  receiptCoin: Asset;
83
+ /**
84
+ *
85
+ * @type {Asset}
86
+ * @memberof VaultDetail
87
+ */
52
88
  depositCoin: Asset;
89
+ /**
90
+ *
91
+ * @type {Array<Manager>}
92
+ * @memberof VaultDetail
93
+ */
53
94
  managers: Array<Manager>;
54
95
  /**
55
96
  * The status of the vault
97
+ * @type {string}
98
+ * @memberof VaultDetail
56
99
  */
57
100
  status: VaultDetailStatusEnum;
58
101
  /**
59
102
  * Vault creation timestamp
103
+ * @type {number}
104
+ * @memberof VaultDetail
60
105
  */
61
106
  createdAt: number;
62
107
  /**
63
108
  * Expressed in basis points (1bps = 0.01%) in e9
109
+ * @type {string}
110
+ * @memberof VaultDetail
64
111
  */
65
112
  weeklyPerformanceFeeBpsE9: string;
113
+ /**
114
+ *
115
+ * @type {string}
116
+ * @memberof VaultDetail
117
+ */
66
118
  managementFeePercentE9: string;
119
+ /**
120
+ *
121
+ * @type {string}
122
+ * @memberof VaultDetail
123
+ */
67
124
  rateE9: string;
68
125
  /**
69
126
  * The maximum deposits allowed of the vault
127
+ * @type {string}
128
+ * @memberof VaultDetail
70
129
  */
71
130
  maxDepositsAllowed: string;
131
+ /**
132
+ *
133
+ * @type {number}
134
+ * @memberof VaultDetail
135
+ */
72
136
  withdrawalPeriodDays: number;
137
+ /**
138
+ *
139
+ * @type {ReportedApy}
140
+ * @memberof VaultDetail
141
+ */
73
142
  reportedApy: ReportedApy;
143
+ /**
144
+ *
145
+ * @type {Array<RewardToken>}
146
+ * @memberof VaultDetail
147
+ */
74
148
  rewards: Array<RewardToken>;
149
+ /**
150
+ *
151
+ * @type {Array<SubAccount>}
152
+ * @memberof VaultDetail
153
+ */
75
154
  subAccounts: Array<SubAccount>;
76
155
  /**
77
156
  * The total deposits of the vault equivalent to USD in e9
157
+ * @type {string}
158
+ * @memberof VaultDetail
78
159
  */
79
160
  totalDepositsInUsdE9: string;
80
161
  /**
81
162
  * The total deposits of the vault
163
+ * @type {string}
164
+ * @memberof VaultDetail
82
165
  */
83
166
  totalDeposits: string;
84
167
  /**
85
168
  * The minimum withdrawal shares of the vault
169
+ * @type {string}
170
+ * @memberof VaultDetail
86
171
  */
87
172
  minWithdrawalSharesE9: string;
88
173
  }
@@ -9,21 +9,34 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultFeePercentageUpdatedEvent
16
+ */
12
17
  export interface VaultFeePercentageUpdatedEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultFeePercentageUpdatedEvent
15
22
  */
16
23
  vaultId?: string;
17
24
  /**
18
25
  * The previous fee percentage of the vault
26
+ * @type {string}
27
+ * @memberof VaultFeePercentageUpdatedEvent
19
28
  */
20
29
  previousFeePercentage?: string;
21
30
  /**
22
31
  * The new rate of the vault
32
+ * @type {string}
33
+ * @memberof VaultFeePercentageUpdatedEvent
23
34
  */
24
35
  newFeePercentage?: string;
25
36
  /**
26
37
  * The sequence number of the event
38
+ * @type {string}
39
+ * @memberof VaultFeePercentageUpdatedEvent
27
40
  */
28
41
  sequenceNumber?: string;
29
42
  }
@@ -9,49 +9,76 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultInfo
16
+ */
12
17
  export interface VaultInfo {
13
18
  /**
14
19
  * The admin identifier for the vault
20
+ * @type {string}
21
+ * @memberof VaultInfo
15
22
  */
16
23
  Admin?: string;
17
24
  /**
18
25
  * The operator identifier for the vault
26
+ * @type {string}
27
+ * @memberof VaultInfo
19
28
  */
20
29
  Operator?: string;
21
30
  /**
22
31
  * The name of the vault
32
+ * @type {string}
33
+ * @memberof VaultInfo
23
34
  */
24
35
  Name?: string;
25
36
  /**
26
37
  * The maximum rate change per update
38
+ * @type {string}
39
+ * @memberof VaultInfo
27
40
  */
28
41
  MaxRateChangePerUpdate?: string;
29
42
  /**
30
43
  * The fee percentage for the vault
44
+ * @type {string}
45
+ * @memberof VaultInfo
31
46
  */
32
47
  FeePercentage?: string;
33
48
  /**
34
49
  * The minimum withdrawal shares
50
+ * @type {string}
51
+ * @memberof VaultInfo
35
52
  */
36
53
  MinWithdrawalShares?: string;
37
54
  /**
38
55
  * List of sub-account identifiers
56
+ * @type {Array<string>}
57
+ * @memberof VaultInfo
39
58
  */
40
59
  SubAccounts?: Array<string>;
41
60
  /**
42
61
  * The object identifier of the vault
62
+ * @type {string}
63
+ * @memberof VaultInfo
43
64
  */
44
65
  ObjectId?: string;
45
66
  /**
46
67
  * The receipt token type
68
+ * @type {string}
69
+ * @memberof VaultInfo
47
70
  */
48
71
  ReceiptCoinType?: string;
49
72
  /**
50
73
  * The coin type for the vault
74
+ * @type {string}
75
+ * @memberof VaultInfo
51
76
  */
52
77
  DepositCoinType?: string;
53
78
  /**
54
79
  * The number of decimals for the asset coin
80
+ * @type {number}
81
+ * @memberof VaultInfo
55
82
  */
56
83
  DepositCoinDecimals?: number;
57
84
  }
@@ -9,21 +9,34 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultMaxTvlUpdatedEvent
16
+ */
12
17
  export interface VaultMaxTvlUpdatedEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultMaxTvlUpdatedEvent
15
22
  */
16
23
  vaultId?: string;
17
24
  /**
18
25
  * The previous operator of the vault
26
+ * @type {string}
27
+ * @memberof VaultMaxTvlUpdatedEvent
19
28
  */
20
29
  previousMaxTvl?: string;
21
30
  /**
22
31
  * The new operator of the vault
32
+ * @type {string}
33
+ * @memberof VaultMaxTvlUpdatedEvent
23
34
  */
24
35
  newMaxTvl?: string;
25
36
  /**
26
37
  * The sequence number of the event
38
+ * @type {string}
39
+ * @memberof VaultMaxTvlUpdatedEvent
27
40
  */
28
41
  sequenceNumber?: string;
29
42
  }
@@ -9,21 +9,34 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultOperatorChangedEvent
16
+ */
12
17
  export interface VaultOperatorChangedEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultOperatorChangedEvent
15
22
  */
16
23
  vaultId?: string;
17
24
  /**
18
25
  * The previous operator of the vault
26
+ * @type {string}
27
+ * @memberof VaultOperatorChangedEvent
19
28
  */
20
29
  previousOperator?: string;
21
30
  /**
22
31
  * The new operator of the vault
32
+ * @type {string}
33
+ * @memberof VaultOperatorChangedEvent
23
34
  */
24
35
  newOperator?: string;
25
36
  /**
26
37
  * The sequence number of the event
38
+ * @type {string}
39
+ * @memberof VaultOperatorChangedEvent
27
40
  */
28
41
  sequenceNumber?: string;
29
42
  }
@@ -9,17 +9,28 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultPausedStatusUpdatedEvent
16
+ */
12
17
  export interface VaultPausedStatusUpdatedEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultPausedStatusUpdatedEvent
15
22
  */
16
23
  vaultId?: string;
17
24
  /**
18
25
  * The status of the vault
26
+ * @type {boolean}
27
+ * @memberof VaultPausedStatusUpdatedEvent
19
28
  */
20
29
  status?: boolean;
21
30
  /**
22
31
  * The sequence number of the event
32
+ * @type {string}
33
+ * @memberof VaultPausedStatusUpdatedEvent
23
34
  */
24
35
  sequenceNumber?: string;
25
36
  }
@@ -9,25 +9,40 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultPlatformFeeChargedEvent
16
+ */
12
17
  export interface VaultPlatformFeeChargedEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultPlatformFeeChargedEvent
15
22
  */
16
23
  vaultId?: string;
17
24
  /**
18
25
  * The amount of the fee
26
+ * @type {string}
27
+ * @memberof VaultPlatformFeeChargedEvent
19
28
  */
20
29
  feeAmount?: string;
21
30
  /**
22
31
  * The sequence number of the event
32
+ * @type {string}
33
+ * @memberof VaultPlatformFeeChargedEvent
23
34
  */
24
35
  sequenceNumber?: string;
25
36
  /**
26
37
  * The total amount of the fee accrued
38
+ * @type {string}
39
+ * @memberof VaultPlatformFeeChargedEvent
27
40
  */
28
41
  totalFeeAccrued?: string;
29
42
  /**
30
43
  * The timestamp of the last charged
44
+ * @type {string}
45
+ * @memberof VaultPlatformFeeChargedEvent
31
46
  */
32
47
  lastChargedAt?: string;
33
48
  }
@@ -9,21 +9,34 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultProtocol
16
+ */
12
17
  export interface VaultProtocol {
13
18
  /**
14
19
  * The package identifier for the protocol
20
+ * @type {string}
21
+ * @memberof VaultProtocol
15
22
  */
16
23
  Package?: string;
17
24
  /**
18
25
  * The protocol configuration identifier
26
+ * @type {string}
27
+ * @memberof VaultProtocol
19
28
  */
20
29
  ProtocolConfig?: string;
21
30
  /**
22
31
  * The admin capability identifier
32
+ * @type {string}
33
+ * @memberof VaultProtocol
23
34
  */
24
35
  AdminCap?: string;
25
36
  /**
26
37
  * The upgrade capability identifier
38
+ * @type {string}
39
+ * @memberof VaultProtocol
27
40
  */
28
41
  UpgradeCap?: string;
29
42
  }
@@ -9,21 +9,34 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultRateUpdatedEvent
16
+ */
12
17
  export interface VaultRateUpdatedEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultRateUpdatedEvent
15
22
  */
16
23
  vaultId?: string;
17
24
  /**
18
25
  * The previous rate of the vault
26
+ * @type {string}
27
+ * @memberof VaultRateUpdatedEvent
19
28
  */
20
29
  previousRate?: string;
21
30
  /**
22
31
  * The new rate of the vault
32
+ * @type {string}
33
+ * @memberof VaultRateUpdatedEvent
23
34
  */
24
35
  newRate?: string;
25
36
  /**
26
37
  * The sequence number of the event
38
+ * @type {string}
39
+ * @memberof VaultRateUpdatedEvent
27
40
  */
28
41
  sequenceNumber?: string;
29
42
  }
@@ -9,25 +9,40 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultSlice
16
+ */
12
17
  export interface VaultSlice {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultSlice
15
22
  */
16
23
  id?: string;
17
24
  /**
18
25
  * The name of the vault
26
+ * @type {string}
27
+ * @memberof VaultSlice
19
28
  */
20
29
  name?: string;
21
30
  /**
22
31
  * The long name of the vault
32
+ * @type {string}
33
+ * @memberof VaultSlice
23
34
  */
24
35
  longName?: string;
25
36
  /**
26
37
  * The logo url of the vault
38
+ * @type {string}
39
+ * @memberof VaultSlice
27
40
  */
28
41
  logoUrl?: string;
29
42
  /**
30
43
  * The public type of the vault
44
+ * @type {string}
45
+ * @memberof VaultSlice
31
46
  */
32
47
  publicType?: string;
33
48
  }
@@ -9,29 +9,46 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface VaultSubAccountUpdatedEvent
16
+ */
12
17
  export interface VaultSubAccountUpdatedEvent {
13
18
  /**
14
19
  * The id of the vault
20
+ * @type {string}
21
+ * @memberof VaultSubAccountUpdatedEvent
15
22
  */
16
23
  vaultId?: string;
17
24
  /**
18
25
  * The address of the account
26
+ * @type {string}
27
+ * @memberof VaultSubAccountUpdatedEvent
19
28
  */
20
29
  accountAddress?: string;
21
30
  /**
22
31
  * The status of the sub account
32
+ * @type {boolean}
33
+ * @memberof VaultSubAccountUpdatedEvent
23
34
  */
24
35
  status?: boolean;
25
36
  /**
26
37
  * The sequence number of the event
38
+ * @type {string}
39
+ * @memberof VaultSubAccountUpdatedEvent
27
40
  */
28
41
  sequenceNumber?: string;
29
42
  /**
30
43
  * The new sub accounts of the vault
44
+ * @type {Array<string>}
45
+ * @memberof VaultSubAccountUpdatedEvent
31
46
  */
32
47
  newSubAccounts?: Array<string>;
33
48
  /**
34
49
  * The previous sub accounts of the vault
50
+ * @type {Array<string>}
51
+ * @memberof VaultSubAccountUpdatedEvent
35
52
  */
36
53
  previousSubAccounts?: Array<string>;
37
54
  }