mirror of
https://github.com/formbricks/formbricks.git
synced 2026-03-01 03:52:25 -06:00
* add new zod schema for responses * add new client endpoints for responses * add services for responses and surveys * add new responses model to webhooks & email --------- Co-authored-by: Johannes <johannes@formbricks.com>
12 lines
452 B
TypeScript
12 lines
452 B
TypeScript
import z from "zod";
|
|
|
|
export const ZEventProperties = z.record(z.string());
|
|
export { ZEventClassNoCodeConfig } from "@formbricks/types/v1/eventClasses";
|
|
|
|
export { ZResponseData } from "@formbricks/types/v1/responses";
|
|
export const ZResponseMeta = z.record(z.union([z.string(), z.number()]));
|
|
|
|
export { ZSurveyQuestions, ZSurveyThankYouCard } from "@formbricks/types/v1/surveys";
|
|
|
|
export { ZUserNotificationSettings } from "@formbricks/types/v1/users";
|