2 Commits

Author SHA1 Message Date
Dan Milne
d55ef96ac1 Bump version 2024-08-22 10:42:33 +10:00
Dan Milne
d54c6d2cd7 Fix tags to be strings, not symbols 2024-08-22 10:42:15 +10:00
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ module Paapi
end end
def get_items(item_ids:, **options) def get_items(item_ids:, **options)
payload = {PartnerTag: partner_tag, PartnerType: "Associates", ItemIds: Array(item_ids), Resources: @resources}.merge(options) payload = {"PartnerTag" => partner_tag, "PartnerType" => "Associates", ItemIds: Array(item_ids), Resources: @resources}.merge(options)
request(op: :get_items, payload: payload) request(op: :get_items, payload: payload)
end end

View File

@@ -1,3 +1,3 @@
module Paapi module Paapi
VERSION = '0.1.10' VERSION = '0.1.11'
end end