Files
calendar/packages/app-store/dub/lib/utils.ts
T
2025-05-22 09:18:45 -07:00

12 lines
243 B
TypeScript

import { z } from "zod";
export const dubAppKeysSchema = z.object({
client_id: z.string(),
client_secret: z.string(),
redirect_uris: z.string(),
});
const dubScope = ["workspaces.read"];
export const scopeString = dubScope.join(",");