@start9labs/start-sdk 0.3.6-alpha3 → 0.3.6-alpha5

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.
@@ -401,8 +401,8 @@ export type Effects = {
401
401
  running(options: {
402
402
  packageId: PackageId;
403
403
  }): Promise<boolean>;
404
- restart(): void;
405
- shutdown(): void;
404
+ restart(): Promise<void>;
405
+ shutdown(): Promise<void>;
406
406
  mount(options: {
407
407
  location: string;
408
408
  target: {
@@ -401,8 +401,8 @@ export type Effects = {
401
401
  running(options: {
402
402
  packageId: PackageId;
403
403
  }): Promise<boolean>;
404
- restart(): void;
405
- shutdown(): void;
404
+ restart(): Promise<void>;
405
+ shutdown(): Promise<void>;
406
406
  mount(options: {
407
407
  location: string;
408
408
  target: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@start9labs/start-sdk",
3
- "version": "0.3.6-alpha3",
3
+ "version": "0.3.6-alpha5",
4
4
  "description": "Software development kit to facilitate packaging services for StartOS",
5
5
  "main": "./cjs/lib/index.js",
6
6
  "types": "./cjs/lib/index.d.ts",
@@ -32,7 +32,9 @@
32
32
  "dependencies": {
33
33
  "isomorphic-fetch": "^3.0.0",
34
34
  "lodash": "^4.17.21",
35
- "ts-matches": "^5.4.1"
35
+ "ts-matches": "^5.4.1",
36
+ "yaml": "^2.2.2",
37
+ "@iarna/toml": "^2.2.5"
36
38
  },
37
39
  "prettier": {
38
40
  "trailingComma": "all",
@@ -41,7 +43,6 @@
41
43
  "singleQuote": false
42
44
  },
43
45
  "devDependencies": {
44
- "@iarna/toml": "^2.2.5",
45
46
  "@types/jest": "^29.4.0",
46
47
  "@types/lodash": "^4.17.5",
47
48
  "jest": "^29.4.3",
@@ -49,7 +50,6 @@
49
50
  "ts-jest": "^29.0.5",
50
51
  "ts-node": "^10.9.1",
51
52
  "tsx": "^4.7.1",
52
- "typescript": "^5.0.4",
53
- "yaml": "^2.2.2"
53
+ "typescript": "^5.0.4"
54
54
  }
55
55
  }