@kronos-integration/service 15.4.0 → 15.4.1

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.4.0",
3
+ "version": "15.4.1",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -31,6 +31,7 @@ export function ServiceProviderMixin(
31
31
  return {
32
32
  ...super.endpoints,
33
33
  info: {
34
+ in: true,
34
35
  receive: "info"
35
36
  }
36
37
  };
package/src/service.mjs CHANGED
@@ -391,7 +391,7 @@ export class Service extends EndpointsMixin(
391
391
  * @return {boolean} false
392
392
  */
393
393
  get autostart() {
394
- return false;
394
+ return this.isServiceProvider;
395
395
  }
396
396
 
397
397
  /**