| 1 | export type RuntimeDomain = 'generation' | 'image' | 'style' | 'edit' |
| 2 | |
| 3 | export type RuntimeOwner = { |
| 4 | sessionId?: string |
| 5 | styleId?: string |
| 6 | imageHistoryOwner?: string |
| 7 | } |
| 8 | |
| 9 | export type RuntimeAudience = |
| 10 | | { kind: 'owner' } |
| 11 | | { kind: 'requester'; subscriberId: string } |
| 12 | | { kind: 'broadcast' } |
| 13 |