@dhedge/backend-flatcoin-core 0.2.52 → 0.2.53
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/entity/index.d.ts +12 -0
- package/dist/entity/index.js +12 -0
- package/dist/repository/index.d.ts +2 -0
- package/dist/repository/index.js +2 -0
- package/package.json +1 -1
package/dist/entity/index.d.ts
CHANGED
|
@@ -16,3 +16,15 @@ export * from './leverage-leaderboard';
|
|
|
16
16
|
export * from './order-execution';
|
|
17
17
|
export * from './protocol-metrics';
|
|
18
18
|
export * from './leverage-monthly-pnl';
|
|
19
|
+
export * from './unitBalanceChart/unit-balance-half-year';
|
|
20
|
+
export * from './unitBalanceChart/unit-balance-one-month';
|
|
21
|
+
export * from './unitBalanceChart/unit-balance-one-week';
|
|
22
|
+
export * from './unitBalanceChart/unit-balance-one-year';
|
|
23
|
+
export * from './unitBalanceChart/unit-balance-parent';
|
|
24
|
+
export * from './unitBalanceChart/unit-balance-three-months';
|
|
25
|
+
export * from './leverageBalanceChart/leverage-balance-one-day';
|
|
26
|
+
export * from './leverageBalanceChart/leverage-balance-one-month';
|
|
27
|
+
export * from './leverageBalanceChart/leverage-balance-one-week';
|
|
28
|
+
export * from './leverageBalanceChart/leverage-balance-one-year';
|
|
29
|
+
export * from './leverageBalanceChart/leverage-balance-parent';
|
|
30
|
+
export * from './leverageBalanceChart/leverage-balance-three-months';
|
package/dist/entity/index.js
CHANGED
|
@@ -32,3 +32,15 @@ __exportStar(require("./leverage-leaderboard"), exports);
|
|
|
32
32
|
__exportStar(require("./order-execution"), exports);
|
|
33
33
|
__exportStar(require("./protocol-metrics"), exports);
|
|
34
34
|
__exportStar(require("./leverage-monthly-pnl"), exports);
|
|
35
|
+
__exportStar(require("./unitBalanceChart/unit-balance-half-year"), exports);
|
|
36
|
+
__exportStar(require("./unitBalanceChart/unit-balance-one-month"), exports);
|
|
37
|
+
__exportStar(require("./unitBalanceChart/unit-balance-one-week"), exports);
|
|
38
|
+
__exportStar(require("./unitBalanceChart/unit-balance-one-year"), exports);
|
|
39
|
+
__exportStar(require("./unitBalanceChart/unit-balance-parent"), exports);
|
|
40
|
+
__exportStar(require("./unitBalanceChart/unit-balance-three-months"), exports);
|
|
41
|
+
__exportStar(require("./leverageBalanceChart/leverage-balance-one-day"), exports);
|
|
42
|
+
__exportStar(require("./leverageBalanceChart/leverage-balance-one-month"), exports);
|
|
43
|
+
__exportStar(require("./leverageBalanceChart/leverage-balance-one-week"), exports);
|
|
44
|
+
__exportStar(require("./leverageBalanceChart/leverage-balance-one-year"), exports);
|
|
45
|
+
__exportStar(require("./leverageBalanceChart/leverage-balance-parent"), exports);
|
|
46
|
+
__exportStar(require("./leverageBalanceChart/leverage-balance-three-months"), exports);
|
|
@@ -9,3 +9,5 @@ export * from './leverage-leaderboard.repository';
|
|
|
9
9
|
export * from './order-execution.repository';
|
|
10
10
|
export * from './protocol-metrics.repository';
|
|
11
11
|
export * from './leverage-monthly-pnl.repository';
|
|
12
|
+
export * from './unit-balance.repository';
|
|
13
|
+
export * from './leverage-balance.repository';
|
package/dist/repository/index.js
CHANGED
|
@@ -25,3 +25,5 @@ __exportStar(require("./leverage-leaderboard.repository"), exports);
|
|
|
25
25
|
__exportStar(require("./order-execution.repository"), exports);
|
|
26
26
|
__exportStar(require("./protocol-metrics.repository"), exports);
|
|
27
27
|
__exportStar(require("./leverage-monthly-pnl.repository"), exports);
|
|
28
|
+
__exportStar(require("./unit-balance.repository"), exports);
|
|
29
|
+
__exportStar(require("./leverage-balance.repository"), exports);
|