@kronos-integration/service 10.4.54 → 10.4.55
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/LICENSE +1 -1
- package/package.json +4 -4
- package/src/service-config.mjs +2 -2
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kronos-integration/service",
|
|
3
|
-
"version": "10.4.
|
|
3
|
+
"version": "10.4.55",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@kronos-integration/endpoint": "^9.4.
|
|
31
|
+
"@kronos-integration/endpoint": "^9.4.45",
|
|
32
32
|
"@kronos-integration/interceptor": "^10.2.37",
|
|
33
33
|
"loglevel-mixin": "^7.1.0",
|
|
34
34
|
"model-attributes": "^4.2.2",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"ava": "^6.0.1",
|
|
40
|
-
"c8": "^
|
|
40
|
+
"c8": "^9.0.0",
|
|
41
41
|
"documentation": "^14.0.2",
|
|
42
|
-
"semantic-release": "^22.0.
|
|
42
|
+
"semantic-release": "^22.0.12"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=20.10.0"
|
package/src/service-config.mjs
CHANGED
|
@@ -4,8 +4,8 @@ import { keyValue2Object } from "./util.mjs";
|
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Config providing service.
|
|
7
|
-
* Dispatches config requests to services
|
|
8
|
-
*
|
|
7
|
+
* Dispatches config requests to services.
|
|
8
|
+
* Also preserves them until a maching service becomes avaliable.
|
|
9
9
|
* @property {Map<string,Object>} preservedConfigs values for services not already established
|
|
10
10
|
*/
|
|
11
11
|
export class ServiceConfig extends Service {
|