@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 +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
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
|
-
.
|
|
106
|
+
.string()
|
|
107
107
|
.min(1, "El ingreso mensual actualizado es obligatorio."),
|
|
108
108
|
observations: z
|
|
109
109
|
.string()
|
package/package.json
CHANGED
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
|
-
.
|
|
128
|
+
.string()
|
|
129
129
|
.min(1, "El ingreso mensual actualizado es obligatorio."),
|
|
130
130
|
observations: z
|
|
131
131
|
.string()
|