feat(adapters): write-side capability fanout — wave 3 (117 adapters, N–Z)#72
Merged
Conversation
…ons.delete/executio...
…tions.refund/subscript...
…ete/sources.remove
…ete/sources.create
…te/annotations.create/i...
…te/messages.mark-read
…products.delete/orders.upda...
…ect.stop/campaigns.list
…elete/media.upload/catego...
…vert/jobs.publish/offers...
…create/credit-notes....
…te/profiles.delete
….update/users.delete
…elete/tasks.create
…pointment.no-show
…elete/users.create
…update/payments.create
…teMember/removeMember mock methods Mock factory drifted from TangleIdentityClient interface after 4 new methods landed on the substrate. vitest passes via swc transpilation; tsc strict catches the missing properties.
tangletools
approved these changes
Jun 2, 2026
tangletools
left a comment
Contributor
There was a problem hiding this comment.
Approved — wave-3 write-side capability fanout across 117 adapters (N–Z). 3989/3989 tests green; typecheck clean (including the catch in tangle-middleware mock + CapabilityMutationResult union narrowing). Per-adapter commits keep diff bisectable; no platform-substrate changes.
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.
Third mega-fanout. 117 adapters from
n8nthroughzuoragain real write capabilities (create / update / delete / cancel / refund / archive / publish / merge / assign etc.) matching upstream API verb shapes. Plus one typecheck-only fix to the tangle-middleware mock factory.Together with PRs #68 / #69 / #70 / #71, the catalog now ships full CRUD-shaped surfaces for ~267 integrations across A–Z (and gmail/google-* up front).
Coverage (alphabetical buckets)
N (4): n8n, nocodb, notion, notion-database
O (8): odoo, omni-co, onedrive, open-phone, open-router, openmic-ai, opnform, orimon
P (16): paddle, parseur, pastefy, paywhirl, pdfmonkey, personal-ai, pinch-payments, pinecone, pipedream, placid, pocketbase, pollybot-ai, posthog, postiz, postmark, productboard
Q (5): qawafel, qdrant, quaderno, quickbooks, quickzu
R (3): reachinbox, reply-io, retable
S (28): saastic, saleor, salesforce, sanity, sardis, savvycal, segment, sendgrid, sendinblue, sendpulse, senja, sentry, service-now, sharepoint, short-io, sign-now, signrequest, simplybookme, skyprep, smartlead, smartsheet, smartsuite, smoove, snowflake, square, stripe, supabase, systeme-io
T (20): tableau, talkable, tangle-id, teable, telegram, telnyx, textcortex-ai, ticktick, time-ops, timelines-ai, tl-dv, todoist, toggl-track, totalcms, trello, twenty, twilio, twilio-sms, typeform, typefully
U (3): umami, upgradechat, uscreen
V (6): vapi, vbout, videoask, vlm-run, vtex, vtiger
W (13): wafeq, weaviate, webflow, what-converts, whatsapp, whatsapp-business, wonderchat, woocommerce, woodpecker, wordpress, workable, wrike, wufoo
X (1): xero
Y (1): youcanbookme
Z (9): zagomail, zendesk, zendesk-sell, zeplin, zoho-bookings, zoho-crm, zoho-desk, zoom, zuora
Shape
Every new mutation carries
cas: 'native-idempotency'andexternalEffect: true. Required parameters declared on each capability'sparametersschema. Optional fields are either omitted from the body template (declarative-rest's{placeholder}strings are required-by-default viareadRequiredPath) or threaded throughbody: 'args'.Fix sweep patterns the workflow caught
A round of fix agents handled the predictable mega-fanout failure modes:
expect(names).toEqual([...])arrays in existing manifest-shape tests undersrc/connectors/adapters/__tests__/— extended to include the new capabilities (quickbooks, sendgrid, typeform, whatsapp-business, xero, zendesk).body: 'args'(paddle, what-converts).cas: 'optimistic-read-verify'on mutations where the manifest invariant test demands'native-idempotency'(time-ops, typefully).paywhirlmetadata-template-in-query-value — declarative-rest doesn't passsource.metadatatorenderQueryValue, and per the types comment metadata MUST NOT carry secrets anyway. Test re-pointed at thecredentialPlacement: { kind: 'query' }path that actually fires.whatsapp-business.tsnew Blob([bytes], ...)— Uint8Array cast to BlobPart for tsc strict.Typecheck-only fix
The 117 adapter commits all pass vitest. tsc strict additionally caught two patterns that vitest's swc transpile passes through:
CapabilityMutationResult.data— addedif (result.status !== 'committed') throwguards in notion-database and whatsapp-business tests.ConnectorInvocationmissingidempotencyKeyin stripe / totalcms / weaviate read tests.TangleIdentityClientmock factory missing four newer interface methods — added stubs (separate commit,fix(tangle-middleware test): add createWorkspace/...).Tests
pnpm exec vitest run).pnpm exec tsc --noEmitclean.declarative-rest.ts,types.ts,index.ts).