skedyul 0.2.41 → 0.2.43
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/.build-stamp +1 -1
- package/dist/server.js +1 -0
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/.build-stamp
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1769384488702
|
package/dist/server.js
CHANGED
|
@@ -340,6 +340,7 @@ function createCallToolHandler(registry, state, onMaxRequests) {
|
|
|
340
340
|
workplace: rawContext.workplace,
|
|
341
341
|
field,
|
|
342
342
|
fieldValues: rawContext.fieldValues,
|
|
343
|
+
params: rawContext.params,
|
|
343
344
|
env: process.env,
|
|
344
345
|
mode: estimateMode ? 'estimate' : 'execute',
|
|
345
346
|
};
|
package/dist/types.d.ts
CHANGED
|
@@ -85,6 +85,8 @@ export interface ToolExecutionContext {
|
|
|
85
85
|
field?: ToolFieldContext;
|
|
86
86
|
/** All current field values on the page (only for page_action trigger) */
|
|
87
87
|
fieldValues?: Record<string, unknown>;
|
|
88
|
+
/** Path parameters from URL (e.g., from /phone-numbers/[phone_id]/overview) */
|
|
89
|
+
params?: Record<string, string>;
|
|
88
90
|
/** Environment variables */
|
|
89
91
|
env: Record<string, string | undefined>;
|
|
90
92
|
/** Execution mode - 'estimate' returns billing info without side effects */
|