mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
- Add addKey() and add() builder methods to InputSpec with InputSpecTools - Move OuterType to last generic param on Value, List, and all dynamic methods - Plumb prefill through getActionInput end-to-end (core → container-runtime → SDK) - Filter port_forwards to enabled addresses only - Bump SDK to 0.4.0-beta.50
10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { ActionId } from './ActionId'
|
|
import type { PackageId } from './PackageId'
|
|
|
|
export type GetActionInputParams = {
|
|
packageId?: PackageId
|
|
actionId: ActionId
|
|
prefill: Record<string, unknown> | null
|
|
}
|