21 lines
582 B
TypeScript
21 lines
582 B
TypeScript
import { z } from "zod";
|
|
|
|
export const StripeConfigSchema = z.object({
|
|
test_api_key: z.string(),
|
|
live_api_key: z.string(),
|
|
test_webhook_secret: z.string(),
|
|
live_webhook_secret: z.string(),
|
|
success_url: z.string(),
|
|
});
|
|
|
|
export const OrganizationSchema = z.object({
|
|
id: z.string(),
|
|
slug: z.string(),
|
|
default_currency: z.string(),
|
|
stripe_connected: z.boolean().default(false),
|
|
stripe_config: StripeConfigSchema.optional().nullable(),
|
|
});
|
|
|
|
export type Organization = z.infer<typeof OrganizationSchema>;
|
|
export type StripeConfig = z.infer<typeof StripeConfigSchema>;
|