fix(trigger-schedule): make timezone field optional to match actual usage

This commit is contained in:
lyzno1 2025-10-13 17:28:19 +08:00
parent 8e235dc92c
commit 49af7eb370
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -16,5 +16,5 @@ export type ScheduleTriggerNodeType = CommonNodeType & {
frequency?: ScheduleFrequency
cron_expression?: string
visual_config?: VisualConfig
timezone: string
timezone?: string
}