Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
36 lines
697 B
TypeScript
36 lines
697 B
TypeScript
export interface CustomField {
|
|
name: string;
|
|
key: string;
|
|
}
|
|
|
|
export interface SubscriberFields {
|
|
city: string | null;
|
|
company: string | null;
|
|
country: string | null;
|
|
last_name: string | null;
|
|
name: string | null;
|
|
phone: string | null;
|
|
state: string | null;
|
|
z_i_p: string | null;
|
|
}
|
|
|
|
export interface Subscriber {
|
|
id: string;
|
|
email: string;
|
|
status: string;
|
|
source: string;
|
|
sent: number;
|
|
opens_count: number;
|
|
clicks_count: number;
|
|
open_rate: number;
|
|
click_rate: number;
|
|
ip_address: string | null;
|
|
subscribed_at: string;
|
|
unsubscribed_at: string | null;
|
|
created_at: string;
|
|
updated_at: string;
|
|
fields: SubscriberFields;
|
|
opted_in_at: string | null;
|
|
optin_ip: string | null;
|
|
}
|