@lavapayments/nodejs 5.2.7 → 5.2.8

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.mts CHANGED
@@ -57,6 +57,7 @@ declare class Lava {
57
57
  elevenlabs: string;
58
58
  sambanova: string;
59
59
  deepinfra: string;
60
+ cohere: string;
60
61
  };
61
62
  /**
62
63
  * Create a new Lava client
package/dist/index.d.ts CHANGED
@@ -57,6 +57,7 @@ declare class Lava {
57
57
  elevenlabs: string;
58
58
  sambanova: string;
59
59
  deepinfra: string;
60
+ cohere: string;
60
61
  };
61
62
  /**
62
63
  * Create a new Lava client
package/dist/index.js CHANGED
@@ -228,7 +228,8 @@ var Lava = class {
228
228
  hyperbolic: `${this.baseUrl}forward?u=https://api.hyperbolic.xyz/v1`,
229
229
  elevenlabs: `${this.baseUrl}forward?u=https://api.elevenlabs.io/v1`,
230
230
  sambanova: `${this.baseUrl}forward?u=https://api.sambanova.ai/v1`,
231
- deepinfra: `${this.baseUrl}forward?u=https://api.deepinfra.com/v1/openai`
231
+ deepinfra: `${this.baseUrl}forward?u=https://api.deepinfra.com/v1/openai`,
232
+ cohere: `${this.baseUrl}forward?u=https://api.cohere.ai/compatibility/v1`
232
233
  };
233
234
  }
234
235
  /**
package/dist/index.mjs CHANGED
@@ -201,7 +201,8 @@ var Lava = class {
201
201
  hyperbolic: `${this.baseUrl}forward?u=https://api.hyperbolic.xyz/v1`,
202
202
  elevenlabs: `${this.baseUrl}forward?u=https://api.elevenlabs.io/v1`,
203
203
  sambanova: `${this.baseUrl}forward?u=https://api.sambanova.ai/v1`,
204
- deepinfra: `${this.baseUrl}forward?u=https://api.deepinfra.com/v1/openai`
204
+ deepinfra: `${this.baseUrl}forward?u=https://api.deepinfra.com/v1/openai`,
205
+ cohere: `${this.baseUrl}forward?u=https://api.cohere.ai/compatibility/v1`
205
206
  };
206
207
  }
207
208
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lavapayments/nodejs",
3
- "version": "5.2.7",
3
+ "version": "5.2.8",
4
4
  "description": "Backend SDK for Lava Payments API - enabling usage-based billing for AI services",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",