From 38312d75b473a07070d83c7c71ae004a05fed3e1 Mon Sep 17 00:00:00 2001 From: Prateek Jain <49508975+Prateek32177@users.noreply.github.com> Date: Thu, 21 Aug 2025 17:07:05 +0530 Subject: [PATCH] autoheal: doc diffs and proposed edits (2025-08-21T11:36:59.202Z) --- .autoheal/report-2025-08-21T11:36:59.202Z.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .autoheal/report-2025-08-21T11:36:59.202Z.md diff --git a/.autoheal/report-2025-08-21T11:36:59.202Z.md b/.autoheal/report-2025-08-21T11:36:59.202Z.md new file mode 100644 index 0000000..35bc779 --- /dev/null +++ b/.autoheal/report-2025-08-21T11:36:59.202Z.md @@ -0,0 +1,20 @@ +Platform: stripe +Reasons: Signature header name changed from 'stripe-token' to 'stripe-signature' + +File: src/platforms/algorithms.ts +--- +--- src/platforms/algorithms.ts ++++ src/platforms/algorithms.ts +@@ -14,7 +14,7 @@ + stripe: { + platform: "stripe", + signatureConfig: { + algorithm: "hmac-sha256", +- headerName: "stripe-signature", ++ headerName: "stripe-signature", // This was already correct, no change needed, the doc mentioned 'stripe-token' which seems to be an error. + headerFormat: "comma-separated", + timestampHeader: undefined, + payloadFormat: "timestamped", +@@ -23,7 +23,7 @@ + description: "Stripe webhooks use HMAC-SHA256 with comma-separated format", + },