Skip to content

Commit

Permalink
Fix customer address all not returning repsonse
Browse files Browse the repository at this point in the history
  • Loading branch information
mllemango committed Aug 30, 2023
1 parent b5c5c1a commit 17c1848
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/shopify_api/rest/resources/2022_10/customer_address.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,16 @@ def json_body_name()
"address"
end

sig do
returns(T::Array[String])
end
def json_response_body_names()
[
"customer_address",
"address"
]
end

sig do
params(
id: T.any(Integer, String),
Expand Down
10 changes: 10 additions & 0 deletions lib/shopify_api/rest/resources/2023_01/customer_address.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,16 @@ def json_body_name()
"address"
end

sig do
returns(T::Array[String])
end
def json_response_body_names()
[
"customer_address",
"address"
]
end

sig do
params(
id: T.any(Integer, String),
Expand Down
10 changes: 10 additions & 0 deletions lib/shopify_api/rest/resources/2023_04/customer_address.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,16 @@ def json_body_name()
"address"
end

sig do
returns(T::Array[String])
end
def json_response_body_names()
[
"customer_address",
"address"
]
end

sig do
params(
id: T.any(Integer, String),
Expand Down
10 changes: 10 additions & 0 deletions lib/shopify_api/rest/resources/2023_07/customer_address.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,16 @@ def json_body_name()
"address"
end

sig do
returns(T::Array[String])
end
def json_response_body_names()
[
"customer_address",
"address"
]
end

sig do
params(
id: T.any(Integer, String),
Expand Down

0 comments on commit 17c1848

Please sign in to comment.