import { z } from '../zod' import { stripeCredentialsSchema } from './blocks/inputs/payment/schema' import { googleSheetsCredentialsSchema } from './blocks/integrations/googleSheets/schema' import { smtpCredentialsSchema } from './blocks/integrations/sendEmail' import { whatsAppCredentialsSchema } from './whatsapp' import { zemanticAiCredentialsSchema } from './blocks' import { openAICredentialsSchema } from './blocks/integrations/openai' export const credentialsSchema = z.discriminatedUnion('type', [ smtpCredentialsSchema, googleSheetsCredentialsSchema, stripeCredentialsSchema, openAICredentialsSchema, whatsAppCredentialsSchema, zemanticAiCredentialsSchema, ]) export type Credentials = z.infer