11 lines
332 B
TypeScript
11 lines
332 B
TypeScript
import { CollaborationType, CollaboratorsOnTypebots } from '@typebot.io/prisma'
|
|
import { z } from 'zod'
|
|
|
|
export const collaboratorSchema = z.object({
|
|
type: z.nativeEnum(CollaborationType),
|
|
userId: z.string(),
|
|
typebotId: z.string(),
|
|
createdAt: z.date(),
|
|
updatedAt: z.date(),
|
|
}) satisfies z.ZodType<CollaboratorsOnTypebots>
|