orcheo-canvas 0.1.1 → 0.2.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 (54) hide show
  1. package/.bumpversion.cfg +14 -0
  2. package/CHANGELOG.md +7 -1
  3. package/dist/assets/index-Czcxw2O4.js +772 -0
  4. package/dist/favicon.ico +0 -0
  5. package/dist/index.html +2 -2
  6. package/index.html +1 -1
  7. package/package.json +17 -11
  8. package/public/favicon.ico +0 -0
  9. package/src/App.tsx +20 -18
  10. package/src/assets/aic.svg +1 -0
  11. package/src/assets/orcheo.svg +1 -0
  12. package/src/design-system/ui/badge.tsx +2 -1
  13. package/src/design-system/ui/button.tsx +2 -1
  14. package/src/design-system/ui/sheet.tsx +2 -1
  15. package/src/features/auth/components/auth-page.tsx +14 -136
  16. package/src/features/auth/components/require-auth.tsx +13 -0
  17. package/src/features/auth/lib/auth-session.ts +92 -0
  18. package/src/features/auth/lib/oidc-client.ts +412 -0
  19. package/src/features/auth/pages/login.tsx +1 -1
  20. package/src/features/auth/pages/oauth-callback.tsx +63 -0
  21. package/src/features/chatkit/components/chatkit-surface.tsx +45 -3
  22. package/src/features/chatkit/components/public-chat-widget.tsx +36 -0
  23. package/src/features/chatkit/lib/chatkit-client.test.ts +19 -0
  24. package/src/features/chatkit/lib/chatkit-client.ts +2 -1
  25. package/src/features/chatkit/lib/workflow-session.ts +2 -1
  26. package/src/features/chatkit/pages/public-chat.tsx +41 -5
  27. package/src/features/shared/components/chat-interface-options.ts +5 -4
  28. package/src/features/shared/components/top-navigation/account-menu.tsx +12 -4
  29. package/src/features/shared/components/top-navigation/project-switcher.tsx +1 -1
  30. package/src/features/workflow/components/trace/agent-prism/SpanBadge.tsx +4 -2
  31. package/src/features/workflow/lib/workflow-execution-storage.ts +2 -1
  32. package/src/features/workflow/lib/workflow-storage-api.ts +22 -1
  33. package/src/features/workflow/lib/workflow-storage.types.ts +9 -0
  34. package/src/features/workflow/pages/workflow-canvas/components/canvas-tab-content.tsx +10 -11
  35. package/src/features/workflow/pages/workflow-canvas/handlers/credentials.ts +3 -2
  36. package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-history-handlers.ts +2 -1
  37. package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-trace.ts +2 -1
  38. package/src/features/workflow/pages/workflow-canvas/hooks/use-run-workflow.ts +12 -2
  39. package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-chat.ts +2 -1
  40. package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-credentials.ts +2 -1
  41. package/src/hooks/use-credential-vault.ts +4 -3
  42. package/src/lib/api.test.ts +5 -3
  43. package/src/lib/api.ts +2 -1
  44. package/src/lib/auth-fetch.ts +13 -0
  45. package/src/lib/config.ts +12 -0
  46. package/src/test-utils/chatkit-stub.ts +12 -6
  47. package/src/testing/mocks/chatkit.ts +12 -5
  48. package/vite.config.ts +5 -0
  49. package/dist/assets/index-C3u-VXpN.js +0 -772
  50. package/dist/favicon.png +0 -0
  51. package/dist/favicon.svg +0 -4
  52. package/public/favicon.png +0 -0
  53. package/public/favicon.svg +0 -4
  54. package/src/features/auth/pages/signup.tsx +0 -5
@@ -0,0 +1,14 @@
1
+ [bumpversion]
2
+ current_version = 0.2.0
3
+ commit = true
4
+ tag = true
5
+ tag_name = canvas-v{new_version}
6
+ message = Bump canvas version to {new_version}
7
+
8
+ [bumpversion:file:package.json]
9
+ search = "version": "{current_version}"
10
+ replace = "version": "{new_version}"
11
+
12
+ [bumpversion:file:package-lock.json]
13
+ search = "version": "{current_version}"
14
+ replace = "version": "{new_version}"
package/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.4] - 2026-01-10
11
+
12
+ ### Changed
13
+ - Version 2.0 release candidate
14
+
10
15
  ## [0.1.0] - 2025-11-14
11
16
 
12
17
  ### Added
@@ -22,5 +27,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
27
  - Package name set to orcheo-canvas
23
28
  - Set up automated npm publishing workflow
24
29
 
25
- [Unreleased]: https://github.com/orcheo-ai/orcheo/compare/canvas-v0.1.0...HEAD
30
+ [Unreleased]: https://github.com/orcheo-ai/orcheo/compare/canvas-v0.1.4...HEAD
31
+ [0.1.4]: https://github.com/orcheo-ai/orcheo/releases/tag/canvas-v0.1.4
26
32
  [0.1.0]: https://github.com/orcheo-ai/orcheo/releases/tag/canvas-v0.1.0