* feat: Add OAuth support for closecom app linking * Fix types --------- Co-authored-by: Anik Dhabal Babu <81948346+anikdhabal@users.noreply.github.com>
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
import { z } from "zod";
|
|
|
|
import { eventTypeAppCardZod } from "../eventTypeAppCardZod";
|
|
|
|
export const appDataSchema = eventTypeAppCardZod;
|
|
|
|
export const appKeysSchema = z.object({
|
|
client_id: z.string(),
|
|
client_secret: z.string(),
|
|
});
|