mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-11 00:59:17 -06:00
* added intro and surveySelect page * added home page and wrapper component * added spreadsheet select * added data write functionality and added integration schema model * improved UX * reworked UI * added google sheet integration * removed some unused code * added user email * UI tweaks * fixed build issues and made added question to top of spreadsheets * adds refreshSheets and added empty survey/spreadsheets text * restored pnpm-lock * added duplicate sheet warning * move process.env to t3env * move migration * update docs link, add note to show that sheets integration is not configured * Add simple docs page for google-sheets * added session check * restored pnpm-lock * Merge branch 'main' of github.com:formbricks/formbricks into Integration/Google-sheet * added google sheet env variables to runtimeEnv --------- Co-authored-by: Johannes <johannes@formbricks.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
17 lines
545 B
TypeScript
17 lines
545 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,
|
|
ZSurveyVerifyEmail,
|
|
} from "@formbricks/types/v1/surveys";
|
|
|
|
export { ZUserNotificationSettings } from "@formbricks/types/v1/users";
|