connect-sdk-ruby 2.14.0 → 2.15.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eff2384d596a8483e46b3e71689131ce8fccf97feda1d1df9e1a0cb618d58d4c
|
4
|
+
data.tar.gz: f256554265099855c5247b73eadc47eabc4af887a97e9d4d7bd1d1e371a3d216
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3f37d6b5a373ff93acd502fbb923138edb2db68dbcf252397fe085cc1ec867b9e10bce8a021787c1fc1daf8241b82cf7a5ba98179763b94f4a6789c26fa24ce
|
7
|
+
data.tar.gz: 8318f668ce6dd6ed7da02d43895ab1b3a80b58f2640cadfb76644feeeba51630465e36ada81b8bb78007812035735bfba98f7d72d9f0ef22771701626e75fd9a
|
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.15.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}
|
@@ -8,6 +8,7 @@ module Ingenico::Connect::SDK
|
|
8
8
|
module Domain
|
9
9
|
module Payment
|
10
10
|
|
11
|
+
# @attr [String] auth_method
|
11
12
|
# @attr [String] cardholder_name
|
12
13
|
# @attr [String] cryptogram
|
13
14
|
# @attr [String] dpan
|
@@ -17,6 +18,8 @@ module Ingenico::Connect::SDK
|
|
17
18
|
# @attr [String] payment_method
|
18
19
|
class DecryptedPaymentData < Ingenico::Connect::SDK::DataObject
|
19
20
|
|
21
|
+
attr_accessor :auth_method
|
22
|
+
|
20
23
|
attr_accessor :cardholder_name
|
21
24
|
|
22
25
|
attr_accessor :cryptogram
|
@@ -34,6 +37,7 @@ module Ingenico::Connect::SDK
|
|
34
37
|
# @return (Hash)
|
35
38
|
def to_h
|
36
39
|
hash = super
|
40
|
+
hash['authMethod'] = @auth_method unless @auth_method.nil?
|
37
41
|
hash['cardholderName'] = @cardholder_name unless @cardholder_name.nil?
|
38
42
|
hash['cryptogram'] = @cryptogram unless @cryptogram.nil?
|
39
43
|
hash['dpan'] = @dpan unless @dpan.nil?
|
@@ -46,6 +50,9 @@ module Ingenico::Connect::SDK
|
|
46
50
|
|
47
51
|
def from_hash(hash)
|
48
52
|
super
|
53
|
+
if hash.has_key? 'authMethod'
|
54
|
+
@auth_method = hash['authMethod']
|
55
|
+
end
|
49
56
|
if hash.has_key? 'cardholderName'
|
50
57
|
@cardholder_name = hash['cardholderName']
|
51
58
|
end
|
@@ -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.15.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.15.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-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httpclient
|