@kronos-integration/service 11.2.11 → 11.2.13

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kronos-integration/service",
3
- "version": "11.2.11",
3
+ "version": "11.2.13",
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": "^9.5.7",
40
- "@kronos-integration/interceptor": "^10.3.4",
39
+ "@kronos-integration/endpoint": "^9.5.9",
40
+ "@kronos-integration/interceptor": "^10.3.7",
41
41
  "loglevel-mixin": "^7.2.5",
42
- "model-attributes": "^4.2.5",
42
+ "model-attributes": "^4.2.6",
43
43
  "remove-sensible-values": "^1.3.1",
44
44
  "statetransition-mixin": "^8.1.3"
45
45
  },
@@ -51,7 +51,7 @@
51
51
  "typescript": "^5.7.0-beta"
52
52
  },
53
53
  "engines": {
54
- "node": ">=22.15.0"
54
+ "node": ">=22.17.1"
55
55
  },
56
56
  "repository": {
57
57
  "type": "git",
@@ -43,7 +43,7 @@ export const InitializationContext = LogLevelMixin(
43
43
  }
44
44
 
45
45
  /**
46
- * Wait for (Service) factory to be declared when aced for a service.
46
+ * Wait for (Service) factory to be declared when asced for a service.
47
47
  *
48
48
  * @return {boolean} true we wait until a factory is known
49
49
  */
package/src/service.mjs CHANGED
@@ -17,14 +17,14 @@ const _ca = createAttributes({
17
17
  description: `logging level one of: ${Object.keys(defaultLogLevels)}`,
18
18
  default: defaultLogLevels.info,
19
19
  type: "string",
20
- setter(newValue) {
20
+ set(newValue) {
21
21
  if (newValue !== undefined) {
22
22
  this.logLevel = newValue;
23
23
  return true;
24
24
  }
25
25
  return false;
26
26
  },
27
- getter() {
27
+ get() {
28
28
  return this.logLevel.name;
29
29
  }
30
30
  },