payroll-rules-india 1.0.1 → 1.0.2

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.
@@ -1,2 +1,3 @@
1
1
  import { Rule } from "../../utils/types";
2
2
  export declare const esiRule: Rule;
3
+ export declare const ESI_Employee_On_Basic: Rule;
@@ -9,3 +9,14 @@ export const esiRule = {
9
9
  monthlyFormula: "round(gross * 0.0075, 2)",
10
10
  annualFormula: "round(gross * 0.0075 * 12, 2)",
11
11
  };
12
+ export const ESI_Employee_On_Basic = {
13
+ ruleCode: "ESI_EMP_BASIC",
14
+ name: "ESI Employee on Basic",
15
+ category: "Deduction",
16
+ type: "Custom",
17
+ version: "FY2024-2025",
18
+ description: "Employee ESI @ 0.75% calculated on Basic (non-statutory custom model)",
19
+ condition: "basic > 0",
20
+ monthlyFormula: "round(basic * 0.0075, 2)",
21
+ annualFormula: "round(basic * 0.0075 * 12, 2)",
22
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payroll-rules-india",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Custom and statutory payroll rules engine for India salary calculations.",
5
5
  "author": "Yogesh c",
6
6
  "license": "MIT",