{"version":3,"file":"webTasks.cjs","names":[],"sources":["../../../src/types/webTasks.ts"],"sourcesContent":["/** Browser-safe task view published by the cockpit hub channel. */\nexport const TASKS_CHANNEL_TYPE = 'task_graph';\n\nexport type WebTaskStatus = 'pending' | 'in_progress' | 'completed' | 'failed' | 'deleted';\n\nexport interface WebTask {\n  id: number;\n  subject: string;\n  description?: string;\n  activeForm?: string;\n  status: WebTaskStatus;\n  blockedBy: number[];\n  owner?: string;\n  updatedAt?: string;\n  delegation?: {\n    agent?: string;\n    state?: string;\n  };\n}\n\nexport interface WebTasksPayload {\n  tasks: WebTask[];\n  rev: number;\n}\n"],"mappings":";;AACA,MAAa,qBAAqB"}