fix: add publish.sh, change default baseUrl to api.armco.dev
Some checks failed
armco-org/mesa-client-sdk/pipeline/head There was a failure building this commit

This commit is contained in:
2026-01-08 02:08:48 +05:30
parent 850899149f
commit 61110f83da
2 changed files with 2 additions and 2 deletions

View File

@@ -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)
});

View File

@@ -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;