@ember-finance/sdk 1.0.13 → 1.0.14
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/vaults/api/models/ember-position.d.ts +31 -0
- package/dist/src/vaults/api/models/ember-position.js +15 -0
- package/dist/src/vaults/api/models/index.d.ts +1 -0
- package/dist/src/vaults/api/models/index.js +1 -0
- package/dist/src/vaults/api/models/vault-detail.d.ts +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,31 @@
|
|
|
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: 1.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 { Asset } from "./asset";
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface EmberPosition
|
|
17
|
+
*/
|
|
18
|
+
export interface EmberPosition {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Asset}
|
|
22
|
+
* @memberof EmberPosition
|
|
23
|
+
*/
|
|
24
|
+
coin: Asset;
|
|
25
|
+
/**
|
|
26
|
+
* The amount of the Ember position
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof EmberPosition
|
|
29
|
+
*/
|
|
30
|
+
amount: string;
|
|
31
|
+
}
|
|
@@ -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: 1.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 });
|
|
@@ -6,6 +6,7 @@ export * from "./asset";
|
|
|
6
6
|
export * from "./borrowed";
|
|
7
7
|
export * from "./coin-price";
|
|
8
8
|
export * from "./deposit-transaction";
|
|
9
|
+
export * from "./ember-position";
|
|
9
10
|
export * from "./exposure";
|
|
10
11
|
export * from "./exposure-coin";
|
|
11
12
|
export * from "./exposure-protocol";
|
|
@@ -22,6 +22,7 @@ __exportStar(require("./asset"), exports);
|
|
|
22
22
|
__exportStar(require("./borrowed"), exports);
|
|
23
23
|
__exportStar(require("./coin-price"), exports);
|
|
24
24
|
__exportStar(require("./deposit-transaction"), exports);
|
|
25
|
+
__exportStar(require("./ember-position"), exports);
|
|
25
26
|
__exportStar(require("./exposure"), exports);
|
|
26
27
|
__exportStar(require("./exposure-coin"), exports);
|
|
27
28
|
__exportStar(require("./exposure-protocol"), exports);
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { Asset } from "./asset";
|
|
13
|
+
import type { EmberPosition } from "./ember-position";
|
|
13
14
|
import type { Manager } from "./manager";
|
|
14
15
|
import type { ReportedApy } from "./reported-apy";
|
|
15
16
|
import type { RewardToken } from "./reward-token";
|
|
@@ -86,6 +87,12 @@ export interface VaultDetail {
|
|
|
86
87
|
* @memberof VaultDetail
|
|
87
88
|
*/
|
|
88
89
|
depositCoin: Asset;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {EmberPosition}
|
|
93
|
+
* @memberof VaultDetail
|
|
94
|
+
*/
|
|
95
|
+
requiredEmberPosition?: EmberPosition;
|
|
89
96
|
/**
|
|
90
97
|
*
|
|
91
98
|
* @type {Array<Manager>}
|