@mondart/nestjs-common-module-saga 3.1.0 → 3.1.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/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +19 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export { SagaModuleRegisterParams } from './interfaces/saga-module-register.interface';
|
|
2
2
|
export { SagaCompensationException, SagaInvocationException, } from './exceptions';
|
|
3
3
|
export { SagaStatus } from './enums';
|
|
4
|
-
export
|
|
4
|
+
export * from './services';
|
|
5
5
|
export { SagaModule } from './saga.module';
|
|
6
6
|
export { Saga } from './decorators';
|
|
7
|
-
export
|
|
7
|
+
export * from './types';
|
|
8
|
+
export * from './constant';
|
|
9
|
+
export * from './helpers';
|
|
8
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,6CAA6C,CAAC;AACvF,OAAO,EACL,yBAAyB,EACzB,uBAAuB,GACxB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACrC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,6CAA6C,CAAC;AACvF,OAAO,EACL,yBAAyB,EACzB,uBAAuB,GACxB,MAAM,cAAc,CAAC;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACrC,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACpC,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,17 +1,31 @@
|
|
|
1
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
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
17
|
+
exports.Saga = exports.SagaModule = exports.SagaStatus = exports.SagaInvocationException = exports.SagaCompensationException = void 0;
|
|
4
18
|
var exceptions_1 = require("./exceptions");
|
|
5
19
|
Object.defineProperty(exports, "SagaCompensationException", { enumerable: true, get: function () { return exceptions_1.SagaCompensationException; } });
|
|
6
20
|
Object.defineProperty(exports, "SagaInvocationException", { enumerable: true, get: function () { return exceptions_1.SagaInvocationException; } });
|
|
7
21
|
var enums_1 = require("./enums");
|
|
8
22
|
Object.defineProperty(exports, "SagaStatus", { enumerable: true, get: function () { return enums_1.SagaStatus; } });
|
|
9
|
-
|
|
10
|
-
Object.defineProperty(exports, "SagaBuilder", { enumerable: true, get: function () { return services_1.SagaBuilder; } });
|
|
23
|
+
__exportStar(require("./services"), exports);
|
|
11
24
|
var saga_module_1 = require("./saga.module");
|
|
12
25
|
Object.defineProperty(exports, "SagaModule", { enumerable: true, get: function () { return saga_module_1.SagaModule; } });
|
|
13
26
|
var decorators_1 = require("./decorators");
|
|
14
27
|
Object.defineProperty(exports, "Saga", { enumerable: true, get: function () { return decorators_1.Saga; } });
|
|
15
|
-
|
|
16
|
-
|
|
28
|
+
__exportStar(require("./types"), exports);
|
|
29
|
+
__exportStar(require("./constant"), exports);
|
|
30
|
+
__exportStar(require("./helpers"), exports);
|
|
17
31
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACA,2CAGsB;AAFpB,uHAAA,yBAAyB,OAAA;AACzB,qHAAA,uBAAuB,OAAA;AAEzB,iCAAqC;AAA5B,mGAAA,UAAU,OAAA;AACnB,6CAA2B;AAC3B,6CAA2C;AAAlC,yGAAA,UAAU,OAAA;AACnB,2CAAoC;AAA3B,kGAAA,IAAI,OAAA;AACb,0CAAwB;AACxB,6CAA2B;AAC3B,4CAA0B"}
|
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.1",
|
|
4
4
|
"description": "Saga module and flow builder utilities for NestJS.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Mondart"
|
|
@@ -29,4 +29,4 @@
|
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|
|
31
31
|
}
|
|
32
|
-
}
|
|
32
|
+
}
|