plac-micro-common 1.0.7 → 1.0.9

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.
@@ -0,0 +1,4 @@
1
+ export declare enum PartnerType {
2
+ Banca = "banca",
3
+ Broker = "broker"
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PartnerType = void 0;
4
+ var PartnerType;
5
+ (function (PartnerType) {
6
+ PartnerType["Banca"] = "banca";
7
+ PartnerType["Broker"] = "broker";
8
+ })(PartnerType || (exports.PartnerType = PartnerType = {}));
@@ -1,3 +1,4 @@
1
+ export * from "./auth.enum";
1
2
  export * from "./permission.enum";
2
3
  export declare enum APP_CODES {
3
4
  E_APP = "E-APP",
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  exports.APP_CODES = void 0;
18
+ __exportStar(require("./auth.enum"), exports);
18
19
  __exportStar(require("./permission.enum"), exports);
19
20
  var APP_CODES;
20
21
  (function (APP_CODES) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plac-micro-common",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {