From f73f1e94b5ab9ce7eadea0e240a8b57870c6949e Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 11 Aug 2026 21:08:39 +0000 Subject: [PATCH] docs(inbound): drop upstream provider name from verdicts field doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The published `InboundMessage.verdicts` JSDoc named the underlying receiving infrastructure ("SES scanning verdicts"). That detail ships in the package types and adds nothing for consumers, so describe the field provider-neutrally ("Scanning verdicts …, as reported") to match the wording already used on the inbound MCP tool descriptions ("spam/auth verdicts"). Type and runtime shape are unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01NHdu2Fgj7HNau9eLPTrKzy --- .changeset/inbound-verdicts-doc.md | 5 +++++ packages/sdk/src/types.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/inbound-verdicts-doc.md diff --git a/.changeset/inbound-verdicts-doc.md b/.changeset/inbound-verdicts-doc.md new file mode 100644 index 0000000..9a4c88c --- /dev/null +++ b/.changeset/inbound-verdicts-doc.md @@ -0,0 +1,5 @@ +--- +"@senderkit/sdk": patch +--- + +Make the inbound `verdicts` field documentation provider-neutral: it now describes the map as "scanning verdicts (e.g. spam/virus/SPF/DKIM), as reported" without naming the underlying receiving infrastructure. The shipped type and its runtime shape are unchanged. diff --git a/packages/sdk/src/types.ts b/packages/sdk/src/types.ts index 360b93a..581d7e8 100644 --- a/packages/sdk/src/types.ts +++ b/packages/sdk/src/types.ts @@ -447,7 +447,7 @@ export interface InboundMessage { truncated: boolean; headers: Record; attachments: InboundAttachment[]; - /** SES scanning verdicts (e.g. spam/virus/SPF/DKIM), as reported. */ + /** Scanning verdicts (e.g. spam/virus/SPF/DKIM), as reported. */ verdicts: Record; sizeBytes: number; /** Authenticated API URL for the raw RFC 822 source. */