Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: small changes

authored by

Maximilian Kaske and committed by
Maximilian Kaske
ac735048 c027c477

+8 -13
+2
packages/api/src/env.ts
··· 8 8 TEAM_ID_VERCEL: z.string(), 9 9 VERCEL_AUTH_BEARER_TOKEN: z.string(), 10 10 TINY_BIRD_API_KEY: z.string(), 11 + RESEND_API_KEY: z.string(), 11 12 }, 12 13 13 14 runtimeEnv: { ··· 16 17 TEAM_ID_VERCEL: process.env.TEAM_ID_VERCEL, 17 18 VERCEL_AUTH_BEARER_TOKEN: process.env.VERCEL_AUTH_BEARER_TOKEN, 18 19 TINY_BIRD_API_KEY: process.env.TINY_BIRD_API_KEY, 20 + RESEND_API_KEY: process.env.RESEND_API_KEY, 19 21 }, 20 22 skipValidation: process.env.NODE_ENV === "test", 21 23 });
+6 -13
packages/emails/src/index.ts
··· 1 - import { Alert } from "../emails/alert"; 2 - import { FollowUpEmail } from "../emails/followup"; 3 - import { SubscribeEmail } from "../emails/subscribe"; 4 - import { WelcomeEmail } from "../emails/welcome"; 5 - import { validateEmailNotDisposable } from "./utils"; 6 - 7 - export { 8 - WelcomeEmail, 9 - validateEmailNotDisposable, 10 - Alert, 11 - SubscribeEmail, 12 - FollowUpEmail, 13 - }; 1 + export * from "../emails/alert"; 2 + export * from "../emails/followup"; 3 + export * from "../emails/subscribe"; 4 + export * from "../emails/welcome"; 5 + export * from "../emails/team-invitation"; 6 + export * from "./utils"; 14 7 15 8 export { sendEmail, sendEmailHtml } from "./send"; 16 9