Comparing version 2.5.0 to 2.6.0
# Changelog | ||
## 2.6.0 (2022-08-19) | ||
### Tax Rate Updates | ||
* **New Mexico, United States**: 5.125% to 5% [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Botswana**: 14% to 12% (1st August 2022 to 1st February 2023) [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Anguilla**: 13% GST [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Aruba**: 12.5% VAT (1st January 2023) [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Indonesia**: 10% to 11% [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Sri Lanka**: 12% VAT [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Maldives**: 6% to 8% (1st January 2023) [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Singapore**: 7% to 8% (1st January 2023) [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Singapore**: 8% to 9% (1st January 2024) [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Suriname**: 10% to 15% (1st January 2023) [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Uzbekistan**: 15% to 12% (1st January 2023) [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
* **Thailand**: 7% to 10% (1st September 2023) [[@valeriansaliou](https://github.com/valeriansaliou), [701781c](https://github.com/valeriansaliou/node-sales-tax/commit/701781c0843799948077e8f112807b2bfc41431e)]. | ||
## 2.5.0 (2021-12-31) | ||
@@ -4,0 +21,0 @@ |
{ | ||
"name": "sales-tax", | ||
"description": "International sales tax calculator for Node (offline, but provides optional online VAT number fraud check). Tax rates are kept up-to-date.", | ||
"version": "2.5.0", | ||
"version": "2.6.0", | ||
"homepage": "https://github.com/valeriansaliou/node-sales-tax", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -571,3 +571,3 @@ # node-sales-tax | ||
## Where is the offline tax data is pulled from? | ||
## Where is the offline tax data pulled from? | ||
@@ -574,0 +574,0 @@ The offline tax data is pulled from [Value-added tax (VAT) rates — PwC](http://taxsummaries.pwc.com/ID/Value-added-tax-(VAT)-rates) (last updated: 24th May 2019). |
{ | ||
"AI": { | ||
"type": "gst", | ||
"rate": 0.13 | ||
}, | ||
"AL": { | ||
@@ -32,2 +37,14 @@ "type": "vat", | ||
"AW": { | ||
"type": "vat", | ||
"rate": 0.125, | ||
"before": { | ||
"2022-12-31T22:00:00.000Z": { | ||
"type": "vat", | ||
"rate": 0.00 | ||
} | ||
} | ||
}, | ||
"BS": { | ||
@@ -65,3 +82,15 @@ "type": "vat", | ||
"type": "vat", | ||
"rate": 0.14 | ||
"rate": 0.14, | ||
"before": { | ||
"2023-01-31T22:00:00.000Z": { | ||
"type": "vat", | ||
"rate": 0.12 | ||
}, | ||
"2022-07-31T22:00:00.000Z": { | ||
"type": "vat", | ||
"rate": 0.14 | ||
} | ||
} | ||
}, | ||
@@ -275,3 +304,3 @@ | ||
"type": "vat", | ||
"rate": 0.10 | ||
"rate": 0.11 | ||
}, | ||
@@ -366,2 +395,7 @@ | ||
"LK": { | ||
"type": "vat", | ||
"rate": 0.12 | ||
}, | ||
"LT": { | ||
@@ -398,4 +432,11 @@ "type": "vat", | ||
"MV": { | ||
"type": "vat", | ||
"rate": 0.06 | ||
"type": "gst", | ||
"rate": 0.08, | ||
"before": { | ||
"2022-12-31T22:00:00.000Z": { | ||
"type": "gst", | ||
"rate": 0.06 | ||
} | ||
} | ||
}, | ||
@@ -449,3 +490,3 @@ | ||
"NZ": { | ||
"type": "vat", | ||
"type": "gst", | ||
"rate": 0.15 | ||
@@ -560,4 +601,16 @@ }, | ||
"SG": { | ||
"type": "vat", | ||
"rate": 0.07 | ||
"type": "gst", | ||
"rate": 0.09, | ||
"before": { | ||
"2023-12-31T22:00:00.000Z": { | ||
"type": "gst", | ||
"rate": 0.08 | ||
}, | ||
"2022-12-31T22:00:00.000Z": { | ||
"type": "gst", | ||
"rate": 0.07 | ||
} | ||
} | ||
}, | ||
@@ -609,3 +662,10 @@ | ||
"type": "vat", | ||
"rate": 0.10 | ||
"rate": 0.15, | ||
"before": { | ||
"2022-12-31T22:00:00.000Z": { | ||
"type": "vat", | ||
"rate": 0.10 | ||
} | ||
} | ||
}, | ||
@@ -635,3 +695,10 @@ | ||
"type": "vat", | ||
"rate": 0.07 | ||
"rate": 0.10, | ||
"before": { | ||
"2023-08-31T22:00:00.000Z": { | ||
"type": "vat", | ||
"rate": 0.07 | ||
} | ||
} | ||
}, | ||
@@ -755,3 +822,3 @@ | ||
"NM": { | ||
"rate": 0.05125, | ||
"rate": 0.05, | ||
"type": "vat" | ||
@@ -917,2 +984,14 @@ }, | ||
"UZ": { | ||
"type": "vat", | ||
"rate": 0.12, | ||
"before": { | ||
"2022-12-31T22:00:00.000Z": { | ||
"type": "vat", | ||
"rate": 0.15 | ||
} | ||
} | ||
}, | ||
"VE": { | ||
@@ -919,0 +998,0 @@ "type": "vat", |
62758
1361