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 +4 -4
- data/Gemfile.lock +12 -10
- data/lib/desertcart/marketplace/order_item/deserializer.rb +2 -0
- data/lib/desertcart/marketplace/order_item/operations/find.rb +2 -0
- data/lib/desertcart/marketplace/order_item/operations/update.rb +2 -0
- data/lib/desertcart/marketplace/order_item/serializer.rb +2 -0
- data/lib/desertcart/resources/marketplace/order_item.rb +2 -0
- data/lib/desertcart/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05a1303000accacc070280608f9aea867a8333903ebcb771f51ead55febb4721
|
4
|
+
data.tar.gz: 7f4934ec8188fba0fca7d0cb9c53e37402d2a571cb5d63728bec11586049958b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
23
|
+
dry-configurable (0.13.0)
|
24
24
|
concurrent-ruby (~> 1.0)
|
25
|
-
dry-core (~> 0.
|
26
|
-
dry-container (0.
|
25
|
+
dry-core (~> 0.6)
|
26
|
+
dry-container (0.9.0)
|
27
27
|
concurrent-ruby (~> 1.0)
|
28
|
-
dry-configurable (~> 0.
|
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.
|
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.
|
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
|
-
|
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.
|
103
|
+
nokogiri (1.12.5-x86_64-linux)
|
103
104
|
racc (~> 1.4)
|
104
|
-
openssl (2.2.
|
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)
|
@@ -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, 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
|
data/lib/desertcart/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2021-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ledger_sync
|