@beep-it/sdk-core 0.1.0 → 0.1.1

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/index.d.ts CHANGED
@@ -13,7 +13,7 @@ export interface BeepClientOptions {
13
13
  apiKey: string;
14
14
  /**
15
15
  * Optional server URL override for development/testing
16
- * @default 'https://api.beep.com'
16
+ * @default 'https://api.justbeep.it'
17
17
  */
18
18
  serverUrl?: string;
19
19
  }
package/dist/index.js CHANGED
@@ -467,7 +467,7 @@ var BeepClient = class {
467
467
  throw new Error("API key is required to initialize BeepClient");
468
468
  }
469
469
  this.client = import_axios.default.create({
470
- baseURL: options.serverUrl || "https://api.beep.com",
470
+ baseURL: options.serverUrl || "https://api.justbeep.it",
471
471
  headers: {
472
472
  Authorization: `Bearer ${options.apiKey}`,
473
473
  "Content-Type": "application/json",
package/dist/index.mjs CHANGED
@@ -431,7 +431,7 @@ var BeepClient = class {
431
431
  throw new Error("API key is required to initialize BeepClient");
432
432
  }
433
433
  this.client = axios.create({
434
- baseURL: options.serverUrl || "https://api.beep.com",
434
+ baseURL: options.serverUrl || "https://api.justbeep.it",
435
435
  headers: {
436
436
  Authorization: `Bearer ${options.apiKey}`,
437
437
  "Content-Type": "application/json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beep-it/sdk-core",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Official TypeScript SDK for the BEEP Payment and Invoice Server",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",