mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-24 03:21:20 -05:00
117ec317de
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
28 lines
922 B
TypeScript
28 lines
922 B
TypeScript
/* eslint-disable import/no-relative-packages -- required for importing types */
|
|
import { z } from "zod";
|
|
|
|
export const ZActionProperties = z.record(z.string());
|
|
export { ZActionClassNoCodeConfig } from "../types/action-classes";
|
|
export { ZIntegrationConfig } from "../types/integration";
|
|
|
|
export { ZResponseData, ZResponseMeta, ZResponseTtc } from "../types/responses";
|
|
|
|
export {
|
|
ZSurveyWelcomeCard,
|
|
ZSurveyQuestions,
|
|
ZSurveyHiddenFields,
|
|
ZSurveyVariables,
|
|
ZSurveyClosedMessage,
|
|
ZSurveyProjectOverwrites,
|
|
ZSurveyStyling,
|
|
ZSurveySingleUse,
|
|
ZSurveyInlineTriggers,
|
|
ZSurveyEnding,
|
|
} from "../types/surveys/types";
|
|
|
|
export { ZSurveyFollowUpAction, ZSurveyFollowUpTrigger } from "./types/survey-follow-up";
|
|
|
|
export { ZSegmentFilters } from "../types/segment";
|
|
export { ZOrganizationBilling, ZOrganizationWhitelabel } from "../types/organizations";
|
|
export { ZUserNotificationSettings } from "../types/user";
|