feat(build-plan): customer_portal goal syncs reservations to Seam on create/change - #12
Merged
Merged
Conversation
…create/change Testing showed the generated integration only pushed a reservation lazily (when its access page was opened), so new bookings never reached the portal. The goal asked to "push the reservation, then deep-link" — which the agent read as a per-page-visit push. Add an explicit sync instruction: call customers.pushData from the booking create and update handlers (and customers.deleteData on cancellation) so new and changed reservations reach the portal, not only when a reservation page is opened. Keeps existing behavior: still names the framework, still no build-block hint lines for customer_portal. All build-plan tests pass.
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
End-to-end testing of a customer-portal integration surfaced a gap: the generated code pushed a reservation to Seam only lazily — inside the reservation's deep-link page, i.e. when someone opened it. Nothing pushed on create/change, so a brand-new booking never reached the portal until its access page was visited.
Root cause is the goal: it said "push the reservation, then create a deep-linked portal", which the agent implemented as a per-page-visit push. This adds an explicit sync instruction to
composeGoal'scustomer_portalbranch:Behavior preserved
…'s conventions).Testing
customers.pushData,customers.deleteData,Customer Portal,<framework>'s conventions; 0 hint linesbuild-plan.test.ts— all passtscerror is@seamapi/cliunresolvable in my local install; CI resolves it)Security & Compliance