@aerostack/core 0.8.3 → 0.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.js CHANGED
@@ -4,7 +4,7 @@ exports.AerostackClient = exports.AerocallClient = void 0;
4
4
  /** @deprecated Use AerostackClient instead. */
5
5
  class AerocallClient {
6
6
  constructor(config) {
7
- this.baseUrl = config.baseUrl || 'https://api.aerocall.ai/v1';
7
+ this.baseUrl = config.baseUrl || 'https://api.aerostack.dev/v1';
8
8
  this.apiKey = config.apiKey;
9
9
  this.jwt = config.jwt;
10
10
  this.projectId = config.projectId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aerostack/core",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "description": "Shared types and RPC client for Aerostack SDKs",
5
5
  "sideEffects": false,
6
6
  "main": "dist/index.js",
package/src/client.ts CHANGED
@@ -18,7 +18,7 @@ export class AerocallClient implements AerostackRPC {
18
18
  private projectId?: string;
19
19
 
20
20
  constructor(config: AerocallConfig) {
21
- this.baseUrl = config.baseUrl || 'https://api.aerocall.ai/v1';
21
+ this.baseUrl = config.baseUrl || 'https://api.aerostack.dev/v1';
22
22
  this.apiKey = config.apiKey;
23
23
  this.jwt = config.jwt;
24
24
  this.projectId = config.projectId;