@avallon-labs/mcp 37.1.0-staging.931 → 37.2.0
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
|
@@ -7926,6 +7926,7 @@ var listSchedulesQuerySortByDefault = `created_at`;
|
|
|
7926
7926
|
var listSchedulesQuerySortOrderDefault = `asc`;
|
|
7927
7927
|
var ListSchedulesQueryParams = zod.object({
|
|
7928
7928
|
worker_id: zod.string().uuid().optional().describe("Only schedules that trigger this worker"),
|
|
7929
|
+
rule_type: zod.enum(["once", "hourly", "daily", "weekly"]).optional().describe("Only schedules whose rule is of this type"),
|
|
7929
7930
|
count: zod.number().min(1).max(listSchedulesQueryCountMax).default(listSchedulesQueryCountDefault),
|
|
7930
7931
|
offset: zod.number().min(listSchedulesQueryOffsetMin).default(listSchedulesQueryOffsetDefault),
|
|
7931
7932
|
sort_by: zod.enum(["created_at", "next_run_at"]).default(listSchedulesQuerySortByDefault),
|
|
@@ -9764,4 +9765,4 @@ var transport = new StdioServerTransport();
|
|
|
9764
9765
|
server.connect(transport).then(() => {
|
|
9765
9766
|
console.error("MCP server running on stdio");
|
|
9766
9767
|
}).catch(console.error);
|
|
9767
|
-
//# sourceMappingURL=server-
|
|
9768
|
+
//# sourceMappingURL=server-2B2IEPV6.js.map
|