@equisoft/tax-ca 2026.2.0 → 2026.2.1-snapshot.20260107163526

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/Makefile ADDED
@@ -0,0 +1,28 @@
1
+ BASE_DIR := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
2
+ OS_TYPE := $(shell uname -s)
3
+
4
+ .PHONY: all
5
+ all: setup check compile test
6
+
7
+ .PHONY: setup
8
+ setup:
9
+ @asdf plugin update nodejs || (asdf plugin add nodejs && ~/.asdf/plugins/nodejs/bin/import-release-team-keyring)
10
+ @asdf plugin update yarn || asdf plugin add yarn
11
+ @asdf install
12
+ @yarn --cwd "$(BASE_DIR)"
13
+
14
+ .PHONY: check
15
+ check:
16
+ @yarn eslint
17
+
18
+ .PHONY: dev
19
+ dev:
20
+ @yarn dev:watch
21
+
22
+ .PHONY: compile
23
+ compile:
24
+ @yarn build
25
+
26
+ .PHONY: test
27
+ test:
28
+ @yarn test
@@ -0,0 +1,4 @@
1
+ export interface DefinedBenefitPensionPlan {
2
+ MAX_CONTRIBUTION: number;
3
+ }
4
+ export declare const DEFINED_BENEFIT: DefinedBenefitPensionPlan;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /*
3
+ Sources
4
+ https://www.canada.ca/en/revenue-agency/services/tax/registered-plans-administrators/pspa/mp-rrsp-dpsp-tfsa-limits-ympe.html
5
+
6
+ Revised
7
+ 2026-01-06
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ exports.DEFINED_BENEFIT = void 0;
11
+ exports.DEFINED_BENEFIT = {
12
+ MAX_CONTRIBUTION: 3932.22,
13
+ };
@@ -3,3 +3,5 @@ export * from './old-age-security';
3
3
  export * from './public-pension-plan';
4
4
  export * from './quebec-pension-plan';
5
5
  export * from './supplemental-pension-plan';
6
+ export * from './defined-benefit-pension-plan';
7
+ export * from './money-purchase-pension-plan';
@@ -19,3 +19,5 @@ __exportStar(require("./old-age-security"), exports);
19
19
  __exportStar(require("./public-pension-plan"), exports);
20
20
  __exportStar(require("./quebec-pension-plan"), exports);
21
21
  __exportStar(require("./supplemental-pension-plan"), exports);
22
+ __exportStar(require("./defined-benefit-pension-plan"), exports);
23
+ __exportStar(require("./money-purchase-pension-plan"), exports);
@@ -0,0 +1,4 @@
1
+ export interface MoneyPurchasePensionPlan {
2
+ MAX_CONTRIBUTION: number;
3
+ }
4
+ export declare const MONEY_PURCHASE: MoneyPurchasePensionPlan;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /*
3
+ Sources
4
+ https://www.canada.ca/en/revenue-agency/services/tax/registered-plans-administrators/pspa/mp-rrsp-dpsp-tfsa-limits-ympe.html
5
+
6
+ Revised
7
+ 2026-01-06
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ exports.MONEY_PURCHASE = void 0;
11
+ exports.MONEY_PURCHASE = {
12
+ MAX_CONTRIBUTION: 35390,
13
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/tax-ca",
3
- "version": "2026.2.0",
3
+ "version": "2026.2.1-snapshot.20260107163526",
4
4
  "description": "Canadian tax data and calculation functions.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",