processout 2.14.0 → 2.16.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.
- checksums.yaml +5 -5
- data/lib/processout/balance.rb +81 -0
- data/lib/processout/balances.rb +111 -0
- data/lib/processout/card.rb +43 -0
- data/lib/processout/customer.rb +28 -2
- data/lib/processout/event.rb +0 -31
- data/lib/processout/invoice.rb +123 -1
- data/lib/processout/invoice_device.rb +11 -0
- data/lib/processout/invoice_external_fraud_tools.rb +70 -0
- data/lib/processout/invoice_tax.rb +81 -0
- data/lib/processout/networking/request.rb +1 -1
- data/lib/processout/three_ds.rb +158 -0
- data/lib/processout/token.rb +70 -0
- data/lib/processout/transaction.rb +56 -0
- data/lib/processout/version.rb +1 -1
- data/lib/processout.rb +30 -0
- metadata +8 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: processout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Manuel HUEZ
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -75,6 +75,8 @@ files:
|
|
75
75
|
- lib/processout/addon.rb
|
76
76
|
- lib/processout/api_request.rb
|
77
77
|
- lib/processout/api_version.rb
|
78
|
+
- lib/processout/balance.rb
|
79
|
+
- lib/processout/balances.rb
|
78
80
|
- lib/processout/card.rb
|
79
81
|
- lib/processout/card_information.rb
|
80
82
|
- lib/processout/coupon.rb
|
@@ -94,8 +96,10 @@ files:
|
|
94
96
|
- lib/processout/invoice.rb
|
95
97
|
- lib/processout/invoice_detail.rb
|
96
98
|
- lib/processout/invoice_device.rb
|
99
|
+
- lib/processout/invoice_external_fraud_tools.rb
|
97
100
|
- lib/processout/invoice_risk.rb
|
98
101
|
- lib/processout/invoice_shipping.rb
|
102
|
+
- lib/processout/invoice_tax.rb
|
99
103
|
- lib/processout/networking/request.rb
|
100
104
|
- lib/processout/networking/response.rb
|
101
105
|
- lib/processout/payment_data_network_authentication.rb
|
@@ -108,6 +112,7 @@ files:
|
|
108
112
|
- lib/processout/project.rb
|
109
113
|
- lib/processout/refund.rb
|
110
114
|
- lib/processout/subscription.rb
|
115
|
+
- lib/processout/three_ds.rb
|
111
116
|
- lib/processout/token.rb
|
112
117
|
- lib/processout/transaction.rb
|
113
118
|
- lib/processout/transaction_operation.rb
|
@@ -134,8 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
134
139
|
- !ruby/object:Gem::Version
|
135
140
|
version: '0'
|
136
141
|
requirements: []
|
137
|
-
|
138
|
-
rubygems_version: 2.5.2.3
|
142
|
+
rubygems_version: 3.0.3
|
139
143
|
signing_key:
|
140
144
|
specification_version: 4
|
141
145
|
summary: Ruby bindings for the ProcessOut API
|