fix: AWS4 authentication method didn't sign request body (#430)

Co-authored-by: Gregory Schier <gschier1990@gmail.com>
This commit is contained in:
Mark Fulton
2026-08-14 13:07:05 -07:00
committed by GitHub
co-authored by Gregory Schier
parent 2383f06e71
commit 68671377fd
7 changed files with 18 additions and 2 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ export type CallHttpAuthenticationActionArgs = { contextId: string, values: { [k
export type CallHttpAuthenticationActionRequest = { index: number, pluginRefId: string, args: CallHttpAuthenticationActionArgs, };
export type CallHttpAuthenticationRequest = { contextId: string, values: { [key in string]?: JsonPrimitive }, method: string, url: string, headers: Array<HttpHeader>, };
export type CallHttpAuthenticationRequest = { contextId: string, values: { [key in string]?: JsonPrimitive }, method: string, url: string, headers: Array<HttpHeader>, body: string | null, };
export type CallHttpAuthenticationResponse = {
/**