mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
* feat: added current person attributes to the user response * feat: added tooltip showing user attributes in response view * fix: switched to using the service layer and added annotations for json field * rename PersonAttributesData to ResponsePersonAttributes to fit current naming scheme --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
12 lines
479 B
TypeScript
12 lines
479 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 } from "@formbricks/types/v1/surveys";
|
|
|
|
export { ZUserNotificationSettings } from "@formbricks/types/v1/users";
|