From 69607e22c9ed7082855c77f064d2f7214169c679 Mon Sep 17 00:00:00 2001 From: David McAfee Date: Wed, 13 Sep 2023 11:09:44 -0700 Subject: [PATCH] fix REST client PostOptions type --- packages/api-rest/src/types/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/api-rest/src/types/index.ts b/packages/api-rest/src/types/index.ts index 679dbfbdab5..7980f9db7a8 100644 --- a/packages/api-rest/src/types/index.ts +++ b/packages/api-rest/src/types/index.ts @@ -32,7 +32,7 @@ type JsonObject = { [name: string]: Json }; export type PostOptions = { headers?: Record; - body: JsonObject; + body: Record; region?: string; serviceName?: string; };