muffin_man 1.4.7 → 1.4.8

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: a917d17125d2557b73aec27117dd30327c866382198d202ba9a8d54bff5db82c
4
- data.tar.gz: 46eafd766beab5cd7d300bbd2ad9a2aaf62d47ee48c67b51c0173f07eb657959
3
+ metadata.gz: 7deaf6a01e70c248aad4bf1968206721974e8ce9c09e72edb506be92ef1cb786
4
+ data.tar.gz: 422f15a6a72239ed7f64a4d19f4de450f15a838a167b52fb4e08bbd10deca58b
5
5
  SHA512:
6
- metadata.gz: 56e85f023181739f5946a912483eade11c1e14fe02963dd2ad845b3ddc7e95da36c0490c2cafd3a8d36ec83d6d0156374134a81e83c0e9cbbe8f2b9c8a76c515
7
- data.tar.gz: 3034a2f736e1be8d4c4d0261ce90e76e5f2dba3b7c73572d30d72d90426c177faf483fc72cc9ed4192b2aee1f2364c091dee9a867fc641150f440ade552babef
6
+ metadata.gz: a852d2614006e43f5f0698d77330215bef9872071623cab65da8afcf1539f2111e68da3dd4e4cd5fc70debb8fd0189dfb64e8cdc52c03087f099b574291976d9
7
+ data.tar.gz: 321e5cb98de5d46ecb024f3e2e76a73c3aaf5ebf1979378b0ac6445cdbe3e903ea4569e6260b224f5b669b78e1ea2fe58d5091ddc38f6088e622ec4d59ad5b5d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.4.8
2
+
3
+ - Support for createInboundShipment [#25](https://github.com/patterninc/muffin_man/pull/25)
4
+
1
5
  # 1.4.7
2
6
 
3
7
  - Support for createInboundShipmentPlan [#24](https://github.com/patterninc/muffin_man/pull/24)
@@ -24,6 +24,17 @@ module MuffinMan
24
24
  @request_type = "POST"
25
25
  call_api
26
26
  end
27
+
28
+ def create_inbound_shipment(shipment_id, marketplace_id, inbound_shipment_header, inbound_shipment_items)
29
+ @local_var_path = "/fba/inbound/v0/shipments/#{shipment_id}"
30
+ @request_body = {
31
+ "MarketplaceId": marketplace_id,
32
+ "InboundShipmentHeader": inbound_shipment_header,
33
+ "InboundShipmentItems": inbound_shipment_items,
34
+ }
35
+ @request_type = "POST"
36
+ call_api
37
+ end
27
38
  end
28
39
  end
29
40
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MuffinMan
4
- VERSION = "1.4.7"
4
+ VERSION = "1.4.8"
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: 1.4.7
4
+ version: 1.4.8
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: 2022-09-23 00:00:00.000000000 Z
13
+ date: 2022-09-26 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rspec