feat(console): advance Studio member-first frontend flows#456
Merged
AbigailDeng merged 14 commits intodevfrom Apr 27, 2026
Merged
feat(console): advance Studio member-first frontend flows#456AbigailDeng merged 14 commits intodevfrom
AbigailDeng merged 14 commits intodevfrom
Conversation
…oseout' into feat/2026-04-27_studio-invoke-closeout
6 tasks
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## dev #456 +/- ##
==========================================
- Coverage 70.90% 70.90% -0.01%
==========================================
Files 1209 1209
Lines 87045 87045
Branches 11411 11411
==========================================
- Hits 61722 61716 -6
- Misses 20876 20881 +5
- Partials 4447 4448 +1
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
…oseout' into feat/2026-04-27_studio-invoke-closeout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR moves more of Studio's
Build / Bind / Invoke / Observefrontend flow onto the new member-first backend contracts.What changed
studioApi.listMembers,studioApi.createMember, andstudioApi.getMembermemberIdis availablememberIdthrough Bind / Invoke / Observe runtime control flowsbindMemberWorkflowwhen the current workflow maps to a backend memberWhy
PR #428 landed backend member authority, roster, detail, binding, invoke, and runs routes. Studio frontend was still partially service-first, especially around Build -> Bind and Observe.
This PR closes a large part of that gap so the selected Studio member stays the main subject through the user flow.
Impacted paths
apps/aevatar-console-web/src/shared/studio/models.tsapps/aevatar-console-web/src/shared/studio/api.tsapps/aevatar-console-web/src/pages/studio/index.tsxVerification
Passed:
pnpm --dir apps/aevatar-console-web test -- --runInBand src/shared/studio/api.test.ts src/pages/studio/components/bind/StudioMemberBindPanel.test.tsx src/pages/studio/components/StudioMemberInvokePanel.test.tsx src/pages/studio/index.test.tsxtscstill reports pre-existing unrelated errors in Teams pages/tests:apps/aevatar-console-web/src/pages/teams/home.tsx:917apps/aevatar-console-web/src/pages/teams/home.tsx:981apps/aevatar-console-web/src/pages/teams/runtime/teamRuntimeLens.test.ts:77apps/aevatar-console-web/src/pages/teams/runtime/teamRuntimeLens.test.ts:430Follow-up
The remaining backend API gap for full Studio de-
serviceIdcleanup is tracked in #454.