@o3r/rules-engine 11.0.0-prerelease.21 → 11.0.0-prerelease.22
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/esm2022/inner-facts/current-time/current-time-fact.service.mjs +29 -0
- package/esm2022/inner-facts/current-time/current-time.facts.mjs +2 -0
- package/esm2022/inner-facts/current-time/index.mjs +3 -0
- package/esm2022/inner-facts/index.mjs +2 -0
- package/esm2022/public_api.mjs +2 -2
- package/fesm2022/o3r-rules-engine.mjs +24 -1
- package/fesm2022/o3r-rules-engine.mjs.map +1 -1
- package/inner-facts/current-time/current-time-fact.service.d.ts +17 -0
- package/inner-facts/current-time/current-time-fact.service.d.ts.map +1 -0
- package/inner-facts/current-time/current-time.facts.d.ts.map +1 -0
- package/inner-facts/current-time/index.d.ts +3 -0
- package/inner-facts/current-time/index.d.ts.map +1 -0
- package/inner-facts/index.d.ts.map +1 -0
- package/package.json +5 -5
- package/public_api.d.ts +1 -1
- package/public_api.d.ts.map +1 -1
- package/esm2022/facts/current-time/current-time.facts.mjs +0 -2
- package/esm2022/facts/current-time/index.mjs +0 -2
- package/esm2022/facts/index.mjs +0 -2
- package/facts/current-time/current-time.facts.d.ts.map +0 -1
- package/facts/current-time/index.d.ts +0 -2
- package/facts/current-time/index.d.ts.map +0 -1
- package/facts/index.d.ts.map +0 -1
- /package/{facts → inner-facts}/current-time/current-time.facts.d.ts +0 -0
- /package/{facts → inner-facts}/index.d.ts +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { FactsService } from '../../fact';
|
|
2
|
+
import { CurrentTimeFacts } from './current-time.facts';
|
|
3
|
+
import { RulesEngineRunnerService } from '../../services';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CurrentTimeFactsService extends FactsService<CurrentTimeFacts> {
|
|
6
|
+
private readonly currentTimeSubject$;
|
|
7
|
+
/** @inheritDoc */
|
|
8
|
+
facts: {
|
|
9
|
+
o3rCurrentTime: import("rxjs").Observable<number>;
|
|
10
|
+
};
|
|
11
|
+
constructor(rulesEngine: RulesEngineRunnerService);
|
|
12
|
+
/** Compute the current time */
|
|
13
|
+
tick(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentTimeFactsService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CurrentTimeFactsService>;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=current-time-fact.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"current-time-fact.service.d.ts","sourceRoot":"","sources":["../../../src/inner-facts/current-time/current-time-fact.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACxD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gBAAgB,CAAC;;AAE1D,qBAGa,uBAAwB,SAAQ,YAAY,CAAC,gBAAgB,CAAC;IAEzE,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAmC;IACvE,kBAAkB;IACX,KAAK;;MAEV;gBAEU,WAAW,EAAE,wBAAwB;IAIjD,+BAA+B;IACxB,IAAI;yCAbA,uBAAuB;6CAAvB,uBAAuB;CAgBnC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"current-time.facts.d.ts","sourceRoot":"","sources":["../../../src/inner-facts/current-time/current-time.facts.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAGpD;;GAEG;AACH,MAAM,WAAW,gBAAiB,SAAQ,eAAe;IACvD;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/inner-facts/current-time/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,6BAA6B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/inner-facts/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@o3r/rules-engine",
|
|
3
|
-
"version": "11.0.0-prerelease.
|
|
3
|
+
"version": "11.0.0-prerelease.22",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"@ngrx/entity": "~17.2.0",
|
|
50
50
|
"@ngrx/store": "~17.2.0",
|
|
51
51
|
"@ngx-translate/core": "~15.0.0",
|
|
52
|
-
"@o3r/core": "^11.0.0-prerelease.
|
|
53
|
-
"@o3r/extractors": "^11.0.0-prerelease.
|
|
54
|
-
"@o3r/logger": "^11.0.0-prerelease.
|
|
55
|
-
"@o3r/schematics": "^11.0.0-prerelease.
|
|
52
|
+
"@o3r/core": "^11.0.0-prerelease.22",
|
|
53
|
+
"@o3r/extractors": "^11.0.0-prerelease.22",
|
|
54
|
+
"@o3r/logger": "^11.0.0-prerelease.22",
|
|
55
|
+
"@o3r/schematics": "^11.0.0-prerelease.22",
|
|
56
56
|
"@schematics/angular": "~17.3.0",
|
|
57
57
|
"globby": "^11.1.0",
|
|
58
58
|
"jasmine": "^5.0.0",
|
package/public_api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export * from './components/index';
|
|
|
2
2
|
export * from './devkit/index';
|
|
3
3
|
export * from './engine/index';
|
|
4
4
|
export * from './fact/index';
|
|
5
|
-
export * from './facts/index';
|
|
5
|
+
export * from './inner-facts/index';
|
|
6
6
|
export * from './interfaces/index';
|
|
7
7
|
export * from './services/index';
|
|
8
8
|
export * from './stores/index';
|
package/public_api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../src/public_api.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,
|
|
1
|
+
{"version":3,"file":"public_api.d.ts","sourceRoot":"","sources":["../src/public_api.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC"}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VycmVudC10aW1lLmZhY3RzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2ZhY3RzL2N1cnJlbnQtdGltZS9jdXJyZW50LXRpbWUuZmFjdHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB0eXBlIHsgRmFjdERlZmluaXRpb25zIH0gZnJvbSAnLi4vLi4vZW5naW5lJztcblxuXG4vKipcbiAqIE9wZXJhdG9yIGZhY3RzIHRoYXQgcHJvdmlkZSB0aGUgY3VycmVudCB0aW1lXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgQ3VycmVudFRpbWVGYWN0cyBleHRlbmRzIEZhY3REZWZpbml0aW9ucyB7XG4gIC8qKlxuICAgKiBUaGUgY3VycmVudCB0aW1lIGFzIGEgdGltZXN0YW1wXG4gICAqL1xuICBvM3JDdXJyZW50VGltZTogbnVtYmVyO1xufVxuIl19
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './current-time.facts';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvZmFjdHMvY3VycmVudC10aW1lL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsc0JBQXNCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2N1cnJlbnQtdGltZS5mYWN0cyc7XG4iXX0=
|
package/esm2022/facts/index.mjs
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './current-time/index';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvZmFjdHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY3VycmVudC10aW1lL2luZGV4JztcbiJdfQ==
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"current-time.facts.d.ts","sourceRoot":"","sources":["../../../src/facts/current-time/current-time.facts.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAGpD;;GAEG;AACH,MAAM,WAAW,gBAAiB,SAAQ,eAAe;IACvD;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/facts/current-time/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC"}
|
package/facts/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/facts/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC"}
|
|
File without changes
|
|
File without changes
|