chore: Update for changes in the b/e

This commit is contained in:
J H
2023-11-21 15:31:43 -07:00
committed by GitHub
parent 1a209fa6df
commit 27127f58d4

View File

@@ -50,22 +50,18 @@ export type SDKManifest = {
/** This description will display with additional details in the service's individual marketplace page */ /** This description will display with additional details in the service's individual marketplace page */
readonly long: string readonly long: string
} }
/** These assets are static files necessary for packaging the service for Start9 (into an s9pk).
* Each value is a path to the specified asset. If an asset is missing from this list, or otherwise /** Defines the os images needed to run the container processes */
* denoted, it will be defaulted to the values denoted below. readonly images: string[]
*/ /** This denotes readonly asset directories that should be available to mount to the container.
readonly assets: { * Assuming that there will be three files with names along the lines:
/** This is the file path for the icon that will be this packages icon on the ui */ * icon.* : the icon that will be this packages icon on the ui
readonly icon: string * LICENSE : What the license is for this service
/** Instructions path to be seen in the ui section of the package */ * Instructions : to be seen in the ui section of the package
readonly instructions: string * */
/** license path */ readonly assets: string[]
readonly license: string /** This denotes any data volumes that should be available to mount to the container */
} readonly volumes: string[]
/** Defines the containers needed to run the main and mounted volumes */
readonly containers: Record<string, Container>
/** This denotes any data, asset, or pointer volumes that should be connected when the "docker run" command is invoked */
readonly volumes: Record<string, "data" | "assets">
readonly alerts: { readonly alerts: {
readonly install: string | null readonly install: string | null