muffin_man 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cdd15706a272ada38963d821fb2609b904277727bc2bde43fdc0fdcbf03a5883
4
- data.tar.gz: f81a9c04bdfe27ac1b2d8508a6cfc79859d84eaff387ff0dbfdef92b88ead034
3
+ metadata.gz: e369bb1ade25adc09729766667804263f5c1047939a98e13da9c3d6a10ddddcf
4
+ data.tar.gz: 8bcf51705df499bd703b3ce8e69fc7342ae475f60431bad183e080b6eca0c918
5
5
  SHA512:
6
- metadata.gz: 37439833bf8791bba7c548136f48619fbac1d96e7629a24a3136910407911a7ba54e38776b3eaa5a5074f7f5aa539afdfbd1a3b4b4f287b6a16b30fe34bad7d3
7
- data.tar.gz: fc6ed100c06729fe3f3637195af4bab1cad0f9c64edabe68577de43191d8f5930a6adffab74b99a6b4b68319bc57cd46782e25cd512c7e4cd1e4c08d3bc415aa
6
+ metadata.gz: 6130d36d41d5e9f38f63fcc55f51c3269d49c78bc5e2c42eeda68f4a466756ffde7cf066d13d6f5b2d57b182e148875f33ea2b17f932268fc352d0b13bdd6e73
7
+ data.tar.gz: 9251f8fddf551cd308627276a82927e899a5ed5488c82143104f436e606515e07565f839fc8f2f47190362ad9833fc4afd268b5d4dcd26744b39ee895809de1a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 2.0.3 [#](https://github.com/patterninc/muffin_man/pull/50)
2
+
3
+ - Support for putListingsItem
4
+
1
5
  # 2.0.2 [#49](https://github.com/patterninc/muffin_man/pull/49)
2
6
 
3
7
  - Better error handling for unauthorized errors when getting LWA tokens
data/README.md CHANGED
@@ -15,6 +15,7 @@ As of now, this gem only supports portions of the following APIs with more to co
15
15
  - `fulfillment_outbound`
16
16
  - `feeds`
17
17
  - `notifications`
18
+ - `listings`
18
19
 
19
20
  ## Installation
20
21
 
@@ -19,6 +19,23 @@ module MuffinMan
19
19
  @request_type = "GET"
20
20
  call_api
21
21
  end
22
+
23
+ def put_listings_item(seller_id, sku, marketplace_ids, product_type, attributes, issue_locale: nil,
24
+ requirements: nil)
25
+ @local_var_path = "/listings/2021-08-01/items/#{seller_id}/#{sku}"
26
+ @marketplace_ids = marketplace_ids.is_a?(Array) ? marketplace_ids : [marketplace_ids]
27
+ @query_params = {
28
+ "marketplaceIds" => @marketplace_ids.join(",")
29
+ }
30
+ @query_params["issueLocale"] = issue_locale if issue_locale
31
+ @request_body = {
32
+ "productType" => product_type,
33
+ "attributes" => attributes
34
+ }
35
+ @request_body["requirements"] = requirements if requirements
36
+ @request_type = "PUT"
37
+ call_api
38
+ end
22
39
  end
23
40
  end
24
41
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MuffinMan
4
- VERSION = "2.0.2"
4
+ VERSION = "2.0.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: muffin_man
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gavin
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2023-03-29 00:00:00.000000000 Z
13
+ date: 2023-06-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rspec