@ember-finance/sdk 1.4.2 → 1.4.4
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/dist/src/api/v2/models/apy-averages.d.ts +43 -0
- package/dist/src/api/v2/models/apy-averages.js +15 -0
- package/dist/src/api/v2/models/apy-period-average.d.ts +42 -0
- package/dist/src/api/v2/models/apy-period-average.js +15 -0
- package/dist/src/api/v2/models/index.d.ts +2 -0
- package/dist/src/api/v2/models/index.js +2 -0
- package/dist/src/api/v2/models/vault-detail.d.ts +13 -0
- package/package.json +1 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ApyPeriodAverage } from "./apy-period-average";
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ApyAverages
|
|
17
|
+
*/
|
|
18
|
+
export interface ApyAverages {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {ApyPeriodAverage}
|
|
22
|
+
* @memberof ApyAverages
|
|
23
|
+
*/
|
|
24
|
+
"7d": ApyPeriodAverage;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {ApyPeriodAverage}
|
|
28
|
+
* @memberof ApyAverages
|
|
29
|
+
*/
|
|
30
|
+
"30d": ApyPeriodAverage;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {ApyPeriodAverage}
|
|
34
|
+
* @memberof ApyAverages
|
|
35
|
+
*/
|
|
36
|
+
"60d": ApyPeriodAverage;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {ApyPeriodAverage}
|
|
40
|
+
* @memberof ApyAverages
|
|
41
|
+
*/
|
|
42
|
+
"90d": ApyPeriodAverage;
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ember Protocol Vaults API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ApyPeriodAverage
|
|
16
|
+
*/
|
|
17
|
+
export interface ApyPeriodAverage {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ApyPeriodAverage
|
|
22
|
+
*/
|
|
23
|
+
targetApyE9: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ApyPeriodAverage
|
|
28
|
+
*/
|
|
29
|
+
reportedApyE9: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ApyPeriodAverage
|
|
34
|
+
*/
|
|
35
|
+
rewardApyE9: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ApyPeriodAverage
|
|
40
|
+
*/
|
|
41
|
+
lendingApyE9: string;
|
|
42
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Ember Protocol Vaults API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -4,8 +4,10 @@ export * from "./account-vault-position-history";
|
|
|
4
4
|
export * from "./account-withdrawal-request";
|
|
5
5
|
export * from "./aggregated-account-position-history";
|
|
6
6
|
export * from "./aggregated-proof-of-capital-report";
|
|
7
|
+
export * from "./apy-averages";
|
|
7
8
|
export * from "./apy-history";
|
|
8
9
|
export * from "./apy-history-response";
|
|
10
|
+
export * from "./apy-period-average";
|
|
9
11
|
export * from "./asset";
|
|
10
12
|
export * from "./borrowed";
|
|
11
13
|
export * from "./chain";
|
|
@@ -20,8 +20,10 @@ __exportStar(require("./account-vault-position-history"), exports);
|
|
|
20
20
|
__exportStar(require("./account-withdrawal-request"), exports);
|
|
21
21
|
__exportStar(require("./aggregated-account-position-history"), exports);
|
|
22
22
|
__exportStar(require("./aggregated-proof-of-capital-report"), exports);
|
|
23
|
+
__exportStar(require("./apy-averages"), exports);
|
|
23
24
|
__exportStar(require("./apy-history"), exports);
|
|
24
25
|
__exportStar(require("./apy-history-response"), exports);
|
|
26
|
+
__exportStar(require("./apy-period-average"), exports);
|
|
25
27
|
__exportStar(require("./asset"), exports);
|
|
26
28
|
__exportStar(require("./borrowed"), exports);
|
|
27
29
|
__exportStar(require("./chain"), exports);
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { ApyAverages } from "./apy-averages";
|
|
12
13
|
import type { ChainVaultDetails } from "./chain-vault-details";
|
|
13
14
|
import type { EmberPosition } from "./ember-position";
|
|
14
15
|
import type { Manager } from "./manager";
|
|
@@ -162,6 +163,12 @@ export interface VaultDetail {
|
|
|
162
163
|
* @memberof VaultDetail
|
|
163
164
|
*/
|
|
164
165
|
withdrawalPeriodDays: number;
|
|
166
|
+
/**
|
|
167
|
+
* The withdrawal period as a human-readable string
|
|
168
|
+
* @type {string}
|
|
169
|
+
* @memberof VaultDetail
|
|
170
|
+
*/
|
|
171
|
+
withdrawalPeriod?: string;
|
|
165
172
|
/**
|
|
166
173
|
*
|
|
167
174
|
* @type {ReportedApy}
|
|
@@ -198,6 +205,12 @@ export interface VaultDetail {
|
|
|
198
205
|
* @memberof VaultDetail
|
|
199
206
|
*/
|
|
200
207
|
pocEnabled: boolean;
|
|
208
|
+
/**
|
|
209
|
+
*
|
|
210
|
+
* @type {ApyAverages}
|
|
211
|
+
* @memberof VaultDetail
|
|
212
|
+
*/
|
|
213
|
+
apyAverages: ApyAverages;
|
|
201
214
|
}
|
|
202
215
|
export declare const VaultDetailStatusEnum: {
|
|
203
216
|
readonly Active: "active";
|