38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import { z } from '../zod'
|
|
import { Answer as AnswerPrisma, Prisma } from '@typebot.io/prisma'
|
|
|
|
export const answerSchema = z.object({
|
|
createdAt: z.date(),
|
|
resultId: z.string(),
|
|
blockId: z.string(),
|
|
groupId: z.string(),
|
|
variableId: z.string().nullable(),
|
|
content: z.string(),
|
|
storageUsed: z.number().nullable(),
|
|
// TO-DO: remove once itemId is removed from database schema
|
|
}) satisfies z.ZodType<Omit<AnswerPrisma, 'itemId'>>
|
|
|
|
export const answerInputSchema = answerSchema
|
|
.omit({
|
|
createdAt: true,
|
|
resultId: true,
|
|
variableId: true,
|
|
storageUsed: true,
|
|
})
|
|
.extend({
|
|
variableId: z.string().nullish(),
|
|
storageUsed: z.number().nullish(),
|
|
}) satisfies z.ZodType<Prisma.AnswerUncheckedUpdateInput>
|
|
|
|
export const statsSchema = z.object({
|
|
totalViews: z.number(),
|
|
totalStarts: z.number(),
|
|
totalCompleted: z.number(),
|
|
})
|
|
|
|
export type Stats = z.infer<typeof statsSchema>
|
|
|
|
export type Answer = z.infer<typeof answerSchema>
|
|
|
|
export type AnswerInput = z.infer<typeof answerInputSchema>
|