dino-express
Version:
DinO enabled REST framework based on express
56 lines • 5.53 kB
JavaScript
;
// Copyright 2018 Quirino Brizi [quirino.brizi@gmail.com]
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebConfiguration = exports.Server = exports.Runner = exports.RoutingConfigurer = exports.RequestScopedInjectable = exports.RequestBodyParser = exports.Path = exports.Operation = exports.ObservableCommand = exports.Method = exports.Interface = exports.HttpSecurityValidationHandler = exports.HttpException = exports.Helper = exports.EventProducer = exports.ClientHttpException = exports.BeforeHandlerMiddleware = exports.ApiKeySecurityValidationHandler = exports.AfterHandlerMiddleware = exports.AbstractSecurityValidationHandler = exports.AbstractRequestAdaptor = void 0;
const AbstractRequestAdaptor_1 = require("./AbstractRequestAdaptor");
Object.defineProperty(exports, "AbstractRequestAdaptor", { enumerable: true, get: function () { return AbstractRequestAdaptor_1.AbstractRequestAdaptor; } });
const Helper_1 = require("./Helper");
Object.defineProperty(exports, "Helper", { enumerable: true, get: function () { return Helper_1.Helper; } });
const Interface_1 = require("./Interface");
Object.defineProperty(exports, "Interface", { enumerable: true, get: function () { return Interface_1.Interface; } });
const RoutingConfigurer_1 = require("./RoutingConfigurer");
Object.defineProperty(exports, "RoutingConfigurer", { enumerable: true, get: function () { return RoutingConfigurer_1.RoutingConfigurer; } });
const Server_1 = require("./Server");
Object.defineProperty(exports, "Runner", { enumerable: true, get: function () { return Server_1.Server; } });
Object.defineProperty(exports, "Server", { enumerable: true, get: function () { return Server_1.Server; } });
const WebConfiguration_1 = require("./WebConfiguration");
Object.defineProperty(exports, "WebConfiguration", { enumerable: true, get: function () { return WebConfiguration_1.WebConfiguration; } });
const Api_1 = require("./decorators/Api");
Object.defineProperty(exports, "Method", { enumerable: true, get: function () { return Api_1.Method; } });
Object.defineProperty(exports, "Operation", { enumerable: true, get: function () { return Api_1.Operation; } });
Object.defineProperty(exports, "Path", { enumerable: true, get: function () { return Api_1.Path; } });
const EventProducer_1 = require("./events/EventProducer");
Object.defineProperty(exports, "EventProducer", { enumerable: true, get: function () { return EventProducer_1.EventProducer; } });
const ObservableCommand_1 = require("./events/ObservableCommand");
Object.defineProperty(exports, "ObservableCommand", { enumerable: true, get: function () { return ObservableCommand_1.ObservableCommand; } });
const client_http_exception_1 = require("./exception/client.http.exception");
Object.defineProperty(exports, "ClientHttpException", { enumerable: true, get: function () { return client_http_exception_1.ClientHttpException; } });
const http_exception_1 = require("./exception/http.exception");
Object.defineProperty(exports, "HttpException", { enumerable: true, get: function () { return http_exception_1.HttpException; } });
const RequestScopedInjectable_1 = require("./injectables/RequestScopedInjectable");
Object.defineProperty(exports, "RequestScopedInjectable", { enumerable: true, get: function () { return RequestScopedInjectable_1.RequestScopedInjectable; } });
const after_handler_middleware_1 = require("./middlewares/after.handler.middleware");
Object.defineProperty(exports, "AfterHandlerMiddleware", { enumerable: true, get: function () { return after_handler_middleware_1.AfterHandlerMiddleware; } });
const before_handler_middleware_1 = require("./middlewares/before.handler.middleware");
Object.defineProperty(exports, "BeforeHandlerMiddleware", { enumerable: true, get: function () { return before_handler_middleware_1.BeforeHandlerMiddleware; } });
const request_body_parser_1 = require("./request/request.body.parser");
Object.defineProperty(exports, "RequestBodyParser", { enumerable: true, get: function () { return request_body_parser_1.RequestBodyParser; } });
const AbstractSecurityValidationHandler_1 = require("./security/AbstractSecurityValidationHandler");
Object.defineProperty(exports, "AbstractSecurityValidationHandler", { enumerable: true, get: function () { return AbstractSecurityValidationHandler_1.AbstractSecurityValidationHandler; } });
const ApiKeySecurityValidationHandler_1 = require("./security/ApiKeySecurityValidationHandler");
Object.defineProperty(exports, "ApiKeySecurityValidationHandler", { enumerable: true, get: function () { return ApiKeySecurityValidationHandler_1.ApiKeySecurityValidationHandler; } });
const HttpSecurityValidationHandler_1 = require("./security/HttpSecurityValidationHandler");
Object.defineProperty(exports, "HttpSecurityValidationHandler", { enumerable: true, get: function () { return HttpSecurityValidationHandler_1.HttpSecurityValidationHandler; } });
//# sourceMappingURL=main.js.map