@elsikora/nestjs-crud-automator 1.1.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/class/api/base-service.class.d.ts +8 -0
- package/dist/class/api/base-service.class.js +13 -0
- package/dist/class/api/base-service.class.js.map +1 -0
- package/dist/class/api/index.d.ts +1 -0
- package/dist/class/api/index.js +18 -0
- package/dist/class/api/index.js.map +1 -0
- package/dist/class/index.d.ts +1 -0
- package/dist/class/index.js +18 -0
- package/dist/class/index.js.map +1 -0
- package/dist/constant/date.constant.d.ts +4 -0
- package/dist/constant/date.constant.js +10 -0
- package/dist/constant/date.constant.js.map +1 -0
- package/dist/constant/decorator/api/function.constant.d.ts +4 -0
- package/dist/constant/decorator/api/function.constant.js +9 -0
- package/dist/constant/decorator/api/function.constant.js.map +1 -0
- package/dist/constant/decorator/api/index.d.ts +1 -0
- package/dist/constant/decorator/api/index.js +18 -0
- package/dist/constant/decorator/api/index.js.map +1 -0
- package/dist/constant/decorator/index.d.ts +1 -0
- package/dist/constant/decorator/index.js +18 -0
- package/dist/constant/decorator/index.js.map +1 -0
- package/dist/constant/dto/exception.constant.d.ts +6 -0
- package/dist/constant/dto/exception.constant.js +14 -0
- package/dist/constant/dto/exception.constant.js.map +1 -0
- package/dist/constant/dto/index.d.ts +1 -0
- package/dist/constant/dto/index.js +18 -0
- package/dist/constant/dto/index.js.map +1 -0
- package/dist/constant/index.d.ts +5 -0
- package/dist/constant/index.js +22 -0
- package/dist/constant/index.js.map +1 -0
- package/dist/constant/interface/api/filter.constant.d.ts +3 -0
- package/dist/constant/interface/api/filter.constant.js +12 -0
- package/dist/constant/interface/api/filter.constant.js.map +1 -0
- package/dist/constant/interface/api/index.d.ts +1 -0
- package/dist/constant/interface/api/index.js +18 -0
- package/dist/constant/interface/api/index.js.map +1 -0
- package/dist/constant/interface/api/property/index.d.ts +2 -0
- package/dist/constant/interface/api/property/index.js +19 -0
- package/dist/constant/interface/api/property/index.js.map +1 -0
- package/dist/constant/interface/api/property/string.constant.d.ts +6 -0
- package/dist/constant/interface/api/property/string.constant.js +12 -0
- package/dist/constant/interface/api/property/string.constant.js.map +1 -0
- package/dist/constant/interface/api/property/wallet.constant.d.ts +5 -0
- package/dist/constant/interface/api/property/wallet.constant.js +12 -0
- package/dist/constant/interface/api/property/wallet.constant.js.map +1 -0
- package/dist/constant/interface/index.d.ts +1 -0
- package/dist/constant/interface/index.js +18 -0
- package/dist/constant/interface/index.js.map +1 -0
- package/dist/constant/number.constant.d.ts +18 -0
- package/dist/constant/number.constant.js +38 -0
- package/dist/constant/number.constant.js.map +1 -0
- package/dist/decorator/api/function/decorator.d.ts +7 -0
- package/dist/decorator/api/function/decorator.js +27 -0
- package/dist/decorator/api/function/decorator.js.map +1 -0
- package/dist/decorator/api/function/get-list.decorator.d.ts +5 -0
- package/dist/decorator/api/function/get-list.decorator.js +129 -0
- package/dist/decorator/api/function/get-list.decorator.js.map +1 -0
- package/dist/decorator/api/function/get.decorator.d.ts +4 -0
- package/dist/decorator/api/function/get.decorator.js +58 -0
- package/dist/decorator/api/function/get.decorator.js.map +1 -0
- package/dist/decorator/api/function/index.d.ts +2 -0
- package/dist/decorator/api/function/index.js +19 -0
- package/dist/decorator/api/function/index.js.map +1 -0
- package/dist/decorator/api/index.d.ts +3 -0
- package/dist/decorator/api/index.js +20 -0
- package/dist/decorator/api/index.js.map +1 -0
- package/dist/decorator/api/method.decorator.d.ts +2 -0
- package/dist/decorator/api/method.decorator.js +203 -0
- package/dist/decorator/api/method.decorator.js.map +1 -0
- package/dist/decorator/api/property/boolean.decorator.d.ts +2 -0
- package/dist/decorator/api/property/boolean.decorator.js +77 -0
- package/dist/decorator/api/property/boolean.decorator.js.map +1 -0
- package/dist/decorator/api/property/date.decorator.d.ts +2 -0
- package/dist/decorator/api/property/date.decorator.js +87 -0
- package/dist/decorator/api/property/date.decorator.js.map +1 -0
- package/dist/decorator/api/property/index.d.ts +7 -0
- package/dist/decorator/api/property/index.js +24 -0
- package/dist/decorator/api/property/index.js.map +1 -0
- package/dist/decorator/api/property/number.decorator.d.ts +2 -0
- package/dist/decorator/api/property/number.decorator.js +146 -0
- package/dist/decorator/api/property/number.decorator.js.map +1 -0
- package/dist/decorator/api/property/object.decorator.d.ts +2 -0
- package/dist/decorator/api/property/object.decorator.js +124 -0
- package/dist/decorator/api/property/object.decorator.js.map +1 -0
- package/dist/decorator/api/property/string.decorator.d.ts +2 -0
- package/dist/decorator/api/property/string.decorator.js +282 -0
- package/dist/decorator/api/property/string.decorator.js.map +1 -0
- package/dist/decorator/api/property/uuid.decorator.d.ts +2 -0
- package/dist/decorator/api/property/uuid.decorator.js +63 -0
- package/dist/decorator/api/property/uuid.decorator.js.map +1 -0
- package/dist/decorator/api/property/wallet.decorator.d.ts +2 -0
- package/dist/decorator/api/property/wallet.decorator.js +25 -0
- package/dist/decorator/api/property/wallet.decorator.js.map +1 -0
- package/dist/decorator/api/service.decorator.d.ts +8 -0
- package/dist/decorator/api/service.decorator.js +71 -0
- package/dist/decorator/api/service.decorator.js.map +1 -0
- package/dist/decorator/index.d.ts +1 -0
- package/dist/decorator/index.js +18 -0
- package/dist/decorator/index.js.map +1 -0
- package/dist/dto/exception/bad-request.dto.d.ts +8 -0
- package/dist/dto/exception/bad-request.dto.js +84 -0
- package/dist/dto/exception/bad-request.dto.js.map +1 -0
- package/dist/dto/exception/conflict.dto.d.ts +8 -0
- package/dist/dto/exception/conflict.dto.js +84 -0
- package/dist/dto/exception/conflict.dto.js.map +1 -0
- package/dist/dto/exception/forbidden.dto.d.ts +8 -0
- package/dist/dto/exception/forbidden.dto.js +84 -0
- package/dist/dto/exception/forbidden.dto.js.map +1 -0
- package/dist/dto/exception/index.d.ts +7 -0
- package/dist/dto/exception/index.js +24 -0
- package/dist/dto/exception/index.js.map +1 -0
- package/dist/dto/exception/internal-server-error.dto.d.ts +8 -0
- package/dist/dto/exception/internal-server-error.dto.js +84 -0
- package/dist/dto/exception/internal-server-error.dto.js.map +1 -0
- package/dist/dto/exception/not-found.dto.d.ts +8 -0
- package/dist/dto/exception/not-found.dto.js +84 -0
- package/dist/dto/exception/not-found.dto.js.map +1 -0
- package/dist/dto/exception/too-many-requests.dto.d.ts +8 -0
- package/dist/dto/exception/too-many-requests.dto.js +84 -0
- package/dist/dto/exception/too-many-requests.dto.js.map +1 -0
- package/dist/dto/exception/unauthorized.dto.d.ts +8 -0
- package/dist/dto/exception/unauthorized.dto.js +84 -0
- package/dist/dto/exception/unauthorized.dto.js.map +1 -0
- package/dist/dto/index.d.ts +1 -0
- package/dist/dto/index.js +18 -0
- package/dist/dto/index.js.map +1 -0
- package/dist/enum/decorator/api/action.enum.d.ts +14 -0
- package/dist/enum/decorator/api/action.enum.js +19 -0
- package/dist/enum/decorator/api/action.enum.js.map +1 -0
- package/dist/enum/decorator/api/authentication-type.enum.d.ts +5 -0
- package/dist/enum/decorator/api/authentication-type.enum.js +10 -0
- package/dist/enum/decorator/api/authentication-type.enum.js.map +1 -0
- package/dist/enum/decorator/api/function/index.d.ts +1 -0
- package/dist/enum/decorator/api/function/index.js +18 -0
- package/dist/enum/decorator/api/function/index.js.map +1 -0
- package/dist/enum/decorator/api/function/type.enum.d.ts +10 -0
- package/dist/enum/decorator/api/function/type.enum.js +15 -0
- package/dist/enum/decorator/api/function/type.enum.js.map +1 -0
- package/dist/enum/decorator/api/index.d.ts +4 -0
- package/dist/enum/decorator/api/index.js +21 -0
- package/dist/enum/decorator/api/index.js.map +1 -0
- package/dist/enum/decorator/api/property/data-type.enum.d.ts +23 -0
- package/dist/enum/decorator/api/property/data-type.enum.js +42 -0
- package/dist/enum/decorator/api/property/data-type.enum.js.map +1 -0
- package/dist/enum/decorator/api/property/date-type.enum.d.ts +14 -0
- package/dist/enum/decorator/api/property/date-type.enum.js +19 -0
- package/dist/enum/decorator/api/property/date-type.enum.js.map +1 -0
- package/dist/enum/decorator/api/property/index.d.ts +2 -0
- package/dist/enum/decorator/api/property/index.js +19 -0
- package/dist/enum/decorator/api/property/index.js.map +1 -0
- package/dist/enum/decorator/index.d.ts +1 -0
- package/dist/enum/decorator/index.js +18 -0
- package/dist/enum/decorator/index.js.map +1 -0
- package/dist/enum/filter-order-direction.enum.d.ts +4 -0
- package/dist/enum/filter-order-direction.enum.js +9 -0
- package/dist/enum/filter-order-direction.enum.js.map +1 -0
- package/dist/enum/index.d.ts +3 -0
- package/dist/enum/index.js +20 -0
- package/dist/enum/index.js.map +1 -0
- package/dist/enum/utility/error-string-action.enum.d.ts +55 -0
- package/dist/enum/utility/error-string-action.enum.js +60 -0
- package/dist/enum/utility/error-string-action.enum.js.map +1 -0
- package/dist/enum/utility/index.d.ts +1 -0
- package/dist/enum/utility/index.js +18 -0
- package/dist/enum/utility/index.js.map +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +27 -0
- package/dist/index.js.map +1 -0
- package/dist/interceptor/correlation-id-response-body.interceptor.d.ts +5 -0
- package/dist/interceptor/correlation-id-response-body.interceptor.js +90 -0
- package/dist/interceptor/correlation-id-response-body.interceptor.js.map +1 -0
- package/dist/interceptor/index.d.ts +1 -0
- package/dist/interceptor/index.js +18 -0
- package/dist/interceptor/index.js.map +1 -0
- package/dist/interface/api-base-entity.interface.d.ts +3 -0
- package/dist/interface/api-base-entity.interface.js +3 -0
- package/dist/interface/api-base-entity.interface.js.map +1 -0
- package/dist/interface/decorator/api/function/index.d.ts +1 -0
- package/dist/interface/decorator/api/function/index.js +3 -0
- package/dist/interface/decorator/api/function/index.js.map +1 -0
- package/dist/interface/decorator/api/get-list-response-result.interface.d.ts +7 -0
- package/dist/interface/decorator/api/get-list-response-result.interface.js +3 -0
- package/dist/interface/decorator/api/get-list-response-result.interface.js.map +1 -0
- package/dist/interface/decorator/api/index.d.ts +5 -0
- package/dist/interface/decorator/api/index.js +22 -0
- package/dist/interface/decorator/api/index.js.map +1 -0
- package/dist/interface/decorator/api/method/index.d.ts +2 -0
- package/dist/interface/decorator/api/method/index.js +19 -0
- package/dist/interface/decorator/api/method/index.js.map +1 -0
- package/dist/interface/decorator/api/method/properties.interface.d.ts +16 -0
- package/dist/interface/decorator/api/method/properties.interface.js +3 -0
- package/dist/interface/decorator/api/method/properties.interface.js.map +1 -0
- package/dist/interface/decorator/api/method/throttler-properties.interface.d.ts +4 -0
- package/dist/interface/decorator/api/method/throttler-properties.interface.js +3 -0
- package/dist/interface/decorator/api/method/throttler-properties.interface.js.map +1 -0
- package/dist/interface/decorator/api/property/base-properties.interface.d.ts +13 -0
- package/dist/interface/decorator/api/property/base-properties.interface.js +3 -0
- package/dist/interface/decorator/api/property/base-properties.interface.js.map +1 -0
- package/dist/interface/decorator/api/property/date-properties.interface.d.ts +5 -0
- package/dist/interface/decorator/api/property/date-properties.interface.js +3 -0
- package/dist/interface/decorator/api/property/date-properties.interface.js.map +1 -0
- package/dist/interface/decorator/api/property/index.d.ts +6 -0
- package/dist/interface/decorator/api/property/index.js +23 -0
- package/dist/interface/decorator/api/property/index.js.map +1 -0
- package/dist/interface/decorator/api/property/number-properties.interface.d.ts +9 -0
- package/dist/interface/decorator/api/property/number-properties.interface.js +3 -0
- package/dist/interface/decorator/api/property/number-properties.interface.js.map +1 -0
- package/dist/interface/decorator/api/property/object-properties.interface.d.ts +10 -0
- package/dist/interface/decorator/api/property/object-properties.interface.js +3 -0
- package/dist/interface/decorator/api/property/object-properties.interface.js.map +1 -0
- package/dist/interface/decorator/api/property/string-properties.interface.d.ts +10 -0
- package/dist/interface/decorator/api/property/string-properties.interface.js +3 -0
- package/dist/interface/decorator/api/property/string-properties.interface.js.map +1 -0
- package/dist/interface/decorator/api/property/uuid-properties.interface.d.ts +8 -0
- package/dist/interface/decorator/api/property/uuid-properties.interface.js +3 -0
- package/dist/interface/decorator/api/property/uuid-properties.interface.js.map +1 -0
- package/dist/interface/decorator/api/response-type.interface.d.ts +9 -0
- package/dist/interface/decorator/api/response-type.interface.js +3 -0
- package/dist/interface/decorator/api/response-type.interface.js.map +1 -0
- package/dist/interface/decorator/index.d.ts +1 -0
- package/dist/interface/decorator/index.js +18 -0
- package/dist/interface/decorator/index.js.map +1 -0
- package/dist/interface/index.d.ts +4 -0
- package/dist/interface/index.js +21 -0
- package/dist/interface/index.js.map +1 -0
- package/dist/interface/service.interface.d.ts +1 -0
- package/dist/interface/service.interface.js +3 -0
- package/dist/interface/service.interface.js.map +1 -0
- package/dist/interface/utility/error-string-properties.interface.d.ts +5 -0
- package/dist/interface/utility/error-string-properties.interface.js +3 -0
- package/dist/interface/utility/error-string-properties.interface.js.map +1 -0
- package/dist/interface/utility/index.d.ts +1 -0
- package/dist/interface/utility/index.js +18 -0
- package/dist/interface/utility/index.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/type/api/filter/allowed-types.type.d.ts +1 -0
- package/dist/type/api/filter/allowed-types.type.js +3 -0
- package/dist/type/api/filter/allowed-types.type.js.map +1 -0
- package/dist/type/api/filter/extracted-allowed-types.type.d.ts +2 -0
- package/dist/type/api/filter/extracted-allowed-types.type.js +3 -0
- package/dist/type/api/filter/extracted-allowed-types.type.js.map +1 -0
- package/dist/type/api/filter/field-selector.type.d.ts +3 -0
- package/dist/type/api/filter/field-selector.type.js +3 -0
- package/dist/type/api/filter/field-selector.type.js.map +1 -0
- package/dist/type/api/filter/index.d.ts +4 -0
- package/dist/type/api/filter/index.js +21 -0
- package/dist/type/api/filter/index.js.map +1 -0
- package/dist/type/api/filter/order-by.type.d.ts +5 -0
- package/dist/type/api/filter/order-by.type.js +3 -0
- package/dist/type/api/filter/order-by.type.js.map +1 -0
- package/dist/type/api/function/get-list-properties.type.d.ts +23 -0
- package/dist/type/api/function/get-list-properties.type.js +3 -0
- package/dist/type/api/function/get-list-properties.type.js.map +1 -0
- package/dist/type/api/function/get-properties.type.d.ts +6 -0
- package/dist/type/api/function/get-properties.type.js +3 -0
- package/dist/type/api/function/get-properties.type.js.map +1 -0
- package/dist/type/api/function/index.d.ts +1 -0
- package/dist/type/api/function/index.js +18 -0
- package/dist/type/api/function/index.js.map +1 -0
- package/dist/type/api/index.d.ts +2 -0
- package/dist/type/api/index.js +19 -0
- package/dist/type/api/index.js.map +1 -0
- package/dist/type/index.d.ts +1 -0
- package/dist/type/index.js +18 -0
- package/dist/type/index.js.map +1 -0
- package/dist/utility/api/filter-order-by-from-entity.utility.d.ts +4 -0
- package/dist/utility/api/filter-order-by-from-entity.utility.js +34 -0
- package/dist/utility/api/filter-order-by-from-entity.utility.js.map +1 -0
- package/dist/utility/api/index.d.ts +1 -0
- package/dist/utility/api/index.js +18 -0
- package/dist/utility/api/index.js.map +1 -0
- package/dist/utility/create-rest-application.utility.d.ts +3 -0
- package/dist/utility/create-rest-application.utility.js +9 -0
- package/dist/utility/create-rest-application.utility.js.map +1 -0
- package/dist/utility/error-string.utility.d.ts +2 -0
- package/dist/utility/error-string.utility.js +7 -0
- package/dist/utility/error-string.utility.js.map +1 -0
- package/dist/utility/index.d.ts +3 -0
- package/dist/utility/index.js +20 -0
- package/dist/utility/index.js.map +1 -0
- package/dist/validator/index.d.ts +1 -0
- package/dist/validator/index.js +18 -0
- package/dist/validator/index.js.map +1 -0
- package/dist/validator/is-regular-expression.validator.d.ts +4 -0
- package/dist/validator/is-regular-expression.validator.js +31 -0
- package/dist/validator/is-regular-expression.validator.js.map +1 -0
- package/package.json +64 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"too-many-requests.dto.js","sourceRoot":"/","sources":["dto/exception/too-many-requests.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,+CAA2G;AAC3G,qCAAkD;AAClD,6CAAwF;AAExF,MAAa,2BAA2B;IAEvC,aAAa,CAAU;IAcvB,KAAK,GAAW,mBAAmB,CAAC;IAcpC,OAAO,GAAW,eAAe,CAAC;IAUlC,UAAU,GAAe,mBAAU,CAAC,iBAAiB,CAAC;IAatD,SAAS,CAAU;CACnB;AAtDD,kEAsDC;AApDA;IADC,IAAA,2BAAe,EAAC,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,aAAa,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kEAC5D;AAcvB;IAZC,IAAA,6BAAiB,EAAC;QAClB,WAAW,EAAE,MAAM;QACnB,MAAM,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;QACzB,OAAO,EAAE,mBAAmB;QAC5B,MAAM,EAAE,IAAI;QACZ,MAAM,EAAE,2BAAoB,CAAC,IAAI;QACjC,SAAS,EAAE,iCAAsB,CAAC,oBAAoB;QACtD,SAAS,EAAE,iCAAsB,CAAC,oBAAoB;QACtD,OAAO,EAAE,qBAAqB;QAC9B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,2BAAoB,CAAC,MAAM;KACjC,CAAC;;0DACkC;AAcpC;IAZC,IAAA,6BAAiB,EAAC;QAClB,WAAW,EAAE,SAAS;QACtB,MAAM,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;QACzB,OAAO,EAAE,eAAe;QACxB,MAAM,EAAE,IAAI;QACZ,MAAM,EAAE,2BAAoB,CAAC,IAAI;QACjC,SAAS,EAAE,iCAAsB,CAAC,4BAA4B;QAC9D,SAAS,EAAE,iCAAsB,CAAC,4BAA4B;QAC9D,OAAO,EAAE,qBAAqB;QAC9B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,2BAAoB,CAAC,MAAM;KACjC,CAAC;;4DACgC;AAUlC;IARC,IAAA,6BAAiB,EAAC;QAClB,OAAO,EAAE,mBAAU,CAAC,iBAAiB;QACrC,WAAW,EAAE,aAAa;QAC1B,MAAM,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;QACzB,IAAI,EAAE,mBAAU;QAChB,MAAM,EAAE,IAAI;QACZ,QAAQ,EAAE,IAAI;KACd,CAAC;;+DACoD;AAatD;IAXC,IAAA,6BAAiB,EAAC;QAClB,WAAW,EAAE,WAAW;QACxB,MAAM,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;QACzB,OAAO,EAAE,IAAI,CAAC,GAAG,EAAE;QACnB,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,wBAAa,CAAC,iBAAiB;QACxC,OAAO,EAAE,wBAAa,CAAC,iBAAiB;QACxC,UAAU,EAAE,0BAAe,CAAC,GAAG;QAC/B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,2BAAoB,CAAC,OAAO;KAClC,CAAC;;8DACiB","sourcesContent":["import { HttpStatus } from \"@nestjs/common\";\nimport { ApiPropertyNumber, ApiPropertyObject, ApiPropertyString, ApiPropertyUUID } from \"../../decorator\";\nimport { EApiPropertyDataType } from \"../../enum\";\nimport { DATE_CONSTANT, EXCEPTION_DTO_CONSTANT, NUMBER_CONSTANT } from \"../../constant\";\n\nexport class ExceptionTooManyRequestsDTO {\n\t@ApiPropertyUUID({ entity: { name: \"Correlation\" }, expose: true, response: true })\n\tcorrelationID!: string;\n\n\t@ApiPropertyString({\n\t\tdescription: \"name\",\n\t\tentity: { name: \"Error\" },\n\t\texample: \"Too Many Requests\",\n\t\texpose: true,\n\t\tformat: EApiPropertyDataType.TEXT,\n\t\tmaxLength: EXCEPTION_DTO_CONSTANT.MAXIMUM_ERROR_LENGTH,\n\t\tminLength: EXCEPTION_DTO_CONSTANT.MINIMUM_ERROR_LENGTH,\n\t\tpattern: \"/^[a-zA-Z ]{3,64}$/\",\n\t\tresponse: true,\n\t\ttype: EApiPropertyDataType.STRING,\n\t})\n\terror: string = \"Too Many Requests\";\n\n\t@ApiPropertyString({\n\t\tdescription: \"message\",\n\t\tentity: { name: \"Error\" },\n\t\texample: \"Error message\",\n\t\texpose: true,\n\t\tformat: EApiPropertyDataType.TEXT,\n\t\tmaxLength: EXCEPTION_DTO_CONSTANT.MAXIMUM_ERROR_MESSAGE_LENGTH,\n\t\tminLength: EXCEPTION_DTO_CONSTANT.MINIMUM_ERROR_MESSAGE_LENGTH,\n\t\tpattern: \"/^[a-zA-Z ]{3,64}$/\",\n\t\tresponse: true,\n\t\ttype: EApiPropertyDataType.STRING,\n\t})\n\tmessage: string = \"Error message\";\n\n\t@ApiPropertyObject({\n\t\tdefault: HttpStatus.TOO_MANY_REQUESTS,\n\t\tdescription: \"status code\",\n\t\tentity: { name: \"Error\" },\n\t\tenum: HttpStatus,\n\t\texpose: true,\n\t\tresponse: true,\n\t})\n\tstatusCode: HttpStatus = HttpStatus.TOO_MANY_REQUESTS;\n\n\t@ApiPropertyNumber({\n\t\tdescription: \"timestamp\",\n\t\tentity: { name: \"Error\" },\n\t\texample: Date.now(),\n\t\texpose: true,\n\t\tmaximum: DATE_CONSTANT.MAXIMUM_UNIX_TIME,\n\t\tminimum: DATE_CONSTANT.MINIMUM_UNIX_TIME,\n\t\tmultipleOf: NUMBER_CONSTANT.ONE,\n\t\tresponse: true,\n\t\ttype: EApiPropertyDataType.INTEGER,\n\t})\n\ttimestamp!: number;\n}\n"]}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.ExceptionUnauthorizedDTO = void 0;
|
|
13
|
+
const common_1 = require("@nestjs/common");
|
|
14
|
+
const decorator_1 = require("../../decorator");
|
|
15
|
+
const enum_1 = require("../../enum");
|
|
16
|
+
const constant_1 = require("../../constant");
|
|
17
|
+
class ExceptionUnauthorizedDTO {
|
|
18
|
+
correlationID;
|
|
19
|
+
error = "Unauthorized";
|
|
20
|
+
message = "Error message";
|
|
21
|
+
statusCode = common_1.HttpStatus.UNAUTHORIZED;
|
|
22
|
+
timestamp;
|
|
23
|
+
}
|
|
24
|
+
exports.ExceptionUnauthorizedDTO = ExceptionUnauthorizedDTO;
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, decorator_1.ApiPropertyUUID)({ entity: { name: "Correlation" }, expose: true, response: true }),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], ExceptionUnauthorizedDTO.prototype, "correlationID", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, decorator_1.ApiPropertyString)({
|
|
31
|
+
description: "name",
|
|
32
|
+
entity: { name: "Error" },
|
|
33
|
+
example: "Unauthorized",
|
|
34
|
+
expose: true,
|
|
35
|
+
format: enum_1.EApiPropertyDataType.TEXT,
|
|
36
|
+
maxLength: constant_1.EXCEPTION_DTO_CONSTANT.MAXIMUM_ERROR_LENGTH,
|
|
37
|
+
minLength: constant_1.EXCEPTION_DTO_CONSTANT.MINIMUM_ERROR_LENGTH,
|
|
38
|
+
pattern: "/^[a-zA-Z ]{3,64}$/",
|
|
39
|
+
response: true,
|
|
40
|
+
type: enum_1.EApiPropertyDataType.STRING,
|
|
41
|
+
}),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], ExceptionUnauthorizedDTO.prototype, "error", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, decorator_1.ApiPropertyString)({
|
|
46
|
+
description: "message",
|
|
47
|
+
entity: { name: "Error" },
|
|
48
|
+
example: "Error message",
|
|
49
|
+
expose: true,
|
|
50
|
+
format: enum_1.EApiPropertyDataType.TEXT,
|
|
51
|
+
maxLength: constant_1.EXCEPTION_DTO_CONSTANT.MAXIMUM_ERROR_MESSAGE_LENGTH,
|
|
52
|
+
minLength: constant_1.EXCEPTION_DTO_CONSTANT.MINIMUM_ERROR_MESSAGE_LENGTH,
|
|
53
|
+
pattern: "/^[a-zA-Z ]{3,64}$/",
|
|
54
|
+
response: true,
|
|
55
|
+
type: enum_1.EApiPropertyDataType.STRING,
|
|
56
|
+
}),
|
|
57
|
+
__metadata("design:type", String)
|
|
58
|
+
], ExceptionUnauthorizedDTO.prototype, "message", void 0);
|
|
59
|
+
__decorate([
|
|
60
|
+
(0, decorator_1.ApiPropertyObject)({
|
|
61
|
+
default: common_1.HttpStatus.UNAUTHORIZED,
|
|
62
|
+
description: "status code",
|
|
63
|
+
entity: { name: "Error" },
|
|
64
|
+
enum: common_1.HttpStatus,
|
|
65
|
+
expose: true,
|
|
66
|
+
response: true,
|
|
67
|
+
}),
|
|
68
|
+
__metadata("design:type", Number)
|
|
69
|
+
], ExceptionUnauthorizedDTO.prototype, "statusCode", void 0);
|
|
70
|
+
__decorate([
|
|
71
|
+
(0, decorator_1.ApiPropertyNumber)({
|
|
72
|
+
description: "timestamp",
|
|
73
|
+
entity: { name: "Error" },
|
|
74
|
+
example: Date.now(),
|
|
75
|
+
expose: true,
|
|
76
|
+
maximum: constant_1.DATE_CONSTANT.MAXIMUM_UNIX_TIME,
|
|
77
|
+
minimum: constant_1.DATE_CONSTANT.MINIMUM_UNIX_TIME,
|
|
78
|
+
multipleOf: constant_1.NUMBER_CONSTANT.ONE,
|
|
79
|
+
response: true,
|
|
80
|
+
type: enum_1.EApiPropertyDataType.INTEGER,
|
|
81
|
+
}),
|
|
82
|
+
__metadata("design:type", Number)
|
|
83
|
+
], ExceptionUnauthorizedDTO.prototype, "timestamp", void 0);
|
|
84
|
+
//# sourceMappingURL=unauthorized.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unauthorized.dto.js","sourceRoot":"/","sources":["dto/exception/unauthorized.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,+CAA2G;AAC3G,qCAAkD;AAClD,6CAAwF;AAExF,MAAa,wBAAwB;IAEpC,aAAa,CAAU;IAcvB,KAAK,GAAW,cAAc,CAAC;IAc/B,OAAO,GAAW,eAAe,CAAC;IAUlC,UAAU,GAAe,mBAAU,CAAC,YAAY,CAAC;IAajD,SAAS,CAAU;CACnB;AAtDD,4DAsDC;AApDA;IADC,IAAA,2BAAe,EAAC,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,aAAa,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+DAC5D;AAcvB;IAZC,IAAA,6BAAiB,EAAC;QAClB,WAAW,EAAE,MAAM;QACnB,MAAM,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;QACzB,OAAO,EAAE,cAAc;QACvB,MAAM,EAAE,IAAI;QACZ,MAAM,EAAE,2BAAoB,CAAC,IAAI;QACjC,SAAS,EAAE,iCAAsB,CAAC,oBAAoB;QACtD,SAAS,EAAE,iCAAsB,CAAC,oBAAoB;QACtD,OAAO,EAAE,qBAAqB;QAC9B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,2BAAoB,CAAC,MAAM;KACjC,CAAC;;uDAC6B;AAc/B;IAZC,IAAA,6BAAiB,EAAC;QAClB,WAAW,EAAE,SAAS;QACtB,MAAM,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;QACzB,OAAO,EAAE,eAAe;QACxB,MAAM,EAAE,IAAI;QACZ,MAAM,EAAE,2BAAoB,CAAC,IAAI;QACjC,SAAS,EAAE,iCAAsB,CAAC,4BAA4B;QAC9D,SAAS,EAAE,iCAAsB,CAAC,4BAA4B;QAC9D,OAAO,EAAE,qBAAqB;QAC9B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,2BAAoB,CAAC,MAAM;KACjC,CAAC;;yDACgC;AAUlC;IARC,IAAA,6BAAiB,EAAC;QAClB,OAAO,EAAE,mBAAU,CAAC,YAAY;QAChC,WAAW,EAAE,aAAa;QAC1B,MAAM,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;QACzB,IAAI,EAAE,mBAAU;QAChB,MAAM,EAAE,IAAI;QACZ,QAAQ,EAAE,IAAI;KACd,CAAC;;4DAC+C;AAajD;IAXC,IAAA,6BAAiB,EAAC;QAClB,WAAW,EAAE,WAAW;QACxB,MAAM,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE;QACzB,OAAO,EAAE,IAAI,CAAC,GAAG,EAAE;QACnB,MAAM,EAAE,IAAI;QACZ,OAAO,EAAE,wBAAa,CAAC,iBAAiB;QACxC,OAAO,EAAE,wBAAa,CAAC,iBAAiB;QACxC,UAAU,EAAE,0BAAe,CAAC,GAAG;QAC/B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE,2BAAoB,CAAC,OAAO;KAClC,CAAC;;2DACiB","sourcesContent":["import { HttpStatus } from \"@nestjs/common\";\nimport { ApiPropertyNumber, ApiPropertyObject, ApiPropertyString, ApiPropertyUUID } from \"../../decorator\";\nimport { EApiPropertyDataType } from \"../../enum\";\nimport { DATE_CONSTANT, EXCEPTION_DTO_CONSTANT, NUMBER_CONSTANT } from \"../../constant\";\n\nexport class ExceptionUnauthorizedDTO {\n\t@ApiPropertyUUID({ entity: { name: \"Correlation\" }, expose: true, response: true })\n\tcorrelationID!: string;\n\n\t@ApiPropertyString({\n\t\tdescription: \"name\",\n\t\tentity: { name: \"Error\" },\n\t\texample: \"Unauthorized\",\n\t\texpose: true,\n\t\tformat: EApiPropertyDataType.TEXT,\n\t\tmaxLength: EXCEPTION_DTO_CONSTANT.MAXIMUM_ERROR_LENGTH,\n\t\tminLength: EXCEPTION_DTO_CONSTANT.MINIMUM_ERROR_LENGTH,\n\t\tpattern: \"/^[a-zA-Z ]{3,64}$/\",\n\t\tresponse: true,\n\t\ttype: EApiPropertyDataType.STRING,\n\t})\n\terror: string = \"Unauthorized\";\n\n\t@ApiPropertyString({\n\t\tdescription: \"message\",\n\t\tentity: { name: \"Error\" },\n\t\texample: \"Error message\",\n\t\texpose: true,\n\t\tformat: EApiPropertyDataType.TEXT,\n\t\tmaxLength: EXCEPTION_DTO_CONSTANT.MAXIMUM_ERROR_MESSAGE_LENGTH,\n\t\tminLength: EXCEPTION_DTO_CONSTANT.MINIMUM_ERROR_MESSAGE_LENGTH,\n\t\tpattern: \"/^[a-zA-Z ]{3,64}$/\",\n\t\tresponse: true,\n\t\ttype: EApiPropertyDataType.STRING,\n\t})\n\tmessage: string = \"Error message\";\n\n\t@ApiPropertyObject({\n\t\tdefault: HttpStatus.UNAUTHORIZED,\n\t\tdescription: \"status code\",\n\t\tentity: { name: \"Error\" },\n\t\tenum: HttpStatus,\n\t\texpose: true,\n\t\tresponse: true,\n\t})\n\tstatusCode: HttpStatus = HttpStatus.UNAUTHORIZED;\n\n\t@ApiPropertyNumber({\n\t\tdescription: \"timestamp\",\n\t\tentity: { name: \"Error\" },\n\t\texample: Date.now(),\n\t\texpose: true,\n\t\tmaximum: DATE_CONSTANT.MAXIMUM_UNIX_TIME,\n\t\tminimum: DATE_CONSTANT.MINIMUM_UNIX_TIME,\n\t\tmultipleOf: NUMBER_CONSTANT.ONE,\n\t\tresponse: true,\n\t\ttype: EApiPropertyDataType.INTEGER,\n\t})\n\ttimestamp!: number;\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./exception";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./exception"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["dto/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B","sourcesContent":["export * from \"./exception\";\n"]}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum EApiAction {
|
|
2
|
+
AUTHENTICATION = "authentication",
|
|
3
|
+
CONFIRMATION = "confirmation",
|
|
4
|
+
CREATE = "create",
|
|
5
|
+
DELETE = "delete",
|
|
6
|
+
FETCH = "fetch",
|
|
7
|
+
FETCH_LIST = "fetch_list",
|
|
8
|
+
FETCH_SIMPLE_LIST = "fetch_simple_list",
|
|
9
|
+
FETCH_SPECIFIED = "fetch_specified",
|
|
10
|
+
PARTIAL_UPDATE = "partial_update",
|
|
11
|
+
REFRESH = "refresh",
|
|
12
|
+
REGISTRATION = "registration",
|
|
13
|
+
UPDATE = "update"
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EApiAction = void 0;
|
|
4
|
+
var EApiAction;
|
|
5
|
+
(function (EApiAction) {
|
|
6
|
+
EApiAction["AUTHENTICATION"] = "authentication";
|
|
7
|
+
EApiAction["CONFIRMATION"] = "confirmation";
|
|
8
|
+
EApiAction["CREATE"] = "create";
|
|
9
|
+
EApiAction["DELETE"] = "delete";
|
|
10
|
+
EApiAction["FETCH"] = "fetch";
|
|
11
|
+
EApiAction["FETCH_LIST"] = "fetch_list";
|
|
12
|
+
EApiAction["FETCH_SIMPLE_LIST"] = "fetch_simple_list";
|
|
13
|
+
EApiAction["FETCH_SPECIFIED"] = "fetch_specified";
|
|
14
|
+
EApiAction["PARTIAL_UPDATE"] = "partial_update";
|
|
15
|
+
EApiAction["REFRESH"] = "refresh";
|
|
16
|
+
EApiAction["REGISTRATION"] = "registration";
|
|
17
|
+
EApiAction["UPDATE"] = "update";
|
|
18
|
+
})(EApiAction || (exports.EApiAction = EApiAction = {}));
|
|
19
|
+
//# sourceMappingURL=action.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.enum.js","sourceRoot":"/","sources":["enum/decorator/api/action.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,UAaX;AAbD,WAAY,UAAU;IACrB,+CAAiC,CAAA;IACjC,2CAA6B,CAAA;IAC7B,+BAAiB,CAAA;IACjB,+BAAiB,CAAA;IACjB,6BAAe,CAAA;IACf,uCAAyB,CAAA;IACzB,qDAAuC,CAAA;IACvC,iDAAmC,CAAA;IACnC,+CAAiC,CAAA;IACjC,iCAAmB,CAAA;IACnB,2CAA6B,CAAA;IAC7B,+BAAiB,CAAA;AAClB,CAAC,EAbW,UAAU,0BAAV,UAAU,QAarB","sourcesContent":["export enum EApiAction {\n\tAUTHENTICATION = \"authentication\",\n\tCONFIRMATION = \"confirmation\",\n\tCREATE = \"create\",\n\tDELETE = \"delete\",\n\tFETCH = \"fetch\",\n\tFETCH_LIST = \"fetch_list\",\n\tFETCH_SIMPLE_LIST = \"fetch_simple_list\",\n\tFETCH_SPECIFIED = \"fetch_specified\",\n\tPARTIAL_UPDATE = \"partial_update\",\n\tREFRESH = \"refresh\",\n\tREGISTRATION = \"registration\",\n\tUPDATE = \"update\",\n}\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EApiAuthenticationType = void 0;
|
|
4
|
+
var EApiAuthenticationType;
|
|
5
|
+
(function (EApiAuthenticationType) {
|
|
6
|
+
EApiAuthenticationType["ACCOUNT"] = "account";
|
|
7
|
+
EApiAuthenticationType["ADMIN"] = "admin";
|
|
8
|
+
EApiAuthenticationType["USER"] = "user";
|
|
9
|
+
})(EApiAuthenticationType || (exports.EApiAuthenticationType = EApiAuthenticationType = {}));
|
|
10
|
+
//# sourceMappingURL=authentication-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authentication-type.enum.js","sourceRoot":"/","sources":["enum/decorator/api/authentication-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,sBAIX;AAJD,WAAY,sBAAsB;IACjC,6CAAmB,CAAA;IACnB,yCAAe,CAAA;IACf,uCAAa,CAAA;AACd,CAAC,EAJW,sBAAsB,sCAAtB,sBAAsB,QAIjC","sourcesContent":["export enum EApiAuthenticationType {\n\tACCOUNT = \"account\",\n\tADMIN = \"admin\",\n\tUSER = \"user\",\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./type.enum";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./type.enum"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["enum/decorator/api/function/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B","sourcesContent":["export * from \"./type.enum\";\n"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EApiFunctionType = void 0;
|
|
4
|
+
var EApiFunctionType;
|
|
5
|
+
(function (EApiFunctionType) {
|
|
6
|
+
EApiFunctionType["GET_LIST"] = "getList";
|
|
7
|
+
EApiFunctionType["GET"] = "get";
|
|
8
|
+
EApiFunctionType["CREATE"] = "create";
|
|
9
|
+
EApiFunctionType["UPDATE"] = "update";
|
|
10
|
+
EApiFunctionType["DELETE"] = "delete";
|
|
11
|
+
EApiFunctionType["RESTORE"] = "restore";
|
|
12
|
+
EApiFunctionType["REMOVE"] = "remove";
|
|
13
|
+
EApiFunctionType["REPLACE"] = "replace";
|
|
14
|
+
})(EApiFunctionType || (exports.EApiFunctionType = EApiFunctionType = {}));
|
|
15
|
+
//# sourceMappingURL=type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type.enum.js","sourceRoot":"/","sources":["enum/decorator/api/function/type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,gBASX;AATD,WAAY,gBAAgB;IACxB,wCAAoB,CAAA;IACpB,+BAAW,CAAA;IACX,qCAAiB,CAAA;IACjB,qCAAiB,CAAA;IACjB,qCAAiB,CAAA;IACjB,uCAAmB,CAAA;IACnB,qCAAiB,CAAA;IACjB,uCAAmB,CAAA;AACvB,CAAC,EATW,gBAAgB,gCAAhB,gBAAgB,QAS3B","sourcesContent":["export enum EApiFunctionType {\n GET_LIST = \"getList\",\n GET = \"get\",\n CREATE = \"create\",\n UPDATE = \"update\",\n DELETE = \"delete\",\n RESTORE = \"restore\",\n REMOVE = \"remove\",\n REPLACE = \"replace\",\n}\n"]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./property"), exports);
|
|
18
|
+
__exportStar(require("./action.enum"), exports);
|
|
19
|
+
__exportStar(require("./authentication-type.enum"), exports);
|
|
20
|
+
__exportStar(require("./function"), exports);
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["enum/decorator/api/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,gDAA8B;AAC9B,6DAA2C;AAC3C,6CAA2B","sourcesContent":["export * from \"./property\";\nexport * from \"./action.enum\";\nexport * from \"./authentication-type.enum\";\nexport * from \"./function\";\n"]}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare enum EApiPropertyDataType {
|
|
2
|
+
BOOLEAN = "boolean",
|
|
3
|
+
DATE = "date",
|
|
4
|
+
DATE_TIME = "date-time",
|
|
5
|
+
DOUBLE = "double",
|
|
6
|
+
EMAIL = "email",
|
|
7
|
+
FLOAT = "float",
|
|
8
|
+
INTEGER = "integer",
|
|
9
|
+
IP = "ip",
|
|
10
|
+
LOWERCASE_STRING = "lowercase-string",
|
|
11
|
+
NUMBER = "number",
|
|
12
|
+
PASSWORD = "password",
|
|
13
|
+
REGEXP = "regexp",
|
|
14
|
+
STRING = "string",
|
|
15
|
+
TEXT = "text",
|
|
16
|
+
TIME = "time",
|
|
17
|
+
UPPERCASE_STRING = "uppercase-string",
|
|
18
|
+
URL = "url",
|
|
19
|
+
UUID = "uuid"
|
|
20
|
+
}
|
|
21
|
+
export declare const EApiPropertyDataTypeString: Set<EApiPropertyDataType>;
|
|
22
|
+
export declare const EApiPropertyDataTypeNumber: Set<EApiPropertyDataType>;
|
|
23
|
+
export declare const EApiPropertyDataTypeBoolean: Set<EApiPropertyDataType>;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EApiPropertyDataTypeBoolean = exports.EApiPropertyDataTypeNumber = exports.EApiPropertyDataTypeString = exports.EApiPropertyDataType = void 0;
|
|
4
|
+
var EApiPropertyDataType;
|
|
5
|
+
(function (EApiPropertyDataType) {
|
|
6
|
+
EApiPropertyDataType["BOOLEAN"] = "boolean";
|
|
7
|
+
EApiPropertyDataType["DATE"] = "date";
|
|
8
|
+
EApiPropertyDataType["DATE_TIME"] = "date-time";
|
|
9
|
+
EApiPropertyDataType["DOUBLE"] = "double";
|
|
10
|
+
EApiPropertyDataType["EMAIL"] = "email";
|
|
11
|
+
EApiPropertyDataType["FLOAT"] = "float";
|
|
12
|
+
EApiPropertyDataType["INTEGER"] = "integer";
|
|
13
|
+
EApiPropertyDataType["IP"] = "ip";
|
|
14
|
+
EApiPropertyDataType["LOWERCASE_STRING"] = "lowercase-string";
|
|
15
|
+
EApiPropertyDataType["NUMBER"] = "number";
|
|
16
|
+
EApiPropertyDataType["PASSWORD"] = "password";
|
|
17
|
+
EApiPropertyDataType["REGEXP"] = "regexp";
|
|
18
|
+
EApiPropertyDataType["STRING"] = "string";
|
|
19
|
+
EApiPropertyDataType["TEXT"] = "text";
|
|
20
|
+
EApiPropertyDataType["TIME"] = "time";
|
|
21
|
+
EApiPropertyDataType["UPPERCASE_STRING"] = "uppercase-string";
|
|
22
|
+
EApiPropertyDataType["URL"] = "url";
|
|
23
|
+
EApiPropertyDataType["UUID"] = "uuid";
|
|
24
|
+
})(EApiPropertyDataType || (exports.EApiPropertyDataType = EApiPropertyDataType = {}));
|
|
25
|
+
exports.EApiPropertyDataTypeString = new Set([
|
|
26
|
+
EApiPropertyDataType.STRING,
|
|
27
|
+
EApiPropertyDataType.TEXT,
|
|
28
|
+
EApiPropertyDataType.PASSWORD,
|
|
29
|
+
EApiPropertyDataType.EMAIL,
|
|
30
|
+
EApiPropertyDataType.URL,
|
|
31
|
+
EApiPropertyDataType.UUID,
|
|
32
|
+
EApiPropertyDataType.DATE,
|
|
33
|
+
EApiPropertyDataType.DATE_TIME,
|
|
34
|
+
EApiPropertyDataType.TIME,
|
|
35
|
+
EApiPropertyDataType.UPPERCASE_STRING,
|
|
36
|
+
EApiPropertyDataType.LOWERCASE_STRING,
|
|
37
|
+
EApiPropertyDataType.REGEXP,
|
|
38
|
+
EApiPropertyDataType.IP,
|
|
39
|
+
]);
|
|
40
|
+
exports.EApiPropertyDataTypeNumber = new Set([EApiPropertyDataType.NUMBER, EApiPropertyDataType.INTEGER, EApiPropertyDataType.FLOAT, EApiPropertyDataType.DOUBLE]);
|
|
41
|
+
exports.EApiPropertyDataTypeBoolean = new Set([EApiPropertyDataType.BOOLEAN]);
|
|
42
|
+
//# sourceMappingURL=data-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-type.enum.js","sourceRoot":"/","sources":["enum/decorator/api/property/data-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,oBAmBX;AAnBD,WAAY,oBAAoB;IAC/B,2CAAmB,CAAA;IACnB,qCAAa,CAAA;IACb,+CAAuB,CAAA;IACvB,yCAAiB,CAAA;IACjB,uCAAe,CAAA;IACf,uCAAe,CAAA;IACf,2CAAmB,CAAA;IACnB,iCAAS,CAAA;IACT,6DAAqC,CAAA;IACrC,yCAAiB,CAAA;IACjB,6CAAqB,CAAA;IACrB,yCAAiB,CAAA;IACjB,yCAAiB,CAAA;IACjB,qCAAa,CAAA;IACb,qCAAa,CAAA;IACb,6DAAqC,CAAA;IACrC,mCAAW,CAAA;IACX,qCAAa,CAAA;AACd,CAAC,EAnBW,oBAAoB,oCAApB,oBAAoB,QAmB/B;AAEY,QAAA,0BAA0B,GAA8B,IAAI,GAAG,CAAuB;IAClG,oBAAoB,CAAC,MAAM;IAC3B,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,QAAQ;IAC7B,oBAAoB,CAAC,KAAK;IAC1B,oBAAoB,CAAC,GAAG;IACxB,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,SAAS;IAC9B,oBAAoB,CAAC,IAAI;IACzB,oBAAoB,CAAC,gBAAgB;IACrC,oBAAoB,CAAC,gBAAgB;IACrC,oBAAoB,CAAC,MAAM;IAC3B,oBAAoB,CAAC,EAAE;CACvB,CAAC,CAAC;AACU,QAAA,0BAA0B,GAA8B,IAAI,GAAG,CAAuB,CAAC,oBAAoB,CAAC,MAAM,EAAE,oBAAoB,CAAC,OAAO,EAAE,oBAAoB,CAAC,KAAK,EAAE,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC;AAC5M,QAAA,2BAA2B,GAA8B,IAAI,GAAG,CAAuB,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,CAAC","sourcesContent":["export enum EApiPropertyDataType {\n\tBOOLEAN = \"boolean\",\n\tDATE = \"date\",\n\tDATE_TIME = \"date-time\",\n\tDOUBLE = \"double\",\n\tEMAIL = \"email\",\n\tFLOAT = \"float\",\n\tINTEGER = \"integer\",\n\tIP = \"ip\",\n\tLOWERCASE_STRING = \"lowercase-string\",\n\tNUMBER = \"number\",\n\tPASSWORD = \"password\",\n\tREGEXP = \"regexp\",\n\tSTRING = \"string\",\n\tTEXT = \"text\",\n\tTIME = \"time\",\n\tUPPERCASE_STRING = \"uppercase-string\",\n\tURL = \"url\",\n\tUUID = \"uuid\",\n}\n\nexport const EApiPropertyDataTypeString: Set<EApiPropertyDataType> = new Set<EApiPropertyDataType>([\n\tEApiPropertyDataType.STRING,\n\tEApiPropertyDataType.TEXT,\n\tEApiPropertyDataType.PASSWORD,\n\tEApiPropertyDataType.EMAIL,\n\tEApiPropertyDataType.URL,\n\tEApiPropertyDataType.UUID,\n\tEApiPropertyDataType.DATE,\n\tEApiPropertyDataType.DATE_TIME,\n\tEApiPropertyDataType.TIME,\n\tEApiPropertyDataType.UPPERCASE_STRING,\n\tEApiPropertyDataType.LOWERCASE_STRING,\n\tEApiPropertyDataType.REGEXP,\n\tEApiPropertyDataType.IP,\n]);\nexport const EApiPropertyDataTypeNumber: Set<EApiPropertyDataType> = new Set<EApiPropertyDataType>([EApiPropertyDataType.NUMBER, EApiPropertyDataType.INTEGER, EApiPropertyDataType.FLOAT, EApiPropertyDataType.DOUBLE]);\nexport const EApiPropertyDataTypeBoolean: Set<EApiPropertyDataType> = new Set<EApiPropertyDataType>([EApiPropertyDataType.BOOLEAN]);\n"]}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum EApiPropertyDateType {
|
|
2
|
+
CREATED = "created",
|
|
3
|
+
CREATED_AT_FROM = "createdAtFrom",
|
|
4
|
+
CREATED_AT_TO = "createdAtTo",
|
|
5
|
+
DATE = "date",
|
|
6
|
+
EXPIRES_IN = "expiresIn",
|
|
7
|
+
RECEIVED_AT = "receivedAt",
|
|
8
|
+
RECEIVED_AT_FROM = "receivedAtFrom",
|
|
9
|
+
RECEIVED_AT_TO = "receivedAtTo",
|
|
10
|
+
REFRESH_IN = "refreshIn",
|
|
11
|
+
UPDATED = "updated",
|
|
12
|
+
UPDATED_AT_FROM = "updatedAtFrom",
|
|
13
|
+
UPDATED_AT_TO = "updatedAtTo"
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EApiPropertyDateType = void 0;
|
|
4
|
+
var EApiPropertyDateType;
|
|
5
|
+
(function (EApiPropertyDateType) {
|
|
6
|
+
EApiPropertyDateType["CREATED"] = "created";
|
|
7
|
+
EApiPropertyDateType["CREATED_AT_FROM"] = "createdAtFrom";
|
|
8
|
+
EApiPropertyDateType["CREATED_AT_TO"] = "createdAtTo";
|
|
9
|
+
EApiPropertyDateType["DATE"] = "date";
|
|
10
|
+
EApiPropertyDateType["EXPIRES_IN"] = "expiresIn";
|
|
11
|
+
EApiPropertyDateType["RECEIVED_AT"] = "receivedAt";
|
|
12
|
+
EApiPropertyDateType["RECEIVED_AT_FROM"] = "receivedAtFrom";
|
|
13
|
+
EApiPropertyDateType["RECEIVED_AT_TO"] = "receivedAtTo";
|
|
14
|
+
EApiPropertyDateType["REFRESH_IN"] = "refreshIn";
|
|
15
|
+
EApiPropertyDateType["UPDATED"] = "updated";
|
|
16
|
+
EApiPropertyDateType["UPDATED_AT_FROM"] = "updatedAtFrom";
|
|
17
|
+
EApiPropertyDateType["UPDATED_AT_TO"] = "updatedAtTo";
|
|
18
|
+
})(EApiPropertyDateType || (exports.EApiPropertyDateType = EApiPropertyDateType = {}));
|
|
19
|
+
//# sourceMappingURL=date-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"date-type.enum.js","sourceRoot":"/","sources":["enum/decorator/api/property/date-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,oBAaX;AAbD,WAAY,oBAAoB;IAC/B,2CAAmB,CAAA;IACnB,yDAAiC,CAAA;IACjC,qDAA6B,CAAA;IAC7B,qCAAa,CAAA;IACb,gDAAwB,CAAA;IACxB,kDAA0B,CAAA;IAC1B,2DAAmC,CAAA;IACnC,uDAA+B,CAAA;IAC/B,gDAAwB,CAAA;IACxB,2CAAmB,CAAA;IACnB,yDAAiC,CAAA;IACjC,qDAA6B,CAAA;AAC9B,CAAC,EAbW,oBAAoB,oCAApB,oBAAoB,QAa/B","sourcesContent":["export enum EApiPropertyDateType {\n\tCREATED = \"created\",\n\tCREATED_AT_FROM = \"createdAtFrom\",\n\tCREATED_AT_TO = \"createdAtTo\",\n\tDATE = \"date\",\n\tEXPIRES_IN = \"expiresIn\",\n\tRECEIVED_AT = \"receivedAt\",\n\tRECEIVED_AT_FROM = \"receivedAtFrom\",\n\tRECEIVED_AT_TO = \"receivedAtTo\",\n\tREFRESH_IN = \"refreshIn\",\n\tUPDATED = \"updated\",\n\tUPDATED_AT_FROM = \"updatedAtFrom\",\n\tUPDATED_AT_TO = \"updatedAtTo\",\n}\n"]}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./data-type.enum"), exports);
|
|
18
|
+
__exportStar(require("./date-type.enum"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["enum/decorator/api/property/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,mDAAiC;AACjC,mDAAiC","sourcesContent":["export * from \"./data-type.enum\";\nexport * from \"./date-type.enum\";\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./api";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./api"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["enum/decorator/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wCAAsB","sourcesContent":["export * from \"./api\";\n"]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EFilterOrderDirection = void 0;
|
|
4
|
+
var EFilterOrderDirection;
|
|
5
|
+
(function (EFilterOrderDirection) {
|
|
6
|
+
EFilterOrderDirection["ASC"] = "asc";
|
|
7
|
+
EFilterOrderDirection["DESC"] = "desc";
|
|
8
|
+
})(EFilterOrderDirection || (exports.EFilterOrderDirection = EFilterOrderDirection = {}));
|
|
9
|
+
//# sourceMappingURL=filter-order-direction.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter-order-direction.enum.js","sourceRoot":"/","sources":["enum/filter-order-direction.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,qBAGX;AAHD,WAAY,qBAAqB;IAChC,oCAAW,CAAA;IACX,sCAAa,CAAA;AACd,CAAC,EAHW,qBAAqB,qCAArB,qBAAqB,QAGhC","sourcesContent":["export enum EFilterOrderDirection {\n\tASC = \"asc\",\n\tDESC = \"desc\",\n}\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./decorator"), exports);
|
|
18
|
+
__exportStar(require("./utility"), exports);
|
|
19
|
+
__exportStar(require("./filter-order-direction.enum"), exports);
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"/","sources":["enum/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,4CAA0B;AAC1B,gEAA8C","sourcesContent":["export * from \"./decorator\";\nexport * from \"./utility\";\nexport * from \"./filter-order-direction.enum\";\n"]}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export declare enum EErrorStringAction {
|
|
2
|
+
ADDRESS_NOT_MATCH_PATTERN = "{entity}_ADDRESS_NOT_MATCH_PATTERN",
|
|
3
|
+
ALREADY_EXISTS = "{entity}_ALREADY_EXISTS",
|
|
4
|
+
ALREADY_PAID = "{entity}_ALREADY_PAID",
|
|
5
|
+
AUTHENTICATION_ERROR = "{entity}_AUTHENTICATION_ERROR",
|
|
6
|
+
BLOCKED = "{entity}_BLOCKED",
|
|
7
|
+
CONFIRMATION_ERROR = "{entity}_CONFIRMATION_ERROR",
|
|
8
|
+
COUNT_ERROR = "{entity}_COUNT_ERROR",
|
|
9
|
+
CREATING_ERROR = "{entity}_CREATING_ERROR",
|
|
10
|
+
CREATING_MANY_ERROR = "{entity}_CREATING_MANY_ERROR",
|
|
11
|
+
DELETING_ERROR = "{entity}_DELETING_ERROR",
|
|
12
|
+
DISABLED_FOR_MERCHANT = "{entity}_DISABLED_FOR_MERCHANT",
|
|
13
|
+
DISABLED_FOR_USER = "{entity}_DISABLED_FOR_USER",
|
|
14
|
+
DISABLED_GLOBALLY = "{entity}_DISABLED_GLOBALLY",
|
|
15
|
+
EXISTS_CHECKING_ERROR = "{entity}_EXISTS_CHECKING_ERROR",
|
|
16
|
+
FETCHING_ALL_ERROR = "{entity}_FETCHING_ALL_ERROR",
|
|
17
|
+
FETCHING_ERROR = "{entity}_FETCHING_ERROR",
|
|
18
|
+
FETCHING_LIST_ERROR = "{entity}_FETCHING_LIST_ERROR",
|
|
19
|
+
FETCHING_SIMPLE_LIST_ERROR = "{entity}_FETCHING_SIMPLE_LIST_ERROR",
|
|
20
|
+
INSUFFICENT_FUNDS = "{entity}_INSUFFICENT_FUNDS",
|
|
21
|
+
INVALID_AMOUNT = "{entity}_INVALID_AMOUNT",
|
|
22
|
+
INVALID_CODE = "{entity}_INVALID_CODE",
|
|
23
|
+
INVALID_DATA_SPECIFIED = "{entity}_INVALID_DATA_SPECIFIED",
|
|
24
|
+
INVALID_HASHING_ALGORITM_CONFIGURED = "INVALID_HASHING_ALGORITHM_CONFIGURED",
|
|
25
|
+
INVALID_MESSAGE = "{entity}_INVALID_MESSAGE",
|
|
26
|
+
INVALID_SENDER = "{entity}_INVALID_SENDER",
|
|
27
|
+
INVALID_SIGNATURE = "INVALID_SIGNATURE",
|
|
28
|
+
INVALID_TYPE = "{entity}_INVALID_TYPE",
|
|
29
|
+
INVALIDATING_ERROR = "{entity}_INVALIDATING_ERROR",
|
|
30
|
+
LIST_PAGE_NOT_FOUND = "{entity}_LIST_PAGE_NOT_FOUND",
|
|
31
|
+
NOT_ACTIVE = "{entity}_NOT_ACTIVE",
|
|
32
|
+
NOT_CONFIGURED = "{entity}_NOT_CONFIGURED",
|
|
33
|
+
NOT_CONNECTED = "{entity}_NOT_CONNECTED",
|
|
34
|
+
NOT_FINAL_STATUS = "{entity}_NOT_FINAL_STATUS",
|
|
35
|
+
NOT_FOUND = "{entity}_NOT_FOUND",
|
|
36
|
+
NOT_SPECIFIED_ID_FOR_UNIQUE = "{entity}_NOT_SPECIFIED_ID_FOR_UNIQUE",
|
|
37
|
+
NOT_SUPPORTS_THIS_DIRECTION_FOR_MERCHANT = "{entity}_NOT_SUPPORTS_THIS_DIRECTION_FOR_MERCHANT",
|
|
38
|
+
NOT_SUPPORTS_THIS_DIRECTION_FOR_USER = "{entity}_NOT_SUPPORTS_THIS_DIRECTION_FOR_USER",
|
|
39
|
+
NOT_SUPPORTS_THIS_DIRECTION_GLOBALLY = "{entity}_NOT_SUPPORTS_THIS_DIRECTION_GLOBALLY",
|
|
40
|
+
OUT_OF_GLOBAL_LIMITS = "{entity}_OUT_OF_GLOBAL_LIMITS",
|
|
41
|
+
OUT_OF_GLOBAL_LIMITS_WITH_FEE = "{entity}_OUT_OF_GLOBAL_LIMITS_WITH_FEE",
|
|
42
|
+
OUT_OF_MERCHANT_LIMITS = "{entity}_OUT_OF_MERCHANT_LIMITS",
|
|
43
|
+
OUT_OF_MERCHANT_LIMITS_WITH_FEE = "{entity}_OUT_OF_MERCHANT_LIMITS_WITH_FEE",
|
|
44
|
+
OUT_OF_USER_LIMITS = "{entity}_OUT_OF_USER_LIMITS",
|
|
45
|
+
OUT_OF_USER_LIMITS_WITH_FEE = "{entity}_OUT_OF_USER_LIMITS_WITH_FEE",
|
|
46
|
+
PROPERTY_ALREADY_SET = "{entity}_PROPERTY_ALREADY_SET",
|
|
47
|
+
REDEEMING_ERROR = "{entity}_REDEEMING_ERROR",
|
|
48
|
+
REGISTRATION_ERROR = "{entity}_REGISTRATION_ERROR",
|
|
49
|
+
SENDING_ERROR = "{entity}_SENDING_ERROR",
|
|
50
|
+
SIMPLE_LIST_NOT_FOUND = "{entity}_SIMPLE_LIST_NOT_FOUND",
|
|
51
|
+
TIMESTAMP_EXPIRED = "TIMESTAMP_EXPIRED",
|
|
52
|
+
TIMESTAMP_IN_FUTURE = "{entity}_IN_FUTURE",
|
|
53
|
+
TOO_MANY_REQUESTS = "{entity}_TOO_MANY_REQUESTS",
|
|
54
|
+
UPDATING_ERROR = "{entity}_UPDATING_ERROR"
|
|
55
|
+
}
|