@kronos-integration/service 15.4.30 → 15.5.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kronos-integration/service",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.5.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@kronos-integration/endpoint": "^11.0.
|
|
41
|
-
"@kronos-integration/interceptor": "^13.1.
|
|
40
|
+
"@kronos-integration/endpoint": "^11.0.25",
|
|
41
|
+
"@kronos-integration/interceptor": "^13.1.28",
|
|
42
42
|
"loglevel-mixin": "^7.2.8",
|
|
43
|
-
"pacc": "^
|
|
43
|
+
"pacc": "^9.0.0",
|
|
44
44
|
"statetransition-mixin": "^8.1.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
@@ -32,7 +32,7 @@ export function ServiceProviderMixin(
|
|
|
32
32
|
...super.endpoints,
|
|
33
33
|
info: {
|
|
34
34
|
in: true,
|
|
35
|
-
receive: "
|
|
35
|
+
receive: "serviceInfo"
|
|
36
36
|
}
|
|
37
37
|
};
|
|
38
38
|
}
|
|
@@ -115,7 +115,7 @@ export function ServiceProviderMixin(
|
|
|
115
115
|
return true;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
-
|
|
118
|
+
serviceInfo() {
|
|
119
119
|
return this.toJSONWithOptions({
|
|
120
120
|
includeRuntimeInfo: false,
|
|
121
121
|
includeDefaults: true,
|
|
@@ -11,7 +11,7 @@ declare const StandaloneServiceProvider_base: {
|
|
|
11
11
|
removeListener(name: any, listener: any): void;
|
|
12
12
|
get owner(): /*elided*/ any;
|
|
13
13
|
get isServiceProvider(): boolean;
|
|
14
|
-
|
|
14
|
+
serviceInfo(): any;
|
|
15
15
|
registerFactories(factories: [typeof Service | string]): Promise<void>;
|
|
16
16
|
registerInterceptorFactory(factory: typeof import("@kronos-integration/interceptor").Interceptor): typeof import("@kronos-integration/interceptor").Interceptor;
|
|
17
17
|
unregisterInterceptorFactory(factory: typeof import("@kronos-integration/interceptor").Interceptor): void;
|