Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/inbound-verdicts-doc.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion packages/sdk/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ export interface InboundMessage {
truncated: boolean;
headers: Record<string, string>;
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<string, string>;
sizeBytes: number;
/** Authenticated API URL for the raw RFC 822 source. */
Expand Down