connect-sdk-ruby 2.10.0 → 2.11.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45e301d026b1906a8bb9b5a9cf14440815455f73fb3399fd09aa320388f14a60
|
4
|
+
data.tar.gz: a6a6ded0b1a7c20950de11162c37139aca5ea79fe7ea42bf2718fe5ce4c72285
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5add257b03f0a0829d1df6ccec58605005b786996a7d0cba4527d9118b197b8d2989fecdaf26c85e139ec45f7af2b124f48f638b937f509b81fb719baa7e7521
|
7
|
+
data.tar.gz: 389c4a23edbce02f8f1d76d373bd127fa6f177a33dc8e7e6f5009bcf1afff65b846985e6bbb500155fce727193d503fa954fef50fb58d33c4360dc562aa991b9
|
data/connect-sdk-ruby.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = 'connect-sdk-ruby'
|
3
|
-
spec.version = '2.
|
3
|
+
spec.version = '2.11.0'
|
4
4
|
spec.authors = ['Ingenico ePayments']
|
5
5
|
spec.email = ['github@epay.ingenico.com']
|
6
6
|
spec.summary = %q{SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API}
|
@@ -28,6 +28,7 @@ module Ingenico::Connect::SDK
|
|
28
28
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::MobilePaymentMethodSpecificOutput] mobile_payment_method_specific_output
|
29
29
|
# @attr [String] payment_method
|
30
30
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::RedirectPaymentMethodSpecificOutput] redirect_payment_method_specific_output
|
31
|
+
# @attr [String] reversal_reason
|
31
32
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::SepaDirectDebitPaymentMethodSpecificOutput] sepa_direct_debit_payment_method_specific_output
|
32
33
|
class CaptureOutput < Ingenico::Connect::SDK::Domain::Payment::OrderOutput
|
33
34
|
|
@@ -53,6 +54,8 @@ module Ingenico::Connect::SDK
|
|
53
54
|
|
54
55
|
attr_accessor :redirect_payment_method_specific_output
|
55
56
|
|
57
|
+
attr_accessor :reversal_reason
|
58
|
+
|
56
59
|
attr_accessor :sepa_direct_debit_payment_method_specific_output
|
57
60
|
|
58
61
|
# @return (Hash)
|
@@ -69,6 +72,7 @@ module Ingenico::Connect::SDK
|
|
69
72
|
hash['mobilePaymentMethodSpecificOutput'] = @mobile_payment_method_specific_output.to_h unless @mobile_payment_method_specific_output.nil?
|
70
73
|
hash['paymentMethod'] = @payment_method unless @payment_method.nil?
|
71
74
|
hash['redirectPaymentMethodSpecificOutput'] = @redirect_payment_method_specific_output.to_h unless @redirect_payment_method_specific_output.nil?
|
75
|
+
hash['reversalReason'] = @reversal_reason unless @reversal_reason.nil?
|
72
76
|
hash['sepaDirectDebitPaymentMethodSpecificOutput'] = @sepa_direct_debit_payment_method_specific_output.to_h unless @sepa_direct_debit_payment_method_specific_output.nil?
|
73
77
|
hash
|
74
78
|
end
|
@@ -116,6 +120,9 @@ module Ingenico::Connect::SDK
|
|
116
120
|
raise TypeError, "value '%s' is not a Hash" % [hash['redirectPaymentMethodSpecificOutput']] unless hash['redirectPaymentMethodSpecificOutput'].is_a? Hash
|
117
121
|
@redirect_payment_method_specific_output = Ingenico::Connect::SDK::Domain::Payment::RedirectPaymentMethodSpecificOutput.new_from_hash(hash['redirectPaymentMethodSpecificOutput'])
|
118
122
|
end
|
123
|
+
if hash.has_key? 'reversalReason'
|
124
|
+
@reversal_reason = hash['reversalReason']
|
125
|
+
end
|
119
126
|
if hash.has_key? 'sepaDirectDebitPaymentMethodSpecificOutput'
|
120
127
|
raise TypeError, "value '%s' is not a Hash" % [hash['sepaDirectDebitPaymentMethodSpecificOutput']] unless hash['sepaDirectDebitPaymentMethodSpecificOutput'].is_a? Hash
|
121
128
|
@sepa_direct_debit_payment_method_specific_output = Ingenico::Connect::SDK::Domain::Payment::SepaDirectDebitPaymentMethodSpecificOutput.new_from_hash(hash['sepaDirectDebitPaymentMethodSpecificOutput'])
|
@@ -28,6 +28,7 @@ module Ingenico::Connect::SDK
|
|
28
28
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::MobilePaymentMethodSpecificOutput] mobile_payment_method_specific_output
|
29
29
|
# @attr [String] payment_method
|
30
30
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::RedirectPaymentMethodSpecificOutput] redirect_payment_method_specific_output
|
31
|
+
# @attr [String] reversal_reason
|
31
32
|
# @attr [Ingenico::Connect::SDK::Domain::Payment::SepaDirectDebitPaymentMethodSpecificOutput] sepa_direct_debit_payment_method_specific_output
|
32
33
|
class PaymentOutput < Ingenico::Connect::SDK::Domain::Payment::OrderOutput
|
33
34
|
|
@@ -53,6 +54,8 @@ module Ingenico::Connect::SDK
|
|
53
54
|
|
54
55
|
attr_accessor :redirect_payment_method_specific_output
|
55
56
|
|
57
|
+
attr_accessor :reversal_reason
|
58
|
+
|
56
59
|
attr_accessor :sepa_direct_debit_payment_method_specific_output
|
57
60
|
|
58
61
|
# @return (Hash)
|
@@ -69,6 +72,7 @@ module Ingenico::Connect::SDK
|
|
69
72
|
hash['mobilePaymentMethodSpecificOutput'] = @mobile_payment_method_specific_output.to_h unless @mobile_payment_method_specific_output.nil?
|
70
73
|
hash['paymentMethod'] = @payment_method unless @payment_method.nil?
|
71
74
|
hash['redirectPaymentMethodSpecificOutput'] = @redirect_payment_method_specific_output.to_h unless @redirect_payment_method_specific_output.nil?
|
75
|
+
hash['reversalReason'] = @reversal_reason unless @reversal_reason.nil?
|
72
76
|
hash['sepaDirectDebitPaymentMethodSpecificOutput'] = @sepa_direct_debit_payment_method_specific_output.to_h unless @sepa_direct_debit_payment_method_specific_output.nil?
|
73
77
|
hash
|
74
78
|
end
|
@@ -116,6 +120,9 @@ module Ingenico::Connect::SDK
|
|
116
120
|
raise TypeError, "value '%s' is not a Hash" % [hash['redirectPaymentMethodSpecificOutput']] unless hash['redirectPaymentMethodSpecificOutput'].is_a? Hash
|
117
121
|
@redirect_payment_method_specific_output = Ingenico::Connect::SDK::Domain::Payment::RedirectPaymentMethodSpecificOutput.new_from_hash(hash['redirectPaymentMethodSpecificOutput'])
|
118
122
|
end
|
123
|
+
if hash.has_key? 'reversalReason'
|
124
|
+
@reversal_reason = hash['reversalReason']
|
125
|
+
end
|
119
126
|
if hash.has_key? 'sepaDirectDebitPaymentMethodSpecificOutput'
|
120
127
|
raise TypeError, "value '%s' is not a Hash" % [hash['sepaDirectDebitPaymentMethodSpecificOutput']] unless hash['sepaDirectDebitPaymentMethodSpecificOutput'].is_a? Hash
|
121
128
|
@sepa_direct_debit_payment_method_specific_output = Ingenico::Connect::SDK::Domain::Payment::SepaDirectDebitPaymentMethodSpecificOutput.new_from_hash(hash['sepaDirectDebitPaymentMethodSpecificOutput'])
|
@@ -7,7 +7,7 @@ module Ingenico::Connect::SDK
|
|
7
7
|
#
|
8
8
|
# @attr_reader [Array<Ingenico::Connect::SDK::RequestHeader>] meta_data_headers List of headers that should be used in all requests.
|
9
9
|
class MetaDataProvider
|
10
|
-
@@SDK_VERSION = '2.
|
10
|
+
@@SDK_VERSION = '2.11.0'
|
11
11
|
@@SERVER_META_INFO_HEADER = 'X-GCS-ServerMetaInfo'
|
12
12
|
@@PROHIBITED_HEADERS = [@@SERVER_META_INFO_HEADER, 'X-GCS-Idempotence-Key',
|
13
13
|
'Date', 'Content-Type', 'Authorization'].sort!.freeze
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: connect-sdk-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ingenico ePayments
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httpclient
|