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.
- package/.bumpversion.cfg +14 -0
- package/CHANGELOG.md +7 -1
- package/dist/assets/index-Czcxw2O4.js +772 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.html +2 -2
- package/index.html +1 -1
- package/package.json +17 -11
- package/public/favicon.ico +0 -0
- package/src/App.tsx +20 -18
- package/src/assets/aic.svg +1 -0
- package/src/assets/orcheo.svg +1 -0
- package/src/design-system/ui/badge.tsx +2 -1
- package/src/design-system/ui/button.tsx +2 -1
- package/src/design-system/ui/sheet.tsx +2 -1
- package/src/features/auth/components/auth-page.tsx +14 -136
- package/src/features/auth/components/require-auth.tsx +13 -0
- package/src/features/auth/lib/auth-session.ts +92 -0
- package/src/features/auth/lib/oidc-client.ts +412 -0
- package/src/features/auth/pages/login.tsx +1 -1
- package/src/features/auth/pages/oauth-callback.tsx +63 -0
- package/src/features/chatkit/components/chatkit-surface.tsx +45 -3
- package/src/features/chatkit/components/public-chat-widget.tsx +36 -0
- package/src/features/chatkit/lib/chatkit-client.test.ts +19 -0
- package/src/features/chatkit/lib/chatkit-client.ts +2 -1
- package/src/features/chatkit/lib/workflow-session.ts +2 -1
- package/src/features/chatkit/pages/public-chat.tsx +41 -5
- package/src/features/shared/components/chat-interface-options.ts +5 -4
- package/src/features/shared/components/top-navigation/account-menu.tsx +12 -4
- package/src/features/shared/components/top-navigation/project-switcher.tsx +1 -1
- package/src/features/workflow/components/trace/agent-prism/SpanBadge.tsx +4 -2
- package/src/features/workflow/lib/workflow-execution-storage.ts +2 -1
- package/src/features/workflow/lib/workflow-storage-api.ts +22 -1
- package/src/features/workflow/lib/workflow-storage.types.ts +9 -0
- package/src/features/workflow/pages/workflow-canvas/components/canvas-tab-content.tsx +10 -11
- package/src/features/workflow/pages/workflow-canvas/handlers/credentials.ts +3 -2
- package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-history-handlers.ts +2 -1
- package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-trace.ts +2 -1
- package/src/features/workflow/pages/workflow-canvas/hooks/use-run-workflow.ts +12 -2
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-chat.ts +2 -1
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-credentials.ts +2 -1
- package/src/hooks/use-credential-vault.ts +4 -3
- package/src/lib/api.test.ts +5 -3
- package/src/lib/api.ts +2 -1
- package/src/lib/auth-fetch.ts +13 -0
- package/src/lib/config.ts +12 -0
- package/src/test-utils/chatkit-stub.ts +12 -6
- package/src/testing/mocks/chatkit.ts +12 -5
- package/vite.config.ts +5 -0
- package/dist/assets/index-C3u-VXpN.js +0 -772
- package/dist/favicon.png +0 -0
- package/dist/favicon.svg +0 -4
- package/public/favicon.png +0 -0
- package/public/favicon.svg +0 -4
- package/src/features/auth/pages/signup.tsx +0 -5
package/.bumpversion.cfg
ADDED
|
@@ -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.
|
|
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
|