From 2fcaf3abd6908ab5952097a6c7c1681da8910dae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Stormacq?= Date: Sun, 30 Nov 2025 22:38:24 -0800 Subject: [PATCH] Add Decodable Request to APIGatewayRequest --- Sources/AWSLambdaEvents/APIGateway.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/AWSLambdaEvents/APIGateway.swift b/Sources/AWSLambdaEvents/APIGateway.swift index 9e9d5a4..5f9134f 100644 --- a/Sources/AWSLambdaEvents/APIGateway.swift +++ b/Sources/AWSLambdaEvents/APIGateway.swift @@ -77,6 +77,8 @@ public struct APIGatewayRequest: Encodable, Sendable { public let isBase64Encoded: Bool } +extension APIGatewayRequest: DecodableRequest {} + // MARK: - Response - public struct APIGatewayResponse: Codable, Sendable {