gm-mcp 1.1.8 → 1.1.10
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
|
@@ -72,7 +72,7 @@ exports.server.tool("statistic_salary_x3_in_range", "Get statistic salary x3 wit
|
|
|
72
72
|
exports.server.tool("debt_collection", "The company's debt collection information (month is optional)", {
|
|
73
73
|
month: zod_1.default
|
|
74
74
|
.string({
|
|
75
|
-
description: "Month to get data,if year is not provided, please use current year (in Vietnam timezone) instead of, month is represented with format MM/yyyy",
|
|
75
|
+
description: "Month (optional) to get data,if year is not provided, please use current year (in Vietnam timezone) instead of, month is represented with format MM/yyyy",
|
|
76
76
|
})
|
|
77
77
|
.optional(),
|
|
78
78
|
company_name: zod_1.default.string({ description: "Company name to get data" }),
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -96,7 +96,7 @@ server.tool(
|
|
|
96
96
|
month: z
|
|
97
97
|
.string({
|
|
98
98
|
description:
|
|
99
|
-
"Month to get data,if year is not provided, please use current year (in Vietnam timezone) instead of, month is represented with format MM/yyyy",
|
|
99
|
+
"Month (optional) to get data,if year is not provided, please use current year (in Vietnam timezone) instead of, month is represented with format MM/yyyy",
|
|
100
100
|
})
|
|
101
101
|
.optional(),
|
|
102
102
|
company_name: z.string({ description: "Company name to get data" }),
|