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