@lavapayments/nodejs 5.2.13 → 5.3.0

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
@@ -63,6 +63,7 @@ declare class Lava {
63
63
  fireworks: string;
64
64
  cerebras: string;
65
65
  targon: string;
66
+ gmicloud: string;
66
67
  };
67
68
  /**
68
69
  * Create a new Lava client
@@ -222,6 +223,8 @@ type RestRequest = {
222
223
  type RestUsage = {
223
224
  items: {
224
225
  date: string;
226
+ start: string;
227
+ end: string;
225
228
  total_requests: number;
226
229
  total_usage_tokens: number;
227
230
  total_usage_cost: string;
package/dist/index.d.ts CHANGED
@@ -63,6 +63,7 @@ declare class Lava {
63
63
  fireworks: string;
64
64
  cerebras: string;
65
65
  targon: string;
66
+ gmicloud: string;
66
67
  };
67
68
  /**
68
69
  * Create a new Lava client
@@ -222,6 +223,8 @@ type RestRequest = {
222
223
  type RestUsage = {
223
224
  items: {
224
225
  date: string;
226
+ start: string;
227
+ end: string;
225
228
  total_requests: number;
226
229
  total_usage_tokens: number;
227
230
  total_usage_cost: string;
package/dist/index.js CHANGED
@@ -234,7 +234,8 @@ var Lava = class {
234
234
  nebius: `${this.baseUrl}forward?u=https://api.studio.nebius.com/v1`,
235
235
  fireworks: `${this.baseUrl}forward?u=https://api.fireworks.ai/inference/v1`,
236
236
  cerebras: `${this.baseUrl}forward?u=https://api.cerebras.ai/v1`,
237
- targon: `${this.baseUrl}forward?u=https://api.targon.com/v1`
237
+ targon: `${this.baseUrl}forward?u=https://api.targon.com/v1`,
238
+ gmicloud: `${this.baseUrl}forward?u=https://api.gmi-serving.com/v1`
238
239
  };
239
240
  }
240
241
  /**
package/dist/index.mjs CHANGED
@@ -207,7 +207,8 @@ var Lava = class {
207
207
  nebius: `${this.baseUrl}forward?u=https://api.studio.nebius.com/v1`,
208
208
  fireworks: `${this.baseUrl}forward?u=https://api.fireworks.ai/inference/v1`,
209
209
  cerebras: `${this.baseUrl}forward?u=https://api.cerebras.ai/v1`,
210
- targon: `${this.baseUrl}forward?u=https://api.targon.com/v1`
210
+ targon: `${this.baseUrl}forward?u=https://api.targon.com/v1`,
211
+ gmicloud: `${this.baseUrl}forward?u=https://api.gmi-serving.com/v1`
211
212
  };
212
213
  }
213
214
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lavapayments/nodejs",
3
- "version": "5.2.13",
3
+ "version": "5.3.0",
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",