|
import { z } from "zod";
|
|
|
|
export const ZGenerateAuthCodeInputSchema = z.object({
|
|
clientId: z.string(),
|
|
scopes: z.array(z.string()),
|
|
teamSlug: z.string().optional(),
|
|
});
|
|
|
|
export type TGenerateAuthCodeInputSchema = z.infer<typeof ZGenerateAuthCodeInputSchema>;
|