diff --git a/admin-compliance/types/infrastructure-modules.ts b/admin-compliance/types/infrastructure-modules.ts new file mode 100644 index 00000000..ca189c2b --- /dev/null +++ b/admin-compliance/types/infrastructure-modules.ts @@ -0,0 +1,21 @@ +export interface WoodpeckerWebhookPayload { + event: string + repo_id: number + pipeline_number: number + branch?: string + commit?: string + author?: string + message?: string +} + +export interface ExtractedError { + message: string + file_path?: string + service?: string + category: string + step?: string + line?: number + suggested_fix?: string +} + +export type BacklogSource = 'ci_cd' | 'manual' | 'scan'