@kronos-integration/service 12.0.3 → 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.
- package/package.json +4 -4
- 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.
|
|
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.
|
|
40
|
-
"@kronos-integration/interceptor": "^11.0.
|
|
39
|
+
"@kronos-integration/endpoint": "^10.0.4",
|
|
40
|
+
"@kronos-integration/interceptor": "^11.0.4",
|
|
41
41
|
"loglevel-mixin": "^7.2.5",
|
|
42
|
-
"pacc": "^3.
|
|
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
|
|
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
|
|
126
|
+
return CONFIG_ATTRIBUTES;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
/**
|