diff --git a/README.md b/README.md index 0d2bf5d..dfd6ff5 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ await mesa.send({ ```typescript const mesa = new MesaClient({ apiKey: 'your-api-key', // Required - baseUrl: 'https://custom.api.url', // Optional (default: https://api.armco.dev) + baseUrl: 'https://custom.api.url', // Optional (default: https://mesa.armco.dev) timeout: 30000, // Optional (default: 30000ms) retries: 3, // Optional (default: 3) }); diff --git a/package.json b/package.json index 3cf5b8e..568fe3a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@armco/mesa-sdk", - "version": "1.0.1", + "version": "1.0.2", "description": "Official Node.js SDK for Sandesh/Mesa Email Platform", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/client.ts b/src/client.ts index ffd2482..b32b944 100644 --- a/src/client.ts +++ b/src/client.ts @@ -8,7 +8,7 @@ import type { WebhookPayload, } from './types'; -const DEFAULT_BASE_URL = 'https://api.armco.dev'; +const DEFAULT_BASE_URL = 'https://mesa.armco.dev'; const DEFAULT_TIMEOUT = 30000; const DEFAULT_RETRIES = 3;