shipstation 0.22 → 0.23

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: 72e68e72acd46ba709935935efd037ed83a1df79b4e29ab3f4afc3596f439874
4
- data.tar.gz: 6f245a7bfd81fe974c78fbbf5f5038a5b4d554ff6a70d79828d5a345280544cc
3
+ metadata.gz: c507a735a529c23156fe6ab42982b440f257d3f4bc8ca8c924abda2e54ca1c20
4
+ data.tar.gz: 0ebec015d22d4aa233dca50aad78bd6f0ef2b22f5f4514a2e6db29f1be720b67
5
5
  SHA512:
6
- metadata.gz: 11d3043df2a9bd563cbd5313684a291530a1f3d1f77093e59d73e98e56a20b08d50e7045fcd989667f055ada196078c9c06057fb98dfdefafcb66aa862225f6d
7
- data.tar.gz: 4211c6cb6e1de85b46b8e93d178451095f3070a889c8ef3a4f26ffc47f35b1cf42b67887470866da878ecbbec136320d5ae28bb3f2a03cdfe72aa3f54335fee9
6
+ metadata.gz: 96777ce36c6379b11e60b9ae3b5d7adef3c9573cb93fce1ef3e17aab32da8dd233691dc888537645b02708df96510d11b04dba38be402f66122a8072cc86c548
7
+ data.tar.gz: ab617ef8b63b9d67242ad963299e92924713e01ecc18fec445119acdbfc23654a22e880b36024cd28b3584279200e0e81289d5b1e3cf009b96f02cabdfee3133
@@ -0,0 +1,10 @@
1
+ module Shipstation
2
+ module APIOperations
3
+ module Shipment
4
+
5
+ def mark_as_shipped(params = {})
6
+ Shipstation.request(:post, 'orders/markasshipped', params)
7
+ end
8
+ end
9
+ end
10
+ end
@@ -6,6 +6,7 @@ module Shipstation
6
6
  extend Shipstation::APIOperations::Create
7
7
  extend Shipstation::APIOperations::Retrieve
8
8
  extend Shipstation::APIOperations::Delete
9
+ extend Shipstation::APIOperations::Shipment
9
10
 
10
11
  class << self
11
12
  def create_label(params = {})
@@ -1,3 +1,3 @@
1
1
  module Shipstation
2
- VERSION = "0.22"
2
+ VERSION = "0.23"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipstation
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.22'
4
+ version: '0.23'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Dallimore
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-31 00:00:00.000000000 Z
11
+ date: 2021-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -38,6 +38,7 @@ files:
38
38
  - lib/shipstation/api_operations/delete.rb
39
39
  - lib/shipstation/api_operations/list.rb
40
40
  - lib/shipstation/api_operations/retrieve.rb
41
+ - lib/shipstation/api_operations/shipment.rb
41
42
  - lib/shipstation/api_operations/update.rb
42
43
  - lib/shipstation/api_resource.rb
43
44
  - lib/shipstation/carrier.rb