feat(signals): add body and from_addr to StageSignal interface

This commit is contained in:
pyr0ball 2026-03-19 19:19:27 -07:00
parent 218f4ff9c8
commit 3b2df5e89e

View file

@ -7,6 +7,8 @@ export interface StageSignal {
subject: string subject: string
received_at: string // ISO timestamp received_at: string // ISO timestamp
stage_signal: 'interview_scheduled' | 'positive_response' | 'offer_received' | 'survey_received' | 'rejected' stage_signal: 'interview_scheduled' | 'positive_response' | 'offer_received' | 'survey_received' | 'rejected'
body: string | null // email body text; null if not available
from_addr: string | null // sender address; null if not available
} }
export interface PipelineJob { export interface PipelineJob {