@equisoft/tax-ca 2021.6.0 → 2021.8.0
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.
|
@@ -24,8 +24,10 @@ exports.CPP = {
|
|
|
24
24
|
PENSIONABLE_EARNINGS: {
|
|
25
25
|
MAX: 61600,
|
|
26
26
|
MIN: 3500,
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
// Average YPE of the last 5 year (including current year)
|
|
28
|
+
AVG_MAX: 57780,
|
|
29
|
+
// 114% of AVG_MAX
|
|
30
|
+
SUP_MAX: 65869,
|
|
29
31
|
SUP_FACTORS: [
|
|
30
32
|
{ FROM: 2019, TO: 2023, FACTOR: 1 },
|
|
31
33
|
{ FROM: 2024, TO: 2024, FACTOR: 1.07 },
|
|
@@ -17,8 +17,10 @@ exports.QPP = {
|
|
|
17
17
|
PENSIONABLE_EARNINGS: {
|
|
18
18
|
MAX: 61600,
|
|
19
19
|
MIN: 3500,
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
// Average YPE of the last 5 year (including current year)
|
|
21
|
+
AVG_MAX: 57780,
|
|
22
|
+
// 114% of AVG_MAX
|
|
23
|
+
SUP_MAX: 65869,
|
|
22
24
|
SUP_FACTORS: [
|
|
23
25
|
{ FROM: 2019, TO: 2023, FACTOR: 1 },
|
|
24
26
|
{ FROM: 2024, TO: 2024, FACTOR: 1.07 },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equisoft/tax-ca",
|
|
3
|
-
"version": "2021.
|
|
3
|
+
"version": "2021.8.0",
|
|
4
4
|
"description": "Canadian tax data and calculation functions.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"jest-junit": "~13.0.0",
|
|
42
42
|
"ts-jest": "~24.3.0",
|
|
43
43
|
"tslint": "~5.20.0",
|
|
44
|
-
"typescript": "~4.
|
|
44
|
+
"typescript": "~4.5.2"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {}
|
|
47
47
|
}
|