feat(signals): add body and from_addr to StageSignal interface
This commit is contained in:
parent
218f4ff9c8
commit
3b2df5e89e
1 changed files with 2 additions and 0 deletions
|
|
@ -7,6 +7,8 @@ export interface StageSignal {
|
|||
subject: string
|
||||
received_at: string // ISO timestamp
|
||||
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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue