@mondart/nestjs-common-module 1.1.44 → 1.1.46
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/lib/index.d.ts +1 -0
- package/dist/lib/index.js +1 -0
- package/dist/lib/saga/constant/index.d.ts +1 -0
- package/dist/lib/saga/constant/index.js +17 -0
- package/dist/lib/saga/constant/saga-handler.const.d.ts +1 -0
- package/dist/lib/saga/constant/saga-handler.const.js +4 -0
- package/dist/lib/saga/decorators/index.d.ts +1 -0
- package/dist/lib/saga/decorators/index.js +17 -0
- package/dist/lib/saga/decorators/saga.decorator.d.ts +4 -0
- package/dist/lib/saga/decorators/saga.decorator.js +15 -0
- package/dist/lib/saga/enums/index.d.ts +1 -0
- package/dist/lib/saga/enums/index.js +17 -0
- package/dist/lib/saga/enums/saga-status.enum.d.ts +8 -0
- package/dist/lib/saga/enums/saga-status.enum.js +12 -0
- package/dist/lib/saga/exceptions/index.d.ts +2 -0
- package/dist/lib/saga/exceptions/index.js +18 -0
- package/dist/lib/saga/exceptions/saga-compensation.exception.d.ts +5 -0
- package/dist/lib/saga/exceptions/saga-compensation.exception.js +13 -0
- package/dist/lib/saga/exceptions/saga-invocation.exception.d.ts +5 -0
- package/dist/lib/saga/exceptions/saga-invocation.exception.js +13 -0
- package/dist/lib/saga/helpers/index.d.ts +2 -0
- package/dist/lib/saga/helpers/index.js +18 -0
- package/dist/lib/saga/helpers/saga-exception-converter.helper.d.ts +3 -0
- package/dist/lib/saga/helpers/saga-exception-converter.helper.js +14 -0
- package/dist/lib/saga/helpers/wrap-if-not-error.helper.d.ts +1 -0
- package/dist/lib/saga/helpers/wrap-if-not-error.helper.js +9 -0
- package/dist/lib/saga/index.d.ts +6 -0
- package/dist/lib/saga/index.js +14 -0
- package/dist/lib/saga/interfaces/index.d.ts +1 -0
- package/dist/lib/saga/interfaces/index.js +17 -0
- package/dist/lib/saga/interfaces/saga-module-register.interface.d.ts +6 -0
- package/dist/lib/saga/interfaces/saga-module-register.interface.js +3 -0
- package/dist/lib/saga/saga.module.d.ts +5 -0
- package/dist/lib/saga/saga.module.js +49 -0
- package/dist/lib/saga/services/index.d.ts +4 -0
- package/dist/lib/saga/services/index.js +20 -0
- package/dist/lib/saga/services/saga-builder.service.d.ts +8 -0
- package/dist/lib/saga/services/saga-builder.service.js +40 -0
- package/dist/lib/saga/services/saga-flow.service.d.ts +14 -0
- package/dist/lib/saga/services/saga-flow.service.js +39 -0
- package/dist/lib/saga/services/saga-step.service.d.ts +16 -0
- package/dist/lib/saga/services/saga-step.service.js +37 -0
- package/dist/lib/saga/services/saga.service.d.ts +11 -0
- package/dist/lib/saga/services/saga.service.js +44 -0
- package/dist/lib/saga/types/builder-method-return-result.type.d.ts +4 -0
- package/dist/lib/saga/types/builder-method-return-result.type.js +2 -0
- package/dist/lib/saga/types/builder-method-step-result.type.d.ts +7 -0
- package/dist/lib/saga/types/builder-method-step-result.type.js +2 -0
- package/dist/lib/saga/types/condition.type.d.ts +1 -0
- package/dist/lib/saga/types/condition.type.js +2 -0
- package/dist/lib/saga/types/index.d.ts +6 -0
- package/dist/lib/saga/types/index.js +22 -0
- package/dist/lib/saga/types/next-options.type.d.ts +12 -0
- package/dist/lib/saga/types/next-options.type.js +2 -0
- package/dist/lib/saga/types/saga-fn.type.d.ts +1 -0
- package/dist/lib/saga/types/saga-fn.type.js +2 -0
- package/dist/lib/saga/types/saga.type.d.ts +4 -0
- package/dist/lib/saga/types/saga.type.js +2 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mondart/nestjs-common-module",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.46",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Mondart"
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"@nestjs/common": "^10.0.0",
|
|
26
26
|
"@nestjs/config": "^3.2.2",
|
|
27
27
|
"@nestjs/core": "^10.0.0",
|
|
28
|
+
"@nestjs/cqrs": "^10.2.7",
|
|
28
29
|
"@nestjs/microservices": "^10.3.10",
|
|
29
30
|
"@nestjs/platform-express": "^10.0.0",
|
|
30
31
|
"@nestjs/swagger": "^7.3.1",
|