@lavapayments/nodejs 5.2.10 → 5.2.11

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
@@ -60,6 +60,7 @@ declare class Lava {
60
60
  cohere: string;
61
61
  parasail: string;
62
62
  nebius: string;
63
+ fireworks: string;
63
64
  };
64
65
  /**
65
66
  * Create a new Lava client
package/dist/index.d.ts CHANGED
@@ -60,6 +60,7 @@ declare class Lava {
60
60
  cohere: string;
61
61
  parasail: string;
62
62
  nebius: string;
63
+ fireworks: string;
63
64
  };
64
65
  /**
65
66
  * Create a new Lava client
package/dist/index.js CHANGED
@@ -231,7 +231,8 @@ var Lava = class {
231
231
  deepinfra: `${this.baseUrl}forward?u=https://api.deepinfra.com/v1/openai`,
232
232
  cohere: `${this.baseUrl}forward?u=https://api.cohere.ai/compatibility/v1`,
233
233
  parasail: `${this.baseUrl}forward?u=https://api.parasail.io/v1`,
234
- nebius: `${this.baseUrl}forward?u=https://api.studio.nebius.com/v1`
234
+ nebius: `${this.baseUrl}forward?u=https://api.studio.nebius.com/v1`,
235
+ fireworks: `${this.baseUrl}forward?u=https://api.fireworks.ai/inference/v1`
235
236
  };
236
237
  }
237
238
  /**
package/dist/index.mjs CHANGED
@@ -204,7 +204,8 @@ var Lava = class {
204
204
  deepinfra: `${this.baseUrl}forward?u=https://api.deepinfra.com/v1/openai`,
205
205
  cohere: `${this.baseUrl}forward?u=https://api.cohere.ai/compatibility/v1`,
206
206
  parasail: `${this.baseUrl}forward?u=https://api.parasail.io/v1`,
207
- nebius: `${this.baseUrl}forward?u=https://api.studio.nebius.com/v1`
207
+ nebius: `${this.baseUrl}forward?u=https://api.studio.nebius.com/v1`,
208
+ fireworks: `${this.baseUrl}forward?u=https://api.fireworks.ai/inference/v1`
208
209
  };
209
210
  }
210
211
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lavapayments/nodejs",
3
- "version": "5.2.10",
3
+ "version": "5.2.11",
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",