@kirha/planner 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -20870,11 +20870,12 @@ function validateStringTemplateReference({
20870
20870
  actualType: "string"
20871
20871
  }));
20872
20872
  }
20873
+ const stringCoercible = exports_external.union([exports_external.string(), exports_external.number(), exports_external.boolean()]);
20873
20874
  for (const ref of reference.$values) {
20874
20875
  validateOutputReference({
20875
20876
  reference: ref,
20876
20877
  argumentPath,
20877
- expectedSchema: exports_external.string(),
20878
+ expectedSchema: stringCoercible,
20878
20879
  step,
20879
20880
  stepsById,
20880
20881
  schemasByTool,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kirha/planner",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "SDK for tool-planning agents - generate and execute DAG execution plans from natural language",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -36,7 +36,7 @@
36
36
  "license": "MIT",
37
37
  "repository": {
38
38
  "type": "git",
39
- "url": "https://github.com/kirha-ai/planner-typescript-sdk"
39
+ "url": "https://github.com/kirha-ai/planner-sdk-typescript"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@biomejs/biome": "2.3.10",