@powfix/core-js 0.13.2 → 0.13.3

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.
@@ -2,7 +2,7 @@ import { Transaction } from "sequelize";
2
2
  import EventEmitter from 'eventemitter3';
3
3
  import { TransactionManagerLogLevel, TransactionManagerTimeoutAction } from "../constants";
4
4
  import { TransactionManagerAddOption, TransactionManagerEventTypes } from "./TransactionManager.types";
5
- declare class TransactionManager {
5
+ export declare class TransactionManager {
6
6
  static DEFAULT_TIMEOUT: number;
7
7
  static DEFAULT_ACTION: TransactionManagerTimeoutAction;
8
8
  private static instance;
@@ -25,4 +25,3 @@ declare class TransactionManager {
25
25
  private timeout;
26
26
  private afterCommit;
27
27
  }
28
- export default TransactionManager;
@@ -12,6 +12,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
13
13
  };
14
14
  Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.TransactionManager = void 0;
15
16
  const eventemitter3_1 = __importDefault(require("eventemitter3"));
16
17
  const constants_1 = require("../constants");
17
18
  const LOG_TAG = '[TransactionManager]';
@@ -145,6 +146,6 @@ class TransactionManager {
145
146
  this.remove(transaction);
146
147
  }
147
148
  }
149
+ exports.TransactionManager = TransactionManager;
148
150
  TransactionManager.DEFAULT_TIMEOUT = 60 * 1000;
149
151
  TransactionManager.DEFAULT_ACTION = constants_1.TransactionManagerTimeoutAction.ROLLBACK;
150
- exports.default = TransactionManager;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powfix/core-js",
3
- "version": "0.13.2",
3
+ "version": "0.13.3",
4
4
  "description": "core package",
5
5
  "author": "Kwon Kyung-Min <powfix@gmail.com>",
6
6
  "private": false,