From 452c41a75aa2f9036614d677fda3867221db959e Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sun, 21 Jul 2024 15:41:56 -0700 Subject: add a simple email job --- src/canary/job.ts | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/canary/job.ts (limited to 'src/canary/job.ts') diff --git a/src/canary/job.ts b/src/canary/job.ts new file mode 100644 index 0000000..61af876 --- /dev/null +++ b/src/canary/job.ts @@ -0,0 +1,41 @@ +import { D } from "../util"; + +export interface PingJob { + hosts: string[]; +} + +export interface Retry { + retries: number; + interval: D.Duration; +} + +export interface HealthCheckJob { + healthcheck_routes: string[]; +} + +export interface DnsJob { + resolutions: { [key: string]: string }; +} + +export interface EmailInstruction { + email: string; + username: string; + password: string; + server: string; +} + +export interface EmailFromInstruction extends EmailInstruction { + send_port: number; +} + +export interface EmailToInstruction extends EmailInstruction { + read_port: number; +} + +export interface EmailJob { + from: EmailFromInstruction; + to: EmailToInstruction; + readRetry: Retry; +} + +export type Job = EmailJob | PingJob | HealthCheckJob | DnsJob; -- cgit v1.3