feat(signals): add body and from_addr to StageSignal interface
This commit is contained in:
parent
353c07cf92
commit
b20fef6c03
1 changed files with 2 additions and 0 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue