connect-sdk-ruby 5.2.0 → 5.3.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: 5908d14bbb8a8149b307c73da4ed977b57a590d70d9ffe5bb7c77bf58cee8175
|
|
4
|
+
data.tar.gz: 42da5e8ddc45ae1d5ab204332a66bc6031421350db6f28b71d5667002efaf3f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d61f0e60e541d9ea94d1868894a1484642fb162fe6e94dd155bb25be59ac64b511de57010ac8e30062e9e9fe58717d914cb41c9ea27b28756f34b7b6af868ba
|
|
7
|
+
data.tar.gz: 9d43e94ab26d8d21b25ed6bb735ad0612bc5df7575a13876fe89d748852e9c26f0731aa6b43b4c8f3cc654c34feffca6ef0d703bd24377a8fa53804d8073cc6b
|
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 = '5.
|
|
3
|
+
spec.version = '5.3.0'
|
|
4
4
|
spec.authors = ['Worldline Global Collect']
|
|
5
5
|
spec.email = ['github.connect@worldline.com']
|
|
6
6
|
spec.summary = %q{SDK to communicate with the Worldline Global Collect platform using the Worldline Connect Server API}
|
|
@@ -14,7 +14,7 @@ module Worldline
|
|
|
14
14
|
class MetadataProvider
|
|
15
15
|
private
|
|
16
16
|
|
|
17
|
-
SDK_VERSION = '5.
|
|
17
|
+
SDK_VERSION = '5.3.0'.freeze
|
|
18
18
|
SERVER_META_INFO_HEADER = 'X-GCS-ServerMetaInfo'.freeze
|
|
19
19
|
PROHIBITED_HEADERS = [SERVER_META_INFO_HEADER, 'X-GCS-Idempotence-Key','Date', 'Content-Type', 'Authorization'].sort!.freeze
|
|
20
20
|
CHARSET = 'utf-8'.freeze
|
data/lib/worldline/connect/sdk/v1/domain/abstract_redirect_payment_product838_specific_input.rb
CHANGED
|
@@ -9,29 +9,29 @@ module Worldline
|
|
|
9
9
|
module SDK
|
|
10
10
|
module V1
|
|
11
11
|
module Domain
|
|
12
|
-
# @attr [String]
|
|
13
|
-
# @attr [String]
|
|
12
|
+
# @attr [String] network_data
|
|
13
|
+
# @attr [String] network_session_token
|
|
14
14
|
class AbstractRedirectPaymentProduct838SpecificInput < Worldline::Connect::SDK::Domain::DataObject
|
|
15
15
|
|
|
16
|
-
attr_accessor :
|
|
16
|
+
attr_accessor :network_data
|
|
17
17
|
|
|
18
|
-
attr_accessor :
|
|
18
|
+
attr_accessor :network_session_token
|
|
19
19
|
|
|
20
20
|
# @return (Hash)
|
|
21
21
|
def to_h
|
|
22
22
|
hash = super
|
|
23
|
-
hash['
|
|
24
|
-
hash['
|
|
23
|
+
hash['networkData'] = @network_data unless @network_data.nil?
|
|
24
|
+
hash['networkSessionToken'] = @network_session_token unless @network_session_token.nil?
|
|
25
25
|
hash
|
|
26
26
|
end
|
|
27
27
|
|
|
28
28
|
def from_hash(hash)
|
|
29
29
|
super
|
|
30
|
-
if hash.has_key? '
|
|
31
|
-
@
|
|
30
|
+
if hash.has_key? 'networkData'
|
|
31
|
+
@network_data = hash['networkData']
|
|
32
32
|
end
|
|
33
|
-
if hash.has_key? '
|
|
34
|
-
@
|
|
33
|
+
if hash.has_key? 'networkSessionToken'
|
|
34
|
+
@network_session_token = hash['networkSessionToken']
|
|
35
35
|
end
|
|
36
36
|
end
|
|
37
37
|
end
|
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: 5.
|
|
4
|
+
version: 5.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Worldline Global Collect
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httpclient
|