chore: update the types again for the actions in the metadata

This commit is contained in:
BluJ
2023-04-25 10:42:38 -06:00
parent 29ccafb086
commit 5107d38547
3 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
import { ValidEmVer } from "../emverLite/mod"; import { ValidEmVer } from "../emverLite/mod";
import { ActionResult } from "../types"; import { ActionMetaData, ActionResult } from "../types";
export interface Container { export interface Container {
image: string; image: string;
@@ -33,7 +33,7 @@ export interface GenericManifest {
}; };
containers: Record<string, Container>; containers: Record<string, Container>;
volumes: Record<string, string>; volumes: Record<string, string>;
actions: ActionResult[]; actions: ActionMetaData[];
alerts: { alerts: {
install: string | null; install: string | null;
update: string | null; update: string | null;

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "start-sdk", "name": "start-sdk",
"version": "0.4.0-lib0.charlie37", "version": "0.4.0-lib0.charlie38",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "start-sdk", "name": "start-sdk",
"version": "0.4.0-lib0.charlie37", "version": "0.4.0-lib0.charlie38",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@iarna/toml": "^2.2.5", "@iarna/toml": "^2.2.5",

View File

@@ -1,6 +1,6 @@
{ {
"name": "start-sdk", "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.", "description": "For making the patterns that are wanted in making services for the startOS.",
"main": "./lib/index.js", "main": "./lib/index.js",
"types": "./lib/index.d.ts", "types": "./lib/index.d.ts",