mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-08 02:58:40 -06:00
* completed frontend * Adds email verifaction for Link Surveys * remove console.log * run pnpm format * rename userId to verify * add loading state * fix type names * add types to prisma --------- Co-authored-by: Dhruwang Jariwala <dhruwang@Dhruwangs-MacBook-Pro.local> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
16 lines
473 B
TypeScript
16 lines
473 B
TypeScript
import z from "zod";
|
|
|
|
export const ZEventProperties = z.record(z.string());
|
|
export { ZActionClassNoCodeConfig } from "@formbricks/types/v1/actionClasses";
|
|
|
|
export { ZResponseData, ZResponsePersonAttributes, ZResponseMeta } from "@formbricks/types/v1/responses";
|
|
|
|
export {
|
|
ZSurveyQuestions,
|
|
ZSurveyThankYouCard,
|
|
ZSurveyClosedMessage,
|
|
ZSurveyVerifyEmail,
|
|
} from "@formbricks/types/v1/surveys";
|
|
|
|
export { ZUserNotificationSettings } from "@formbricks/types/v1/users";
|