UNPKG

@solufy/evolution-sdk

Version:

Unofficial SDK for the Evolution Whatsapp API v2

20 lines 359 B
// src/schemas/client.ts import { z } from "zod"; var ClientOptionsSchema = z.object({ /** * Your server URL */ serverUrl: z.string().url(), /** * Your instance token or global API key */ token: z.string(), /** * Your instance name */ instance: z.string() }); export { ClientOptionsSchema }; //# sourceMappingURL=client.mjs.map