UNPKG

@solufy/evolution-sdk

Version:

Unofficial SDK for the Evolution Whatsapp API v2

12 lines (9 loc) 791 B
import { z } from 'zod'; import { Jid, GroupJid, GroupInviteCode } from '../types/tags.mjs'; declare const PhoneNumberSchema: z.ZodEffects<z.ZodType<string, z.ZodTypeDef, string>, string, string>; declare const JidSchema: z.ZodType<Jid>; declare const GroupJidSchema: z.ZodType<GroupJid>; declare const GroupInviteCodeSchema: z.ZodType<GroupInviteCode>; declare const ApiNumberSchema: z.ZodUnion<[z.ZodEffects<z.ZodType<string, z.ZodTypeDef, string>, string, string>, z.ZodType<`${string}@s.whatsapp.net`, z.ZodTypeDef, `${string}@s.whatsapp.net`>, z.ZodType<`${string}@g.us`, z.ZodTypeDef, `${string}@g.us`>]>; declare const mediaSchema: z.ZodUnion<[z.ZodString, z.ZodString]>; export { ApiNumberSchema, GroupInviteCodeSchema, GroupJidSchema, JidSchema, PhoneNumberSchema, mediaSchema };