skedyul 0.2.55 → 0.2.58

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 CHANGED
@@ -1 +1 @@
1
- 1769488068154
1
+ 1769490951200
package/dist/server.js CHANGED
@@ -613,6 +613,7 @@ function createSkedyulServer(config, registry, webhookRegistry) {
613
613
  content: [{ type: 'text', text: JSON.stringify(result.output) }],
614
614
  structuredContent: outputData ?? undefined,
615
615
  billing: result.billing,
616
+ effect: result.effect,
616
617
  };
617
618
  });
618
619
  }
@@ -1232,6 +1233,7 @@ function createServerlessInstance(config, tools, callTool, state, mcpServer, reg
1232
1233
  content: [{ type: 'text', text: JSON.stringify(toolResult.output) }],
1233
1234
  structuredContent: outputData ?? undefined,
1234
1235
  billing: toolResult.billing,
1236
+ effect: toolResult.effect,
1235
1237
  };
1236
1238
  }
1237
1239
  }
package/dist/types.d.ts CHANGED
@@ -201,6 +201,7 @@ export interface ToolCallResponse {
201
201
  output: unknown;
202
202
  billing: BillingInfo;
203
203
  error?: string;
204
+ effect?: ToolEffect;
204
205
  }
205
206
  export interface DedicatedServerInstance {
206
207
  listen(port?: number): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skedyul",
3
- "version": "0.2.55",
3
+ "version": "0.2.58",
4
4
  "description": "The Skedyul SDK for Node.js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",