@kronos-integration/service 10.4.57 → 10.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 +4 -2
- package/src/endpoints-mixin.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kronos-integration/service",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.5.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
7
7
|
},
|
|
8
|
+
"types": "./types/module.d.mts",
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
|
-
"default": "./src/module.mjs"
|
|
11
|
+
"default": "./src/module.mjs",
|
|
12
|
+
"types": "./types/module.d.mts"
|
|
11
13
|
}
|
|
12
14
|
},
|
|
13
15
|
"description": "Base service implementation",
|
package/src/endpoints-mixin.mjs
CHANGED
|
@@ -108,7 +108,7 @@ export function EndpointsMixin(superclass) {
|
|
|
108
108
|
* Also creates interceptors if they are present in the definition.
|
|
109
109
|
* @param {string} name of the new endpoint
|
|
110
110
|
* @param {Object|string} definition endpoint attributes or alias expression
|
|
111
|
-
* @param {string} definition.target expression pointing to the connected endpoint
|
|
111
|
+
* @param {string} [definition.target] expression pointing to the connected endpoint
|
|
112
112
|
* @param {InitializationContext} ic
|
|
113
113
|
* @return {Endpoint} newly created endpoint
|
|
114
114
|
*/
|