windmill-cli 1.625.0 → 1.628.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.
Files changed (34) hide show
  1. package/esm/gen/core/OpenAPI.js +1 -1
  2. package/esm/src/commands/app/generate_agents.js +3 -1
  3. package/esm/src/commands/app/new.js +2 -0
  4. package/esm/src/commands/init/init.js +60 -21
  5. package/esm/src/commands/sync/sync.js +19 -236
  6. package/esm/src/guidance/core.js +57 -0
  7. package/esm/src/guidance/skills.js +5742 -0
  8. package/esm/src/main.js +1 -1
  9. package/esm/windmill-utils-internal/src/path-utils/path-assigner.js +2 -0
  10. package/package.json +1 -1
  11. package/types/gen/types.gen.d.ts +1091 -90
  12. package/types/gen/types.gen.d.ts.map +1 -1
  13. package/types/src/commands/app/generate_agents.d.ts.map +1 -1
  14. package/types/src/commands/app/new.d.ts.map +1 -1
  15. package/types/src/commands/init/init.d.ts.map +1 -1
  16. package/types/src/commands/sync/sync.d.ts +3 -2
  17. package/types/src/commands/sync/sync.d.ts.map +1 -1
  18. package/types/src/guidance/core.d.ts +13 -0
  19. package/types/src/guidance/core.d.ts.map +1 -0
  20. package/types/src/guidance/skills.d.ts +15 -0
  21. package/types/src/guidance/skills.d.ts.map +1 -0
  22. package/types/src/main.d.ts +1 -1
  23. package/types/windmill-utils-internal/src/gen/types.gen.d.ts +1091 -90
  24. package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
  25. package/types/windmill-utils-internal/src/path-utils/path-assigner.d.ts.map +1 -1
  26. package/esm/src/guidance/flow_guidance.js +0 -15
  27. package/esm/src/guidance/prompts.js +0 -2620
  28. package/esm/src/guidance/script_guidance.js +0 -13
  29. package/types/src/guidance/flow_guidance.d.ts +0 -2
  30. package/types/src/guidance/flow_guidance.d.ts.map +0 -1
  31. package/types/src/guidance/prompts.d.ts +0 -4
  32. package/types/src/guidance/prompts.d.ts.map +0 -1
  33. package/types/src/guidance/script_guidance.d.ts +0 -2
  34. package/types/src/guidance/script_guidance.d.ts.map +0 -1
package/esm/src/main.js CHANGED
@@ -46,7 +46,7 @@ export { flow, app, script, workspace, resource, resourceType, user, variable, h
46
46
  // console.error(JSON.stringify(event.error, null, 4));
47
47
  // }
48
48
  // });
49
- export const VERSION = "1.625.0";
49
+ export const VERSION = "1.628.0";
50
50
  // Re-exported from constants.ts to maintain backwards compatibility
51
51
  export { WM_FORK_PREFIX } from "./core/constants.js";
52
52
  const command = new Command()
@@ -26,6 +26,7 @@ export const LANGUAGE_EXTENSIONS = {
26
26
  java: "java",
27
27
  duckdb: "duckdb.sql",
28
28
  bunnative: "ts",
29
+ ruby: "rb",
29
30
  // for related places search: ADD_NEW_LANG
30
31
  };
31
32
  /**
@@ -69,6 +70,7 @@ export const EXTENSION_TO_LANGUAGE = {
69
70
  "playbook.yml": "ansible",
70
71
  "java": "java",
71
72
  "duckdb.sql": "duckdb",
73
+ "rb": "ruby",
72
74
  // Plain .ts defaults to bun (will be overridden by defaultTs setting)
73
75
  "ts": "bun",
74
76
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.625.0",
3
+ "version": "1.628.0",
4
4
  "description": "CLI for Windmill",
5
5
  "repository": {
6
6
  "type": "git",