( commands: string[], )
| 4352 | } |
| 4353 | |
| 4354 | export function createPermissionRetryMessage( |
| 4355 | commands: string[], |
| 4356 | ): SystemPermissionRetryMessage { |
| 4357 | return { |
| 4358 | type: 'system', |
| 4359 | subtype: 'permission_retry', |
| 4360 | content: `Allowed ${commands.join(', ')}`, |
| 4361 | commands, |
| 4362 | level: 'info', |
| 4363 | isMeta: false, |
| 4364 | timestamp: new Date().toISOString(), |
| 4365 | uuid: randomUUID(), |
| 4366 | } |
| 4367 | } |
| 4368 | |
| 4369 | export function createBridgeStatusMessage( |
| 4370 | url: string, |