@lavapayments/nodejs 5.2.1 → 5.2.3

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
@@ -52,6 +52,8 @@ declare class Lava {
52
52
  groq: string;
53
53
  novita: string;
54
54
  vercel: string;
55
+ together: string;
56
+ hyperbolic: string;
55
57
  };
56
58
  /**
57
59
  * Create a new Lava client
package/dist/index.d.ts CHANGED
@@ -52,6 +52,8 @@ declare class Lava {
52
52
  groq: string;
53
53
  novita: string;
54
54
  vercel: string;
55
+ together: string;
56
+ hyperbolic: string;
55
57
  };
56
58
  /**
57
59
  * Create a new Lava client
package/dist/index.js CHANGED
@@ -223,7 +223,9 @@ var Lava = class {
223
223
  inference: `${this.baseUrl}forward?u=https://api.inference.net/v1`,
224
224
  groq: `${this.baseUrl}forward?u=https://api.groq.com/openai/v1`,
225
225
  novita: `${this.baseUrl}forward?u=https://api.novita.ai/v3/openai`,
226
- vercel: `${this.baseUrl}forward?u=https://api.v0.dev/v1`
226
+ vercel: `${this.baseUrl}forward?u=https://api.v0.dev/v1`,
227
+ together: `${this.baseUrl}forward?u=https://api.together.xyz/v1`,
228
+ hyperbolic: `${this.baseUrl}forward?u=https://api.hyperbolic.xyz/v1`
227
229
  };
228
230
  }
229
231
  /**
package/dist/index.mjs CHANGED
@@ -196,7 +196,9 @@ var Lava = class {
196
196
  inference: `${this.baseUrl}forward?u=https://api.inference.net/v1`,
197
197
  groq: `${this.baseUrl}forward?u=https://api.groq.com/openai/v1`,
198
198
  novita: `${this.baseUrl}forward?u=https://api.novita.ai/v3/openai`,
199
- vercel: `${this.baseUrl}forward?u=https://api.v0.dev/v1`
199
+ vercel: `${this.baseUrl}forward?u=https://api.v0.dev/v1`,
200
+ together: `${this.baseUrl}forward?u=https://api.together.xyz/v1`,
201
+ hyperbolic: `${this.baseUrl}forward?u=https://api.hyperbolic.xyz/v1`
200
202
  };
201
203
  }
202
204
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lavapayments/nodejs",
3
- "version": "5.2.1",
3
+ "version": "5.2.3",
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",