Spaces:
Runtime error
Runtime error
File size: 941 Bytes
46252cd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | /**
* OpenWA JavaScript/TypeScript SDK.
*
* Official client library for the OpenWA WhatsApp API Gateway.
*
* @example
* ```typescript
* import { OpenWAClient, OpenWAApiError } from '@rmyndharis/openwa';
*
* const client = new OpenWAClient({
* baseUrl: 'http://localhost:2785',
* apiKey: 'owa_k1_…',
* });
*
* await client.sessions.start('my-session');
* const result = await client.messages.sendText('my-session', {
* chatId: '628123456789@c.us',
* text: 'Hello from the OpenWA SDK!',
* });
* console.log(result.messageId);
* ```
*
* @packageDocumentation
*/
export { OpenWAClient } from './client.js';
export { default } from './client.js';
export type { OpenWAClientOptions } from './client.js';
export * from './errors.js';
export type * from './types.js';
export type { ClientConfig, FetchLike, HttpMethod, RequestOptions } from './http.js';
export { buildUrl, warnIfInsecureHttpUrl } from './http.js';
|