From 29ccafb086de851f57d0a50276e47b84c67fa7ce Mon Sep 17 00:00:00 2001 From: BluJ Date: Tue, 25 Apr 2023 10:40:01 -0600 Subject: [PATCH] chore: Update the manifest types --- lib/manifest/ManifestTypes.ts | 3 +++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/manifest/ManifestTypes.ts b/lib/manifest/ManifestTypes.ts index 3e88de2..e8f071b 100644 --- a/lib/manifest/ManifestTypes.ts +++ b/lib/manifest/ManifestTypes.ts @@ -1,4 +1,5 @@ import { ValidEmVer } from "../emverLite/mod"; +import { ActionResult } from "../types"; export interface Container { image: string; @@ -32,8 +33,10 @@ export interface GenericManifest { }; containers: Record; volumes: Record; + actions: ActionResult[]; alerts: { install: string | null; + update: string | null; uninstall: string | null; restore: string | null; start: string | null; diff --git a/package-lock.json b/package-lock.json index e5fa97d..1bcaac7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "start-sdk", - "version": "0.4.0-lib0.charlie36", + "version": "0.4.0-lib0.charlie37", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "start-sdk", - "version": "0.4.0-lib0.charlie36", + "version": "0.4.0-lib0.charlie37", "license": "MIT", "dependencies": { "@iarna/toml": "^2.2.5", diff --git a/package.json b/package.json index 7890057..5a0e088 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "start-sdk", - "version": "0.4.0-lib0.charlie36", + "version": "0.4.0-lib0.charlie37", "description": "For making the patterns that are wanted in making services for the startOS.", "main": "./lib/index.js", "types": "./lib/index.d.ts",