@accounty/e-accounting 0.1.8 → 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 +9 -0
- package/package.json +1 -1
- package/src/e-accounting.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
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
|
+
|
|
2
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)
|
|
3
12
|
|
|
4
13
|
### Dependency Updates
|
package/package.json
CHANGED
package/src/e-accounting.js
CHANGED
|
@@ -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
|
|
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
|
});
|