@kronos-integration/service 13.2.33 → 13.2.35

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": "13.2.33",
3
+ "version": "13.2.35",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -39,7 +39,7 @@
39
39
  "@kronos-integration/endpoint": "^10.1.18",
40
40
  "@kronos-integration/interceptor": "^12.2.0",
41
41
  "loglevel-mixin": "^7.2.5",
42
- "pacc": "^4.39.0",
42
+ "pacc": "^4.39.1",
43
43
  "statetransition-mixin": "^8.1.3"
44
44
  },
45
45
  "devDependencies": {
@@ -199,7 +199,11 @@ export function EndpointsMixin(superclass) {
199
199
  m.groups.arg.length === 0
200
200
  ? this.owner
201
201
  : this.owner.getService(m.groups.arg);
202
- return service?.endpointForExpression(m.groups.suffix);
202
+
203
+ return (
204
+ service?.endpointForExpression(m.groups.suffix) ||
205
+ service?.endpointOnDemand(m.groups.suffix, from)
206
+ );
203
207
  }
204
208
  }
205
209