@quanticjs/quanticjs 2.0.0 → 2.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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +9 -8
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from '@quanticjs/events';
|
|
|
4
4
|
export * from '@quanticjs/metrics';
|
|
5
5
|
export * from '@quanticjs/feature-flags';
|
|
6
6
|
export * from '@quanticjs/workflow';
|
|
7
|
+
export * from '@quanticjs/workflow-kogito';
|
|
7
8
|
export { TestingModuleFactory } from '@quanticjs/testing';
|
|
8
9
|
export type { TestingModuleOptions } from '@quanticjs/testing';
|
|
9
10
|
export { QuanticModule, SharedKernelModule } from './QuanticModule';
|
package/dist/index.js
CHANGED
|
@@ -22,6 +22,7 @@ __exportStar(require("@quanticjs/events"), exports);
|
|
|
22
22
|
__exportStar(require("@quanticjs/metrics"), exports);
|
|
23
23
|
__exportStar(require("@quanticjs/feature-flags"), exports);
|
|
24
24
|
__exportStar(require("@quanticjs/workflow"), exports);
|
|
25
|
+
__exportStar(require("@quanticjs/workflow-kogito"), exports);
|
|
25
26
|
// Testing — selectively re-export to avoid conflict with core's mock helpers
|
|
26
27
|
var testing_1 = require("@quanticjs/testing");
|
|
27
28
|
Object.defineProperty(exports, "TestingModuleFactory", { enumerable: true, get: function () { return testing_1.TestingModuleFactory; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quanticjs/quanticjs",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Umbrella package — re-exports all quanticjs packages with backward-compatible QuanticModule.forRoot()",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,13 +18,14 @@
|
|
|
18
18
|
"clean": "rm -rf dist"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@quanticjs/core": "^2.
|
|
22
|
-
"@quanticjs/redis": "^2.
|
|
23
|
-
"@quanticjs/events": "^2.
|
|
24
|
-
"@quanticjs/metrics": "^2.
|
|
25
|
-
"@quanticjs/feature-flags": "^2.
|
|
26
|
-
"@quanticjs/workflow": "^2.
|
|
27
|
-
"@quanticjs/
|
|
21
|
+
"@quanticjs/core": "^2.1.0",
|
|
22
|
+
"@quanticjs/redis": "^2.1.0",
|
|
23
|
+
"@quanticjs/events": "^2.1.0",
|
|
24
|
+
"@quanticjs/metrics": "^2.1.0",
|
|
25
|
+
"@quanticjs/feature-flags": "^2.1.0",
|
|
26
|
+
"@quanticjs/workflow": "^2.1.0",
|
|
27
|
+
"@quanticjs/workflow-kogito": "^2.1.0",
|
|
28
|
+
"@quanticjs/testing": "^2.1.0"
|
|
28
29
|
},
|
|
29
30
|
"peerDependencies": {
|
|
30
31
|
"@nestjs/common": "^11.0.0",
|