mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 18:31:54 +00:00
50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
import { StartSdk } from "../StartSdk"
|
|
import { setupManifest } from "../manifest/setupManifest"
|
|
|
|
export type Manifest = any
|
|
export const sdk = StartSdk.of()
|
|
.withManifest(
|
|
setupManifest({
|
|
id: "testOutput",
|
|
title: "",
|
|
version: "1.0",
|
|
releaseNotes: "",
|
|
license: "",
|
|
replaces: [],
|
|
wrapperRepo: "",
|
|
upstreamRepo: "",
|
|
supportSite: "",
|
|
marketingSite: "",
|
|
donationUrl: null,
|
|
description: {
|
|
short: "",
|
|
long: "",
|
|
},
|
|
assets: {
|
|
icon: "",
|
|
instructions: "",
|
|
license: "",
|
|
},
|
|
containers: {},
|
|
volumes: {},
|
|
alerts: {
|
|
install: null,
|
|
update: null,
|
|
uninstall: null,
|
|
restore: null,
|
|
start: null,
|
|
stop: null,
|
|
},
|
|
dependencies: {
|
|
remoteTest: {
|
|
description: "",
|
|
requirement: { how: "", type: "opt-in" },
|
|
version: "1.0",
|
|
},
|
|
},
|
|
}),
|
|
)
|
|
.withStore<{ storeRoot: { storeLeaf: "value" } }>()
|
|
.withVault<{ vaultRoot: "value" }>()
|
|
.build(true)
|