web_api_base 1.1.0 → 1.2.0

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/Index.js CHANGED
@@ -1,23 +1,3 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.DependencyInjection = exports.Core = void 0;
7
- const Application_1 = __importDefault(require("./Application"));
8
- const ApplicationConfiguration_1 = __importDefault(require("./ApplicationConfiguration"));
9
- const ControllerDecorators_1 = __importDefault(require("./decorators/controllers/ControllerDecorators"));
10
- const ControllerBase_1 = require("./controllers/base/ControllerBase");
11
- const DependecyService_1 = __importDefault(require("./dependencyInjection/DependecyService"));
12
- var Core;
13
- (function (Core) {
14
- exports.Application = Application_1.default;
15
- exports.ApplicationConfiguration = ApplicationConfiguration_1.default;
16
- exports.ControllerBase = ControllerBase_1.ControllerBase;
17
- exports.ControllersDecorators = ControllerDecorators_1.default;
18
- })(Core = exports.Core || (exports.Core = {}));
19
- var DependencyInjection;
20
- (function (DependencyInjection) {
21
- exports.DependecyService = DependecyService_1.default;
22
- })(DependencyInjection = exports.DependencyInjection || (exports.DependencyInjection = {}));
23
3
  //# sourceMappingURL=index.js.map
package/dist/Index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;AAAA,gEAAuC;AACvC,0FAAkE;AAClE,yGAAkF;AAClF,sEAAmE;AAMnE,8FAAsE;AAItE,IAAiB,IAAI,CAOpB;AAPD,WAAiB,IAAI;IAEjB,OAAO,CAAC,WAAW,GAAG,qBAAW,CAAC;IAClC,OAAO,CAAC,wBAAwB,GAAG,kCAAwB,CAAC;IAC5D,OAAO,CAAC,cAAc,GAAG,+BAAc,CAAC;IACxC,OAAO,CAAC,qBAAqB,GAAG,8BAAqB,CAAC;AAE1D,CAAC,EAPgB,IAAI,GAAJ,YAAI,KAAJ,YAAI,QAOpB;AAED,IAAiB,mBAAmB,CAGnC;AAHD,WAAiB,mBAAmB;IAEhC,OAAO,CAAC,gBAAgB,GAAG,0BAAgB,CAAC;AAChD,CAAC,EAHgB,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAGnC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":""}
package/dist/index.d.ts CHANGED
@@ -1,10 +1,20 @@
1
+ import ApplicationTp from "./Application";
2
+ import ApplicationConfigurationTp from "./ApplicationConfiguration";
3
+ import ControllersDecoratorsTp from "./decorators/controllers/ControllerDecorators";
4
+ import { ControllerBase as ControllerBaseTp } from "./controllers/base/ControllerBase";
1
5
  import IApplicationConfigurationTp from "./interfaces/IApplicationConfiguration";
2
6
  import IApplicationTp from "./interfaces/IApplication";
3
7
  import IControllerTp from "./interfaces/IController";
8
+ import DependecyServiceTp from "./dependencyInjection/DependecyService";
4
9
  import IMidlewareTp from './midlewares/IMidleware';
5
10
  export declare namespace Core {
11
+ type Application = ApplicationTp;
12
+ type ApplicationConfiguration = ApplicationConfigurationTp;
13
+ type ControllerBase = ControllerBaseTp;
14
+ type ControllersDecorators = ControllersDecoratorsTp;
6
15
  }
7
16
  export declare namespace DependencyInjection {
17
+ type DependecyService = DependecyServiceTp;
8
18
  }
9
19
  export declare namespace Interfaces {
10
20
  type IApplicationConfiguration = IApplicationConfigurationTp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web_api_base",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "web api base",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",