feat(overlay-sync): wire OverlaySyncService into DI, IPC and renderer gating
This commit is contained in:
10
packages/application/ports/IAutomationEventPublisher.ts
Normal file
10
packages/application/ports/IAutomationEventPublisher.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export type AutomationEvent = {
|
||||
actionId?: string
|
||||
type: 'panel-attached'|'modal-opened'|'action-started'|'action-complete'|'action-failed'|'panel-missing'
|
||||
timestamp: number
|
||||
payload?: any
|
||||
}
|
||||
|
||||
export interface IAutomationEventPublisher {
|
||||
publish(event: AutomationEvent): Promise<void>
|
||||
}
|
||||
7
packages/application/ports/IOverlaySyncPort.ts
Normal file
7
packages/application/ports/IOverlaySyncPort.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export type OverlayAction = { id: string; label: string; meta?: Record<string, unknown>; timeoutMs?: number }
|
||||
export type ActionAck = { id: string; status: 'confirmed' | 'tentative' | 'failed'; reason?: string }
|
||||
|
||||
export interface IOverlaySyncPort {
|
||||
startAction(action: OverlayAction): Promise<ActionAck>
|
||||
cancelAction(actionId: string): Promise<void>
|
||||
}
|
||||
Reference in New Issue
Block a user