feat(adapters): full write-side capability set across 30 high-impact integrations#70
Merged
Merged
Conversation
…lation
new URL('/x', 'https://api/v1') drops the /v1 because absolute paths reset
to origin. Strip the leading / from operation paths so a baseUrl with a
prefix (api.emailit.com/v1, www.billplz.com/api/v3) keeps it. Also recurse
into arrays and nested objects in renderValue so structured request bodies
(billplz, emailit, lemon-squeezy) get their {placeholder} strings
interpolated instead of shipped as literals.
…ls.reviews.create
…eaction / upload_file
tangletools
approved these changes
Jun 2, 2026
tangletools
left a comment
Contributor
There was a problem hiding this comment.
Approved — write-side capability expansion across 30 integration adapters. All 2617 tests green; declarative-rest infrastructure fix is sound (baseUrl path preservation + recursive body interpolation are correct for the new structured-body adapters). Per-adapter commits keep diff bisectable.
This was referenced Jun 2, 2026
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.
Adds writable + missing-read capabilities across 30 integration adapters, plus one declarative-rest infrastructure fix that enables the new capability shapes.
What
Per-adapter mutation/write surface expansion. Most adapters previously shipped a read-only or partial surface; this PR closes the obvious gaps so an agent can not just inspect but act.
All new mutations carry
cas: 'native-idempotency'+externalEffect: trueper theConnectorAdaptercontract.Infrastructure fix
declarative-rest.ts: two changes the new capabilities depend on.new URL('/x', 'https://api/v1')drops/v1because absolute paths reset to origin. Strip the leading/from operation paths so a baseUrl with a prefix (api.emailit.com/v1,www.billplz.com/api/v3) keeps it.renderValuenow recurses into arrays and nested objects so adapters that ship structured bodies (billplz,emailit,lemon-squeezy) get their{placeholder}strings interpolated instead of shipped as literals.Both are pure platform fixes — no behavior change for adapters with flat bodies and prefix-free baseUrls.
Tests
pnpm exec vitest run).fix(declarative-rest)commit lands the platform change.pnpm exec tsc --noEmitclean.