intersoft_api 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d83f118dfaac8cbbaf059cb7c7c405bb5aad5b62a1aa63d826ff408e862e2332
4
- data.tar.gz: 815d70a522ee59715946ca10802c9701a0e38859d606ca15045417ea780f7023
3
+ metadata.gz: 44e0a3b40d47c81db77597eb0195eeb78a3597fbc11563b9147bb0bdf6d255c4
4
+ data.tar.gz: 1f30f1c3026addcb2ec1e0345ecef624edb3a55e4ec457e4efbe76d783e1e72f
5
5
  SHA512:
6
- metadata.gz: 286262e90a27af7e055bb1f7f72a5bfebd6350dbd6b7c0e055094922c872f6e5000c8cdc3f358713dc63c9f6b9598bb7f52bd76af87dbe5cb1370c7b3a635474
7
- data.tar.gz: 01c522607f9788c77c48befbaa898bd5d8a97e9d91a04664e50103baed472225dc360d177c004abcd5c7a41a2063986c00663655827c25b06cd1f9a2d225be9c
6
+ metadata.gz: 99a7161e1c6903aa95aa75484f02ffffe67f2d2648edbd129f930e20c1783deed551bfc19f067a2cf710274a2070caa6e9bc350e587e665883acfa108c27ecb9
7
+ data.tar.gz: 1f708a1218dfc79640078c5d34d9a31d9d1b7b5710a1f102ce1d7d968cf03a16e0d0f4e739aeeb623e074c4eb5f4741d5482d5e5d844b08354f3482160dc4011
@@ -1,5 +1,3 @@
1
- # frozen_string_literal: true
2
-
3
1
  module IntersoftAPI
4
2
  class ShipmentResource < Resource
5
3
  def create(attributes)
@@ -9,5 +7,14 @@ module IntersoftAPI
9
7
  def generate_label_qr_code(shipment_id)
10
8
  Shipment.new(get_request("shipments/printMyLabelQRCode/rm/#{shipment_id}").body)
11
9
  end
10
+
11
+ def all(shipping_location_id, options = {})
12
+ url = "shipments/#{shipping_location_id}"
13
+ options = options.slice(:shipping_account_id, :carrier_code, :status, :destination_country_code, :date_from, :date_to, :page_size, :page_number)
14
+ options = options.transform_keys { |key| key.to_s.camelize(:lower) }
15
+ url += "?#{options.to_query}" if options.any?
16
+
17
+ Shipment.new(get_request(url).body)
18
+ end
12
19
  end
13
20
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module IntersoftAPI
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: intersoft_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicholas Farm
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-09-08 00:00:00.000000000 Z
11
+ date: 2023-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport