peddler 4.0.1 → 4.2.0

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.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -4
  3. data/lib/peddler/api.rb +13 -4
  4. data/lib/peddler/apis/amazon_warehousing_and_distribution_2024_05_09.rb +119 -2
  5. data/lib/peddler/apis/aplus_content_2020_11_01.rb +59 -49
  6. data/lib/peddler/apis/catalog_items_2022_04_01.rb +34 -33
  7. data/lib/peddler/apis/catalog_items_v0.rb +2 -4
  8. data/lib/peddler/apis/easy_ship_2022_03_23.rb +19 -18
  9. data/lib/peddler/apis/fba_inventory_v1.rb +3 -6
  10. data/lib/peddler/apis/feeds_2021_06_30.rb +1 -1
  11. data/lib/peddler/apis/finances_2024_06_01.rb +53 -0
  12. data/lib/peddler/apis/finances_2024_06_19.rb +14 -17
  13. data/lib/peddler/apis/fulfillment_inbound_2024_03_20.rb +10 -5
  14. data/lib/peddler/apis/fulfillment_inbound_v0.rb +2 -170
  15. data/lib/peddler/apis/fulfillment_outbound_2020_07_01.rb +1 -2
  16. data/lib/peddler/apis/listings_items_2021_08_01.rb +77 -5
  17. data/lib/peddler/apis/messaging_v1.rb +51 -51
  18. data/lib/peddler/apis/orders_v0.rb +1 -1
  19. data/lib/peddler/apis/product_pricing_v0.rb +3 -2
  20. data/lib/peddler/apis/reports_2021_06_30.rb +1 -1
  21. data/lib/peddler/apis/sellers_v1.rb +1 -1
  22. data/lib/peddler/apis/shipping_v1.rb +12 -12
  23. data/lib/peddler/apis/shipping_v2.rb +46 -20
  24. data/lib/peddler/apis/supply_sources_2020_07_01.rb +6 -12
  25. data/lib/peddler/apis/uploads_2020_11_01.rb +9 -8
  26. data/lib/peddler/apis/vehicles_2024_11_01.rb +40 -0
  27. data/lib/peddler/apis/vendor_direct_fulfillment_sandbox_test_data_2021_10_28.rb +2 -4
  28. data/lib/peddler/apis/vendor_direct_fulfillment_shipping_2021_12_28.rb +40 -27
  29. data/lib/peddler/apis/vendor_invoices_v1.rb +1 -1
  30. data/lib/peddler/apis/vendor_shipments_v1.rb +40 -1
  31. data/lib/peddler/error.rb +11 -1
  32. data/lib/peddler/token.rb +12 -12
  33. data/lib/peddler/version.rb +1 -1
  34. data/lib/peddler.rb +2 -0
  35. metadata +5 -8
  36. data/lib/peddler/json_feed_document.rb +0 -31
@@ -19,9 +19,8 @@ module Peddler
19
19
  #
20
20
  # @note This operation can make a dynamic sandbox call.
21
21
  # @param body [Hash] The request payload containing parameters for generating test order data scenarios.
22
- # @param rate_limit [Float] Requests per second
23
22
  # @return [Peddler::Response] The API response
24
- def generate_order_scenarios(body, rate_limit: nil)
23
+ def generate_order_scenarios(body)
25
24
  path = "/vendor/directFulfillment/sandbox/2021-10-28/orders"
26
25
 
27
26
  post(path, body:)
@@ -33,9 +32,8 @@ module Peddler
33
32
  # @note This operation can make a dynamic sandbox call.
34
33
  # @param transaction_id [String] The transaction identifier returned in the response to the generateOrderScenarios
35
34
  # operation.
36
- # @param rate_limit [Float] Requests per second
37
35
  # @return [Peddler::Response] The API response
38
- def get_order_scenarios(transaction_id, rate_limit: nil)
36
+ def get_order_scenarios(transaction_id)
39
37
  path = "/vendor/directFulfillment/sandbox/2021-10-28/transactions/#{transaction_id}"
40
38
 
41
39
  get(path)
@@ -12,22 +12,23 @@ module Peddler
12
12
  module APIs
13
13
  # Selling Partner API for Direct Fulfillment Shipping
14
14
  #
15
- # The Selling Partner API for Direct Fulfillment Shipping provides programmatic access to a direct fulfillment
16
- # vendor's shipping data.
15
+ # Use the Selling Partner API for Direct Fulfillment Shipping to access a direct fulfillment vendor's shipping data.
17
16
  class VendorDirectFulfillmentShipping20211228 < API
18
- # Returns a list of shipping labels created during the time frame that you specify. You define that time frame
19
- # using the createdAfter and createdBefore parameters. You must use both of these parameters. The date range to
20
- # search must not be more than 7 days.
17
+ # Returns a list of shipping labels created during the time frame that you specify. Use the `createdAfter` and
18
+ # `createdBefore` parameters to define the time frame. You must use both of these parameters. The date range to
19
+ # search must not be more than seven days.
21
20
  #
22
21
  # @note This operation can make a dynamic sandbox call.
23
- # @param ship_from_party_id [String] The vendor warehouseId for order fulfillment. If not specified, the result
24
- # will contain orders for all warehouses.
22
+ # @param ship_from_party_id [String] The vendor `warehouseId` for order fulfillment. If not specified, the result
23
+ # contains orders for all warehouses.
25
24
  # @param limit [Integer] The limit to the number of records returned.
26
25
  # @param created_after [String] Shipping labels that became available after this date and time will be included in
27
- # the result. Must be in ISO-8601 date/time format.
26
+ # the result. Values are in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
28
27
  # @param created_before [String] Shipping labels that became available before this date and time will be included
29
- # in the result. Must be in ISO-8601 date/time format.
30
- # @param sort_order [String] Sort ASC or DESC by order creation date.
28
+ # in the result. Values are in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time
29
+ # format.
30
+ # @param sort_order [String] The sort order creation date. You can choose between ascending (`ASC`) or descending
31
+ # (`DESC`) sort order.
31
32
  # @param next_token [String] Used for pagination when there are more ship labels than the specified result size
32
33
  # limit. The token value is returned in the previous API call.
33
34
  # @param rate_limit [Float] Requests per second
@@ -47,10 +48,10 @@ module Peddler
47
48
  meter(rate_limit).get(path, params:)
48
49
  end
49
50
 
50
- # Creates a shipping label for a purchase order and returns a transactionId for reference.
51
+ # Creates a shipping label for a purchase order and returns a `transactionId` for reference.
51
52
  #
52
53
  # @note This operation can make a dynamic sandbox call.
53
- # @param body [Hash] Request body containing the shipping labels data.
54
+ # @param body [Hash] The request body that contains the shipping labels data.
54
55
  # @param rate_limit [Float] Requests per second
55
56
  # @return [Peddler::Response] The API response
56
57
  def submit_shipping_label_request(body, rate_limit: 10.0)
@@ -59,11 +60,11 @@ module Peddler
59
60
  meter(rate_limit).post(path, body:)
60
61
  end
61
62
 
62
- # Returns a shipping label for the purchaseOrderNumber that you specify.
63
+ # Returns a shipping label for the `purchaseOrderNumber` that you specify.
63
64
  #
64
65
  # @note This operation can make a dynamic sandbox call.
65
- # @param purchase_order_number [String] The purchase order number for which you want to return the shipping label
66
- # and should be the same purchaseOrderNumber as received in the order.
66
+ # @param purchase_order_number [String] The purchase order number for which you want to return the shipping label.
67
+ # It should be the same `purchaseOrderNumber` that you received in the order.
67
68
  # @param rate_limit [Float] Requests per second
68
69
  # @return [Peddler::Response] The API response
69
70
  def get_shipping_label(purchase_order_number, rate_limit: 10.0)
@@ -76,8 +77,8 @@ module Peddler
76
77
  #
77
78
  # @note This operation can make a dynamic sandbox call.
78
79
  # @param purchase_order_number [String] The purchase order number for which you want to return the shipping
79
- # labels. It should be the same purchaseOrderNumber as received in the order.
80
- # @param body [Hash] The request payload containing parameters for creating shipping labels.
80
+ # labels. It should be the same number as the `purchaseOrderNumber` in the order.
81
+ # @param body [Hash] The request payload that contains the parameters for creating shipping labels.
81
82
  # @param rate_limit [Float] Requests per second
82
83
  # @return [Peddler::Response] The API response
83
84
  def create_shipping_labels(purchase_order_number, body, rate_limit: 10.0)
@@ -121,9 +122,9 @@ module Peddler
121
122
  # will contain orders for all warehouses.
122
123
  # @param limit [Integer] The limit to the number of records returned
123
124
  # @param created_after [String] Orders that became available after this date and time will be included in the
124
- # result. Must be in ISO-8601 date/time format.
125
+ # result. Values are in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
125
126
  # @param created_before [String] Orders that became available before this date and time will be included in the
126
- # result. Must be in ISO-8601 date/time format.
127
+ # result. Values are in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
127
128
  # @param sort_order [String] Sort ASC or DESC by order creation date.
128
129
  # @param next_token [String] Used for pagination when there are more orders than the specified result size limit.
129
130
  # The token value is returned in the previous API call.
@@ -160,14 +161,14 @@ module Peddler
160
161
  # must not be more than 7 days.
161
162
  #
162
163
  # @note This operation can make a dynamic sandbox call.
163
- # @param ship_from_party_id [String] The vendor warehouseId for order fulfillment. If not specified the result
164
- # will contain orders for all warehouses.
165
- # @param limit [Integer] The limit to the number of records returned
166
- # @param created_after [String] Packing slips that became available after this date and time will be included in
167
- # the result. Must be in ISO-8601 date/time format.
164
+ # @param ship_from_party_id [String] The vendor `warehouseId` for order fulfillment. If not specified, the result
165
+ # contains orders for all warehouses.
166
+ # @param limit [Integer] The maximum number of records to return.
167
+ # @param created_after [String] Packing slips that become available after this date and time will be included in
168
+ # the result. Values are in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
168
169
  # @param created_before [String] Packing slips that became available before this date and time will be included in
169
- # the result. Must be in ISO-8601 date/time format.
170
- # @param sort_order [String] Sort ASC or DESC by packing slip creation date.
170
+ # the result. Values are in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) date-time format.
171
+ # @param sort_order [String] The packing slip creation dates, which are sorted by ascending or descending order.
171
172
  # @param next_token [String] Used for pagination when there are more packing slips than the specified result size
172
173
  # limit. The token value is returned in the previous API call.
173
174
  # @param rate_limit [Float] Requests per second
@@ -190,7 +191,7 @@ module Peddler
190
191
  # Returns a packing slip based on the purchaseOrderNumber that you specify.
191
192
  #
192
193
  # @note This operation can make a dynamic sandbox call.
193
- # @param purchase_order_number [String] The purchaseOrderNumber for the packing slip you want.
194
+ # @param purchase_order_number [String] The `purchaseOrderNumber` for the packing slip that you want.
194
195
  # @param rate_limit [Float] Requests per second
195
196
  # @return [Peddler::Response] The API response
196
197
  def get_packing_slip(purchase_order_number, rate_limit: 10.0)
@@ -198,6 +199,18 @@ module Peddler
198
199
 
199
200
  meter(rate_limit).get(path)
200
201
  end
202
+
203
+ # Creates a container (pallet) label for the associated shipment package.
204
+ #
205
+ # @note This operation can make a dynamic sandbox call.
206
+ # @param body [Hash] Request body containing the container label data.
207
+ # @param rate_limit [Float] Requests per second
208
+ # @return [Peddler::Response] The API response
209
+ def create_container_label(body, rate_limit: 10.0)
210
+ path = "/vendor/directFulfillment/shipping/2021-12-28/containerLabel"
211
+
212
+ meter(rate_limit).post(path, body:)
213
+ end
201
214
  end
202
215
  end
203
216
  end
@@ -10,7 +10,7 @@ module Peddler
10
10
  end
11
11
 
12
12
  module APIs
13
- # Vendor Invoices v1
13
+ # Selling Partner API for Retail Procurement Payments
14
14
  #
15
15
  # The Selling Partner API for Retail Procurement Payments provides programmatic access to vendors payments data.
16
16
  class VendorInvoicesV1 < API
@@ -10,7 +10,7 @@ module Peddler
10
10
  end
11
11
 
12
12
  module APIs
13
- # Vendor Shipments v1
13
+ # Selling Partner API for Retail Procurement Shipments
14
14
  #
15
15
  # The Selling Partner API for Retail Procurement Shipments provides programmatic access to retail shipping data for
16
16
  # vendors.
@@ -127,6 +127,45 @@ module Peddler
127
127
 
128
128
  meter(rate_limit).get(path, params:)
129
129
  end
130
+
131
+ # Returns small parcel shipment labels based on the filters that you specify.
132
+ #
133
+ # @param limit [Integer] The limit to the number of records returned. Default value is 50 records.
134
+ # @param sort_order [String] Sort the list by shipment label creation date in ascending or descending order.
135
+ # @param next_token [String] A token that is used to retrieve the next page of results. The response includes
136
+ # `nextToken` when the number of results exceeds the specified `pageSize` value. To get the next page of
137
+ # results, call the operation with this token and include the same arguments as the call that produced the
138
+ # token. To get a complete list, call this operation until `nextToken` is null. Note that this operation can
139
+ # return empty pages.
140
+ # @param label_created_after [String] Shipment labels created after this time will be included in the result. This
141
+ # field must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) datetime format.
142
+ # @param label_created_before [String] Shipment labels created before this time will be included in the result.
143
+ # This field must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) datetime format.
144
+ # @param buyer_reference_number [String] Get Shipment labels by passing buyer reference number.
145
+ # @param vendor_shipment_identifier [String] Get Shipment labels by passing vendor shipment identifier.
146
+ # @param seller_warehouse_code [String] Get Shipping labels based on vendor warehouse code. This value must be
147
+ # same as the `sellingParty.partyId` in the shipment.
148
+ # @param rate_limit [Float] Requests per second
149
+ # @return [Peddler::Response] The API response
150
+ def get_shipment_labels(limit: nil, sort_order: nil, next_token: nil, label_created_after: nil,
151
+ label_created_before: nil, buyer_reference_number: nil, vendor_shipment_identifier: nil,
152
+ seller_warehouse_code: nil, rate_limit: 10.0)
153
+ cannot_sandbox!
154
+
155
+ path = "/vendor/shipping/v1/transportLabels"
156
+ params = {
157
+ "limit" => limit,
158
+ "sortOrder" => sort_order,
159
+ "nextToken" => next_token,
160
+ "labelCreatedAfter" => label_created_after,
161
+ "labelCreatedBefore" => label_created_before,
162
+ "buyerReferenceNumber" => buyer_reference_number,
163
+ "vendorShipmentIdentifier" => vendor_shipment_identifier,
164
+ "sellerWarehouseCode" => seller_warehouse_code,
165
+ }.compact
166
+
167
+ meter(rate_limit).get(path, params:)
168
+ end
130
169
  end
131
170
  end
132
171
  end
data/lib/peddler/error.rb CHANGED
@@ -8,7 +8,7 @@ module Peddler
8
8
  class << self
9
9
  def build(response)
10
10
  error = JSON.parse(response).dig("errors").first
11
- class_name = error.dig("code")
11
+ class_name = normalize_class_name(error.dig("code"))
12
12
  message = error.dig("message")
13
13
  klass = if Errors.const_defined?(class_name)
14
14
  Errors.const_get(class_name)
@@ -23,6 +23,16 @@ module Peddler
23
23
  rescue NameError
24
24
  # Do nothing if code cannot be converted to a class name
25
25
  end
26
+
27
+ private
28
+
29
+ def normalize_class_name(code)
30
+ if code.match?(/\A[A-Z_]+\z/)
31
+ code.split("_").map(&:capitalize).join
32
+ else
33
+ code
34
+ end
35
+ end
26
36
  end
27
37
 
28
38
  def initialize(msg = nil, response = nil)
data/lib/peddler/token.rb CHANGED
@@ -45,6 +45,18 @@ module Peddler
45
45
  response
46
46
  end
47
47
 
48
+ def grant_type
49
+ if options.key?(:grant_type)
50
+ options[:grant_type]
51
+ elsif options.key?(:refresh_token)
52
+ "refresh_token"
53
+ elsif options.key?(:scope)
54
+ "client_credentials"
55
+ elsif options.key?(:code)
56
+ "authorization_code"
57
+ end
58
+ end
59
+
48
60
  private
49
61
 
50
62
  def params
@@ -54,17 +66,5 @@ module Peddler
54
66
  client_secret: client_secret,
55
67
  }.compact.merge(options)
56
68
  end
57
-
58
- def grant_type
59
- return if options.key?(:grant_type)
60
-
61
- if options.key?(:refresh_token)
62
- "refresh_token"
63
- elsif options.key?(:scope)
64
- "client_credentials"
65
- elsif options.key?(:code)
66
- "authorization_code"
67
- end
68
- end
69
69
  end
70
70
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Peddler
4
- VERSION = "4.0.1"
4
+ VERSION = "4.2.0"
5
5
  end
data/lib/peddler.rb CHANGED
@@ -12,6 +12,7 @@ require "peddler/apis/easy_ship_2022_03_23"
12
12
  require "peddler/apis/fba_inbound_eligibility_v1"
13
13
  require "peddler/apis/fba_inventory_v1"
14
14
  require "peddler/apis/feeds_2021_06_30"
15
+ require "peddler/apis/finances_2024_06_01"
15
16
  require "peddler/apis/finances_2024_06_19"
16
17
  require "peddler/apis/finances_v0"
17
18
  require "peddler/apis/fulfillment_inbound_2024_03_20"
@@ -41,6 +42,7 @@ require "peddler/apis/solicitations_v1"
41
42
  require "peddler/apis/supply_sources_2020_07_01"
42
43
  require "peddler/apis/tokens_2021_03_01"
43
44
  require "peddler/apis/uploads_2020_11_01"
45
+ require "peddler/apis/vehicles_2024_11_01"
44
46
  require "peddler/apis/vendor_direct_fulfillment_inventory_v1"
45
47
  require "peddler/apis/vendor_direct_fulfillment_orders_2021_12_28"
46
48
  require "peddler/apis/vendor_direct_fulfillment_orders_v1"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: peddler
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hakan Ensari
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-13 00:00:00.000000000 Z
10
+ date: 2025-03-18 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: http
@@ -30,7 +29,6 @@ dependencies:
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: '7.0'
33
- description:
34
32
  email:
35
33
  - hakanensari@gmail.com
36
34
  executables: []
@@ -53,6 +51,7 @@ files:
53
51
  - lib/peddler/apis/fba_inbound_eligibility_v1.rb
54
52
  - lib/peddler/apis/fba_inventory_v1.rb
55
53
  - lib/peddler/apis/feeds_2021_06_30.rb
54
+ - lib/peddler/apis/finances_2024_06_01.rb
56
55
  - lib/peddler/apis/finances_2024_06_19.rb
57
56
  - lib/peddler/apis/finances_v0.rb
58
57
  - lib/peddler/apis/fulfillment_inbound_2024_03_20.rb
@@ -82,6 +81,7 @@ files:
82
81
  - lib/peddler/apis/supply_sources_2020_07_01.rb
83
82
  - lib/peddler/apis/tokens_2021_03_01.rb
84
83
  - lib/peddler/apis/uploads_2020_11_01.rb
84
+ - lib/peddler/apis/vehicles_2024_11_01.rb
85
85
  - lib/peddler/apis/vendor_direct_fulfillment_inventory_v1.rb
86
86
  - lib/peddler/apis/vendor_direct_fulfillment_orders_2021_12_28.rb
87
87
  - lib/peddler/apis/vendor_direct_fulfillment_orders_v1.rb
@@ -98,7 +98,6 @@ files:
98
98
  - lib/peddler/endpoint.rb
99
99
  - lib/peddler/error.rb
100
100
  - lib/peddler/helpers/feeds_2021_06_30.rb
101
- - lib/peddler/json_feed_document.rb
102
101
  - lib/peddler/marketplace.rb
103
102
  - lib/peddler/response.rb
104
103
  - lib/peddler/token.rb
@@ -108,7 +107,6 @@ licenses:
108
107
  - MIT
109
108
  metadata:
110
109
  rubygems_mfa_required: 'true'
111
- post_install_message:
112
110
  rdoc_options: []
113
111
  require_paths:
114
112
  - lib
@@ -123,8 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
121
  - !ruby/object:Gem::Version
124
122
  version: '0'
125
123
  requirements: []
126
- rubygems_version: 3.5.16
127
- signing_key:
124
+ rubygems_version: 3.6.2
128
125
  specification_version: 4
129
126
  summary: Amazon Selling Partner API (SP-API) in Ruby
130
127
  test_files: []
@@ -1,31 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Peddler
4
- class JSONFeedDocument
5
- CONTENT_TYPE = "application/json; charset=UTF-8"
6
-
7
- def upload(content)
8
- # While HTTPrb already sets the content-type, Amazon server seems to fail if we don't explicitly set it again
9
- # here. A bit of a mystery; maybe it's the order of the headers that's screwing things up on their end?
10
- HTTP.headers("Content-Type" => CONTENT_TYPE).put(url, json: content)
11
- end
12
-
13
- def initialize(api)
14
- @api = api
15
- end
16
-
17
- def id
18
- metadata.fetch("id")
19
- end
20
-
21
- def url
22
- metadata.fetch("url")
23
- end
24
-
25
- private
26
-
27
- def metadata
28
- @metadata ||= @api.create_feed_document({ "contentType" => CONTENT_TYPE }).parse
29
- end
30
- end
31
- end