@koggitechorg/koggi-mcp-server 1.0.15 → 1.0.16

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/dist/index.js CHANGED
@@ -103,7 +103,7 @@ server.tool("generate_simulator", `Genera un simulador financiero para un usuari
103
103
  .email("Debe ingresar un correo electrónico válido.")
104
104
  .min(1, "El correo electrónico es obligatorio."),
105
105
  income_updated: z
106
- .number()
106
+ .string()
107
107
  .min(1, "El ingreso mensual actualizado es obligatorio."),
108
108
  observations: z
109
109
  .string()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koggitechorg/koggi-mcp-server",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -125,7 +125,7 @@ server.tool(
125
125
  .email("Debe ingresar un correo electrónico válido.")
126
126
  .min(1, "El correo electrónico es obligatorio."),
127
127
  income_updated: z
128
- .number()
128
+ .string()
129
129
  .min(1, "El ingreso mensual actualizado es obligatorio."),
130
130
  observations: z
131
131
  .string()