skedyul 1.2.9 → 1.2.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/cli/index.js +4 -1
- package/dist/dedicated/server.js +4 -1
- package/dist/esm/index.mjs +4 -1
- package/dist/index.js +4 -1
- package/dist/server.js +4 -1
- package/dist/serverless/server.mjs +4 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -4287,7 +4287,10 @@ function createSkedyulServer(config, registry, webhookRegistry) {
|
|
|
4287
4287
|
console.log(`[createSkedyulServer] Creating wrapped schema for ${toolKey}`);
|
|
4288
4288
|
const wrappedInputSchema = z5.object({
|
|
4289
4289
|
inputs: inputZodSchema ?? z5.record(z5.string(), z5.unknown()).optional(),
|
|
4290
|
-
|
|
4290
|
+
context: z5.record(z5.string(), z5.unknown()).optional(),
|
|
4291
|
+
env: z5.record(z5.string(), z5.string()).optional(),
|
|
4292
|
+
invocation: z5.record(z5.string(), z5.unknown()).optional(),
|
|
4293
|
+
estimate: z5.boolean().optional()
|
|
4291
4294
|
}).passthrough();
|
|
4292
4295
|
console.log(`[createSkedyulServer] Calling mcpServer.registerTool for ${toolKey}`);
|
|
4293
4296
|
mcpServer.registerTool(
|
package/dist/dedicated/server.js
CHANGED
|
@@ -2119,7 +2119,10 @@ function createSkedyulServer(config, registry, webhookRegistry) {
|
|
|
2119
2119
|
console.log(`[createSkedyulServer] Creating wrapped schema for ${toolKey}`);
|
|
2120
2120
|
const wrappedInputSchema = z3.object({
|
|
2121
2121
|
inputs: inputZodSchema ?? z3.record(z3.string(), z3.unknown()).optional(),
|
|
2122
|
-
|
|
2122
|
+
context: z3.record(z3.string(), z3.unknown()).optional(),
|
|
2123
|
+
env: z3.record(z3.string(), z3.string()).optional(),
|
|
2124
|
+
invocation: z3.record(z3.string(), z3.unknown()).optional(),
|
|
2125
|
+
estimate: z3.boolean().optional()
|
|
2123
2126
|
}).passthrough();
|
|
2124
2127
|
console.log(`[createSkedyulServer] Calling mcpServer.registerTool for ${toolKey}`);
|
|
2125
2128
|
mcpServer.registerTool(
|
package/dist/esm/index.mjs
CHANGED
|
@@ -3787,7 +3787,10 @@ function createSkedyulServer(config, registry, webhookRegistry) {
|
|
|
3787
3787
|
console.log(`[createSkedyulServer] Creating wrapped schema for ${toolKey}`);
|
|
3788
3788
|
const wrappedInputSchema = z5.object({
|
|
3789
3789
|
inputs: inputZodSchema ?? z5.record(z5.string(), z5.unknown()).optional(),
|
|
3790
|
-
|
|
3790
|
+
context: z5.record(z5.string(), z5.unknown()).optional(),
|
|
3791
|
+
env: z5.record(z5.string(), z5.string()).optional(),
|
|
3792
|
+
invocation: z5.record(z5.string(), z5.unknown()).optional(),
|
|
3793
|
+
estimate: z5.boolean().optional()
|
|
3791
3794
|
}).passthrough();
|
|
3792
3795
|
console.log(`[createSkedyulServer] Calling mcpServer.registerTool for ${toolKey}`);
|
|
3793
3796
|
mcpServer.registerTool(
|
package/dist/index.js
CHANGED
|
@@ -3952,7 +3952,10 @@ function createSkedyulServer(config, registry, webhookRegistry) {
|
|
|
3952
3952
|
console.log(`[createSkedyulServer] Creating wrapped schema for ${toolKey}`);
|
|
3953
3953
|
const wrappedInputSchema = z5.object({
|
|
3954
3954
|
inputs: inputZodSchema ?? z5.record(z5.string(), z5.unknown()).optional(),
|
|
3955
|
-
|
|
3955
|
+
context: z5.record(z5.string(), z5.unknown()).optional(),
|
|
3956
|
+
env: z5.record(z5.string(), z5.string()).optional(),
|
|
3957
|
+
invocation: z5.record(z5.string(), z5.unknown()).optional(),
|
|
3958
|
+
estimate: z5.boolean().optional()
|
|
3956
3959
|
}).passthrough();
|
|
3957
3960
|
console.log(`[createSkedyulServer] Calling mcpServer.registerTool for ${toolKey}`);
|
|
3958
3961
|
mcpServer.registerTool(
|
package/dist/server.js
CHANGED
|
@@ -2119,7 +2119,10 @@ function createSkedyulServer(config, registry, webhookRegistry) {
|
|
|
2119
2119
|
console.log(`[createSkedyulServer] Creating wrapped schema for ${toolKey}`);
|
|
2120
2120
|
const wrappedInputSchema = z3.object({
|
|
2121
2121
|
inputs: inputZodSchema ?? z3.record(z3.string(), z3.unknown()).optional(),
|
|
2122
|
-
|
|
2122
|
+
context: z3.record(z3.string(), z3.unknown()).optional(),
|
|
2123
|
+
env: z3.record(z3.string(), z3.string()).optional(),
|
|
2124
|
+
invocation: z3.record(z3.string(), z3.unknown()).optional(),
|
|
2125
|
+
estimate: z3.boolean().optional()
|
|
2123
2126
|
}).passthrough();
|
|
2124
2127
|
console.log(`[createSkedyulServer] Calling mcpServer.registerTool for ${toolKey}`);
|
|
2125
2128
|
mcpServer.registerTool(
|
|
@@ -2058,7 +2058,10 @@ function createSkedyulServer(config, registry, webhookRegistry) {
|
|
|
2058
2058
|
console.log(`[createSkedyulServer] Creating wrapped schema for ${toolKey}`);
|
|
2059
2059
|
const wrappedInputSchema = z3.object({
|
|
2060
2060
|
inputs: inputZodSchema ?? z3.record(z3.string(), z3.unknown()).optional(),
|
|
2061
|
-
|
|
2061
|
+
context: z3.record(z3.string(), z3.unknown()).optional(),
|
|
2062
|
+
env: z3.record(z3.string(), z3.string()).optional(),
|
|
2063
|
+
invocation: z3.record(z3.string(), z3.unknown()).optional(),
|
|
2064
|
+
estimate: z3.boolean().optional()
|
|
2062
2065
|
}).passthrough();
|
|
2063
2066
|
console.log(`[createSkedyulServer] Calling mcpServer.registerTool for ${toolKey}`);
|
|
2064
2067
|
mcpServer.registerTool(
|