payrolla-mcp 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -8
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -55,7 +55,7 @@ async function calculatePayroll(client, input) {
55
55
  } = input;
56
56
  const payments = [
57
57
  {
58
- paymentAmount: 31,
58
+ paymentAmount: void 0,
59
59
  paymentName: "Maas",
60
60
  paymentType: PaymentType.RegularPayment,
61
61
  paymentRef: "1"
@@ -120,13 +120,7 @@ async function calculatePayroll(client, input) {
120
120
  };
121
121
  }
122
122
  async function calculateBulkPayroll(client, input) {
123
- const {
124
- employees,
125
- year,
126
- month,
127
- periodCount = 1,
128
- customParams
129
- } = input;
123
+ const { employees, year, month, periodCount = 1, customParams } = input;
130
124
  const employeeResults = [];
131
125
  let totalYearlyCost = 0;
132
126
  let totalYearlyNet = 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payrolla-mcp",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "MCP server for Payrolla payroll budget simulations - enables LLMs to calculate Turkish payroll and simulate budget scenarios",
5
5
  "author": "Payrolla",
6
6
  "license": "MIT",