payroll-rules-india 2.10.0 → 2.11.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.
@@ -35,3 +35,4 @@ export * from "./extraBasicRules";
35
35
  export * from "./dearnessAllowanceRules";
36
36
  export * from "./otherDeductionsRule";
37
37
  export * from "./overTimesRules";
38
+ export * from "./jaggeryAllowanceRule";
@@ -35,3 +35,4 @@ export * from "./extraBasicRules";
35
35
  export * from "./dearnessAllowanceRules";
36
36
  export * from "./otherDeductionsRule";
37
37
  export * from "./overTimesRules";
38
+ export * from "./jaggeryAllowanceRule";
@@ -0,0 +1,2 @@
1
+ import { Rule } from "../../utils/types";
2
+ export declare const jaggeryAllowanceRule: Rule;
@@ -0,0 +1,10 @@
1
+ export const jaggeryAllowanceRule = {
2
+ ruleCode: "JAGGERY_ALLOWANCE",
3
+ name: "Jaggery Allowance",
4
+ category: "Earning",
5
+ type: "Custom",
6
+ version: "FY2024-2025",
7
+ description: "Jaggery allowance calculated at Rs.5 per payable day.",
8
+ condition: "payableDays > 0",
9
+ monthlyFormula: "round(payableDays * 5, 0)",
10
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payroll-rules-india",
3
- "version": "2.10.0",
3
+ "version": "2.11.0",
4
4
  "description": "Custom and statutory payroll rules engine for India salary calculations.",
5
5
  "author": "Yogesh c",
6
6
  "license": "MIT",