@dhedge/backend-flatcoin-core 0.1.27 → 0.1.28

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.
@@ -5,4 +5,5 @@ export { LeverageModule } from './abi/leverage-module';
5
5
  export { LiquidationModule } from './abi/liquidation-module';
6
6
  export { Liquidate } from './abi/liquidation-module';
7
7
  export { LiquidateWithoutPriceFeeds } from './abi/liquidation-module';
8
+ export { LimitOrder } from './abi/limit-order';
8
9
  export * from './helpers';
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.LiquidateWithoutPriceFeeds = exports.Liquidate = exports.LiquidationModule = exports.LeverageModule = exports.FlatcoinErrors = exports.Viewer = exports.FlatcoinV1 = void 0;
17
+ exports.LimitOrder = exports.LiquidateWithoutPriceFeeds = exports.Liquidate = exports.LiquidationModule = exports.LeverageModule = exports.FlatcoinErrors = exports.Viewer = exports.FlatcoinV1 = void 0;
18
18
  var flatcoin_v1_1 = require("./abi/flatcoin-v1");
19
19
  Object.defineProperty(exports, "FlatcoinV1", { enumerable: true, get: function () { return flatcoin_v1_1.FlatcoinV1; } });
20
20
  var viewer_1 = require("./abi/viewer");
@@ -29,4 +29,6 @@ var liquidation_module_2 = require("./abi/liquidation-module");
29
29
  Object.defineProperty(exports, "Liquidate", { enumerable: true, get: function () { return liquidation_module_2.Liquidate; } });
30
30
  var liquidation_module_3 = require("./abi/liquidation-module");
31
31
  Object.defineProperty(exports, "LiquidateWithoutPriceFeeds", { enumerable: true, get: function () { return liquidation_module_3.LiquidateWithoutPriceFeeds; } });
32
+ var limit_order_1 = require("./abi/limit-order");
33
+ Object.defineProperty(exports, "LimitOrder", { enumerable: true, get: function () { return limit_order_1.LimitOrder; } });
32
34
  __exportStar(require("./helpers"), exports);
package/dist/index.d.ts CHANGED
@@ -3,3 +3,4 @@ export * from './utils';
3
3
  export * from './contracts';
4
4
  export * from './constants';
5
5
  export * from './repository';
6
+ export * from './service';
package/dist/index.js CHANGED
@@ -19,3 +19,4 @@ __exportStar(require("./utils"), exports);
19
19
  __exportStar(require("./contracts"), exports);
20
20
  __exportStar(require("./constants"), exports);
21
21
  __exportStar(require("./repository"), exports);
22
+ __exportStar(require("./service"), exports);
@@ -0,0 +1 @@
1
+ export * from './app-price.service';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./app-price.service"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhedge/backend-flatcoin-core",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "Backend Flatcoin Core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",