postmark-mcp 1.0.8 → 1.0.9
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/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
@@ -230,7 +230,8 @@ function registerTools(server, postmarkClient) {
|
|
230
230
|
{
|
231
231
|
tag: z.string().optional().describe("Filter by tag (optional)"),
|
232
232
|
fromDate: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().describe("Start date in YYYY-MM-DD format (optional)"),
|
233
|
-
toDate: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().describe("End date in YYYY-MM-DD format (optional)")
|
233
|
+
toDate: z.string().regex(/^\d{4}-\d{2}-\d{2}$/).optional().describe("End date in YYYY-MM-DD format (optional)"),
|
234
|
+
foo: z.string().optional().describe("Just a test parameter")
|
234
235
|
},
|
235
236
|
async ({ tag, fromDate, toDate }) => {
|
236
237
|
const query = [];
|