@accounty/e-accounting 0.1.7 → 0.1.9

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/CHANGELOG.md CHANGED
@@ -1,4 +1,20 @@
1
1
 
2
+ ## [0.1.9](https://github.com/PalmTreeCoding/Accounty/compare/packages-e-accounting-0.1.8...packages-e-accounting-0.1.9) (2025-12-30)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **bloxs, e-accounting:** Update invoice filters to use 'ne' for zero checks ([e9329eb](https://github.com/PalmTreeCoding/Accounty/commit/e9329ebfc066259e70f1db6b2c2cc431d8dcfbd9))
8
+
9
+
10
+
11
+ ## [0.1.8](https://github.com/PalmTreeCoding/Accounty/compare/packages-e-accounting-0.1.7...packages-e-accounting-0.1.8) (2025-12-23)
12
+
13
+ ### Dependency Updates
14
+
15
+ * `packages-oauth` updated to version `1.0.14`
16
+
17
+
2
18
  ## [0.1.7](https://github.com/PalmTreeCoding/Accounty/compare/packages-e-accounting-0.1.6...packages-e-accounting-0.1.7) (2025-12-19)
3
19
 
4
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accounty/e-accounting",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "dependencies": {
5
5
  "axios": "^1.13.2",
6
6
  "bignumber.js": "^9.3.1",
@@ -9,7 +9,7 @@
9
9
  "libphonenumber-js": "^1.12.31",
10
10
  "validator": "^13.15.23",
11
11
  "@accounty/core": "1.3.3",
12
- "@accounty/oauth": "1.0.13",
12
+ "@accounty/oauth": "1.0.14",
13
13
  "tslib": "2.8.1"
14
14
  },
15
15
  "packageManager": "yarn@4.10.3",
@@ -79,7 +79,7 @@ class EAccounting extends oauth_1.default {
79
79
  async fetchInvoices(options) {
80
80
  const invoices = await this.getJson('/customerinvoices', {
81
81
  $filter: [
82
- (options.state === 'open' || options.state === 'overdue') && 'RemainingAmountInvoiceCurrency gt 0',
82
+ (options.state === 'open' || options.state === 'overdue') && 'RemainingAmountInvoiceCurrency ne 0',
83
83
  options.state === 'overdue' && `DueDate le ${(0, format_1.format)(new Date(), 'yyyy-MM-dd')}`
84
84
  ].filter(Boolean).join(' and ')
85
85
  });