@lavapayments/nodejs 5.2.0 → 5.2.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.mts CHANGED
@@ -51,6 +51,7 @@ declare class Lava {
51
51
  inference: string;
52
52
  groq: string;
53
53
  novita: string;
54
+ vercel: string;
54
55
  };
55
56
  /**
56
57
  * Create a new Lava client
package/dist/index.d.ts CHANGED
@@ -51,6 +51,7 @@ declare class Lava {
51
51
  inference: string;
52
52
  groq: string;
53
53
  novita: string;
54
+ vercel: string;
54
55
  };
55
56
  /**
56
57
  * Create a new Lava client
package/dist/index.js CHANGED
@@ -222,7 +222,8 @@ var Lava = class {
222
222
  kluster: `${this.baseUrl}forward?u=https://api.kluster.ai/v1`,
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
- novita: `${this.baseUrl}forward?u=https://api.novita.ai/v3/openai`
225
+ novita: `${this.baseUrl}forward?u=https://api.novita.ai/v3/openai`,
226
+ vercel: `${this.baseUrl}forward?u=https://api.v0.dev/v1`
226
227
  };
227
228
  }
228
229
  /**
package/dist/index.mjs CHANGED
@@ -195,7 +195,8 @@ var Lava = class {
195
195
  kluster: `${this.baseUrl}forward?u=https://api.kluster.ai/v1`,
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
- novita: `${this.baseUrl}forward?u=https://api.novita.ai/v3/openai`
198
+ novita: `${this.baseUrl}forward?u=https://api.novita.ai/v3/openai`,
199
+ vercel: `${this.baseUrl}forward?u=https://api.v0.dev/v1`
199
200
  };
200
201
  }
201
202
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lavapayments/nodejs",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
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",