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: 7cf949973490ebd6f3b56df4366fb663cd99447717f69fa6617faea68dd2e520
4
- data.tar.gz: a0489cf7332564be73a488a87a1c5b091837bc6285ebc6d16ffcf5196f4805d9
3
+ metadata.gz: 5908d14bbb8a8149b307c73da4ed977b57a590d70d9ffe5bb7c77bf58cee8175
4
+ data.tar.gz: 42da5e8ddc45ae1d5ab204332a66bc6031421350db6f28b71d5667002efaf3f9
5
5
  SHA512:
6
- metadata.gz: 8c95ce4b768ab29d0cee61b7b8ea06ca0ba3313c80318ef9961219834e485d7d3b479e364d50414cdf4d79d11d2a4e7c976685092eb1383c4ff07cefd521a3a0
7
- data.tar.gz: 1f4ece57b32c61ea51d517c0fa69bc203be2015eda0159df7c0de2972cd3e5c7b923a14d7a53c6c5995802ec2259db9b8ff57107ee7c6257cead004112b36a70
6
+ metadata.gz: 5d61f0e60e541d9ea94d1868894a1484642fb162fe6e94dd155bb25be59ac64b511de57010ac8e30062e9e9fe58717d914cb41c9ea27b28756f34b7b6af868ba
7
+ data.tar.gz: 9d43e94ab26d8d21b25ed6bb735ad0612bc5df7575a13876fe89d748852e9c26f0731aa6b43b4c8f3cc654c34feffca6ef0d703bd24377a8fa53804d8073cc6b
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'connect-sdk-ruby'
3
- spec.version = '5.2.0'
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.2.0'.freeze
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
@@ -9,29 +9,29 @@ module Worldline
9
9
  module SDK
10
10
  module V1
11
11
  module Domain
12
- # @attr [String] interoperability_data
13
- # @attr [String] interoperability_token
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 :interoperability_data
16
+ attr_accessor :network_data
17
17
 
18
- attr_accessor :interoperability_token
18
+ attr_accessor :network_session_token
19
19
 
20
20
  # @return (Hash)
21
21
  def to_h
22
22
  hash = super
23
- hash['interoperabilityData'] = @interoperability_data unless @interoperability_data.nil?
24
- hash['interoperabilityToken'] = @interoperability_token unless @interoperability_token.nil?
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? 'interoperabilityData'
31
- @interoperability_data = hash['interoperabilityData']
30
+ if hash.has_key? 'networkData'
31
+ @network_data = hash['networkData']
32
32
  end
33
- if hash.has_key? 'interoperabilityToken'
34
- @interoperability_token = hash['interoperabilityToken']
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.2.0
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-01 00:00:00.000000000 Z
11
+ date: 2026-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient