@mondart/nestjs-common-module-saga 3.1.5 → 3.1.7
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 +130 -0
- package/dist/decorators/saga.decorator.d.ts.map +1 -1
- package/dist/decorators/saga.decorator.js.map +1 -1
- package/dist/enums/saga-status.enum.d.ts.map +1 -1
- package/dist/enums/saga-status.enum.js.map +1 -1
- package/dist/exceptions/saga-compensation.exception.d.ts.map +1 -1
- package/dist/exceptions/saga-compensation.exception.js.map +1 -1
- package/dist/exceptions/saga-invocation.exception.d.ts.map +1 -1
- package/dist/exceptions/saga-invocation.exception.js.map +1 -1
- package/dist/helpers/saga-exception-converter.helper.d.ts.map +1 -1
- package/dist/helpers/saga-exception-converter.helper.js.map +1 -1
- package/dist/helpers/wrap-if-not-error.helper.d.ts.map +1 -1
- package/dist/helpers/wrap-if-not-error.helper.js.map +1 -1
- package/dist/interfaces/saga-module-register.interface.d.ts.map +1 -1
- package/dist/saga.module.d.ts.map +1 -1
- package/dist/saga.module.js.map +1 -1
- package/dist/services/saga-builder.service.d.ts.map +1 -1
- package/dist/services/saga-builder.service.js.map +1 -1
- package/dist/services/saga-flow.service.d.ts.map +1 -1
- package/dist/services/saga-flow.service.js.map +1 -1
- package/dist/services/saga-step.service.d.ts.map +1 -1
- package/dist/services/saga-step.service.js.map +1 -1
- package/dist/services/saga.service.d.ts.map +1 -1
- package/dist/services/saga.service.js.map +1 -1
- package/dist/types/saga-step-class.type.d.ts.map +1 -1
- package/dist/types/saga-step-class.type.js.map +1 -1
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
# @mondart/nestjs-common-module-saga
|
|
2
|
+
|
|
3
|
+
Saga/compensation-flow orchestration for `@nestjs/cqrs`: a `@Saga()`
|
|
4
|
+
decorator that binds a class to a command, and a `SagaBuilder` for
|
|
5
|
+
describing that class's work as an ordered list of steps, each with an
|
|
6
|
+
optional rollback. When a step fails partway through, already-completed
|
|
7
|
+
steps are compensated in reverse before the failure is rethrown.
|
|
8
|
+
|
|
9
|
+
## Defining a saga
|
|
10
|
+
|
|
11
|
+
```ts
|
|
12
|
+
import { Saga, SagaBuilder } from '@mondart/nestjs-common-module-saga';
|
|
13
|
+
|
|
14
|
+
class PlaceOrderCommand {
|
|
15
|
+
constructor(
|
|
16
|
+
public readonly orderId: string,
|
|
17
|
+
public readonly items: OrderItem[],
|
|
18
|
+
) {}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@Saga(PlaceOrderCommand)
|
|
22
|
+
export class PlaceOrderSaga {
|
|
23
|
+
saga = new SagaBuilder<PlaceOrderCommand>()
|
|
24
|
+
.step('reserve-inventory')
|
|
25
|
+
.invoke(this.reserveInventory)
|
|
26
|
+
.withCompensation(this.releaseInventory)
|
|
27
|
+
.step('charge-payment')
|
|
28
|
+
.invoke(this.chargePayment)
|
|
29
|
+
.withCompensation(this.refundPayment)
|
|
30
|
+
.build();
|
|
31
|
+
|
|
32
|
+
constructor(
|
|
33
|
+
private readonly inventoryService: InventoryService,
|
|
34
|
+
private readonly paymentService: PaymentService,
|
|
35
|
+
) {}
|
|
36
|
+
|
|
37
|
+
async reserveInventory(cmd: PlaceOrderCommand) {
|
|
38
|
+
await this.inventoryService.reserve(cmd.items);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
async releaseInventory(cmd: PlaceOrderCommand) {
|
|
42
|
+
await this.inventoryService.release(cmd.items);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
async chargePayment(cmd: PlaceOrderCommand) {
|
|
46
|
+
await this.paymentService.charge(cmd.orderId);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
async refundPayment(cmd: PlaceOrderCommand) {
|
|
50
|
+
await this.paymentService.refund(cmd.orderId);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
`@Saga(PlaceOrderCommand)` records `PlaceOrderCommand` as the command this
|
|
56
|
+
class handles, and overwrites `execute` so dispatching the command runs
|
|
57
|
+
`this.saga.execute(cmd)`. Reference step methods unbound (`this.reserveInventory`,
|
|
58
|
+
not an arrow function) — `SagaModule` rebinds them to the fully-constructed
|
|
59
|
+
instance (with injected services in place) right before invoking the saga.
|
|
60
|
+
|
|
61
|
+
Steps run in the order declared. `.withCompensation()` is optional per step;
|
|
62
|
+
steps without one are simply skipped during rollback. When the saga doesn't
|
|
63
|
+
need to return a value, chain `.build()` straight off the last step (or its
|
|
64
|
+
`.withCompensation()`); to return a value, add `.return((cmd) => ...)` before
|
|
65
|
+
`.build()`.
|
|
66
|
+
|
|
67
|
+
## Registration
|
|
68
|
+
|
|
69
|
+
```ts
|
|
70
|
+
import { SagaModule } from '@mondart/nestjs-common-module-saga';
|
|
71
|
+
|
|
72
|
+
@Module({
|
|
73
|
+
imports: [
|
|
74
|
+
SagaModule.register({
|
|
75
|
+
sagas: [PlaceOrderSaga],
|
|
76
|
+
providers: [InventoryService, PaymentService],
|
|
77
|
+
}),
|
|
78
|
+
],
|
|
79
|
+
})
|
|
80
|
+
export class AppModule {}
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
For each class in `sagas`, `SagaModule` registers a CQRS `@CommandHandler`
|
|
84
|
+
for the command it was decorated with. Dispatch it like any other command:
|
|
85
|
+
|
|
86
|
+
```ts
|
|
87
|
+
await this.commandBus.execute(new PlaceOrderCommand(orderId, items));
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
Each dispatch creates a fresh (`Scope.REQUEST`) instance of the saga class
|
|
91
|
+
via `ModuleRef`, so per-execution state on the class is safe. On application
|
|
92
|
+
shutdown, `SagaModule` waits for any sagas still in flight to finish before
|
|
93
|
+
letting the module destroy proceed.
|
|
94
|
+
|
|
95
|
+
## Status and failure handling
|
|
96
|
+
|
|
97
|
+
`SagaCore.status` (the object built by `SagaBuilder`, exposed as
|
|
98
|
+
`saga` on the decorated class) reports where the run is in its lifecycle via
|
|
99
|
+
`SagaStatus`: `New` -> `InProgress` -> either `Complete`, or — on failure —
|
|
100
|
+
`InCompensation` -> `CompensationComplete` / `CompensationError`.
|
|
101
|
+
|
|
102
|
+
If a step throws, the already-completed steps are compensated in reverse
|
|
103
|
+
order:
|
|
104
|
+
|
|
105
|
+
- If compensation succeeds, the original failure is rethrown wrapped in a
|
|
106
|
+
**`SagaInvocationException`** (`.originalError`, `.step` — the step that
|
|
107
|
+
failed).
|
|
108
|
+
- If compensation itself throws, a **`SagaCompensationException`** is thrown
|
|
109
|
+
instead (`.originalError`, `.step` — the compensation step that failed),
|
|
110
|
+
since a failed rollback needs separate attention from the original error.
|
|
111
|
+
|
|
112
|
+
```ts
|
|
113
|
+
import {
|
|
114
|
+
SagaInvocationException,
|
|
115
|
+
SagaCompensationException,
|
|
116
|
+
SagaExceptionConverterHelper,
|
|
117
|
+
} from '@mondart/nestjs-common-module-saga';
|
|
118
|
+
|
|
119
|
+
try {
|
|
120
|
+
await this.commandBus.execute(new PlaceOrderCommand(orderId, items));
|
|
121
|
+
} catch (err) {
|
|
122
|
+
if (err instanceof SagaInvocationException) {
|
|
123
|
+
// Re-throws err.originalError as the matching @nestjs/common HTTP
|
|
124
|
+
// exception (by its constructor name), or InternalServerErrorException
|
|
125
|
+
// if there's no match.
|
|
126
|
+
SagaExceptionConverterHelper.toHttpException(err.originalError);
|
|
127
|
+
}
|
|
128
|
+
throw err;
|
|
129
|
+
}
|
|
130
|
+
```
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga.decorator.d.ts","sourceRoot":"","sources":["../../src/decorators/saga.decorator.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAqB,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"saga.decorator.d.ts","sourceRoot":"","sources":["../../src/decorators/saga.decorator.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAqB,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAYpC,wBAAgB,IAAI,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,IAC9B,CAAC,EAAE,CAAC,SAAS,IAAI,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,EAAE,QAAQ,CAAC,KAAG,CAAC,CAOlE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga.decorator.js","sourceRoot":"","sources":["../../src/decorators/saga.decorator.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"saga.decorator.js","sourceRoot":"","sources":["../../src/decorators/saga.decorator.ts"],"names":[],"mappings":";;AAcA,oBAQC;AAtBD,4BAA0B;AAC1B,2CAAyD;AAEzD,0CAA+C;AAW/C,SAAgB,IAAI,CAAI,OAAgB;IACtC,OAAO,CAA6C,MAAS,EAAK,EAAE;QAClE,MAAM,CAAC,SAAS,CAAC,OAAO,GAAG,SAAS,OAAO,CAAC,GAAM;YAChD,OAAO,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;QAChC,CAAC,CAAC;QACF,OAAO,CAAC,cAAc,CAAC,2BAAgB,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;QAC1D,OAAO,IAAA,mBAAU,EAAC,EAAE,KAAK,EAAE,cAAK,CAAC,OAAO,EAAE,CAAC,CAAC,MAAM,CAAkB,CAAC;IACvE,CAAC,CAAC;AACJ,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-status.enum.d.ts","sourceRoot":"","sources":["../../src/enums/saga-status.enum.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"saga-status.enum.d.ts","sourceRoot":"","sources":["../../src/enums/saga-status.enum.ts"],"names":[],"mappings":"AAMA,oBAAY,UAAU;IACpB,GAAG,QAAQ;IACX,UAAU,gBAAgB;IAC1B,cAAc,oBAAoB;IAClC,QAAQ,aAAa;IACrB,oBAAoB,0BAA0B;IAC9C,iBAAiB,uBAAuB;CACzC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-status.enum.js","sourceRoot":"","sources":["../../src/enums/saga-status.enum.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"saga-status.enum.js","sourceRoot":"","sources":["../../src/enums/saga-status.enum.ts"],"names":[],"mappings":";;;AAMA,IAAY,UAOX;AAPD,WAAY,UAAU;IACpB,yBAAW,CAAA;IACX,wCAA0B,CAAA;IAC1B,gDAAkC,CAAA;IAClC,mCAAqB,CAAA;IACrB,4DAA8C,CAAA;IAC9C,sDAAwC,CAAA;AAC1C,CAAC,EAPW,UAAU,0BAAV,UAAU,QAOrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-compensation.exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/saga-compensation.exception.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"saga-compensation.exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/saga-compensation.exception.ts"],"names":[],"mappings":"AASA,qBAAa,yBAA0B,SAAQ,KAAK;IAEhD,QAAQ,CAAC,aAAa,EAAE,KAAK;IAC7B,QAAQ,CAAC,IAAI,EAAE,MAAM;gBADZ,aAAa,EAAE,KAAK,EACpB,IAAI,EAAE,MAAM;CAMxB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-compensation.exception.js","sourceRoot":"","sources":["../../src/exceptions/saga-compensation.exception.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"saga-compensation.exception.js","sourceRoot":"","sources":["../../src/exceptions/saga-compensation.exception.ts"],"names":[],"mappings":";;;AASA,MAAa,yBAA0B,SAAQ,KAAK;IAClD,YACW,aAAoB,EACpB,IAAY;QAErB,KAAK,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QAHpB,kBAAa,GAAb,aAAa,CAAO;QACpB,SAAI,GAAJ,IAAI,CAAQ;QAGrB,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,yBAAyB,CAAC,SAAS,CAAC,CAAC;QACjE,IAAI,CAAC,KAAK,GAAG,aAAa,CAAC,KAAK,CAAC;IACnC,CAAC;CACF;AATD,8DASC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-invocation.exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/saga-invocation.exception.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"saga-invocation.exception.d.ts","sourceRoot":"","sources":["../../src/exceptions/saga-invocation.exception.ts"],"names":[],"mappings":"AAOA,qBAAa,uBAAwB,SAAQ,KAAK;IAE9C,QAAQ,CAAC,aAAa,EAAE,KAAK;IAC7B,QAAQ,CAAC,IAAI,EAAE,MAAM;gBADZ,aAAa,EAAE,KAAK,EACpB,IAAI,EAAE,MAAM;CAMxB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-invocation.exception.js","sourceRoot":"","sources":["../../src/exceptions/saga-invocation.exception.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"saga-invocation.exception.js","sourceRoot":"","sources":["../../src/exceptions/saga-invocation.exception.ts"],"names":[],"mappings":";;;AAOA,MAAa,uBAAwB,SAAQ,KAAK;IAChD,YACW,aAAoB,EACpB,IAAY;QAErB,KAAK,CAAC,GAAG,IAAI,KAAK,aAAa,CAAC,OAAO,EAAE,CAAC,CAAC;QAHlC,kBAAa,GAAb,aAAa,CAAO;QACpB,SAAI,GAAJ,IAAI,CAAQ;QAGrB,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,uBAAuB,CAAC,SAAS,CAAC,CAAC;QAC/D,IAAI,CAAC,KAAK,GAAG,aAAa,CAAC,KAAK,CAAC;IACnC,CAAC;CACF;AATD,0DASC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-exception-converter.helper.d.ts","sourceRoot":"","sources":["../../src/helpers/saga-exception-converter.helper.ts"],"names":[],"mappings":"AAGA,qBAAa,4BAA4B;
|
|
1
|
+
{"version":3,"file":"saga-exception-converter.helper.d.ts","sourceRoot":"","sources":["../../src/helpers/saga-exception-converter.helper.ts"],"names":[],"mappings":"AAGA,qBAAa,4BAA4B;IAQvC,MAAM,CAAC,eAAe,CAAC,SAAS,EAAE,GAAG;CAKtC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-exception-converter.helper.js","sourceRoot":"","sources":["../../src/helpers/saga-exception-converter.helper.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAwD;AACxD,2CAA8D;AAE9D,MAAa,4BAA4B;
|
|
1
|
+
{"version":3,"file":"saga-exception-converter.helper.js","sourceRoot":"","sources":["../../src/helpers/saga-exception-converter.helper.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAwD;AACxD,2CAA8D;AAE9D,MAAa,4BAA4B;IAQvC,MAAM,CAAC,eAAe,CAAC,SAAc;QACnC,IAAI,UAAU,CAAC,SAAS,EAAE,IAAI,CAAC;YAC7B,MAAM,IAAI,UAAU,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;;YACxD,MAAM,IAAI,qCAA4B,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;IACnE,CAAC;CACF;AAbD,oEAaC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wrap-if-not-error.helper.d.ts","sourceRoot":"","sources":["../../src/helpers/wrap-if-not-error.helper.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"wrap-if-not-error.helper.d.ts","sourceRoot":"","sources":["../../src/helpers/wrap-if-not-error.helper.ts"],"names":[],"mappings":"AACA,wBAAgB,cAAc,CAAC,CAAC,EAAE,OAAO,GAAG,KAAK,CAKhD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wrap-if-not-error.helper.js","sourceRoot":"","sources":["../../src/helpers/wrap-if-not-error.helper.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"wrap-if-not-error.helper.js","sourceRoot":"","sources":["../../src/helpers/wrap-if-not-error.helper.ts"],"names":[],"mappings":";;AACA,wCAKC;AALD,SAAgB,cAAc,CAAC,CAAU;IACvC,IAAI,CAAC,CAAC,CAAC,YAAY,KAAK,CAAC,EAAE,CAAC;QAC1B,OAAO,IAAI,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;IAC9B,CAAC;IACD,OAAO,CAAC,CAAC;AACX,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-module-register.interface.d.ts","sourceRoot":"","sources":["../../src/interfaces/saga-module-register.interface.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,MAAM,WAAW,wBACf,SAAQ,IAAI,CAAC,cAAc,EAAE,SAAS,GAAG,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"saga-module-register.interface.d.ts","sourceRoot":"","sources":["../../src/interfaces/saga-module-register.interface.ts"],"names":[],"mappings":"AAAA,OAAO,kBAAkB,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,MAAM,WAAW,wBACf,SAAQ,IAAI,CAAC,cAAc,EAAE,SAAS,GAAG,WAAW,CAAC;IAErD,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC;CACxC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga.module.d.ts","sourceRoot":"","sources":["../src/saga.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAU,eAAe,EAAQ,MAAM,gBAAgB,CAAC;AAG9E,OAAO,EAAE,wBAAwB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"saga.module.d.ts","sourceRoot":"","sources":["../src/saga.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAU,eAAe,EAAQ,MAAM,gBAAgB,CAAC;AAG9E,OAAO,EAAE,wBAAwB,EAAE,MAAM,cAAc,CAAC;AAYxD,qBAAa,UAAW,YAAW,eAAe;IAChD,OAAO,CAAC,MAAM,CAAC,WAAW,CAAgB;IAC1C,OAAO,CAAC,MAAM,CAAoD;IAOlE,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,wBAAwB,GAAG,aAAa;IA6C1D,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;CAavC"}
|
package/dist/saga.module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga.module.js","sourceRoot":"","sources":["../src/saga.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA8E;AAC9E,uCAA2E;AAC3E,uCAAyC;AAEzC,yCAA8C;
|
|
1
|
+
{"version":3,"file":"saga.module.js","sourceRoot":"","sources":["../src/saga.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA8E;AAC9E,uCAA2E;AAC3E,uCAAyC;AAEzC,yCAA8C;AAW9C,MAAa,UAAU;IAAvB;QAEU,WAAM,GAAG,IAAI,eAAM,CAAC,UAAU,CAAC,IAAI,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAiEpE,CAAC;IA1DQ,AAAP,MAAM,CAAC,QAAQ,CAAC,MAAgC;QAC9C,OAAO;YACL,OAAO,EAAE,CAAC,iBAAU,EAAE,GAAG,CAAC,MAAM,CAAC,OAAO,IAAI,EAAE,CAAC,CAAC;YAChD,MAAM,EAAE,UAAU;YAClB,SAAS,EAAE;gBACT,GAAG,CAAC,MAAM,CAAC,SAAS,IAAI,EAAE,CAAC;gBAC3B,GAAG,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;oBAC/B,MAAM,OAAO,GAAc,OAAO,CAAC,WAAW,CAC5C,2BAAgB,EAChB,IAAI,CACL,CAAC;oBAEF,IACM,kBAAkB,GADxB,MACM,kBAAkB;wBACtB,YAAoB,SAAoB;4BAApB,cAAS,GAAT,SAAS,CAAW;wBAAG,CAAC;wBAE5C,KAAK,CAAC,OAAO,CAAC,GAAQ;4BACpB,MAAM,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC;4BAC/C,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;4BAEpC,IAAI,CAAC;gCACH,MAAM,CAAC,GACL,MAAM,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;gCACpC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gCACf,OAAO,MAAM,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;4BAC9B,CAAC;4BAAC,OAAO,GAAG,EAAE,CAAC;gCACb,MAAM,GAAG,CAAC;4BACZ,CAAC;oCAAS,CAAC;gCACT,UAAU,CAAC,WAAW,CAAC,GAAG,EAAE,CAAC;4BAC/B,CAAC;wBACH,CAAC;qBACF,CAAA;oBAlBK,kBAAkB;wBADvB,IAAA,qBAAc,EAAC,OAAO,CAAC;yDAES,gBAAS;uBADpC,kBAAkB,CAkBvB;oBAED,MAAM,CAAC,cAAc,CAAC,kBAAkB,EAAE,MAAM,EAAE;wBAChD,QAAQ,EAAE,IAAI;wBACd,KAAK,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC;qBACjD,CAAC,CAAC;oBAEH,OAAO,CAAC,IAAI,EAAE,kBAAkB,CAAC,CAAC;gBACpC,CAAC,CAAC;aACH;SACF,CAAC;IACJ,CAAC;IAGD,KAAK,CAAC,eAAe;QACnB,MAAM,IAAI,OAAO,CAAS,CAAC,OAAO,EAAE,EAAE;YACpC,MAAM,UAAU,GAAG,GAAG,EAAE;gBACtB,IAAI,UAAU,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;oBAClC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC;oBACrD,UAAU,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;gBAC/B,CAAC;qBAAM,CAAC;oBACN,OAAO,CAAC,MAAM,CAAC,CAAC;gBAClB,CAAC;YACH,CAAC,CAAC;YACF,UAAU,EAAE,CAAC;QACf,CAAC,CAAC,CAAC;IACL,CAAC;;AAlEH,gCAmEC;AAlEgB,sBAAW,GAAa,EAAE,AAAf,CAAgB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-builder.service.d.ts","sourceRoot":"","sources":["../../src/services/saga-builder.service.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,uBAAuB,EAGxB,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"saga-builder.service.d.ts","sourceRoot":"","sources":["../../src/services/saga-builder.service.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,uBAAuB,EAGxB,MAAM,UAAU,CAAC;AAUlB,qBAAa,WAAW,CAAC,CAAC,EAAE,CAAC,GAAG,IAAI;IAClC,OAAO,CAAC,KAAK,CAAiB;IAC9B,OAAO,CAAC,QAAQ,CAAmD;IAGnE,IAAI,CAAC,IAAI,SAAK,GAAG,uBAAuB,CAAC,CAAC,EAAE,CAAC,CAAC;IA6B9C,OAAO,CAAC,MAAM;IAKd,OAAO,CAAC,KAAK;CAGd"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-builder.service.js","sourceRoot":"","sources":["../../src/services/saga-builder.service.ts"],"names":[],"mappings":";;;AAAA,2DAA2C;AAO3C,iDAA0C;AAC1C,2DAA+C;
|
|
1
|
+
{"version":3,"file":"saga-builder.service.js","sourceRoot":"","sources":["../../src/services/saga-builder.service.ts"],"names":[],"mappings":";;;AAAA,2DAA2C;AAO3C,iDAA0C;AAC1C,2DAA+C;AAQ/C,MAAa,WAAW;IAAxB;QACU,UAAK,GAAc,EAAE,CAAC;QACtB,aAAQ,GAAa,CAAC,GAAG,EAAE,CAAC,KAAK,CAAY,CAAa,CAAC;IAwCrE,CAAC;IArCC,IAAI,CAAC,IAAI,GAAG,EAAE;QACZ,OAAO;YACL,MAAM,EAAE,CACN,MAAa,EAGb,EAAE;gBACF,MAAM,IAAI,GAAG,IAAI,wBAAI,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;gBACvD,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBAEtB,MAAM,WAAW,GAAG;oBAClB,IAAI,EAAE,CAAC,IAAI,GAAG,EAAE,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC;oBACpC,MAAM,EAAE,CAAC,MAAgB,EAAE,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;oBACjD,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,KAAK,EAAE;iBACL,CAAC;gBAEvB,OAAO;oBACL,GAAG,WAAW;oBACd,gBAAgB,EAAE,CAAC,MAAa,EAAE,EAAE;wBAClC,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;wBAC7B,OAAO,WAAW,CAAC;oBACrB,CAAC;iBAGF,CAAC;YACJ,CAAC;SACF,CAAC;IACJ,CAAC;IAEO,MAAM,CAAC,MAAgB;QAC7B,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC;QACvB,OAAO,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,CAAC;IACvC,CAAC;IAEO,KAAK;QACX,OAAO,IAAI,uBAAQ,CAAO,IAAI,4BAAQ,CAAO,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;IAC3E,CAAC;CACF;AA1CD,kCA0CC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-flow.service.d.ts","sourceRoot":"","sources":["../../src/services/saga-flow.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAC3C,OAAO,EAAE,EAAE,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"saga-flow.service.d.ts","sourceRoot":"","sources":["../../src/services/saga-flow.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAC;AAC3C,OAAO,EAAE,EAAE,EAAE,MAAM,UAAU,CAAC;AAO9B,qBAAa,QAAQ,CAAC,CAAC,EAAE,CAAC;IAMtB,OAAO,CAAC,QAAQ,CAAC,KAAK;IACtB,OAAO,CAAC,QAAQ;IANlB,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAiB;IACnD,OAAO,CAAC,SAAS,CAAW;IAC5B,OAAO,CAAC,cAAc,CAAS;gBAGZ,KAAK,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,EACzB,QAAQ,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC;IAM5B,IAAI,OAAO,IAAI,IAAI,CAAC,CAAC,CAAC,CAErB;IAGK,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC;IAiB7B,UAAU,CAAC,MAAM,EAAE,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAS1C,IAAI,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;CAKzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-flow.service.js","sourceRoot":"","sources":["../../src/services/saga-flow.service.ts"],"names":[],"mappings":";;;AAAA,2DAA2C;
|
|
1
|
+
{"version":3,"file":"saga-flow.service.js","sourceRoot":"","sources":["../../src/services/saga-flow.service.ts"],"names":[],"mappings":";;;AAAA,2DAA2C;AAQ3C,MAAa,QAAQ;IAKnB,YACmB,KAAgB,EACzB,QAAkB;QADT,UAAK,GAAL,KAAK,CAAW;QACzB,aAAQ,GAAR,QAAQ,CAAU;QANX,sBAAiB,GAAc,EAAE,CAAC;QAQjD,IAAI,CAAC,cAAc,GAAG,QAAQ,CAAC,IAAI,IAAI,QAAQ,CAAC;IAClD,CAAC;IAGD,IAAI,OAAO;QACT,OAAO,IAAI,CAAC,SAAS,CAAC;IACxB,CAAC;IAGD,KAAK,CAAC,MAAM,CAAC,MAAS;QACpB,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;YAC9B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;YACtB,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAC1B,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACpC,CAAC;QACD,MAAM,IAAI,GAAG,IAAI,wBAAI,CACnB,IAAI,CAAC,cAAc,EACnB,IAAI,CAAC,KAAK,CAAC,MAAM,EACjB,IAAI,CAAC,QAAQ,CACd,CAAC;QAEF,IAAI,CAAC,SAAS,GAAG,IAAW,CAAC;QAC7B,OAAO,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7B,CAAC;IAGD,KAAK,CAAC,UAAU,CAAC,MAAS;QACxB,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,iBAAiB,CAAC,OAAO,EAAE,EAAE,CAAC;YACpD,IAAI,CAAC,IAAI,CAAC,eAAe;gBAAE,SAAS;YACpC,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC;YACtB,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;QAChC,CAAC;IACH,CAAC;IAGD,IAAI,CAAC,GAAY;QACf,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;QAC7C,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACxC,OAAO,IAAI,CAAC;IACd,CAAC;CACF;AAjDD,4BAiDC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-step.service.d.ts","sourceRoot":"","sources":["../../src/services/saga-step.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"saga-step.service.d.ts","sourceRoot":"","sources":["../../src/services/saga-step.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,UAAU,CAAC;AAG9B,qBAAa,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,IAAI;IAMzB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,KAAK;IACN,UAAU,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC;IAP7B,OAAO,CAAC,YAAY,CAAC,CAAuB;IAC5C,OAAO,CAAC,gBAAgB,CAAM;IAC9B,OAAO,CAAC,SAAS,CAAM;gBAGb,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,EACd,UAAU,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC;IAK7B,IAAI,IAAI,IAAI,MAAM,CAEjB;IAED,IAAI,eAAe,IAAI,OAAO,CAE7B;IAGK,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC;IASnC,UAAU,CAAC,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC;IAQhC,eAAe,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC;IAM/B,IAAI,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;CAKzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-step.service.js","sourceRoot":"","sources":["../../src/services/saga-step.service.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"saga-step.service.js","sourceRoot":"","sources":["../../src/services/saga-step.service.ts"],"names":[],"mappings":";;;AAGA,MAAa,IAAI;IAKf,YACU,QAAgB,EAChB,KAAa,EACd,UAAoB;QAFnB,aAAQ,GAAR,QAAQ,CAAQ;QAChB,UAAK,GAAL,KAAK,CAAQ;QACd,eAAU,GAAV,UAAU,CAAU;QANrB,qBAAgB,GAAG,EAAE,CAAC;QACtB,cAAS,GAAG,EAAE,CAAC;QAOrB,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,QAAQ,IAAI,UAAU,CAAC,IAAI,IAAI,OAAO,KAAK,EAAE,CAAC;IACtE,CAAC;IAED,IAAI,IAAI;QACN,OAAO,IAAI,CAAC,SAAS,CAAC;IACxB,CAAC;IAED,IAAI,eAAe;QACjB,OAAO,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC;IAC7B,CAAC;IAGD,KAAK,CAAC,MAAM,CAAC,MAAS;QACpB,OAAO,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;IACjC,CAAC;IAOD,UAAU,CAAC,CAAI;QACb,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,gBAAgB,CAAC;QAGvC,OAAO,IAAI,CAAC,YAAa,CAAC,CAAC,CAAC,CAAC;IAC/B,CAAC;IAGD,eAAe,CAAC,KAAe;QAC7B,IAAI,CAAC,gBAAgB,GAAG,IAAI,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,IAAI,OAAO,IAAI,CAAC,KAAK,EAAE,CAAC;QAC3E,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;IAC5B,CAAC;IAGD,IAAI,CAAC,GAAY;QACf,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAC5C,IAAI,IAAI,CAAC,YAAY;YAAE,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACvE,OAAO,IAAI,CAAC;IACd,CAAC;CACF;AAlDD,oBAkDC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga.service.d.ts","sourceRoot":"","sources":["../../src/services/saga.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"saga.service.d.ts","sourceRoot":"","sources":["../../src/services/saga.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAY/C,qBAAa,QAAQ,CAAC,CAAC,EAAE,CAAC;IAGZ,OAAO,CAAC,QAAQ;IAF5B,OAAO,CAAC,QAAQ,CAAkB;gBAEd,QAAQ,EAAE,QAAQ,CAAC,CAAC,EAAE,CAAC,CAAC;IAE5C,IAAI,MAAM,IAAI,UAAU,CAEvB;IASK,OAAO,CAAC,MAAM,EAAE,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC;IAepC,IAAI,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI;YAKV,mBAAmB;CAYlC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga.service.js","sourceRoot":"","sources":["../../src/services/saga.service.ts"],"names":[],"mappings":";;;AAAA,oCAAsC;AAEtC,8CAGuB;AACvB,wCAA4C;
|
|
1
|
+
{"version":3,"file":"saga.service.js","sourceRoot":"","sources":["../../src/services/saga.service.ts"],"names":[],"mappings":";;;AAAA,oCAAsC;AAEtC,8CAGuB;AACvB,wCAA4C;AAO5C,MAAa,QAAQ;IAGnB,YAAoB,QAAwB;QAAxB,aAAQ,GAAR,QAAQ,CAAgB;QAFpC,aAAQ,GAAG,kBAAU,CAAC,GAAG,CAAC;IAEa,CAAC;IAEhD,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,QAAQ,CAAC;IACvB,CAAC;IASD,KAAK,CAAC,OAAO,CAAC,MAAS;QACrB,IAAI,CAAC,QAAQ,GAAG,kBAAU,CAAC,UAAU,CAAC;QACtC,IAAI,CAAC;YACH,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;YAClD,IAAI,CAAC,QAAQ,GAAG,kBAAU,CAAC,QAAQ,CAAC;YACpC,OAAO,MAAM,CAAC;QAChB,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACX,MAAM,iBAAiB,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC;YACrD,IAAI,CAAC,QAAQ,GAAG,kBAAU,CAAC,cAAc,CAAC;YAC1C,MAAM,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,CAAC;YACvC,MAAM,IAAI,oCAAuB,CAAC,IAAA,wBAAc,EAAC,CAAC,CAAC,EAAE,iBAAiB,CAAC,CAAC;QAC1E,CAAC;IACH,CAAC;IAGD,IAAI,CAAC,GAAY;QACf,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACxB,OAAO,IAAI,CAAC;IACd,CAAC;IAEO,KAAK,CAAC,mBAAmB,CAAC,MAAS;QACzC,IAAI,CAAC;YACH,MAAM,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;YACvC,IAAI,CAAC,QAAQ,GAAG,kBAAU,CAAC,oBAAoB,CAAC;QAClD,CAAC;QAAC,OAAO,CAAC,EAAE,CAAC;YACX,IAAI,CAAC,QAAQ,GAAG,kBAAU,CAAC,iBAAiB,CAAC;YAC7C,MAAM,IAAI,sCAAyB,CACjC,IAAA,wBAAc,EAAC,CAAC,CAAC,EACjB,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAC3B,CAAC;QACJ,CAAC;IACH,CAAC;CACF;AAhDD,4BAgDC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-step-class.type.d.ts","sourceRoot":"","sources":["../../src/types/saga-step-class.type.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"saga-step-class.type.d.ts","sourceRoot":"","sources":["../../src/types/saga-step-class.type.ts"],"names":[],"mappings":"AAKA,8BAAsB,QAAQ;IACtB,MAAM,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC;IAC/B,gBAAgB,CAAC,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,IAAI,CAAC;CACjD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saga-step-class.type.js","sourceRoot":"","sources":["../../src/types/saga-step-class.type.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"saga-step-class.type.js","sourceRoot":"","sources":["../../src/types/saga-step-class.type.ts"],"names":[],"mappings":";;;AAKA,MAAsB,QAAQ;IAC5B,KAAK,CAAC,MAAM,CAAC,GAAQ,IAAkB,CAAC;IACxC,KAAK,CAAC,gBAAgB,CAAE,GAAQ,IAAkB,CAAC;CACpD;AAHD,4BAGC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mondart/nestjs-common-module-saga",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.7",
|
|
4
4
|
"description": "Saga module and flow builder utilities for NestJS.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Mondart"
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"build": "tsc -p tsconfig.json"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@mondart/nestjs-common-module-core": "^3.2.
|
|
20
|
+
"@mondart/nestjs-common-module-core": "^3.2.5"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"@nestjs/common": "^11.1.10",
|