@kronos-integration/service 10.4.8 → 10.4.12
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 +8 -8
- package/src/initialization-context.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.12",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -29,21 +29,21 @@
|
|
|
29
29
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@kronos-integration/endpoint": "^9.4.
|
|
33
|
-
"@kronos-integration/interceptor": "^10.2.
|
|
34
|
-
"loglevel-mixin": "^6.0.
|
|
32
|
+
"@kronos-integration/endpoint": "^9.4.17",
|
|
33
|
+
"@kronos-integration/interceptor": "^10.2.15",
|
|
34
|
+
"loglevel-mixin": "^6.0.6",
|
|
35
35
|
"model-attributes": "^4.1.12",
|
|
36
36
|
"remove-sensible-values": "^1.0.9",
|
|
37
37
|
"statetransition-mixin": "^6.0.15"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"ava": "^
|
|
41
|
-
"c8": "^7.
|
|
40
|
+
"ava": "^4.0.1",
|
|
41
|
+
"c8": "^7.11.0",
|
|
42
42
|
"documentation": "^13.2.5",
|
|
43
|
-
"semantic-release": "^
|
|
43
|
+
"semantic-release": "^19.0.2"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
|
-
"node": ">=
|
|
46
|
+
"node": ">=16.13.2"
|
|
47
47
|
},
|
|
48
48
|
"repository": {
|
|
49
49
|
"type": "git",
|
|
@@ -192,7 +192,7 @@ export const InitializationContext = LogLevelMixin(
|
|
|
192
192
|
return module.default;
|
|
193
193
|
}
|
|
194
194
|
} catch (e) {
|
|
195
|
-
this.
|
|
195
|
+
this.warn(e);
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
const outstandingFactory = {};
|
|
@@ -210,7 +210,7 @@ export const InitializationContext = LogLevelMixin(
|
|
|
210
210
|
|
|
211
211
|
outstandingFactory.timeout = setTimeout(() => {
|
|
212
212
|
const message = `timeout waiting for ${type}`;
|
|
213
|
-
this.
|
|
213
|
+
this.warn(message);
|
|
214
214
|
reject(new Error(message));
|
|
215
215
|
}, 1000 * 10);
|
|
216
216
|
|