-
-
Notifications
You must be signed in to change notification settings - Fork 20
feat(billing): refund/revocation webhooks + Polar ID tracking + MCP role gate #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
b7e0e7c
feat(billing): refund/revocation webhooks + Polar ID tracking + MCP r…
Coding-Dev-Tools f93128a
merge: resolve all conflicts with origin/main
Coding-Dev-Tools 847d447
fix(billing): restore _polar_order_id body after merge resolution
Coding-Dev-Tools f4336be
fix: remove blanket member gate (per-tool roles), reject trialing in …
Coding-Dev-Tools 6391c14
fix(lint): remove duplicate function definitions (ruff F811) + fix tr…
e16e1d3
fix(lint): remove duplicate revoke_by_subscription/revoke_by_order (r…
62b6f4f
test: add invite_url to team-invite test payloads + missing-invite_ur…
Coding-Dev-Tools 2fac3d2
fix(lint): remove remaining duplicate definitions (ruff F811)
Coding-Dev-Tools feb808e
fix(mcp): restore engraphis_answer tool registration
Coding-Dev-Tools 7ba0ed6
fix: make invite_url required in team-invite endpoint (test_team_invi…
Coding-Dev-Tools e8e5516
test: add invite_url to all team-invite test payloads (server now req…
Coding-Dev-Tools d36b3f9
merge: resolve invite_url error-message conflict + add invite_url to …
Coding-Dev-Tools 921c5c9
test: add invite_url to remaining team-invite payloads (non-team, rev…
Coding-Dev-Tools dbd14d4
fix(billing,mcp): address Codex review — claim_webhook 3-state, order…
Coding-Dev-Tools 6bf3811
fix(merge): deduplicate colliding live edges in merge_workspaces + in…
Coding-Dev-Tools 12cd334
fix(service): relabel expired collision edge to target workspace on m…
Coding-Dev-Tools d4cdb15
fix(lint): resolve E501 line-too-long in test_workspace_ops.py (ruff)
Coding-Dev-Tools 8fc4fcd
fix(merge): merge survivor provenance with transferred edge supports
a146ca7
Merge remote-tracking branch 'origin/main' into feat/agent-connect-re…
Coding-Dev-Tools a8ba7a3
fix(tests): remove duplicate test_merge_deduplicates_colliding_live_e…
Coding-Dev-Tools 8343352
Merge branch 'main' into feat/agent-connect-refund-revoke
Coding-Dev-Tools File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The successful path returns without calling
complete_webhook(delivery_claim), leaving every handled refund in the durableprocessingstate. Once its lease expires,webhook_backlog_healthy()reports a stuck Polar delivery andvendor_readiness()becomes unhealthy; a later duplicate can also be reclaimed and reprocessed instead of recognized as fulfilled. Finalize the claim before returning 202.Useful? React with 👍 / 👎.