diff options
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/lib/api.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/lib/api.ts b/packages/lib/api.ts index ba609b16..e6ca8555 100644 --- a/packages/lib/api.ts +++ b/packages/lib/api.ts @@ -191,6 +191,16 @@ export const apiSchema = createSchema({ "@get/waitlist/status": { output: WaitlistStatusResponseSchema, }, + + "@post/emails/welcome/pro": { + input: z.object({ + email: z.string(), + firstName: z.string(), + }), + output: z.object({ + message: z.string(), + }), + } }) export const $fetch = createFetch({ |