mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-18 01:00:40 -06:00
* feat: styles ui * feat: handling brand color and position * schema update * survey type update * feat: local styles preview * prisma migration * feat: overriding global settings * fix: update wording * fix: do not show positioning in link mode * update wording * feat: new component for placement ui * fix: destructuring localsurvey * fix: overwritePosition optional * fix: brandcolor zod validation * feat: overwrite highlight border setting * update wording * merge conflit resolved * fix: minor review suggestions * fix: renamed localsurvey to survey * fix: db schema * fix comment in .env.example * fix build errors * fix: placement * fix getFirstEnvironmentByUserId function * fix build errors --------- Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com> Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
19 lines
593 B
TypeScript
19 lines
593 B
TypeScript
import z from "zod";
|
|
|
|
export const ZEventProperties = z.record(z.string());
|
|
export { ZActionClassNoCodeConfig } from "@formbricks/types/v1/actionClasses";
|
|
export { ZIntegrationConfig } from "@formbricks/types/v1/integrations";
|
|
|
|
export { ZResponseData, ZResponsePersonAttributes, ZResponseMeta } from "@formbricks/types/v1/responses";
|
|
|
|
export {
|
|
ZSurveyQuestions,
|
|
ZSurveyThankYouCard,
|
|
ZSurveyClosedMessage,
|
|
ZSurveyProductOverwrites,
|
|
ZSurveyVerifyEmail,
|
|
ZSurveySingleUse,
|
|
} from "@formbricks/types/v1/surveys";
|
|
|
|
export { ZUserNotificationSettings } from "@formbricks/types/v1/users";
|