@elsikora/nestjs-crud-automator 1.6.4-dev.1 → 1.6.5-dev.1
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/README.md +381 -266
- package/dist/cjs/class/metadata-storage.class.js +2 -3
- package/dist/cjs/class/metadata-storage.class.js.map +1 -1
- package/dist/cjs/decorator/api/method.decorator.js +56 -56
- package/dist/cjs/decorator/api/method.decorator.js.map +1 -1
- package/dist/cjs/decorator/api/property/date.decorator.js +2 -2
- package/dist/cjs/decorator/api/property/date.decorator.js.map +1 -1
- package/dist/cjs/decorator/api/property/string.decorator.js +2 -2
- package/dist/cjs/decorator/api/property/string.decorator.js.map +1 -1
- package/dist/cjs/factory/api/controller.factory.js +3 -0
- package/dist/cjs/factory/api/controller.factory.js.map +1 -1
- package/dist/cjs/package.json +8 -0
- package/dist/cjs/utility/api/controller/get-list/transform-filter.utility.js +3 -1
- package/dist/cjs/utility/api/controller/get-list/transform-filter.utility.js.map +1 -1
- package/dist/cjs/utility/api/controller/write-dto-swagger.utility.js +1 -1
- package/dist/cjs/utility/api/controller/write-dto-swagger.utility.js.map +1 -1
- package/dist/cjs/utility/api/controller/write-method.utility.js +6 -1
- package/dist/cjs/utility/api/controller/write-method.utility.js.map +1 -1
- package/dist/cjs/utility/camel-case-string.utility.js +1 -1
- package/dist/cjs/utility/camel-case-string.utility.js.map +1 -1
- package/dist/cjs/utility/dto/generate-exception.utility.js +5 -5
- package/dist/cjs/utility/dto/generate-exception.utility.js.map +1 -1
- package/dist/cjs/utility/dto/generate-get-list-response.utility.js +5 -0
- package/dist/cjs/utility/dto/generate-get-list-response.utility.js.map +1 -1
- package/dist/cjs/utility/dto/generate-relation-response.utility.js +1 -0
- package/dist/cjs/utility/dto/generate-relation-response.utility.js.map +1 -1
- package/dist/cjs/utility/dto/get-get-list-query-base-class.utility.js +4 -0
- package/dist/cjs/utility/dto/get-get-list-query-base-class.utility.js.map +1 -1
- package/dist/cjs/validator/has-paired-custom-suffixes-fields.validator.js.map +1 -1
- package/dist/esm/class/api/index.d.ts +1 -0
- package/dist/esm/class/api/service-base.class.d.ts +11 -0
- package/dist/esm/class/index.d.ts +3 -0
- package/dist/esm/class/metadata-storage.class.d.ts +12 -0
- package/dist/esm/class/utility/dto/index.d.ts +2 -0
- package/dist/esm/class/utility/dto/property/factory/boolean.class.d.ts +6 -0
- package/dist/esm/class/utility/dto/property/factory/date.class.d.ts +6 -0
- package/dist/esm/class/utility/dto/property/factory/enum.class.d.ts +6 -0
- package/dist/esm/class/utility/dto/property/factory/index.d.ts +6 -0
- package/dist/esm/class/utility/dto/property/factory/number.class.d.ts +7 -0
- package/dist/esm/class/utility/dto/property/factory/object.class.d.ts +6 -0
- package/dist/esm/class/utility/dto/property/factory/relation.class.d.ts +7 -0
- package/dist/esm/class/utility/dto/property/factory/string.class.d.ts +6 -0
- package/dist/esm/class/utility/dto/property/factory/uuid.class.d.ts +6 -0
- package/dist/esm/class/utility/dto/property/index.d.ts +1 -0
- package/dist/esm/class/utility/dto/strategy/body.class.d.ts +6 -0
- package/dist/esm/class/utility/dto/strategy/index.d.ts +4 -0
- package/dist/esm/class/utility/dto/strategy/query.class.d.ts +6 -0
- package/dist/esm/class/utility/dto/strategy/request.class.d.ts +6 -0
- package/dist/esm/class/utility/dto/strategy/response.class.d.ts +6 -0
- package/dist/esm/class/utility/index.d.ts +1 -0
- package/dist/esm/constant/date.constant.d.ts +4 -0
- package/dist/esm/constant/decorator/api/controller.constant.d.ts +3 -0
- package/dist/esm/constant/decorator/api/function.constant.d.ts +4 -0
- package/dist/esm/constant/decorator/api/index.d.ts +3 -0
- package/dist/esm/constant/decorator/api/property-describe.constant.d.ts +3 -0
- package/dist/esm/constant/decorator/index.d.ts +1 -0
- package/dist/esm/constant/dto/exception.constant.d.ts +6 -0
- package/dist/esm/constant/dto/index.d.ts +3 -0
- package/dist/esm/constant/dto/list.constant.d.ts +7 -0
- package/dist/esm/constant/dto/transformer-value.constant.d.ts +7 -0
- package/dist/esm/constant/factory/dto/get-list-query.constant.d.ts +6 -0
- package/dist/esm/constant/factory/dto/index.d.ts +1 -0
- package/dist/esm/constant/factory/index.d.ts +1 -0
- package/dist/esm/constant/index.d.ts +6 -0
- package/dist/esm/constant/interface/api/filter.constant.d.ts +3 -0
- package/dist/esm/constant/interface/api/index.d.ts +2 -0
- package/dist/esm/constant/interface/api/property/index.d.ts +2 -0
- package/dist/esm/constant/interface/api/property/string.constant.d.ts +6 -0
- package/dist/esm/constant/interface/api/property/wallet.constant.d.ts +5 -0
- package/dist/esm/constant/interface/index.d.ts +1 -0
- package/dist/esm/constant/number.constant.d.ts +18 -0
- package/dist/esm/constant/utility/dto/constant.d.ts +6 -0
- package/dist/esm/constant/utility/dto/generate.constant.d.ts +4 -0
- package/dist/esm/decorator/api/controller.decorator.d.ts +3 -0
- package/dist/esm/decorator/api/function/create.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/function/decorator.d.ts +3 -0
- package/dist/esm/decorator/api/function/delete.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/function/get-list.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/function/get-many.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/function/get.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/function/index.d.ts +7 -0
- package/dist/esm/decorator/api/function/update.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/index.d.ts +5 -0
- package/dist/esm/decorator/api/method.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/property/boolean.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/property/date.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/property/describe.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/property/enum.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/property/index.d.ts +7 -0
- package/dist/esm/decorator/api/property/number.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/property/object.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/property/string.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/property/uuid.decorator.d.ts +2 -0
- package/dist/esm/decorator/api/service.decorator.d.ts +3 -0
- package/dist/esm/decorator/index.d.ts +1 -0
- package/dist/esm/enum/decorator/api/action.enum.d.ts +30 -0
- package/dist/esm/enum/decorator/api/authentication-type.enum.d.ts +6 -0
- package/dist/esm/enum/decorator/api/controller/index.d.ts +2 -0
- package/dist/esm/enum/decorator/api/controller/load-relations-strategy.enum.d.ts +4 -0
- package/dist/esm/enum/decorator/api/controller/request-transformer-type.enum.d.ts +4 -0
- package/dist/esm/enum/decorator/api/dto-type.enum.d.ts +6 -0
- package/dist/esm/enum/decorator/api/function/index.d.ts +1 -0
- package/dist/esm/enum/decorator/api/function/type.enum.d.ts +8 -0
- package/dist/esm/enum/decorator/api/index.d.ts +7 -0
- package/dist/esm/enum/decorator/api/property/data-type.enum.d.ts +18 -0
- package/dist/esm/enum/decorator/api/property/date/identifier.enum.d.ts +14 -0
- package/dist/esm/enum/decorator/api/property/date/index.d.ts +2 -0
- package/dist/esm/enum/decorator/api/property/date/type.enum.d.ts +5 -0
- package/dist/esm/enum/decorator/api/property/desribe-type.enum.d.ts +10 -0
- package/dist/esm/enum/decorator/api/property/index.d.ts +5 -0
- package/dist/esm/enum/decorator/api/property/number-type.enum.d.ts +4 -0
- package/dist/esm/enum/decorator/api/property/string-type.enum.d.ts +11 -0
- package/dist/esm/enum/decorator/api/route-type.enum.d.ts +8 -0
- package/dist/esm/enum/decorator/index.d.ts +1 -0
- package/dist/esm/enum/exception.enum.d.ts +30 -0
- package/dist/esm/enum/filter-operation.enum.d.ts +110 -0
- package/dist/esm/enum/filter-order-direction.enum.d.ts +4 -0
- package/dist/esm/enum/index.d.ts +4 -0
- package/dist/esm/enum/utility/error-string-action.enum.d.ts +102 -0
- package/dist/esm/enum/utility/index.d.ts +1 -0
- package/dist/esm/external/tslib/tslib.es6.js +35 -0
- package/dist/esm/external/tslib/tslib.es6.js.map +1 -0
- package/dist/esm/factory/api/controller.factory.d.ts +18 -0
- package/dist/esm/factory/api/index.d.ts +1 -0
- package/dist/esm/factory/index.d.ts +1 -0
- package/dist/esm/index.d.ts +10 -0
- package/dist/esm/interceptor/correlation-id-response-body.interceptor.d.ts +5 -0
- package/dist/esm/interceptor/index.d.ts +1 -0
- package/dist/esm/interface/api-authentication-request.interface.d.ts +4 -0
- package/dist/esm/interface/api-base-entity.interface.d.ts +4 -0
- package/dist/esm/interface/api-dto-validator.interface.d.ts +4 -0
- package/dist/esm/interface/api-request-validator.interface.d.ts +7 -0
- package/dist/esm/interface/class/dto/index.d.ts +1 -0
- package/dist/esm/interface/class/dto/strategy.interface.d.ts +5 -0
- package/dist/esm/interface/class/index.d.ts +2 -0
- package/dist/esm/interface/class/metadata-entry.interface.d.ts +2 -0
- package/dist/esm/interface/decorator/api/controller/base.interface.d.ts +4 -0
- package/dist/esm/interface/decorator/api/controller/index.d.ts +3 -0
- package/dist/esm/interface/decorator/api/controller/properties/index.d.ts +1 -0
- package/dist/esm/interface/decorator/api/controller/properties/route/authentication.interface.d.ts +9 -0
- package/dist/esm/interface/decorator/api/controller/properties/route/auto-dto-config.interface.d.ts +4 -0
- package/dist/esm/interface/decorator/api/controller/properties/route/base-request.interface.d.ts +8 -0
- package/dist/esm/interface/decorator/api/controller/properties/route/base-response.interface.d.ts +7 -0
- package/dist/esm/interface/decorator/api/controller/properties/route/base.interface.d.ts +11 -0
- package/dist/esm/interface/decorator/api/controller/properties/route/index.d.ts +7 -0
- package/dist/esm/interface/decorator/api/controller/properties/route/with-auto-dto.interface.d.ts +7 -0
- package/dist/esm/interface/decorator/api/controller/properties/route/with-dto.interface.d.ts +7 -0
- package/dist/esm/interface/decorator/api/controller/properties.interface.d.ts +11 -0
- package/dist/esm/interface/decorator/api/function/create-executor-properties.interface.d.ts +8 -0
- package/dist/esm/interface/decorator/api/function/delete-executor-properties.interface.d.ts +9 -0
- package/dist/esm/interface/decorator/api/function/get-executor-properties.interface.d.ts +8 -0
- package/dist/esm/interface/decorator/api/function/get-list-executor-properties.interface.d.ts +8 -0
- package/dist/esm/interface/decorator/api/function/get-many-executor-properties.interface.d.ts +8 -0
- package/dist/esm/interface/decorator/api/function/index.d.ts +7 -0
- package/dist/esm/interface/decorator/api/function/properties.interface.d.ts +4 -0
- package/dist/esm/interface/decorator/api/function/update-executor-properties.interface.d.ts +10 -0
- package/dist/esm/interface/decorator/api/get-list-response-result.interface.d.ts +7 -0
- package/dist/esm/interface/decorator/api/index.d.ts +5 -0
- package/dist/esm/interface/decorator/api/method/index.d.ts +2 -0
- package/dist/esm/interface/decorator/api/method/properties.interface.d.ts +17 -0
- package/dist/esm/interface/decorator/api/method/throttler-properties.interface.d.ts +4 -0
- package/dist/esm/interface/decorator/api/response-type.interface.d.ts +9 -0
- package/dist/esm/interface/decorator/index.d.ts +1 -0
- package/dist/esm/interface/dto-generate-factory.interface.d.ts +6 -0
- package/dist/esm/interface/entity/column.interface.d.ts +7 -0
- package/dist/esm/interface/entity/index.d.ts +2 -0
- package/dist/esm/interface/entity/interface.d.ts +7 -0
- package/dist/esm/interface/index.d.ts +8 -0
- package/dist/esm/interface/utility/api/controller/index.d.ts +1 -0
- package/dist/esm/interface/utility/api/controller/primary-column.interface.d.ts +4 -0
- package/dist/esm/interface/utility/api/index.d.ts +1 -0
- package/dist/esm/interface/utility/error-string-properties.interface.d.ts +5 -0
- package/dist/esm/interface/utility/get-entity-columns-properties.interface.d.ts +6 -0
- package/dist/esm/interface/utility/index.d.ts +2 -0
- package/dist/esm/package.json +8 -0
- package/dist/esm/src/class/api/service-base.class.js +23 -0
- package/dist/esm/src/class/api/service-base.class.js.map +1 -0
- package/dist/esm/src/class/metadata-storage.class.js +47 -0
- package/dist/esm/src/class/metadata-storage.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/property/factory/boolean.class.js +15 -0
- package/dist/esm/src/class/utility/dto/property/factory/boolean.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/property/factory/date.class.js +15 -0
- package/dist/esm/src/class/utility/dto/property/factory/date.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/property/factory/enum.class.js +15 -0
- package/dist/esm/src/class/utility/dto/property/factory/enum.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/property/factory/number.class.js +32 -0
- package/dist/esm/src/class/utility/dto/property/factory/number.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/property/factory/object.class.js +16 -0
- package/dist/esm/src/class/utility/dto/property/factory/object.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/property/factory/relation.class.js +29 -0
- package/dist/esm/src/class/utility/dto/property/factory/relation.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/property/factory/string.class.js +15 -0
- package/dist/esm/src/class/utility/dto/property/factory/string.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/property/factory/uuid.class.js +11 -0
- package/dist/esm/src/class/utility/dto/property/factory/uuid.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/strategy/body.class.js +47 -0
- package/dist/esm/src/class/utility/dto/strategy/body.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/strategy/query.class.js +44 -0
- package/dist/esm/src/class/utility/dto/strategy/query.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/strategy/request.class.js +47 -0
- package/dist/esm/src/class/utility/dto/strategy/request.class.js.map +1 -0
- package/dist/esm/src/class/utility/dto/strategy/response.class.js +47 -0
- package/dist/esm/src/class/utility/dto/strategy/response.class.js.map +1 -0
- package/dist/esm/src/constant/date.constant.js +9 -0
- package/dist/esm/src/constant/date.constant.js.map +1 -0
- package/dist/esm/src/constant/decorator/api/controller.constant.js +7 -0
- package/dist/esm/src/constant/decorator/api/controller.constant.js.map +1 -0
- package/dist/esm/src/constant/decorator/api/function.constant.js +24 -0
- package/dist/esm/src/constant/decorator/api/function.constant.js.map +1 -0
- package/dist/esm/src/constant/decorator/api/property-describe.constant.js +7 -0
- package/dist/esm/src/constant/decorator/api/property-describe.constant.js.map +1 -0
- package/dist/esm/src/constant/dto/exception.constant.js +13 -0
- package/dist/esm/src/constant/dto/exception.constant.js.map +1 -0
- package/dist/esm/src/constant/dto/list.constant.js +13 -0
- package/dist/esm/src/constant/dto/list.constant.js.map +1 -0
- package/dist/esm/src/constant/dto/transformer-value.constant.js +15 -0
- package/dist/esm/src/constant/dto/transformer-value.constant.js.map +1 -0
- package/dist/esm/src/constant/factory/dto/get-list-query.constant.js +13 -0
- package/dist/esm/src/constant/factory/dto/get-list-query.constant.js.map +1 -0
- package/dist/esm/src/constant/interface/api/filter.constant.js +7 -0
- package/dist/esm/src/constant/interface/api/filter.constant.js.map +1 -0
- package/dist/esm/src/constant/interface/api/property/string.constant.js +11 -0
- package/dist/esm/src/constant/interface/api/property/string.constant.js.map +1 -0
- package/dist/esm/src/constant/interface/api/property/wallet.constant.js +11 -0
- package/dist/esm/src/constant/interface/api/property/wallet.constant.js.map +1 -0
- package/dist/esm/src/constant/number.constant.js +37 -0
- package/dist/esm/src/constant/number.constant.js.map +1 -0
- package/dist/esm/src/constant/utility/dto/constant.js +53 -0
- package/dist/esm/src/constant/utility/dto/constant.js.map +1 -0
- package/dist/esm/src/constant/utility/dto/generate.constant.js +9 -0
- package/dist/esm/src/constant/utility/dto/generate.constant.js.map +1 -0
- package/dist/esm/src/decorator/api/controller.decorator.js +16 -0
- package/dist/esm/src/decorator/api/controller.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/function/create.decorator.js +51 -0
- package/dist/esm/src/decorator/api/function/create.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/function/decorator.js +69 -0
- package/dist/esm/src/decorator/api/function/decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/function/delete.decorator.js +69 -0
- package/dist/esm/src/decorator/api/function/delete.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/function/get-list.decorator.js +58 -0
- package/dist/esm/src/decorator/api/function/get-list.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/function/get-many.decorator.js +55 -0
- package/dist/esm/src/decorator/api/function/get-many.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/function/get.decorator.js +55 -0
- package/dist/esm/src/decorator/api/function/get.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/function/update.decorator.js +80 -0
- package/dist/esm/src/decorator/api/function/update.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/method.decorator.js +349 -0
- package/dist/esm/src/decorator/api/method.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/property/boolean.decorator.js +177 -0
- package/dist/esm/src/decorator/api/property/boolean.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/property/date.decorator.js +204 -0
- package/dist/esm/src/decorator/api/property/date.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/property/describe.decorator.js +29 -0
- package/dist/esm/src/decorator/api/property/describe.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/property/enum.decorator.js +103 -0
- package/dist/esm/src/decorator/api/property/enum.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/property/number.decorator.js +213 -0
- package/dist/esm/src/decorator/api/property/number.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/property/object.decorator.js +102 -0
- package/dist/esm/src/decorator/api/property/object.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/property/string.decorator.js +232 -0
- package/dist/esm/src/decorator/api/property/string.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/property/uuid.decorator.js +118 -0
- package/dist/esm/src/decorator/api/property/uuid.decorator.js.map +1 -0
- package/dist/esm/src/decorator/api/service.decorator.js +161 -0
- package/dist/esm/src/decorator/api/service.decorator.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/action.enum.js +34 -0
- package/dist/esm/src/enum/decorator/api/action.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/authentication-type.enum.js +10 -0
- package/dist/esm/src/enum/decorator/api/authentication-type.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/controller/load-relations-strategy.enum.js +8 -0
- package/dist/esm/src/enum/decorator/api/controller/load-relations-strategy.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/controller/request-transformer-type.enum.js +8 -0
- package/dist/esm/src/enum/decorator/api/controller/request-transformer-type.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/dto-type.enum.js +10 -0
- package/dist/esm/src/enum/decorator/api/dto-type.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/function/type.enum.js +12 -0
- package/dist/esm/src/enum/decorator/api/function/type.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/property/data-type.enum.js +22 -0
- package/dist/esm/src/enum/decorator/api/property/data-type.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/property/date/identifier.enum.js +18 -0
- package/dist/esm/src/enum/decorator/api/property/date/identifier.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/property/date/type.enum.js +11 -0
- package/dist/esm/src/enum/decorator/api/property/date/type.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/property/desribe-type.enum.js +14 -0
- package/dist/esm/src/enum/decorator/api/property/desribe-type.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/property/number-type.enum.js +10 -0
- package/dist/esm/src/enum/decorator/api/property/number-type.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/property/string-type.enum.js +17 -0
- package/dist/esm/src/enum/decorator/api/property/string-type.enum.js.map +1 -0
- package/dist/esm/src/enum/decorator/api/route-type.enum.js +12 -0
- package/dist/esm/src/enum/decorator/api/route-type.enum.js.map +1 -0
- package/dist/esm/src/enum/exception.enum.js +34 -0
- package/dist/esm/src/enum/exception.enum.js.map +1 -0
- package/dist/esm/src/enum/filter-operation.enum.js +123 -0
- package/dist/esm/src/enum/filter-operation.enum.js.map +1 -0
- package/dist/esm/src/enum/filter-order-direction.enum.js +8 -0
- package/dist/esm/src/enum/filter-order-direction.enum.js.map +1 -0
- package/dist/esm/src/enum/utility/error-string-action.enum.js +106 -0
- package/dist/esm/src/enum/utility/error-string-action.enum.js.map +1 -0
- package/dist/esm/src/factory/api/controller.factory.js +216 -0
- package/dist/esm/src/factory/api/controller.factory.js.map +1 -0
- package/dist/esm/src/index.js +82 -0
- package/dist/esm/src/index.js.map +1 -0
- package/dist/esm/src/interceptor/correlation-id-response-body.interceptor.js +76 -0
- package/dist/esm/src/interceptor/correlation-id-response-body.interceptor.js.map +1 -0
- package/dist/esm/src/utility/api/controller/apply-decorators.utility.js +81 -0
- package/dist/esm/src/utility/api/controller/apply-decorators.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/apply-metadata.utility.js +76 -0
- package/dist/esm/src/utility/api/controller/apply-metadata.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/get-list/transform-filter.utility.js +48 -0
- package/dist/esm/src/utility/api/controller/get-list/transform-filter.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/get-list/transform-operation.utility.js +80 -0
- package/dist/esm/src/utility/api/controller/get-list/transform-operation.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/get-method-name.utility.js +9 -0
- package/dist/esm/src/utility/api/controller/get-method-name.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/get-primary-column.utility.js +13 -0
- package/dist/esm/src/utility/api/controller/get-primary-column.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/handle-request-relations.utility.js +70 -0
- package/dist/esm/src/utility/api/controller/handle-request-relations.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/transform-data.utility.js +147 -0
- package/dist/esm/src/utility/api/controller/transform-data.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/validate-request.utility.js +16 -0
- package/dist/esm/src/utility/api/controller/validate-request.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/write-dto-swagger.utility.js +77 -0
- package/dist/esm/src/utility/api/controller/write-dto-swagger.utility.js.map +1 -0
- package/dist/esm/src/utility/api/controller/write-method.utility.js +18 -0
- package/dist/esm/src/utility/api/controller/write-method.utility.js.map +1 -0
- package/dist/esm/src/utility/api/filter-order-by-from-entity.utility.js +46 -0
- package/dist/esm/src/utility/api/filter-order-by-from-entity.utility.js.map +1 -0
- package/dist/esm/src/utility/camel-case-string.utility.js +29 -0
- package/dist/esm/src/utility/camel-case-string.utility.js.map +1 -0
- package/dist/esm/src/utility/capitalize-string.utility.js +6 -0
- package/dist/esm/src/utility/capitalize-string.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/analize.utility.js +25 -0
- package/dist/esm/src/utility/dto/analize.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/build-decorator.utility.js +49 -0
- package/dist/esm/src/utility/dto/build-decorator.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/generate-decorator.utility.js +13 -0
- package/dist/esm/src/utility/dto/generate-decorator.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/generate-exception.utility.js +96 -0
- package/dist/esm/src/utility/dto/generate-exception.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/generate-filter-decorator.utility.js +50 -0
- package/dist/esm/src/utility/dto/generate-filter-decorator.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/generate-get-list-response.utility.js +102 -0
- package/dist/esm/src/utility/dto/generate-get-list-response.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/generate-relation-response.utility.js +19 -0
- package/dist/esm/src/utility/dto/generate-relation-response.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/generate.utility.js +131 -0
- package/dist/esm/src/utility/dto/generate.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/get-decorator-config.utility.js +18 -0
- package/dist/esm/src/utility/dto/get-decorator-config.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/get-get-list-query-base-class.utility.js +95 -0
- package/dist/esm/src/utility/dto/get-get-list-query-base-class.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/handle-date-property.utility.js +33 -0
- package/dist/esm/src/utility/dto/handle-date-property.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/is-property-exposed-for-guard.utility.js +13 -0
- package/dist/esm/src/utility/dto/is-property-exposed-for-guard.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/is-property-should-be-marked.utility.js +44 -0
- package/dist/esm/src/utility/dto/is-property-should-be-marked.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/is-should-be-generated.utility.js +39 -0
- package/dist/esm/src/utility/dto/is-should-be-generated.utility.js.map +1 -0
- package/dist/esm/src/utility/dto/validate-property-config.utility.js +4 -0
- package/dist/esm/src/utility/dto/validate-property-config.utility.js.map +1 -0
- package/dist/esm/src/utility/error-exception.utility.js +6 -0
- package/dist/esm/src/utility/error-exception.utility.js.map +1 -0
- package/dist/esm/src/utility/error-string.utility.js +6 -0
- package/dist/esm/src/utility/error-string.utility.js.map +1 -0
- package/dist/esm/src/utility/generate-entity-information.utility.js +76 -0
- package/dist/esm/src/utility/generate-entity-information.utility.js.map +1 -0
- package/dist/esm/src/utility/get-entity-columns.utility.js +20 -0
- package/dist/esm/src/utility/get-entity-columns.utility.js.map +1 -0
- package/dist/esm/src/utility/is-error-of-type.utility.js +66 -0
- package/dist/esm/src/utility/is-error-of-type.utility.js.map +1 -0
- package/dist/esm/src/validator/all-or-none-of-listed-properties.validator.js +23 -0
- package/dist/esm/src/validator/all-or-none-of-listed-properties.validator.js.map +1 -0
- package/dist/esm/src/validator/has-at-least-one-and-only-one-of-listed-properties.validator.js +33 -0
- package/dist/esm/src/validator/has-at-least-one-and-only-one-of-listed-properties.validator.js.map +1 -0
- package/dist/esm/src/validator/has-at-least-one-of-listed-properties.validator.js +29 -0
- package/dist/esm/src/validator/has-at-least-one-of-listed-properties.validator.js.map +1 -0
- package/dist/esm/src/validator/has-at-least-one-property.validator.js +17 -0
- package/dist/esm/src/validator/has-at-least-one-property.validator.js.map +1 -0
- package/dist/esm/src/validator/has-paired-custom-suffixes-fields.validator.js +214 -0
- package/dist/esm/src/validator/has-paired-custom-suffixes-fields.validator.js.map +1 -0
- package/dist/esm/src/validator/is-regular-expression.validator.js +25 -0
- package/dist/esm/src/validator/is-regular-expression.validator.js.map +1 -0
- package/dist/esm/src/validator/only-one-of-listed-properties.validator.js +28 -0
- package/dist/esm/src/validator/only-one-of-listed-properties.validator.js.map +1 -0
- package/dist/esm/type/api-request-transformer.type.d.ts +15 -0
- package/dist/esm/type/class/api-exception.type.d.ts +2 -0
- package/dist/esm/type/class/controller/index.d.ts +1 -0
- package/dist/esm/type/class/controller/method.type.d.ts +5 -0
- package/dist/esm/type/class/index.d.ts +3 -0
- package/dist/esm/type/class/metadata.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/controller/constructor.type.d.ts +4 -0
- package/dist/esm/type/decorator/api/controller/get-list-query.type.d.ts +8 -0
- package/dist/esm/type/decorator/api/controller/index.d.ts +5 -0
- package/dist/esm/type/decorator/api/controller/properties/index.d.ts +1 -0
- package/dist/esm/type/decorator/api/controller/properties/route/base-request-relations.type.d.ts +18 -0
- package/dist/esm/type/decorator/api/controller/properties/route/base-request-transformers.type.d.ts +10 -0
- package/dist/esm/type/decorator/api/controller/properties/route/base-response-transformers.type.d.ts +10 -0
- package/dist/esm/type/decorator/api/controller/properties/route/index.d.ts +3 -0
- package/dist/esm/type/decorator/api/controller/properties-route.type.d.ts +3 -0
- package/dist/esm/type/decorator/api/controller/transformer-config.type.d.ts +8 -0
- package/dist/esm/type/decorator/api/filter/allowed-types.type.d.ts +1 -0
- package/dist/esm/type/decorator/api/filter/extracted-allowed-types.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/filter/field-selector.type.d.ts +3 -0
- package/dist/esm/type/decorator/api/filter/index.d.ts +4 -0
- package/dist/esm/type/decorator/api/filter/order-by.type.d.ts +4 -0
- package/dist/esm/type/decorator/api/function/create-properties.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/function/delete-criteria.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/function/get-list-properties-where.type.d.ts +7 -0
- package/dist/esm/type/decorator/api/function/get-list-properties.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/function/get-many.properties.d.ts +2 -0
- package/dist/esm/type/decorator/api/function/get-properties.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/function/index.d.ts +9 -0
- package/dist/esm/type/decorator/api/function/properties.type.d.ts +7 -0
- package/dist/esm/type/decorator/api/function/update-criteria.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/function/update-properties.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/index.d.ts +5 -0
- package/dist/esm/type/decorator/api/property/base/array/index.d.ts +2 -0
- package/dist/esm/type/decorator/api/property/base/array/optional-properties.type.d.ts +3 -0
- package/dist/esm/type/decorator/api/property/base/array/required-properties.type.d.ts +6 -0
- package/dist/esm/type/decorator/api/property/base/index.d.ts +4 -0
- package/dist/esm/type/decorator/api/property/base/properties.type.d.ts +9 -0
- package/dist/esm/type/decorator/api/property/base/request-properties.type.d.ts +4 -0
- package/dist/esm/type/decorator/api/property/base/response-properties.type.d.ts +4 -0
- package/dist/esm/type/decorator/api/property/date-properties.type.d.ts +6 -0
- package/dist/esm/type/decorator/api/property/describe/array/index.d.ts +2 -0
- package/dist/esm/type/decorator/api/property/describe/array/optional-properties.type.d.ts +3 -0
- package/dist/esm/type/decorator/api/property/describe/array/required-properties.type.d.ts +6 -0
- package/dist/esm/type/decorator/api/property/describe/base-properties.type.d.ts +5 -0
- package/dist/esm/type/decorator/api/property/describe/boolean-properties.type.d.ts +7 -0
- package/dist/esm/type/decorator/api/property/describe/date-properties.type.d.ts +8 -0
- package/dist/esm/type/decorator/api/property/describe/dto/body-properties.type.d.ts +5 -0
- package/dist/esm/type/decorator/api/property/describe/dto/guard-properties.type.d.ts +6 -0
- package/dist/esm/type/decorator/api/property/describe/dto/index.d.ts +5 -0
- package/dist/esm/type/decorator/api/property/describe/dto/properties.type.d.ts +11 -0
- package/dist/esm/type/decorator/api/property/describe/dto/query/get-list-properties.type.d.ts +3 -0
- package/dist/esm/type/decorator/api/property/describe/dto/query/index.d.ts +2 -0
- package/dist/esm/type/decorator/api/property/describe/dto/query/properties.type.d.ts +6 -0
- package/dist/esm/type/decorator/api/property/describe/dto/request-properties.type.d.ts +5 -0
- package/dist/esm/type/decorator/api/property/describe/dto/response-properties.type.d.ts +5 -0
- package/dist/esm/type/decorator/api/property/describe/enum-properties.type.d.ts +9 -0
- package/dist/esm/type/decorator/api/property/describe/example-properties.type.d.ts +7 -0
- package/dist/esm/type/decorator/api/property/describe/index.d.ts +13 -0
- package/dist/esm/type/decorator/api/property/describe/number-properties.type.d.ts +12 -0
- package/dist/esm/type/decorator/api/property/describe/object-properties.type.d.ts +12 -0
- package/dist/esm/type/decorator/api/property/describe/properties/base-dto-properties.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/property/describe/properties/base-properties.type.d.ts +10 -0
- package/dist/esm/type/decorator/api/property/describe/properties/index.d.ts +2 -0
- package/dist/esm/type/decorator/api/property/describe/properties.type.d.ts +9 -0
- package/dist/esm/type/decorator/api/property/describe/relation-properties.type.d.ts +6 -0
- package/dist/esm/type/decorator/api/property/describe/string-properties.type.d.ts +12 -0
- package/dist/esm/type/decorator/api/property/describe/uuid-properties.type.d.ts +7 -0
- package/dist/esm/type/decorator/api/property/enum-properties.type.d.ts +6 -0
- package/dist/esm/type/decorator/api/property/index.d.ts +6 -0
- package/dist/esm/type/decorator/api/property/number-properties.type.d.ts +9 -0
- package/dist/esm/type/decorator/api/property/object-properties.type.d.ts +8 -0
- package/dist/esm/type/decorator/api/property/string-properties.type.d.ts +9 -0
- package/dist/esm/type/decorator/api/property/uuid-properties.type.d.ts +2 -0
- package/dist/esm/type/decorator/api/service/index.d.ts +2 -0
- package/dist/esm/type/decorator/api/service/keys.type.d.ts +4 -0
- package/dist/esm/type/decorator/api/service/properties.type.d.ts +3 -0
- package/dist/esm/type/decorator/index.d.ts +1 -0
- package/dist/esm/type/factory/api/controller/index.d.ts +4 -0
- package/dist/esm/type/factory/api/controller/method-map.type.d.ts +12 -0
- package/dist/esm/type/factory/api/controller/method-name-map.type.d.ts +5 -0
- package/dist/esm/type/factory/api/controller/method-name.type.d.ts +4 -0
- package/dist/esm/type/factory/api/controller/target-methods.type.d.ts +9 -0
- package/dist/esm/type/factory/api/index.d.ts +1 -0
- package/dist/esm/type/factory/index.d.ts +1 -0
- package/dist/esm/type/index.d.ts +5 -0
- package/dist/esm/type/utility/api/controller/index.d.ts +1 -0
- package/dist/esm/type/utility/api/controller/transform-data/data.type.d.ts +6 -0
- package/dist/esm/type/utility/api/controller/transform-data/index.d.ts +3 -0
- package/dist/esm/type/utility/api/controller/transform-data/is-validation-properties.type.d.ts +3 -0
- package/dist/esm/type/utility/api/controller/transform-data/object-to-transform.type.d.ts +9 -0
- package/dist/esm/type/utility/api/index.d.ts +1 -0
- package/dist/esm/type/utility/capitalize-string.type.d.ts +1 -0
- package/dist/esm/type/utility/date-keys.type.d.ts +2 -0
- package/dist/esm/type/utility/date-range-keys.type.d.ts +4 -0
- package/dist/esm/type/utility/dto/generate-allowed-combination.type.d.ts +9 -0
- package/dist/esm/type/utility/dto/generate-is-allowed-combination.type.d.ts +3 -0
- package/dist/esm/type/utility/dto/index.d.ts +2 -0
- package/dist/esm/type/utility/filter-keys.type.d.ts +7 -0
- package/dist/esm/type/utility/index.d.ts +7 -0
- package/dist/esm/type/utility/non-date-keys.type.d.ts +2 -0
- package/dist/esm/utility/api/controller/apply-decorators.utility.d.ts +4 -0
- package/dist/esm/utility/api/controller/apply-metadata.utility.d.ts +4 -0
- package/dist/esm/utility/api/controller/get-list/index.d.ts +2 -0
- package/dist/esm/utility/api/controller/get-list/transform-filter.utility.d.ts +3 -0
- package/dist/esm/utility/api/controller/get-list/transform-operation.utility.d.ts +3 -0
- package/dist/esm/utility/api/controller/get-method-name.utility.d.ts +2 -0
- package/dist/esm/utility/api/controller/get-primary-column.utility.d.ts +3 -0
- package/dist/esm/utility/api/controller/handle-request-relations.utility.d.ts +4 -0
- package/dist/esm/utility/api/controller/index.d.ts +9 -0
- package/dist/esm/utility/api/controller/transform-data.utility.d.ts +4 -0
- package/dist/esm/utility/api/controller/validate-request.utility.d.ts +3 -0
- package/dist/esm/utility/api/controller/write-dto-swagger.utility.d.ts +4 -0
- package/dist/esm/utility/api/controller/write-method.utility.d.ts +3 -0
- package/dist/esm/utility/api/filter-order-by-from-entity.utility.d.ts +6 -0
- package/dist/esm/utility/api/index.d.ts +2 -0
- package/dist/esm/utility/camel-case-string.utility.d.ts +1 -0
- package/dist/esm/utility/capitalize-string.utility.d.ts +1 -0
- package/dist/esm/utility/dto/analize.utility.d.ts +2 -0
- package/dist/esm/utility/dto/build-decorator.utility.d.ts +6 -0
- package/dist/esm/utility/dto/generate-decorator.utility.d.ts +4 -0
- package/dist/esm/utility/dto/generate-exception.utility.d.ts +2 -0
- package/dist/esm/utility/dto/generate-filter-decorator.utility.d.ts +3 -0
- package/dist/esm/utility/dto/generate-get-list-response.utility.d.ts +4 -0
- package/dist/esm/utility/dto/generate-relation-response.utility.d.ts +4 -0
- package/dist/esm/utility/dto/generate.utility.d.ts +6 -0
- package/dist/esm/utility/dto/get-decorator-config.utility.d.ts +3 -0
- package/dist/esm/utility/dto/get-get-list-query-base-class.utility.d.ts +5 -0
- package/dist/esm/utility/dto/handle-date-property.utility.d.ts +5 -0
- package/dist/esm/utility/dto/index.d.ts +12 -0
- package/dist/esm/utility/dto/is-property-exposed-for-guard.utility.d.ts +5 -0
- package/dist/esm/utility/dto/is-property-should-be-marked.utility.d.ts +5 -0
- package/dist/esm/utility/dto/is-should-be-generated.utility.d.ts +2 -0
- package/dist/esm/utility/dto/validate-property-config.utility.d.ts +2 -0
- package/dist/esm/utility/error-exception.utility.d.ts +1 -0
- package/dist/esm/utility/error-string.utility.d.ts +2 -0
- package/dist/esm/utility/generate-entity-information.utility.d.ts +2 -0
- package/dist/esm/utility/get-entity-columns.utility.d.ts +2 -0
- package/dist/esm/utility/index.d.ts +9 -0
- package/dist/esm/utility/is-error-of-type.utility.d.ts +2 -0
- package/dist/esm/validator/all-or-none-of-listed-properties.validator.d.ts +5 -0
- package/dist/esm/validator/has-at-least-one-and-only-one-of-listed-properties.validator.d.ts +5 -0
- package/dist/esm/validator/has-at-least-one-of-listed-properties.validator.d.ts +5 -0
- package/dist/esm/validator/has-at-least-one-property.validator.d.ts +5 -0
- package/dist/esm/validator/has-paired-custom-suffixes-fields.validator.d.ts +7 -0
- package/dist/esm/validator/index.d.ts +6 -0
- package/dist/esm/validator/is-regular-expression.validator.d.ts +4 -0
- package/dist/esm/validator/only-one-of-listed-properties.validator.d.ts +5 -0
- package/package.json +22 -14
- package/dist/package.json +0 -97
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service.decorator.js","sources":["../../../../../../src/decorator/api/service.decorator.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
var EApiAction;
|
|
2
|
+
(function (EApiAction) {
|
|
3
|
+
EApiAction["ARCHIVE"] = "archive";
|
|
4
|
+
EApiAction["AUTHENTICATION"] = "authentication";
|
|
5
|
+
EApiAction["BULK_CREATE"] = "bulk_create";
|
|
6
|
+
EApiAction["BULK_DELETE"] = "bulk_delete";
|
|
7
|
+
EApiAction["BULK_UPDATE"] = "bulk_update";
|
|
8
|
+
EApiAction["CONFIRMATION"] = "confirmation";
|
|
9
|
+
EApiAction["CREATE"] = "create";
|
|
10
|
+
EApiAction["DELETE"] = "delete";
|
|
11
|
+
EApiAction["DOWNLOAD"] = "download";
|
|
12
|
+
EApiAction["DUPLICATE"] = "duplicate";
|
|
13
|
+
EApiAction["EXPORT"] = "export";
|
|
14
|
+
EApiAction["FETCH"] = "fetch";
|
|
15
|
+
EApiAction["FETCH_LIST"] = "fetch_list";
|
|
16
|
+
EApiAction["FETCH_SIMPLE_LIST"] = "fetch_simple_list";
|
|
17
|
+
EApiAction["FETCH_SPECIFIED"] = "fetch_specified";
|
|
18
|
+
EApiAction["IMPORT"] = "import";
|
|
19
|
+
EApiAction["LOGOUT"] = "logout";
|
|
20
|
+
EApiAction["PARTIAL_UPDATE"] = "partial_update";
|
|
21
|
+
EApiAction["REFRESH"] = "refresh";
|
|
22
|
+
EApiAction["REGISTRATION"] = "registration";
|
|
23
|
+
EApiAction["RESTORE"] = "restore";
|
|
24
|
+
EApiAction["SEARCH"] = "search";
|
|
25
|
+
EApiAction["SUBSCRIBE"] = "subscribe";
|
|
26
|
+
EApiAction["UNSUBSCRIBE"] = "unsubscribe";
|
|
27
|
+
EApiAction["UPDATE"] = "update";
|
|
28
|
+
EApiAction["UPLOAD"] = "upload";
|
|
29
|
+
EApiAction["VALIDATE"] = "validate";
|
|
30
|
+
EApiAction["VERIFY"] = "verify";
|
|
31
|
+
})(EApiAction || (EApiAction = {}));
|
|
32
|
+
|
|
33
|
+
export { EApiAction };
|
|
34
|
+
//# sourceMappingURL=action.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.enum.js","sources":["../../../../../../../src/enum/decorator/api/action.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,UAAU,EAAA;AACrB,IAAA,UAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,UAAA,CAAA,gBAAA,CAAA,GAAA,gBAAiC;AACjC,IAAA,UAAA,CAAA,aAAA,CAAA,GAAA,aAA2B;AAC3B,IAAA,UAAA,CAAA,aAAA,CAAA,GAAA,aAA2B;AAC3B,IAAA,UAAA,CAAA,aAAA,CAAA,GAAA,aAA2B;AAC3B,IAAA,UAAA,CAAA,cAAA,CAAA,GAAA,cAA6B;AAC7B,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,UAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,UAAA,CAAA,WAAA,CAAA,GAAA,WAAuB;AACvB,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,UAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,UAAA,CAAA,YAAA,CAAA,GAAA,YAAyB;AACzB,IAAA,UAAA,CAAA,mBAAA,CAAA,GAAA,mBAAuC;AACvC,IAAA,UAAA,CAAA,iBAAA,CAAA,GAAA,iBAAmC;AACnC,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,UAAA,CAAA,gBAAA,CAAA,GAAA,gBAAiC;AACjC,IAAA,UAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,UAAA,CAAA,cAAA,CAAA,GAAA,cAA6B;AAC7B,IAAA,UAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,UAAA,CAAA,WAAA,CAAA,GAAA,WAAuB;AACvB,IAAA,UAAA,CAAA,aAAA,CAAA,GAAA,aAA2B;AAC3B,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,UAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AAClB,CAAC,EA7BW,UAAU,KAAV,UAAU,GA6BrB,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var EApiAuthenticationType;
|
|
2
|
+
(function (EApiAuthenticationType) {
|
|
3
|
+
EApiAuthenticationType["ACCOUNT"] = "account";
|
|
4
|
+
EApiAuthenticationType["ADMIN"] = "admin";
|
|
5
|
+
EApiAuthenticationType["MERCHANT"] = "merchant";
|
|
6
|
+
EApiAuthenticationType["USER"] = "user";
|
|
7
|
+
})(EApiAuthenticationType || (EApiAuthenticationType = {}));
|
|
8
|
+
|
|
9
|
+
export { EApiAuthenticationType };
|
|
10
|
+
//# sourceMappingURL=authentication-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authentication-type.enum.js","sources":["../../../../../../../src/enum/decorator/api/authentication-type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,sBAAsB,EAAA;AACjC,IAAA,sBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,sBAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,sBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,sBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACd,CAAC,EALW,sBAAsB,KAAtB,sBAAsB,GAKjC,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var EApiControllerLoadRelationsStrategy;
|
|
2
|
+
(function (EApiControllerLoadRelationsStrategy) {
|
|
3
|
+
EApiControllerLoadRelationsStrategy["AUTO"] = "AUTO";
|
|
4
|
+
EApiControllerLoadRelationsStrategy["MANUAL"] = "MANUAL";
|
|
5
|
+
})(EApiControllerLoadRelationsStrategy || (EApiControllerLoadRelationsStrategy = {}));
|
|
6
|
+
|
|
7
|
+
export { EApiControllerLoadRelationsStrategy };
|
|
8
|
+
//# sourceMappingURL=load-relations-strategy.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"load-relations-strategy.enum.js","sources":["../../../../../../../../src/enum/decorator/api/controller/load-relations-strategy.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,mCAAmC,EAAA;AAC9C,IAAA,mCAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,mCAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AAClB,CAAC,EAHW,mCAAmC,KAAnC,mCAAmC,GAG9C,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var EApiControllerRequestTransformerType;
|
|
2
|
+
(function (EApiControllerRequestTransformerType) {
|
|
3
|
+
EApiControllerRequestTransformerType["DYNAMIC"] = "DYNAMIC";
|
|
4
|
+
EApiControllerRequestTransformerType["STATIC"] = "STATIC";
|
|
5
|
+
})(EApiControllerRequestTransformerType || (EApiControllerRequestTransformerType = {}));
|
|
6
|
+
|
|
7
|
+
export { EApiControllerRequestTransformerType };
|
|
8
|
+
//# sourceMappingURL=request-transformer-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"request-transformer-type.enum.js","sources":["../../../../../../../../src/enum/decorator/api/controller/request-transformer-type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,oCAAoC,EAAA;AAC/C,IAAA,oCAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,oCAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AAClB,CAAC,EAHW,oCAAoC,KAApC,oCAAoC,GAG/C,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var EApiDtoType;
|
|
2
|
+
(function (EApiDtoType) {
|
|
3
|
+
EApiDtoType["BODY"] = "body";
|
|
4
|
+
EApiDtoType["QUERY"] = "query";
|
|
5
|
+
EApiDtoType["REQUEST"] = "request";
|
|
6
|
+
EApiDtoType["RESPONSE"] = "response";
|
|
7
|
+
})(EApiDtoType || (EApiDtoType = {}));
|
|
8
|
+
|
|
9
|
+
export { EApiDtoType };
|
|
10
|
+
//# sourceMappingURL=dto-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dto-type.enum.js","sources":["../../../../../../../src/enum/decorator/api/dto-type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,WAAW,EAAA;AACtB,IAAA,WAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,WAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,WAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,WAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACtB,CAAC,EALW,WAAW,KAAX,WAAW,GAKtB,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
var EApiFunctionType;
|
|
2
|
+
(function (EApiFunctionType) {
|
|
3
|
+
EApiFunctionType["CREATE"] = "create";
|
|
4
|
+
EApiFunctionType["DELETE"] = "delete";
|
|
5
|
+
EApiFunctionType["GET"] = "get";
|
|
6
|
+
EApiFunctionType["GET_LIST"] = "getList";
|
|
7
|
+
EApiFunctionType["GET_MANY"] = "getMany";
|
|
8
|
+
EApiFunctionType["UPDATE"] = "update";
|
|
9
|
+
})(EApiFunctionType || (EApiFunctionType = {}));
|
|
10
|
+
|
|
11
|
+
export { EApiFunctionType };
|
|
12
|
+
//# sourceMappingURL=type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type.enum.js","sources":["../../../../../../../../src/enum/decorator/api/function/type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,gBAAgB,EAAA;AAC3B,IAAA,gBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,gBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,gBAAA,CAAA,KAAA,CAAA,GAAA,KAAW;AACX,IAAA,gBAAA,CAAA,UAAA,CAAA,GAAA,SAAoB;AACpB,IAAA,gBAAA,CAAA,UAAA,CAAA,GAAA,SAAoB;AACpB,IAAA,gBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AAClB,CAAC,EAPW,gBAAgB,KAAhB,gBAAgB,GAO3B,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
var EApiPropertyDataType;
|
|
2
|
+
(function (EApiPropertyDataType) {
|
|
3
|
+
EApiPropertyDataType["BOOLEAN"] = "boolean";
|
|
4
|
+
EApiPropertyDataType["DATE"] = "date";
|
|
5
|
+
EApiPropertyDataType["DATE_TIME"] = "date-time";
|
|
6
|
+
EApiPropertyDataType["DOUBLE"] = "double";
|
|
7
|
+
EApiPropertyDataType["EMAIL"] = "email";
|
|
8
|
+
EApiPropertyDataType["INTEGER"] = "integer";
|
|
9
|
+
EApiPropertyDataType["IP"] = "ip";
|
|
10
|
+
EApiPropertyDataType["LOWERCASE_STRING"] = "lowercase-string";
|
|
11
|
+
EApiPropertyDataType["NUMBER"] = "number";
|
|
12
|
+
EApiPropertyDataType["REGEXP"] = "regexp";
|
|
13
|
+
EApiPropertyDataType["STRING"] = "string";
|
|
14
|
+
EApiPropertyDataType["TEXT"] = "text";
|
|
15
|
+
EApiPropertyDataType["TIME"] = "time";
|
|
16
|
+
EApiPropertyDataType["UPPERCASE_STRING"] = "uppercase-string";
|
|
17
|
+
EApiPropertyDataType["URL"] = "url";
|
|
18
|
+
EApiPropertyDataType["UUID"] = "uuid";
|
|
19
|
+
})(EApiPropertyDataType || (EApiPropertyDataType = {}));
|
|
20
|
+
|
|
21
|
+
export { EApiPropertyDataType };
|
|
22
|
+
//# sourceMappingURL=data-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-type.enum.js","sources":["../../../../../../../../src/enum/decorator/api/property/data-type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,oBAAoB,EAAA;AAC/B,IAAA,oBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,oBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,oBAAA,CAAA,WAAA,CAAA,GAAA,WAAuB;AACvB,IAAA,oBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,oBAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,oBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,oBAAA,CAAA,IAAA,CAAA,GAAA,IAAS;AACT,IAAA,oBAAA,CAAA,kBAAA,CAAA,GAAA,kBAAqC;AACrC,IAAA,oBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,oBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,oBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,oBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,oBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,oBAAA,CAAA,kBAAA,CAAA,GAAA,kBAAqC;AACrC,IAAA,oBAAA,CAAA,KAAA,CAAA,GAAA,KAAW;AACX,IAAA,oBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACd,CAAC,EAjBW,oBAAoB,KAApB,oBAAoB,GAiB/B,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
var EApiPropertyDateIdentifier;
|
|
2
|
+
(function (EApiPropertyDateIdentifier) {
|
|
3
|
+
EApiPropertyDateIdentifier["CREATED_AT"] = "created";
|
|
4
|
+
EApiPropertyDateIdentifier["CREATED_AT_FROM"] = "createdAtFrom";
|
|
5
|
+
EApiPropertyDateIdentifier["CREATED_AT_TO"] = "createdAtTo";
|
|
6
|
+
EApiPropertyDateIdentifier["DATE"] = "date";
|
|
7
|
+
EApiPropertyDateIdentifier["EXPIRES_IN"] = "expiresIn";
|
|
8
|
+
EApiPropertyDateIdentifier["RECEIVED_AT"] = "receivedAt";
|
|
9
|
+
EApiPropertyDateIdentifier["RECEIVED_AT_FROM"] = "receivedAtFrom";
|
|
10
|
+
EApiPropertyDateIdentifier["RECEIVED_AT_TO"] = "receivedAtTo";
|
|
11
|
+
EApiPropertyDateIdentifier["REFRESH_IN"] = "refreshIn";
|
|
12
|
+
EApiPropertyDateIdentifier["UPDATED_AT"] = "updated";
|
|
13
|
+
EApiPropertyDateIdentifier["UPDATED_AT_FROM"] = "updatedAtFrom";
|
|
14
|
+
EApiPropertyDateIdentifier["UPDATED_AT_TO"] = "updatedAtTo";
|
|
15
|
+
})(EApiPropertyDateIdentifier || (EApiPropertyDateIdentifier = {}));
|
|
16
|
+
|
|
17
|
+
export { EApiPropertyDateIdentifier };
|
|
18
|
+
//# sourceMappingURL=identifier.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identifier.enum.js","sources":["../../../../../../../../../src/enum/decorator/api/property/date/identifier.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,0BAA0B,EAAA;AACrC,IAAA,0BAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,0BAAA,CAAA,iBAAA,CAAA,GAAA,eAAiC;AACjC,IAAA,0BAAA,CAAA,eAAA,CAAA,GAAA,aAA6B;AAC7B,IAAA,0BAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,0BAAA,CAAA,YAAA,CAAA,GAAA,WAAwB;AACxB,IAAA,0BAAA,CAAA,aAAA,CAAA,GAAA,YAA0B;AAC1B,IAAA,0BAAA,CAAA,kBAAA,CAAA,GAAA,gBAAmC;AACnC,IAAA,0BAAA,CAAA,gBAAA,CAAA,GAAA,cAA+B;AAC/B,IAAA,0BAAA,CAAA,YAAA,CAAA,GAAA,WAAwB;AACxB,IAAA,0BAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,0BAAA,CAAA,iBAAA,CAAA,GAAA,eAAiC;AACjC,IAAA,0BAAA,CAAA,eAAA,CAAA,GAAA,aAA6B;AAC9B,CAAC,EAbW,0BAA0B,KAA1B,0BAA0B,GAarC,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import '../data-type.enum.js';
|
|
2
|
+
|
|
3
|
+
var EApiPropertyDateType;
|
|
4
|
+
(function (EApiPropertyDateType) {
|
|
5
|
+
EApiPropertyDateType["DATE"] = "date";
|
|
6
|
+
EApiPropertyDateType["DATE_TIME"] = "date-time";
|
|
7
|
+
EApiPropertyDateType["TIME"] = "time";
|
|
8
|
+
})(EApiPropertyDateType || (EApiPropertyDateType = {}));
|
|
9
|
+
|
|
10
|
+
export { EApiPropertyDateType };
|
|
11
|
+
//# sourceMappingURL=type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type.enum.js","sources":["../../../../../../../../../src/enum/decorator/api/property/date/type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":";;IAEY;AAAZ,CAAA,UAAY,oBAAoB,EAAA;AAC/B,IAAA,oBAAA,CAAA,MAAA,CAAA,GAAA,MAAgC;AAChC,IAAA,oBAAA,CAAA,WAAA,CAAA,GAAA,WAA0C;AAC1C,IAAA,oBAAA,CAAA,MAAA,CAAA,GAAA,MAAgC;AACjC,CAAC,EAJW,oBAAoB,KAApB,oBAAoB,GAI/B,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
var EApiPropertyDescribeType;
|
|
2
|
+
(function (EApiPropertyDescribeType) {
|
|
3
|
+
EApiPropertyDescribeType["BOOLEAN"] = "boolean";
|
|
4
|
+
EApiPropertyDescribeType["DATE"] = "date";
|
|
5
|
+
EApiPropertyDescribeType["ENUM"] = "enum";
|
|
6
|
+
EApiPropertyDescribeType["NUMBER"] = "number";
|
|
7
|
+
EApiPropertyDescribeType["OBJECT"] = "object";
|
|
8
|
+
EApiPropertyDescribeType["RELATION"] = "relation";
|
|
9
|
+
EApiPropertyDescribeType["STRING"] = "string";
|
|
10
|
+
EApiPropertyDescribeType["UUID"] = "uuid";
|
|
11
|
+
})(EApiPropertyDescribeType || (EApiPropertyDescribeType = {}));
|
|
12
|
+
|
|
13
|
+
export { EApiPropertyDescribeType };
|
|
14
|
+
//# sourceMappingURL=desribe-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"desribe-type.enum.js","sources":["../../../../../../../../src/enum/decorator/api/property/desribe-type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,wBAAwB,EAAA;AACnC,IAAA,wBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,wBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,wBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,wBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,wBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,wBAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,wBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,wBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACd,CAAC,EATW,wBAAwB,KAAxB,wBAAwB,GASnC,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import './data-type.enum.js';
|
|
2
|
+
|
|
3
|
+
var EApiPropertyNumberType;
|
|
4
|
+
(function (EApiPropertyNumberType) {
|
|
5
|
+
EApiPropertyNumberType["DOUBLE"] = "double";
|
|
6
|
+
EApiPropertyNumberType["INTEGER"] = "integer";
|
|
7
|
+
})(EApiPropertyNumberType || (EApiPropertyNumberType = {}));
|
|
8
|
+
|
|
9
|
+
export { EApiPropertyNumberType };
|
|
10
|
+
//# sourceMappingURL=number-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"number-type.enum.js","sources":["../../../../../../../../src/enum/decorator/api/property/number-type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":";;IAEY;AAAZ,CAAA,UAAY,sBAAsB,EAAA;AACjC,IAAA,sBAAA,CAAA,QAAA,CAAA,GAAA,QAAoC;AACpC,IAAA,sBAAA,CAAA,SAAA,CAAA,GAAA,SAAsC;AACvC,CAAC,EAHW,sBAAsB,KAAtB,sBAAsB,GAGjC,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import './data-type.enum.js';
|
|
2
|
+
|
|
3
|
+
var EApiPropertyStringType;
|
|
4
|
+
(function (EApiPropertyStringType) {
|
|
5
|
+
EApiPropertyStringType["DATE"] = "date";
|
|
6
|
+
EApiPropertyStringType["EMAIL"] = "email";
|
|
7
|
+
EApiPropertyStringType["IP"] = "ip";
|
|
8
|
+
EApiPropertyStringType["LOWERCASE_STRING"] = "lowercase-string";
|
|
9
|
+
EApiPropertyStringType["REGEXP"] = "regexp";
|
|
10
|
+
EApiPropertyStringType["STRING"] = "string";
|
|
11
|
+
EApiPropertyStringType["UPPERCASE_STRING"] = "uppercase-string";
|
|
12
|
+
EApiPropertyStringType["URL"] = "url";
|
|
13
|
+
EApiPropertyStringType["UUID"] = "uuid";
|
|
14
|
+
})(EApiPropertyStringType || (EApiPropertyStringType = {}));
|
|
15
|
+
|
|
16
|
+
export { EApiPropertyStringType };
|
|
17
|
+
//# sourceMappingURL=string-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"string-type.enum.js","sources":["../../../../../../../../src/enum/decorator/api/property/string-type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":";;IAEY;AAAZ,CAAA,UAAY,sBAAsB,EAAA;AACjC,IAAA,sBAAA,CAAA,MAAA,CAAA,GAAA,MAAgC;AAChC,IAAA,sBAAA,CAAA,OAAA,CAAA,GAAA,OAAkC;AAClC,IAAA,sBAAA,CAAA,IAAA,CAAA,GAAA,IAA4B;AAC5B,IAAA,sBAAA,CAAA,kBAAA,CAAA,GAAA,kBAAwD;AACxD,IAAA,sBAAA,CAAA,QAAA,CAAA,GAAA,QAAoC;AACpC,IAAA,sBAAA,CAAA,QAAA,CAAA,GAAA,QAAoC;AACpC,IAAA,sBAAA,CAAA,kBAAA,CAAA,GAAA,kBAAwD;AACxD,IAAA,sBAAA,CAAA,KAAA,CAAA,GAAA,KAA8B;AAC9B,IAAA,sBAAA,CAAA,MAAA,CAAA,GAAA,MAAgC;AACjC,CAAC,EAVW,sBAAsB,KAAtB,sBAAsB,GAUjC,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
var EApiRouteType;
|
|
2
|
+
(function (EApiRouteType) {
|
|
3
|
+
EApiRouteType["CREATE"] = "create";
|
|
4
|
+
EApiRouteType["DELETE"] = "delete";
|
|
5
|
+
EApiRouteType["GET"] = "get";
|
|
6
|
+
EApiRouteType["GET_LIST"] = "getList";
|
|
7
|
+
EApiRouteType["PARTIAL_UPDATE"] = "partialUpdate";
|
|
8
|
+
EApiRouteType["UPDATE"] = "update";
|
|
9
|
+
})(EApiRouteType || (EApiRouteType = {}));
|
|
10
|
+
|
|
11
|
+
export { EApiRouteType };
|
|
12
|
+
//# sourceMappingURL=route-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"route-type.enum.js","sources":["../../../../../../../src/enum/decorator/api/route-type.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,aAAa,EAAA;AACxB,IAAA,aAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,aAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACjB,IAAA,aAAA,CAAA,KAAA,CAAA,GAAA,KAAW;AACX,IAAA,aAAA,CAAA,UAAA,CAAA,GAAA,SAAoB;AACpB,IAAA,aAAA,CAAA,gBAAA,CAAA,GAAA,eAAgC;AAChC,IAAA,aAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AAClB,CAAC,EAPW,aAAa,KAAb,aAAa,GAOxB,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
var EException;
|
|
2
|
+
(function (EException) {
|
|
3
|
+
EException["BAD_REQUEST"] = "BAD_REQUEST";
|
|
4
|
+
EException["CONFLICT"] = "CONFLICT";
|
|
5
|
+
EException["EXPECTATION_FAILED"] = "EXPECTATION_FAILED";
|
|
6
|
+
EException["FORBIDDEN"] = "FORBIDDEN";
|
|
7
|
+
EException["GATEWAY_TIMEOUT"] = "GATEWAY_TIMEOUT";
|
|
8
|
+
EException["GONE"] = "GONE";
|
|
9
|
+
EException["HTTP_VERSION_NOT_SUPPORTED"] = "HTTP_VERSION_NOT_SUPPORTED";
|
|
10
|
+
EException["IM_A_TEAPOT"] = "IM_A_TEAPOT";
|
|
11
|
+
EException["INTERNAL_SERVER_ERROR"] = "INTERNAL_SERVER_ERROR";
|
|
12
|
+
EException["LENGTH_REQUIRED"] = "LENGTH_REQUIRED";
|
|
13
|
+
EException["METHOD_NOT_ALLOWED"] = "METHOD_NOT_ALLOWED";
|
|
14
|
+
EException["NETWORK_AUTHENTICATION_REQUIRED"] = "NETWORK_AUTHENTICATION_REQUIRED";
|
|
15
|
+
EException["NOT_ACCEPTABLE"] = "NOT_ACCEPTABLE";
|
|
16
|
+
EException["NOT_EXTENDED"] = "NOT_EXTENDED";
|
|
17
|
+
EException["NOT_FOUND"] = "NOT_FOUND";
|
|
18
|
+
EException["NOT_IMPLEMENTED"] = "NOT_IMPLEMENTED";
|
|
19
|
+
EException["PAYLOAD_TOO_LARGE"] = "PAYLOAD_TOO_LARGE";
|
|
20
|
+
EException["PAYMENT_REQUIRED"] = "PAYMENT_REQUIRED";
|
|
21
|
+
EException["PRECONDITION_FAILED"] = "PRECONDITION_FAILED";
|
|
22
|
+
EException["REQUEST_HEADER_FIELDS_TOO_LARGE"] = "REQUEST_HEADER_FIELDS_TOO_LARGE";
|
|
23
|
+
EException["REQUEST_TIMEOUT"] = "REQUEST_TIMEOUT";
|
|
24
|
+
EException["REQUEST_URI_TOO_LONG"] = "REQUEST_URI_TOO_LONG";
|
|
25
|
+
EException["SERVICE_UNAVAILABLE"] = "SERVICE_UNAVAILABLE";
|
|
26
|
+
EException["TOO_MANY_REQUESTS"] = "TOO_MANY_REQUESTS";
|
|
27
|
+
EException["UNAUTHORIZED"] = "UNAUTHORIZED";
|
|
28
|
+
EException["UNPROCESSABLE_ENTITY"] = "UNPROCESSABLE_ENTITY";
|
|
29
|
+
EException["UNSUPPORTED_MEDIA_TYPE"] = "UNSUPPORTED_MEDIA_TYPE";
|
|
30
|
+
EException["UPGRADE_REQUIRED"] = "UPGRADE_REQUIRED";
|
|
31
|
+
})(EException || (EException = {}));
|
|
32
|
+
|
|
33
|
+
export { EException };
|
|
34
|
+
//# sourceMappingURL=exception.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"exception.enum.js","sources":["../../../../../src/enum/exception.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,UAAU,EAAA;AACrB,IAAA,UAAA,CAAA,aAAA,CAAA,GAAA,aAA2B;AAC3B,IAAA,UAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AACrB,IAAA,UAAA,CAAA,oBAAA,CAAA,GAAA,oBAAyC;AACzC,IAAA,UAAA,CAAA,WAAA,CAAA,GAAA,WAAuB;AACvB,IAAA,UAAA,CAAA,iBAAA,CAAA,GAAA,iBAAmC;AACnC,IAAA,UAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACb,IAAA,UAAA,CAAA,4BAAA,CAAA,GAAA,4BAAyD;AACzD,IAAA,UAAA,CAAA,aAAA,CAAA,GAAA,aAA2B;AAC3B,IAAA,UAAA,CAAA,uBAAA,CAAA,GAAA,uBAA+C;AAC/C,IAAA,UAAA,CAAA,iBAAA,CAAA,GAAA,iBAAmC;AACnC,IAAA,UAAA,CAAA,oBAAA,CAAA,GAAA,oBAAyC;AACzC,IAAA,UAAA,CAAA,iCAAA,CAAA,GAAA,iCAAmE;AACnE,IAAA,UAAA,CAAA,gBAAA,CAAA,GAAA,gBAAiC;AACjC,IAAA,UAAA,CAAA,cAAA,CAAA,GAAA,cAA6B;AAC7B,IAAA,UAAA,CAAA,WAAA,CAAA,GAAA,WAAuB;AACvB,IAAA,UAAA,CAAA,iBAAA,CAAA,GAAA,iBAAmC;AACnC,IAAA,UAAA,CAAA,mBAAA,CAAA,GAAA,mBAAuC;AACvC,IAAA,UAAA,CAAA,kBAAA,CAAA,GAAA,kBAAqC;AACrC,IAAA,UAAA,CAAA,qBAAA,CAAA,GAAA,qBAA2C;AAC3C,IAAA,UAAA,CAAA,iCAAA,CAAA,GAAA,iCAAmE;AACnE,IAAA,UAAA,CAAA,iBAAA,CAAA,GAAA,iBAAmC;AACnC,IAAA,UAAA,CAAA,sBAAA,CAAA,GAAA,sBAA6C;AAC7C,IAAA,UAAA,CAAA,qBAAA,CAAA,GAAA,qBAA2C;AAC3C,IAAA,UAAA,CAAA,mBAAA,CAAA,GAAA,mBAAuC;AACvC,IAAA,UAAA,CAAA,cAAA,CAAA,GAAA,cAA6B;AAC7B,IAAA,UAAA,CAAA,sBAAA,CAAA,GAAA,sBAA6C;AAC7C,IAAA,UAAA,CAAA,wBAAA,CAAA,GAAA,wBAAiD;AACjD,IAAA,UAAA,CAAA,kBAAA,CAAA,GAAA,kBAAqC;AACtC,CAAC,EA7BW,UAAU,KAAV,UAAU,GA6BrB,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
var EFilterOperation;
|
|
2
|
+
(function (EFilterOperation) {
|
|
3
|
+
EFilterOperation["BETWEEN"] = "between";
|
|
4
|
+
EFilterOperation["CONT"] = "cont";
|
|
5
|
+
EFilterOperation["CONTL"] = "contl";
|
|
6
|
+
EFilterOperation["ENDS"] = "ends";
|
|
7
|
+
EFilterOperation["ENDSL"] = "endsl";
|
|
8
|
+
EFilterOperation["EQ"] = "eq";
|
|
9
|
+
EFilterOperation["EQL"] = "eql";
|
|
10
|
+
EFilterOperation["EXCL"] = "excl";
|
|
11
|
+
EFilterOperation["EXCLL"] = "excll";
|
|
12
|
+
EFilterOperation["GT"] = "gt";
|
|
13
|
+
EFilterOperation["GTE"] = "gte";
|
|
14
|
+
EFilterOperation["IN"] = "in";
|
|
15
|
+
EFilterOperation["INL"] = "inl";
|
|
16
|
+
EFilterOperation["ISNULL"] = "isnull";
|
|
17
|
+
EFilterOperation["LT"] = "lt";
|
|
18
|
+
EFilterOperation["LTE"] = "lte";
|
|
19
|
+
EFilterOperation["NE"] = "ne";
|
|
20
|
+
EFilterOperation["NEL"] = "nel";
|
|
21
|
+
EFilterOperation["NOTIN"] = "notin";
|
|
22
|
+
EFilterOperation["NOTINL"] = "notinl";
|
|
23
|
+
EFilterOperation["NOTNULL"] = "notnull";
|
|
24
|
+
EFilterOperation["STARTS"] = "starts";
|
|
25
|
+
EFilterOperation["STARTSL"] = "startsl";
|
|
26
|
+
})(EFilterOperation || (EFilterOperation = {}));
|
|
27
|
+
var EFilterOperationArray;
|
|
28
|
+
(function (EFilterOperationArray) {
|
|
29
|
+
EFilterOperationArray["CONT"] = "cont";
|
|
30
|
+
EFilterOperationArray["EXCL"] = "excl";
|
|
31
|
+
EFilterOperationArray["ISNULL"] = "isnull";
|
|
32
|
+
EFilterOperationArray["NOTNULL"] = "notnull";
|
|
33
|
+
})(EFilterOperationArray || (EFilterOperationArray = {}));
|
|
34
|
+
var EFilterOperationBoolean;
|
|
35
|
+
(function (EFilterOperationBoolean) {
|
|
36
|
+
EFilterOperationBoolean["EQ"] = "eq";
|
|
37
|
+
EFilterOperationBoolean["EXCL"] = "excl";
|
|
38
|
+
EFilterOperationBoolean["IN"] = "in";
|
|
39
|
+
EFilterOperationBoolean["ISNULL"] = "isnull";
|
|
40
|
+
EFilterOperationBoolean["NE"] = "ne";
|
|
41
|
+
EFilterOperationBoolean["NOTIN"] = "notin";
|
|
42
|
+
EFilterOperationBoolean["NOTNULL"] = "notnull";
|
|
43
|
+
})(EFilterOperationBoolean || (EFilterOperationBoolean = {}));
|
|
44
|
+
var EFilterOperationDate;
|
|
45
|
+
(function (EFilterOperationDate) {
|
|
46
|
+
EFilterOperationDate["BETWEEN"] = "between";
|
|
47
|
+
EFilterOperationDate["EQ"] = "eq";
|
|
48
|
+
EFilterOperationDate["GT"] = "gt";
|
|
49
|
+
EFilterOperationDate["GTE"] = "gte";
|
|
50
|
+
EFilterOperationDate["ISNULL"] = "isnull";
|
|
51
|
+
EFilterOperationDate["LT"] = "lt";
|
|
52
|
+
EFilterOperationDate["LTE"] = "lte";
|
|
53
|
+
EFilterOperationDate["NE"] = "ne";
|
|
54
|
+
EFilterOperationDate["NOTNULL"] = "notnull";
|
|
55
|
+
})(EFilterOperationDate || (EFilterOperationDate = {}));
|
|
56
|
+
var EFilterOperationEnum;
|
|
57
|
+
(function (EFilterOperationEnum) {
|
|
58
|
+
EFilterOperationEnum["EQ"] = "eq";
|
|
59
|
+
EFilterOperationEnum["IN"] = "in";
|
|
60
|
+
EFilterOperationEnum["ISNULL"] = "isnull";
|
|
61
|
+
EFilterOperationEnum["NE"] = "ne";
|
|
62
|
+
EFilterOperationEnum["NOTIN"] = "notin";
|
|
63
|
+
EFilterOperationEnum["NOTNULL"] = "notnull";
|
|
64
|
+
})(EFilterOperationEnum || (EFilterOperationEnum = {}));
|
|
65
|
+
var EFilterOperationNumber;
|
|
66
|
+
(function (EFilterOperationNumber) {
|
|
67
|
+
EFilterOperationNumber["BETWEEN"] = "between";
|
|
68
|
+
EFilterOperationNumber["EQ"] = "eq";
|
|
69
|
+
EFilterOperationNumber["GT"] = "gt";
|
|
70
|
+
EFilterOperationNumber["GTE"] = "gte";
|
|
71
|
+
EFilterOperationNumber["IN"] = "in";
|
|
72
|
+
EFilterOperationNumber["ISNULL"] = "isnull";
|
|
73
|
+
EFilterOperationNumber["LT"] = "lt";
|
|
74
|
+
EFilterOperationNumber["LTE"] = "lte";
|
|
75
|
+
EFilterOperationNumber["NE"] = "ne";
|
|
76
|
+
EFilterOperationNumber["NOTIN"] = "notin";
|
|
77
|
+
EFilterOperationNumber["NOTNULL"] = "notnull";
|
|
78
|
+
})(EFilterOperationNumber || (EFilterOperationNumber = {}));
|
|
79
|
+
var EFilterOperationObject;
|
|
80
|
+
(function (EFilterOperationObject) {
|
|
81
|
+
EFilterOperationObject["EQ"] = "eq";
|
|
82
|
+
EFilterOperationObject["ISNULL"] = "isnull";
|
|
83
|
+
EFilterOperationObject["NE"] = "ne";
|
|
84
|
+
EFilterOperationObject["NOTNULL"] = "notnull";
|
|
85
|
+
})(EFilterOperationObject || (EFilterOperationObject = {}));
|
|
86
|
+
var EFilterOperationRelation;
|
|
87
|
+
(function (EFilterOperationRelation) {
|
|
88
|
+
EFilterOperationRelation["EQ"] = "eq";
|
|
89
|
+
EFilterOperationRelation["IN"] = "in";
|
|
90
|
+
EFilterOperationRelation["ISNULL"] = "isnull";
|
|
91
|
+
EFilterOperationRelation["NE"] = "ne";
|
|
92
|
+
EFilterOperationRelation["NOTIN"] = "notin";
|
|
93
|
+
EFilterOperationRelation["NOTNULL"] = "notnull";
|
|
94
|
+
})(EFilterOperationRelation || (EFilterOperationRelation = {}));
|
|
95
|
+
var EFilterOperationString;
|
|
96
|
+
(function (EFilterOperationString) {
|
|
97
|
+
EFilterOperationString["CONT"] = "cont";
|
|
98
|
+
EFilterOperationString["CONTL"] = "contl";
|
|
99
|
+
EFilterOperationString["ENDS"] = "ends";
|
|
100
|
+
EFilterOperationString["ENDSL"] = "endsl";
|
|
101
|
+
EFilterOperationString["EQ"] = "eq";
|
|
102
|
+
EFilterOperationString["EQL"] = "eql";
|
|
103
|
+
EFilterOperationString["IN"] = "in";
|
|
104
|
+
EFilterOperationString["INL"] = "inl";
|
|
105
|
+
EFilterOperationString["ISNULL"] = "isnull";
|
|
106
|
+
EFilterOperationString["NE"] = "ne";
|
|
107
|
+
EFilterOperationString["NEL"] = "nel";
|
|
108
|
+
EFilterOperationString["NOTIN"] = "notin";
|
|
109
|
+
EFilterOperationString["NOTINL"] = "notinl";
|
|
110
|
+
EFilterOperationString["NOTNULL"] = "notnull";
|
|
111
|
+
EFilterOperationString["STARTS"] = "starts";
|
|
112
|
+
EFilterOperationString["STARTSL"] = "startsl";
|
|
113
|
+
})(EFilterOperationString || (EFilterOperationString = {}));
|
|
114
|
+
var EFilterOperationUuid;
|
|
115
|
+
(function (EFilterOperationUuid) {
|
|
116
|
+
EFilterOperationUuid["EQ"] = "eq";
|
|
117
|
+
EFilterOperationUuid["ISNULL"] = "isnull";
|
|
118
|
+
EFilterOperationUuid["NE"] = "ne";
|
|
119
|
+
EFilterOperationUuid["NOTNULL"] = "notnull";
|
|
120
|
+
})(EFilterOperationUuid || (EFilterOperationUuid = {}));
|
|
121
|
+
|
|
122
|
+
export { EFilterOperation, EFilterOperationArray, EFilterOperationBoolean, EFilterOperationDate, EFilterOperationEnum, EFilterOperationNumber, EFilterOperationObject, EFilterOperationRelation, EFilterOperationString, EFilterOperationUuid };
|
|
123
|
+
//# sourceMappingURL=filter-operation.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter-operation.enum.js","sources":["../../../../../src/enum/filter-operation.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var EFilterOrderDirection;
|
|
2
|
+
(function (EFilterOrderDirection) {
|
|
3
|
+
EFilterOrderDirection["ASC"] = "asc";
|
|
4
|
+
EFilterOrderDirection["DESC"] = "desc";
|
|
5
|
+
})(EFilterOrderDirection || (EFilterOrderDirection = {}));
|
|
6
|
+
|
|
7
|
+
export { EFilterOrderDirection };
|
|
8
|
+
//# sourceMappingURL=filter-order-direction.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter-order-direction.enum.js","sources":["../../../../../src/enum/filter-order-direction.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"IAAY;AAAZ,CAAA,UAAY,qBAAqB,EAAA;AAChC,IAAA,qBAAA,CAAA,KAAA,CAAA,GAAA,KAAW;AACX,IAAA,qBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACd,CAAC,EAHW,qBAAqB,KAArB,qBAAqB,GAGhC,EAAA,CAAA,CAAA;;;;"}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
var EErrorStringAction;
|
|
2
|
+
(function (EErrorStringAction) {
|
|
3
|
+
EErrorStringAction["ACCESS_DENIED"] = "{entity}_ACCESS_DENIED";
|
|
4
|
+
EErrorStringAction["ADDRESS_NOT_MATCH_PATTERN"] = "{entity}_ADDRESS_NOT_MATCH_PATTERN";
|
|
5
|
+
EErrorStringAction["ALREADY_ARCHIVED"] = "{entity}_ALREADY_ARCHIVED";
|
|
6
|
+
EErrorStringAction["ALREADY_CANCELLED"] = "{entity}_ALREADY_CANCELLED";
|
|
7
|
+
EErrorStringAction["ALREADY_EXISTS"] = "{entity}_ALREADY_EXISTS";
|
|
8
|
+
EErrorStringAction["ALREADY_PAID"] = "{entity}_ALREADY_PAID";
|
|
9
|
+
EErrorStringAction["ALREADY_PROCESSED"] = "{entity}_ALREADY_PROCESSED";
|
|
10
|
+
EErrorStringAction["ALREADY_SUBSCRIBED"] = "{entity}_ALREADY_SUBSCRIBED";
|
|
11
|
+
EErrorStringAction["ARCHIVE_ERROR"] = "{entity}_ARCHIVE_ERROR";
|
|
12
|
+
EErrorStringAction["AUTHENTICATION_ERROR"] = "{entity}_AUTHENTICATION_ERROR";
|
|
13
|
+
EErrorStringAction["AUTHORIZED_ENTITY_NOT_FOUND"] = "AUTHORIZED_ENTITY_NOT_FOUND";
|
|
14
|
+
EErrorStringAction["BLOCKED"] = "{entity}_BLOCKED";
|
|
15
|
+
EErrorStringAction["BULK_OPERATION_FAILED"] = "{entity}_BULK_OPERATION_FAILED";
|
|
16
|
+
EErrorStringAction["CANCELLED"] = "{entity}_CANCELLED";
|
|
17
|
+
EErrorStringAction["CONCURRENT_MODIFICATION"] = "{entity}_CONCURRENT_MODIFICATION";
|
|
18
|
+
EErrorStringAction["CONFIRMATION_ERROR"] = "{entity}_CONFIRMATION_ERROR";
|
|
19
|
+
EErrorStringAction["CONFLICT"] = "{entity}_CONFLICT";
|
|
20
|
+
EErrorStringAction["COUNTING_ERROR"] = "{entity}_COUNTING_ERROR";
|
|
21
|
+
EErrorStringAction["CREATING_ERROR"] = "{entity}_CREATING_ERROR";
|
|
22
|
+
EErrorStringAction["CREATING_MANY_ERROR"] = "{entity}_CREATING_MANY_ERROR";
|
|
23
|
+
EErrorStringAction["DELETING_ERROR"] = "{entity}_DELETING_ERROR";
|
|
24
|
+
EErrorStringAction["DEPENDENCY_NOT_FOUND"] = "{entity}_DEPENDENCY_NOT_FOUND";
|
|
25
|
+
EErrorStringAction["DISABLED_FOR_MERCHANT"] = "{entity}_DISABLED_FOR_MERCHANT";
|
|
26
|
+
EErrorStringAction["DISABLED_FOR_USER"] = "{entity}_DISABLED_FOR_USER";
|
|
27
|
+
EErrorStringAction["DISABLED_GLOBALLY"] = "{entity}_DISABLED_GLOBALLY";
|
|
28
|
+
EErrorStringAction["DOWNLOAD_ERROR"] = "{entity}_DOWNLOAD_ERROR";
|
|
29
|
+
EErrorStringAction["EXISTS_CHECKING_ERROR"] = "{entity}_EXISTS_CHECKING_ERROR";
|
|
30
|
+
EErrorStringAction["EXPIRED"] = "{entity}_EXPIRED";
|
|
31
|
+
EErrorStringAction["EXPORT_ERROR"] = "{entity}_EXPORT_ERROR";
|
|
32
|
+
EErrorStringAction["EXTERNAL_API_ERROR"] = "{entity}_EXTERNAL_API_ERROR";
|
|
33
|
+
EErrorStringAction["EXTERNAL_SERVICE_ERROR"] = "{entity}_EXTERNAL_SERVICE_ERROR";
|
|
34
|
+
EErrorStringAction["FETCHING_ALL_ERROR"] = "{entity}_FETCHING_ALL_ERROR";
|
|
35
|
+
EErrorStringAction["FETCHING_ERROR"] = "{entity}_FETCHING_ERROR";
|
|
36
|
+
EErrorStringAction["FETCHING_LIST_ERROR"] = "{entity}_FETCHING_LIST_ERROR";
|
|
37
|
+
EErrorStringAction["FETCHING_SIMPLE_LIST_ERROR"] = "{entity}_FETCHING_SIMPLE_LIST_ERROR";
|
|
38
|
+
EErrorStringAction["FILE_TOO_LARGE"] = "{entity}_FILE_TOO_LARGE";
|
|
39
|
+
EErrorStringAction["IMPORT_ERROR"] = "{entity}_IMPORT_ERROR";
|
|
40
|
+
EErrorStringAction["INSUFFICENT_FUNDS"] = "{entity}_INSUFFICENT_FUNDS";
|
|
41
|
+
EErrorStringAction["INTEGRATION_ERROR"] = "{entity}_INTEGRATION_ERROR";
|
|
42
|
+
EErrorStringAction["INVALID_AMOUNT"] = "{entity}_INVALID_AMOUNT";
|
|
43
|
+
EErrorStringAction["INVALID_CODE"] = "{entity}_INVALID_CODE";
|
|
44
|
+
EErrorStringAction["INVALID_CREDENTIALS"] = "{entity}_INVALID_CREDENTIALS";
|
|
45
|
+
EErrorStringAction["INVALID_DATA_SPECIFIED"] = "{entity}_INVALID_DATA_SPECIFIED";
|
|
46
|
+
EErrorStringAction["INVALID_DYNAMIC_VALUE_SPECIFIED"] = "{entity}_INVALID_DYNAMIC_VALUE_SPECIFIED";
|
|
47
|
+
EErrorStringAction["INVALID_FILE_TYPE"] = "{entity}_INVALID_FILE_TYPE";
|
|
48
|
+
EErrorStringAction["INVALID_FORMAT"] = "{entity}_INVALID_FORMAT";
|
|
49
|
+
EErrorStringAction["INVALID_HASHING_ALGORITM_CONFIGURED"] = "INVALID_HASHING_ALGORITHM_CONFIGURED";
|
|
50
|
+
EErrorStringAction["INVALID_MESSAGE"] = "{entity}_INVALID_MESSAGE";
|
|
51
|
+
EErrorStringAction["INVALID_PERMISSIONS"] = "{entity}_INVALID_PERMISSIONS";
|
|
52
|
+
EErrorStringAction["INVALID_SENDER"] = "{entity}_INVALID_SENDER";
|
|
53
|
+
EErrorStringAction["INVALID_SIGNATURE"] = "INVALID_SIGNATURE";
|
|
54
|
+
EErrorStringAction["INVALID_STATE"] = "{entity}_INVALID_STATE";
|
|
55
|
+
EErrorStringAction["INVALID_STATUS"] = "{entity}_INVALID_STATUS";
|
|
56
|
+
EErrorStringAction["INVALID_TOKEN"] = "{entity}_INVALID_TOKEN";
|
|
57
|
+
EErrorStringAction["INVALID_TYPE"] = "{entity}_INVALID_TYPE";
|
|
58
|
+
EErrorStringAction["INVALIDATING_ERROR"] = "{entity}_INVALIDATING_ERROR";
|
|
59
|
+
EErrorStringAction["LIST_PAGE_NOT_FOUND"] = "{entity}_LIST_PAGE_NOT_FOUND";
|
|
60
|
+
EErrorStringAction["LOCKED"] = "{entity}_LOCKED";
|
|
61
|
+
EErrorStringAction["MAINTENANCE_MODE"] = "{entity}_MAINTENANCE_MODE";
|
|
62
|
+
EErrorStringAction["NOT_ACTIVE"] = "{entity}_NOT_ACTIVE";
|
|
63
|
+
EErrorStringAction["NOT_CONFIGURED"] = "{entity}_NOT_CONFIGURED";
|
|
64
|
+
EErrorStringAction["NOT_CONNECTED"] = "{entity}_NOT_CONNECTED";
|
|
65
|
+
EErrorStringAction["NOT_FINAL_STATUS"] = "{entity}_NOT_FINAL_STATUS";
|
|
66
|
+
EErrorStringAction["NOT_FOUND"] = "{entity}_NOT_FOUND";
|
|
67
|
+
EErrorStringAction["NOT_SPECIFIED_ID_FOR_UNIQUE"] = "{entity}_NOT_SPECIFIED_ID_FOR_UNIQUE";
|
|
68
|
+
EErrorStringAction["NOT_SUBSCRIBED"] = "{entity}_NOT_SUBSCRIBED";
|
|
69
|
+
EErrorStringAction["NOT_SUPPORTS_THIS_DIRECTION_FOR_MERCHANT"] = "{entity}_NOT_SUPPORTS_THIS_DIRECTION_FOR_MERCHANT";
|
|
70
|
+
EErrorStringAction["NOT_SUPPORTS_THIS_DIRECTION_FOR_USER"] = "{entity}_NOT_SUPPORTS_THIS_DIRECTION_FOR_USER";
|
|
71
|
+
EErrorStringAction["NOT_SUPPORTS_THIS_DIRECTION_GLOBALLY"] = "{entity}_NOT_SUPPORTS_THIS_DIRECTION_GLOBALLY";
|
|
72
|
+
EErrorStringAction["OPERATION_NOT_ALLOWED"] = "{entity}_OPERATION_NOT_ALLOWED";
|
|
73
|
+
EErrorStringAction["OUT_OF_GLOBAL_LIMITS"] = "{entity}_OUT_OF_GLOBAL_LIMITS";
|
|
74
|
+
EErrorStringAction["OUT_OF_GLOBAL_LIMITS_WITH_FEE"] = "{entity}_OUT_OF_GLOBAL_LIMITS_WITH_FEE";
|
|
75
|
+
EErrorStringAction["OUT_OF_MERCHANT_LIMITS"] = "{entity}_OUT_OF_MERCHANT_LIMITS";
|
|
76
|
+
EErrorStringAction["OUT_OF_MERCHANT_LIMITS_WITH_FEE"] = "{entity}_OUT_OF_MERCHANT_LIMITS_WITH_FEE";
|
|
77
|
+
EErrorStringAction["OUT_OF_USER_LIMITS"] = "{entity}_OUT_OF_USER_LIMITS";
|
|
78
|
+
EErrorStringAction["OUT_OF_USER_LIMITS_WITH_FEE"] = "{entity}_OUT_OF_USER_LIMITS_WITH_FEE";
|
|
79
|
+
EErrorStringAction["PARTIAL_SUCCESS"] = "{entity}_PARTIAL_SUCCESS";
|
|
80
|
+
EErrorStringAction["PROPERTY_ALREADY_SET"] = "{entity}_PROPERTY_ALREADY_SET";
|
|
81
|
+
EErrorStringAction["RATE_LIMIT_EXCEEDED"] = "{entity}_RATE_LIMIT_EXCEEDED";
|
|
82
|
+
EErrorStringAction["REDEEMING_ERROR"] = "{entity}_REDEEMING_ERROR";
|
|
83
|
+
EErrorStringAction["REGISTRATION_ERROR"] = "{entity}_REGISTRATION_ERROR";
|
|
84
|
+
EErrorStringAction["REQUEST_SIGNATURE_NOT_FOUND"] = "REQUEST_SIGNATURE_NOT_FOUND";
|
|
85
|
+
EErrorStringAction["REQUEST_TIMESTAMP_NOT_FOUND"] = "REQUEST_TIMESTAMP_NOT_FOUND";
|
|
86
|
+
EErrorStringAction["REQUEST_USER_AGENT_NOT_FOUND"] = "REQUEST_USER_AGENT_NOT_FOUND";
|
|
87
|
+
EErrorStringAction["RESOURCE_EXHAUSTED"] = "{entity}_RESOURCE_EXHAUSTED";
|
|
88
|
+
EErrorStringAction["RESTORE_ERROR"] = "{entity}_RESTORE_ERROR";
|
|
89
|
+
EErrorStringAction["SENDING_ERROR"] = "{entity}_SENDING_ERROR";
|
|
90
|
+
EErrorStringAction["SERVICE_UNAVAILABLE"] = "{entity}_SERVICE_UNAVAILABLE";
|
|
91
|
+
EErrorStringAction["SESSION_EXPIRED"] = "{entity}_SESSION_EXPIRED";
|
|
92
|
+
EErrorStringAction["SIMPLE_LIST_NOT_FOUND"] = "{entity}_SIMPLE_LIST_NOT_FOUND";
|
|
93
|
+
EErrorStringAction["SUBSCRIPTION_ERROR"] = "{entity}_SUBSCRIPTION_ERROR";
|
|
94
|
+
EErrorStringAction["SYSTEM_ERROR"] = "{entity}_SYSTEM_ERROR";
|
|
95
|
+
EErrorStringAction["TIMEOUT"] = "{entity}_TIMEOUT";
|
|
96
|
+
EErrorStringAction["TIMESTAMP_EXPIRED"] = "TIMESTAMP_EXPIRED";
|
|
97
|
+
EErrorStringAction["TIMESTAMP_IN_FUTURE"] = "{entity}_IN_FUTURE";
|
|
98
|
+
EErrorStringAction["TOKEN_EXPIRED"] = "{entity}_TOKEN_EXPIRED";
|
|
99
|
+
EErrorStringAction["TOO_MANY_REQUESTS"] = "{entity}_TOO_MANY_REQUESTS";
|
|
100
|
+
EErrorStringAction["UPDATING_ERROR"] = "{entity}_UPDATING_ERROR";
|
|
101
|
+
EErrorStringAction["UPLOAD_ERROR"] = "{entity}_UPLOAD_ERROR";
|
|
102
|
+
EErrorStringAction["VALIDATION_ERROR"] = "{entity}_VALIDATION_ERROR";
|
|
103
|
+
})(EErrorStringAction || (EErrorStringAction = {}));
|
|
104
|
+
|
|
105
|
+
export { EErrorStringAction };
|
|
106
|
+
//# sourceMappingURL=error-string-action.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error-string-action.enum.js","sources":["../../../../../../src/enum/utility/error-string-action.enum.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|