muffin_man 2.1.2 → 2.1.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: e76d913a68a8015a4b14b3f91083ffb0995f18f4fcb2a32561ab6ebb54606a06
4
- data.tar.gz: 8c020662237e128bab18104b1e3283cc9f93f21336c952acc4a19b5741088196
3
+ metadata.gz: 6e9269248aa6303968c89ad3f90d7a6165b249cebaa15b905ee0596b2a8916ce
4
+ data.tar.gz: 61dcfad92370fd8553a702976dffd4109b9e5eaf9158929c45803ca23b0af238
5
5
  SHA512:
6
- metadata.gz: 29d252e4e79d7e2c548468b5b941673831ca1ff946b4d14cd9dc8ccabece39d148f76a6578aba8b4d0c3251dd83732c1cb24cf139ff76f61e8107bedd9d1cac6
7
- data.tar.gz: 131ccf94eda1c1131a6f72ff937f5a2f3437278a8b60a445dca95fec48b787dd72a2110fb10a3f606b5cb386a5b0cde4e84162caf680b0b69bbac203f3f48946
6
+ metadata.gz: cb1133daaa98b531f1123985494fe1718de374e00877109a21579592758fc10f7aef91f0f76612dec83bf39357ea6ef449ca7063ef49f8515561c4598f421db6
7
+ data.tar.gz: b4dc27b5e26ffd6cf3d91f386225431e22006bc96217411300c2122ec8a6a3b50397399ed3c5c4bf0a29c408453943b782dc17ba8fcb938ddacdc1956cbfc962
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 2.1.3
2
+
3
+ - Support for AWD getInboundShipment [#64](https://github.com/patterninc/muffin_man/pull/64)
4
+
1
5
  # 2.1.2 [#63](https://github.com/patterninc/muffin_man/pull/63)
2
6
 
3
7
  - Support for patchListingsItem
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module MuffinMan
4
+ module Awd
5
+ class V20240509 < SpApiClient
6
+ AWD_PATH = "/awd/2024-05-09"
7
+
8
+ def get_inbound_shipment(shipment_id)
9
+ @local_var_path = "#{AWD_PATH}/inboundShipments/#{shipment_id}"
10
+ @request_type = "GET"
11
+ call_api
12
+ end
13
+ end
14
+ end
15
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MuffinMan
4
- VERSION = "2.1.2"
4
+ VERSION = "2.1.3"
5
5
  end
data/lib/muffin_man.rb CHANGED
@@ -21,6 +21,7 @@ require "muffin_man/request_helpers"
21
21
  require "muffin_man/feeds/v20210630"
22
22
  require "muffin_man/notifications/v1"
23
23
  require "muffin_man/merchant_fulfillment/v0"
24
+ require "muffin_man/awd/v20240509"
24
25
 
25
26
  module MuffinMan
26
27
  class Error < StandardError; end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: muffin_man
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gavin
8
8
  - Jason
9
9
  - Nate
10
- autorequire:
10
+ autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2024-05-20 00:00:00.000000000 Z
13
+ date: 2024-07-09 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rspec
@@ -130,7 +130,7 @@ dependencies:
130
130
  - - ">="
131
131
  - !ruby/object:Gem::Version
132
132
  version: '0'
133
- description:
133
+ description:
134
134
  email:
135
135
  - gavin@pattern.com
136
136
  - jason@pattern.com
@@ -154,6 +154,7 @@ files:
154
154
  - bin/setup
155
155
  - lib/muffin_man.rb
156
156
  - lib/muffin_man/authorization/v1.rb
157
+ - lib/muffin_man/awd/v20240509.rb
157
158
  - lib/muffin_man/catalog_items/base_api.rb
158
159
  - lib/muffin_man/catalog_items/v20201201.rb
159
160
  - lib/muffin_man/catalog_items/v20220401.rb
@@ -192,7 +193,7 @@ homepage: https://github.com/patterninc/muffin_man
192
193
  licenses:
193
194
  - MIT
194
195
  metadata: {}
195
- post_install_message:
196
+ post_install_message:
196
197
  rdoc_options: []
197
198
  require_paths:
198
199
  - lib
@@ -207,8 +208,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
207
208
  - !ruby/object:Gem::Version
208
209
  version: '0'
209
210
  requirements: []
210
- rubygems_version: 3.0.3
211
- signing_key:
211
+ rubygems_version: 3.4.19
212
+ signing_key:
212
213
  specification_version: 4
213
214
  summary: Amazon Selling Partner API client
214
215
  test_files: []