desertcart 1.1.0 → 1.1.1

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: f9055c4070ac08ab9cb9acad99acaf9c4df0fbfae57a2ed4aa04fab6f92c8060
4
- data.tar.gz: c315f3d9d41d41e144dd6b544d0976336a028fcb3f4cc37d6b368d414549d937
3
+ metadata.gz: 05a1303000accacc070280608f9aea867a8333903ebcb771f51ead55febb4721
4
+ data.tar.gz: 7f4934ec8188fba0fca7d0cb9c53e37402d2a571cb5d63728bec11586049958b
5
5
  SHA512:
6
- metadata.gz: 7514dafd549ea05bafe81d60dfd0934ddc832aa903e15277180d9eea025bf092011249212039a596fa69a6a73ed827ff2552cfbed339896341f4f61d1030425e
7
- data.tar.gz: 56b190489ea24d756d6a3eb3a41685a3b55c42105307a36b88230d234e748ba7d20f71927f8151ee82820f174ef31d1e4e9b200c3f853c637170334f03246a15
6
+ metadata.gz: 721fdfc0c9e51edca11938dfcaa6a54355809409b6e55ba7f1a7ca8cea929c8e2268c23ca5939e9a5b33bdb12a8d9f9d36640af516a1849a8dfe79ccbd3e6841
7
+ data.tar.gz: ec33c316265178c1b5b7c91bfde4d6aa74666ff7c4df2810ad9b9dacd436851fabd837bc0e2ecbace495ca54c4cf7f52f021903f2febad194a08dc592795a908
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- desertcart (1.1.0)
4
+ desertcart (1.1.1)
5
5
  ledger_sync (~> 2.2.0)
6
6
 
7
7
  GEM
@@ -20,12 +20,12 @@ GEM
20
20
  concurrent-ruby (1.1.9)
21
21
  diff-lcs (1.4.4)
22
22
  dotenv (2.7.6)
23
- dry-configurable (0.12.1)
23
+ dry-configurable (0.13.0)
24
24
  concurrent-ruby (~> 1.0)
25
- dry-core (~> 0.5, >= 0.5.0)
26
- dry-container (0.8.0)
25
+ dry-core (~> 0.6)
26
+ dry-container (0.9.0)
27
27
  concurrent-ruby (~> 1.0)
28
- dry-configurable (~> 0.1, >= 0.1.3)
28
+ dry-configurable (~> 0.13, >= 0.13.0)
29
29
  dry-core (0.7.1)
30
30
  concurrent-ruby (~> 1.0)
31
31
  dry-equalizer (0.3.0)
@@ -55,7 +55,7 @@ GEM
55
55
  dry-equalizer (~> 0.2)
56
56
  dry-initializer (~> 3.0)
57
57
  dry-schema (~> 1.5, >= 1.5.2)
58
- faraday (1.7.1)
58
+ faraday (1.8.0)
59
59
  faraday-em_http (~> 1.0)
60
60
  faraday-em_synchrony (~> 1.0)
61
61
  faraday-excon (~> 1.1)
@@ -76,13 +76,14 @@ GEM
76
76
  faraday-net_http_persistent (1.2.0)
77
77
  faraday-patron (1.0.0)
78
78
  faraday-rack (1.0.0)
79
- faraday_middleware (1.1.0)
79
+ faraday_middleware (1.2.0)
80
80
  faraday (~> 1.0)
81
81
  fingerprintable (1.2.1)
82
82
  colorize
83
83
  i18n (1.8.10)
84
84
  concurrent-ruby (~> 1.0)
85
- ledger_sync (2.2.0)
85
+ ipaddr (1.2.2)
86
+ ledger_sync (2.2.1)
86
87
  activemodel
87
88
  colorize
88
89
  dry-schema (~> 1.5.4)
@@ -99,9 +100,10 @@ GEM
99
100
  simply_serializable (>= 1.5.1)
100
101
  minitest (5.14.4)
101
102
  multipart-post (2.1.1)
102
- nokogiri (1.12.4-x86_64-linux)
103
+ nokogiri (1.12.5-x86_64-linux)
103
104
  racc (~> 1.4)
104
- openssl (2.2.0)
105
+ openssl (2.2.1)
106
+ ipaddr
105
107
  parallel (1.21.0)
106
108
  parser (3.0.2.0)
107
109
  ast (~> 2.4.1)
@@ -15,6 +15,8 @@ module Desertcart
15
15
  attribute :merchant_id
16
16
  attribute :currency_code
17
17
  attribute :price
18
+ attribute :final_purchase_currency_code
19
+ attribute :final_purchase_price
18
20
  attribute :title
19
21
  attribute :state
20
22
  attribute :marketplace_shipping_state
@@ -16,6 +16,8 @@ module Desertcart
16
16
  optional(:merchant_id).maybe(:string)
17
17
  optional(:currency_code).maybe(:string)
18
18
  optional(:price).maybe(:integer)
19
+ optional(:final_purchase_currency_code).maybe(:string)
20
+ optional(:final_pruchase_price).maybe(:integer)
19
21
  optional(:title).maybe(:string)
20
22
  optional(:state).maybe(:string)
21
23
  optional(:marketplace_shipping_state).maybe(:string)
@@ -16,6 +16,8 @@ module Desertcart
16
16
  optional(:merchant_id).maybe(:string)
17
17
  optional(:currency_code).maybe(:string)
18
18
  optional(:price).maybe(:integer)
19
+ optional(:final_purchase_currency_code).maybe(:string)
20
+ optional(:final_pruchase_price).maybe(:integer)
19
21
  optional(:title).maybe(:string)
20
22
  optional(:state).maybe(:string)
21
23
  optional(:marketplace_shipping_state).maybe(:string)
@@ -13,6 +13,8 @@ module Desertcart
13
13
  attribute :merchant_id
14
14
  attribute :currency_code
15
15
  attribute :price
16
+ attribute :final_purchase_currency_code
17
+ attribute :final_purchase_price
16
18
  attribute :title
17
19
  attribute :state
18
20
  attribute :marketplace_shipping_state
@@ -13,6 +13,8 @@ module Desertcart
13
13
  attribute :merchant_id, type: LedgerSync::Type::String
14
14
  attribute :currency_code, type: LedgerSync::Type::String
15
15
  attribute :price, type: LedgerSync::Type::Integer
16
+ attribute :final_purchase_currency_code, type: LedgerSync::Type::String
17
+ attribute :final_purchase_price, type: LedgerSync::Type::Integer
16
18
  attribute :title, type: LedgerSync::Type::String
17
19
  attribute :state, type: LedgerSync::Type::String
18
20
  attribute :marketplace_shipping_state, type: LedgerSync::Type::String
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Desertcart
4
- VERSION = '1.1.0'
4
+ VERSION = '1.1.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: desertcart
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jozef Vaclavik
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-26 00:00:00.000000000 Z
11
+ date: 2021-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ledger_sync