Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: sean-brydon <55134778+sean-brydon@users.noreply.github.com>
12 lines
243 B
TypeScript
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(",");
|