@kronos-integration/service 14.0.6 → 15.0.0
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 +0 -6
- package/types/service.d.mts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kronos-integration/service",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -36,8 +36,8 @@
|
|
|
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": "^11.0.
|
|
40
|
-
"@kronos-integration/interceptor": "^13.0.
|
|
39
|
+
"@kronos-integration/endpoint": "^11.0.3",
|
|
40
|
+
"@kronos-integration/interceptor": "^13.0.4",
|
|
41
41
|
"loglevel-mixin": "^7.2.6",
|
|
42
42
|
"pacc": "^5.0.0",
|
|
43
43
|
"statetransition-mixin": "^8.1.4"
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"arlac77/template-typescript"
|
|
68
68
|
]
|
|
69
69
|
},
|
|
70
|
-
"packageManager": "npm@11.6.
|
|
70
|
+
"packageManager": "npm@11.6.4+sha512.1118cab46a05a50aee6bff5b1b4fa1df18afff89d57465620a3518035026955db87c5bdf9d207b07b7487d99f2490d450cb774655ad63ec2cba7bf1d0ad25d45"
|
|
71
71
|
}
|
package/src/service.mjs
CHANGED
|
@@ -155,12 +155,6 @@ export class Service extends EndpointsMixin(
|
|
|
155
155
|
Object.defineProperties(this, properties);
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
if (process.env.LOGLEVEL) {
|
|
159
|
-
this.logLevel = config.logLevel = process.env.LOGLEVEL;
|
|
160
|
-
} else if (process.env.DEBUG) {
|
|
161
|
-
this.logLevel = config.logLevel = "debug";
|
|
162
|
-
}
|
|
163
|
-
|
|
164
158
|
this.createEndpointsFromConfig(config.endpoints, ic);
|
|
165
159
|
this._configure(config);
|
|
166
160
|
}
|
package/types/service.d.mts
CHANGED