mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-07 08:02:40 +00:00
40 lines
1.6 KiB
TypeScript
40 lines
1.6 KiB
TypeScript
import type { NewScript } from '$lib/gen'
|
|
import type { AssetWithAltAccessType } from './assets/lib'
|
|
import type { ScriptBuilderWhitelabelCustomUi } from './custom_ui'
|
|
import type { DiffDrawerI } from './diff_drawer'
|
|
import type { ScriptBuilderFunctionExports } from './scriptBuilder'
|
|
import type { ScheduleTrigger } from './triggers'
|
|
import type { NewScriptWithDraftAndDraftTriggers, Trigger } from './triggers/utils'
|
|
|
|
export interface ScriptBuilderProps {
|
|
script: NewScript & {
|
|
draft_triggers?: Trigger[]
|
|
assets?: AssetWithAltAccessType[]
|
|
}
|
|
disableAi?: boolean
|
|
fullyLoaded?: boolean
|
|
initialPath?: string
|
|
template?: 'docker' | 'bunnative' | 'claudesandbox' | 'script'
|
|
initialArgs?: Record<string, any>
|
|
lockedLanguage?: boolean
|
|
showMeta?: boolean
|
|
neverShowMeta?: boolean
|
|
diffDrawer?: DiffDrawerI | undefined
|
|
savedScript?: NewScriptWithDraftAndDraftTriggers | undefined
|
|
searchParams?: URLSearchParams
|
|
disableHistoryChange?: boolean
|
|
replaceStateFn?: (url: string) => void
|
|
customUi?: ScriptBuilderWhitelabelCustomUi
|
|
savedPrimarySchedule?: ScheduleTrigger | undefined
|
|
functionExports?: ((exports: ScriptBuilderFunctionExports) => void) | undefined
|
|
children?: import('svelte').Snippet
|
|
onDeploy?: (e: { path: string; hash: string }) => void
|
|
onDeployError?: (e: { path: string; error: any }) => void
|
|
onSaveInitial?: (e: { path: string; hash: string }) => void
|
|
onHistoryRestore?: () => void
|
|
onSaveDraftOnlyAtNewPath?: (e: { path: string }) => void
|
|
onSaveDraft?: (e: { path: string; savedAtNewPath: boolean; script: NewScript }) => void
|
|
onSeeDetails?: (e: { path: string }) => void
|
|
onSaveDraftError?: (e: { path: string; error: any }) => void
|
|
}
|