mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
* feat: added surveyClosedMessage field to database and also added it's types * feat: added the custom closed message to the frontend * fix: fixes build issue * fix: refactored the code to toggle surveyClosedMessage and redirectUrl * pnpm format * recreate prisma migration --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
12 lines
501 B
TypeScript
12 lines
501 B
TypeScript
import z from "zod";
|
|
|
|
export const ZEventProperties = z.record(z.string());
|
|
export { ZEventClassNoCodeConfig } from "@formbricks/types/v1/eventClasses";
|
|
|
|
export { ZResponseData, ZResponsePersonAttributes } from "@formbricks/types/v1/responses";
|
|
export const ZResponseMeta = z.record(z.union([z.string(), z.number()]));
|
|
|
|
export { ZSurveyQuestions, ZSurveyThankYouCard, ZSurveyClosedMessage } from "@formbricks/types/v1/surveys";
|
|
|
|
export { ZUserNotificationSettings } from "@formbricks/types/v1/users";
|