@kronos-integration/service 11.2.17 → 12.0.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/package.json +3 -3
- package/src/service.mjs +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kronos-integration/service",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@kronos-integration/endpoint": "^10.0.0",
|
|
40
|
-
"@kronos-integration/interceptor": "^11.0.
|
|
40
|
+
"@kronos-integration/interceptor": "^11.0.2",
|
|
41
41
|
"loglevel-mixin": "^7.2.5",
|
|
42
|
-
"
|
|
42
|
+
"pacc": "^3.6.6",
|
|
43
43
|
"remove-sensible-values": "^1.3.1",
|
|
44
44
|
"statetransition-mixin": "^8.1.3"
|
|
45
45
|
},
|
package/src/service.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
prepareAttributesDefinitions,
|
|
5
5
|
getAttributes,
|
|
6
6
|
setAttributes
|
|
7
|
-
} from "
|
|
7
|
+
} from "pacc";
|
|
8
8
|
import { EndpointsMixin } from "./endpoints-mixin.mjs";
|
|
9
9
|
import { InitializationContext } from "./initialization-context.mjs";
|
|
10
10
|
|
|
@@ -417,8 +417,8 @@ export class Service extends EndpointsMixin(
|
|
|
417
417
|
const modified = new Set();
|
|
418
418
|
setAttributes(
|
|
419
419
|
this,
|
|
420
|
-
this.configurationAttributes,
|
|
421
420
|
config,
|
|
421
|
+
this.configurationAttributes,
|
|
422
422
|
(ca, path, value) => {
|
|
423
423
|
this.trace(level => {
|
|
424
424
|
if (ca.private) {
|