web_api_base 1.1.0 → 1.3.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 +11 -17
- package/dist/Index.js.map +1 -1
- package/dist/index.d.ts +9 -14
- package/package.json +1 -1
package/dist/Index.js
CHANGED
|
@@ -3,21 +3,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 = {}));
|
|
6
|
+
exports.DependecyService = exports.ControllerBase = exports.ControllersDecorators = exports.ApplicationConfiguration = exports.Application = void 0;
|
|
7
|
+
var Application_1 = require("./Application");
|
|
8
|
+
Object.defineProperty(exports, "Application", { enumerable: true, get: function () { return __importDefault(Application_1).default; } });
|
|
9
|
+
var ApplicationConfiguration_1 = require("./ApplicationConfiguration");
|
|
10
|
+
Object.defineProperty(exports, "ApplicationConfiguration", { enumerable: true, get: function () { return __importDefault(ApplicationConfiguration_1).default; } });
|
|
11
|
+
var ControllerDecorators_1 = require("./decorators/controllers/ControllerDecorators");
|
|
12
|
+
Object.defineProperty(exports, "ControllersDecorators", { enumerable: true, get: function () { return __importDefault(ControllerDecorators_1).default; } });
|
|
13
|
+
var ControllerBase_1 = require("./controllers/base/ControllerBase");
|
|
14
|
+
Object.defineProperty(exports, "ControllerBase", { enumerable: true, get: function () { return ControllerBase_1.ControllerBase; } });
|
|
15
|
+
var DependecyService_1 = require("./dependencyInjection/DependecyService");
|
|
16
|
+
Object.defineProperty(exports, "DependecyService", { enumerable: true, get: function () { return __importDefault(DependecyService_1).default; } });
|
|
23
17
|
//# 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,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;;;;AAAA,6CAAsD;AAA7C,2HAAA,OAAO,OAAe;AAC/B,uEAAiF;AAAxE,qJAAA,OAAO,OAA4B;AAC5C,sFAAiG;AAAxF,8IAAA,OAAO,OAAyB;AACzC,oEAAmE;AAA1D,gHAAA,cAAc,OAAA;AACvB,2EAAqF;AAA5E,qIAAA,OAAO,OAAoB"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export
|
|
6
|
-
}
|
|
7
|
-
export
|
|
8
|
-
}
|
|
9
|
-
export
|
|
10
|
-
type IApplicationConfiguration = IApplicationConfigurationTp;
|
|
11
|
-
type IApplication = IApplicationTp;
|
|
12
|
-
type IController = IControllerTp;
|
|
13
|
-
type IMidleware = IMidlewareTp;
|
|
14
|
-
}
|
|
1
|
+
export { default as Application } from "./Application";
|
|
2
|
+
export { default as ApplicationConfiguration } from "./ApplicationConfiguration";
|
|
3
|
+
export { default as ControllersDecorators } from "./decorators/controllers/ControllerDecorators";
|
|
4
|
+
export { ControllerBase } from "./controllers/base/ControllerBase";
|
|
5
|
+
export { default as DependecyService } from "./dependencyInjection/DependecyService";
|
|
6
|
+
export { default as IMidleware } from './midlewares/IMidleware';
|
|
7
|
+
export { default as IApplicationConfiguration } from "./interfaces/IApplicationConfiguration";
|
|
8
|
+
export { default as IApplication } from "./interfaces/IApplication";
|
|
9
|
+
export { default as IApplicatiIControllernConfiguration } from "./interfaces/IController";
|