Lead with Batch on the home page, drop the product changelog, add a domain note, and stop reporting success when SMTP fails. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
245 B
TypeScript
7 lines
245 B
TypeScript
export const offerIds = ["process", "product", "collaboration"] as const;
|
|
export type OfferId = (typeof offerIds)[number];
|
|
|
|
export function isOfferId(value: string): value is OfferId {
|
|
return (offerIds as readonly string[]).includes(value);
|
|
}
|