11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
import { eventTypeAppCardZod } from "../eventTypeAppCardZod";
|
||
|
|
||
|
export const appKeysSchema = z.object({
|
||
|
client_id: z.string().min(1),
|
||
|
client_secret: z.string().min(1),
|
||
|
});
|
||
|
|
||
|
export const appDataSchema = eventTypeAppCardZod;
|