@panoptic-it-solutions/quickbooks-client 0.1.1 → 0.1.2

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.js CHANGED
@@ -384,7 +384,6 @@ var QuickBooksClient = class {
384
384
  * Execute a query using QuickBooks Query Language
385
385
  */
386
386
  async query(sql) {
387
- const response = await this.request("POST", "/query", void 0);
388
387
  const tokens = await this.getValidTokens();
389
388
  const env = this.config.environment || "production";
390
389
  const baseUrl = API_BASE[env];
package/dist/index.mjs CHANGED
@@ -348,7 +348,6 @@ var QuickBooksClient = class {
348
348
  * Execute a query using QuickBooks Query Language
349
349
  */
350
350
  async query(sql) {
351
- const response = await this.request("POST", "/query", void 0);
352
351
  const tokens = await this.getValidTokens();
353
352
  const env = this.config.environment || "production";
354
353
  const baseUrl = API_BASE[env];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@panoptic-it-solutions/quickbooks-client",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "QuickBooks Online API client with OAuth 2.0, rate limiting, and typed entities",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -20,6 +20,7 @@
20
20
  "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
21
21
  "test": "vitest",
22
22
  "test:run": "vitest run",
23
+ "test:integration": "tsx test/integration.ts",
23
24
  "lint": "biome check src",
24
25
  "format": "biome format --write src",
25
26
  "prepublishOnly": "npm run build"
@@ -41,11 +42,11 @@
41
42
  "engines": {
42
43
  "node": ">=18"
43
44
  },
44
- "dependencies": {},
45
45
  "devDependencies": {
46
46
  "@biomejs/biome": "^2.3.11",
47
47
  "@types/node": "^20",
48
48
  "tsup": "^8.0.0",
49
+ "tsx": "^4.21.0",
49
50
  "typescript": "^5",
50
51
  "vitest": "^2.0.0"
51
52
  }