@kronos-integration/service 11.2.18 → 12.0.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/service.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kronos-integration/service",
3
- "version": "11.2.18",
3
+ "version": "12.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -36,10 +36,10 @@
36
36
  "lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib es2024 -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
37
37
  },
38
38
  "dependencies": {
39
- "@kronos-integration/endpoint": "^10.0.0",
40
- "@kronos-integration/interceptor": "^11.0.1",
39
+ "@kronos-integration/endpoint": "^10.0.2",
40
+ "@kronos-integration/interceptor": "^11.0.2",
41
41
  "loglevel-mixin": "^7.2.5",
42
- "model-attributes": "^4.3.0",
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 "model-attributes";
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) {