@myapihq/sdk 1.0.27 → 1.0.29

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/hq.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myapihq/sdk",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "description": "TypeScript SDK for the MyAPI ecosystem",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/hq.ts CHANGED
@@ -81,7 +81,7 @@ export async function getBalance(apiKey: string): Promise<{ balance_display: str
81
81
  return request('GET', `${BASE_URL}/hq/billing/balance`, apiKey);
82
82
  }
83
83
 
84
- export async function getBillingHistory(apiKey: string): Promise<{ type: string; amount_display: string; status: string; created_at: string }[]> {
84
+ export async function getBillingHistory(apiKey: string): Promise<{ type: string; amount_display: string; status: string; created_at: string; }[]> {
85
85
  return request('GET', `${BASE_URL}/hq/billing/history`, apiKey);
86
86
  }
87
87