fix(core): support unlimited shell timeouts

This commit is contained in:
Dax Raad
2026-07-06 19:32:22 -04:00
parent 7668eb728d
commit 59790380de
11 changed files with 215 additions and 49 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ export const Event = { Created, Exited, Deleted, Definitions: inventory(Created,
export const CreateInput = Schema.Struct({
command: Schema.String,
cwd: optional(Schema.String),
timeout: optional(NonNegativeInt),
timeout: NonNegativeInt,
metadata: optional(Metadata),
})
export interface CreateInput extends Schema.Schema.Type<typeof CreateInput> {}