From 61110f83da3165b38c940995f23dacac5ebacf4e Mon Sep 17 00:00:00 2001 From: mohiit1502 Date: Thu, 8 Jan 2026 02:08:48 +0530 Subject: [PATCH] fix: add publish.sh, change default baseUrl to api.armco.dev --- README.md | 2 +- src/client.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e50340..0d2bf5d 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.sandesh.armco.dev) + baseUrl: 'https://custom.api.url', // Optional (default: https://api.armco.dev) timeout: 30000, // Optional (default: 30000ms) retries: 3, // Optional (default: 3) }); diff --git a/src/client.ts b/src/client.ts index efd548d..ffd2482 100644 --- a/src/client.ts +++ b/src/client.ts @@ -8,7 +8,7 @@ import type { WebhookPayload, } from './types'; -const DEFAULT_BASE_URL = 'https://api.sandesh.armco.dev'; +const DEFAULT_BASE_URL = 'https://api.armco.dev'; const DEFAULT_TIMEOUT = 30000; const DEFAULT_RETRIES = 3;