( content: string, )
| 4383 | } |
| 4384 | |
| 4385 | export function createScheduledTaskFireMessage( |
| 4386 | content: string, |
| 4387 | ): SystemScheduledTaskFireMessage { |
| 4388 | return { |
| 4389 | type: 'system', |
| 4390 | subtype: 'scheduled_task_fire', |
| 4391 | content, |
| 4392 | isMeta: false, |
| 4393 | timestamp: new Date().toISOString(), |
| 4394 | uuid: randomUUID(), |
| 4395 | } |
| 4396 | } |
| 4397 | |
| 4398 | export function createStopHookSummaryMessage( |
| 4399 | hookCount: number, |