@kronos-integration/service 12.0.4 → 12.0.5

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": "12.0.4",
3
+ "version": "12.0.5",
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.3",
40
- "@kronos-integration/interceptor": "^11.0.3",
39
+ "@kronos-integration/endpoint": "^10.0.4",
40
+ "@kronos-integration/interceptor": "^11.0.4",
41
41
  "loglevel-mixin": "^7.2.5",
42
- "pacc": "^3.6.7",
42
+ "pacc": "^3.7.0",
43
43
  "remove-sensible-values": "^1.3.1",
44
44
  "statetransition-mixin": "^8.1.3"
45
45
  },
package/src/service.mjs CHANGED
@@ -8,7 +8,7 @@ import {
8
8
  import { EndpointsMixin } from "./endpoints-mixin.mjs";
9
9
  import { InitializationContext } from "./initialization-context.mjs";
10
10
 
11
- const _ca = prepareAttributesDefinitions({
11
+ const CONFIG_ATTRIBUTES = prepareAttributesDefinitions({
12
12
  description: {
13
13
  type: "string",
14
14
  description: "human readable description of the service"
@@ -123,7 +123,7 @@ export class Service extends EndpointsMixin(
123
123
  * @return {Object}
124
124
  */
125
125
  static get configurationAttributes() {
126
- return _ca;
126
+ return CONFIG_ATTRIBUTES;
127
127
  }
128
128
 
129
129
  /**