/**
 * Outcome of a session bulk-communication send, recorded once per send in
 * hdb_session_communication_status (append-only history), keyed by program + session + purpose.
 *
 * - TRIGGERED: at least one recipient was dispatched (queued or sent directly) on some channel.
 * - SKIPPED:   nothing went out — every resolved recipient/channel was skipped (no contact,
 *              or the template was not configured for the program).
 */
export enum SessionCommunicationStatusEnum {
  TRIGGERED = 'TRIGGERED',
  SKIPPED = 'SKIPPED',
}
