@kronos-integration/service-systemd 2.5.2 → 2.5.3

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.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/src/service.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kronos-integration/service-systemd",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -24,28 +24,28 @@
24
24
  "license": "BSD-2-Clause",
25
25
  "scripts": {
26
26
  "test": "npm run test:ava",
27
- "test:ava": "ava --timeout 2m tests/*.mjs",
28
- "cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 2m tests/*.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
27
+ "test:ava": "ava -s --timeout 2m tests/*.mjs",
28
+ "cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava -s --timeout 2m tests/*.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
29
29
  "docs": "documentation readme --section=API ./src/**/*.mjs",
30
30
  "lint": "npm run lint:docs",
31
31
  "lint:docs": "documentation lint ./src/**/*.mjs",
32
32
  "build": "cmake-js compile"
33
33
  },
34
34
  "dependencies": {
35
- "@kronos-integration/service": "^10.4.7",
35
+ "@kronos-integration/service": "^10.4.11",
36
36
  "config-expander": "^12.0.1"
37
37
  },
38
38
  "devDependencies": {
39
39
  "ava": "^3.15.0",
40
- "c8": "^7.9.0",
40
+ "c8": "^7.10.0",
41
41
  "cmake-js": "^6.2.1",
42
42
  "documentation": "^13.2.5",
43
- "execa": "^5.1.1",
43
+ "execa": "^6.0.0",
44
44
  "node-addon-api": "^4.0.0",
45
- "semantic-release": "^18.0.0"
45
+ "semantic-release": "^18.0.1"
46
46
  },
47
47
  "engines": {
48
- "node": ">=16.10.0"
48
+ "node": ">=16.13.1"
49
49
  },
50
50
  "os": [
51
51
  "linux"
package/src/service.mjs CHANGED
@@ -165,7 +165,7 @@ export class ServiceSystemd extends ServiceProviderMixin(
165
165
  ...super.endpoints,
166
166
  info: {
167
167
  in: true,
168
- receive: "info"
168
+ receive: "details"
169
169
  }
170
170
  };
171
171
  }
@@ -198,7 +198,7 @@ export class ServiceSystemd extends ServiceProviderMixin(
198
198
  }
199
199
  }
200
200
 
201
- info()
201
+ details()
202
202
  {
203
203
  return this.toJSONWithOptions({
204
204
  includeRuntimeInfo: true,