From 4ffaab1e367f2a161a61a03d79aac2f88c81aa56 Mon Sep 17 00:00:00 2001 From: Melanie Wang Date: Wed, 30 Aug 2023 11:35:38 -0400 Subject: [PATCH] Fix customer address all not returning repsonse --- lib/shopify_api/rest/resources/2023_07/customer_address.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/shopify_api/rest/resources/2023_07/customer_address.rb b/lib/shopify_api/rest/resources/2023_07/customer_address.rb index 460237f0c..b0db240e6 100644 --- a/lib/shopify_api/rest/resources/2023_07/customer_address.rb +++ b/lib/shopify_api/rest/resources/2023_07/customer_address.rb @@ -87,6 +87,13 @@ def json_body_name() "address" end + sig do + override.returns(T::Array[String]) + end + def json_response_body_names() + ["address", "customer_address"] + end + sig do params( id: T.any(Integer, String),