pwi-plata-type 0.4.215 → 0.4.216

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.
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.PlataJob = exports.PlataFs = exports.PlataSql = exports.PlataAxios = exports.PlataSwagger = exports.PlataModels = exports.PlataTools = exports.PlataRoutes = exports.PlataCluster = void 0;
36
+ exports.PlataDisposableFactory = exports.PlataJob = exports.PlataFs = exports.PlataSql = exports.PlataAxios = exports.PlataSwagger = exports.PlataModels = exports.PlataTools = exports.PlataRoutes = exports.PlataCluster = void 0;
37
37
  const PlataCluster = __importStar(require("./libs/cluster"));
38
38
  exports.PlataCluster = PlataCluster;
39
39
  const PlataRoutes = __importStar(require("./libs/router"));
@@ -48,6 +48,8 @@ const PlataSql = __importStar(require("./libs/sql"));
48
48
  exports.PlataSql = PlataSql;
49
49
  const PlataJob = __importStar(require("./libs/job"));
50
50
  exports.PlataJob = PlataJob;
51
+ const disposable_1 = require("./libs/disposable");
52
+ Object.defineProperty(exports, "PlataDisposableFactory", { enumerable: true, get: function () { return disposable_1.PlataDisposableFactory; } });
51
53
  const fs_1 = require("./libs/fs");
52
54
  Object.defineProperty(exports, "PlataFs", { enumerable: true, get: function () { return fs_1.PlataFs; } });
53
55
  const axios_1 = require("./libs/axios");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6DAA8C;AAW1C,oCAAY;AAVhB,2DAA4C;AAWxC,kCAAW;AAVf,yDAA0C;AAWtC,gCAAU;AAVd,2DAA4C;AAWxC,kCAAW;AAVf,6DAA8C;AAW1C,oCAAY;AAVhB,qDAAsC;AAYlC,4BAAQ;AAXZ,qDAAsC;AAalC,4BAAQ;AAZZ,kCAAmC;AAW/B,wFAXK,YAAO,OAWL;AAVX,wCAAyC;AAQrC,2FARK,kBAAU,OAQL"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6DAA8C;AAY1C,oCAAY;AAXhB,2DAA4C;AAYxC,kCAAW;AAXf,yDAA0C;AAYtC,gCAAU;AAXd,2DAA4C;AAYxC,kCAAW;AAXf,6DAA8C;AAY1C,oCAAY;AAXhB,qDAAsC;AAalC,4BAAQ;AAZZ,qDAAsC;AAclC,4BAAQ;AAbZ,kDAA0D;AActD,uGAdK,mCAAsB,OAcL;AAb1B,kCAAmC;AAW/B,wFAXK,YAAO,OAWL;AAVX,wCAAyC;AAQrC,2FARK,kBAAU,OAQL"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pwi-plata-type",
3
- "version": "0.4.215",
3
+ "version": "0.4.216",
4
4
  "main": "__BUILD__/index",
5
5
  "types": "src/@types/exported.d.ts",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -5,6 +5,7 @@ import * as PlataModels from './libs/models'
5
5
  import * as PlataSwagger from './libs/swagger'
6
6
  import * as PlataSql from './libs/sql'
7
7
  import * as PlataJob from './libs/job'
8
+ import { PlataDisposableFactory } from './libs/disposable'
8
9
  import { PlataFs } from './libs/fs'
9
10
  import { PlataAxios } from './libs/axios'
10
11
 
@@ -18,4 +19,5 @@ export {
18
19
  PlataSql,
19
20
  PlataFs,
20
21
  PlataJob,
22
+ PlataDisposableFactory,
21
23
  }