feat: new connect flow

This commit is contained in:
John Yeo
2025-10-18 18:10:57 +01:00
parent 411f6a6bc4
commit 5d759eba8d
67 changed files with 2439 additions and 1085 deletions

View File

@@ -13,6 +13,14 @@ export const FrontendOrgSchema = z.object({
live_pkey: z.string().nullable(),
stripe_connection: z.string(),
master: z
.object({
id: z.string(),
name: z.string(),
slug: z.string(),
})
.nullable(),
through_master: z.boolean(),
});
export type FrontendOrg = z.infer<typeof FrontendOrgSchema>;