checkout_sdk 1.1.5 → 1.1.6
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 +4 -4
- data/lib/checkout_sdk/checkout_api.rb +7 -1
- data/lib/checkout_sdk/payments/payment_request.rb +10 -1
- data/lib/checkout_sdk/payments/payment_retry_request.rb +17 -0
- data/lib/checkout_sdk/payments/payment_segment.rb +17 -0
- data/lib/checkout_sdk/payments/payments.rb +3 -0
- data/lib/checkout_sdk/payments/sessions/payment_sessions_client.rb +20 -0
- data/lib/checkout_sdk/payments/source/apm/giropay_source.rb +4 -0
- data/lib/checkout_sdk/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd0bda6ae88b783a419a908bda378b4f88da4fd067e48633e6c0e8ff7e9ffcd5
|
4
|
+
data.tar.gz: e9b88917a378973ec8c7154a6929647d419e4e0e0e20cd343d3e03897b81fc18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2c55bb4d0ea1799a2cb5bef18a1a6a1439f7f36d16d78726b19d0a65542360059a977ef773843b4c6719d433cef1e2a597085dac3bd328f738c838db0bd182e
|
7
|
+
data.tar.gz: c6c7716ff91038b94fccebbbb5e0f853ce7dcd8033b9e38c3bfa70e08f0bd9153274fe9dfc91404901306302b905cb4e45efb1f563b448138ad28f4915dd75e2
|
@@ -39,6 +39,10 @@ module CheckoutSdk
|
|
39
39
|
# @return [CheckoutSdk::Financial::FinancialClient]
|
40
40
|
# @!attribute issuing
|
41
41
|
# @return [CheckoutSdk::Issuing::IssuingClient]
|
42
|
+
# @!attribute contexts
|
43
|
+
# @return [CheckoutSdk::Payments::PaymentContextsClient]
|
44
|
+
# @!attribute payment_sessions
|
45
|
+
# @return [CheckoutSdk::Payments::PaymentSessionsClient]
|
42
46
|
class CheckoutApi
|
43
47
|
attr_reader :customers,
|
44
48
|
:disputes,
|
@@ -59,7 +63,8 @@ module CheckoutSdk
|
|
59
63
|
:metadata,
|
60
64
|
:financial,
|
61
65
|
:issuing,
|
62
|
-
:contexts
|
66
|
+
:contexts,
|
67
|
+
:payment_sessions
|
63
68
|
|
64
69
|
# @param [CheckoutConfiguration] configuration
|
65
70
|
def initialize(configuration)
|
@@ -84,6 +89,7 @@ module CheckoutSdk
|
|
84
89
|
@financial = CheckoutSdk::Financial::FinancialClient.new api_client, configuration
|
85
90
|
@issuing = CheckoutSdk::Issuing::IssuingClient.new api_client, configuration
|
86
91
|
@contexts = CheckoutSdk::Payments::PaymentContextsClient.new api_client, configuration
|
92
|
+
@payment_sessions = CheckoutSdk::Payments::PaymentSessionsClient.new api_client, configuration
|
87
93
|
end
|
88
94
|
|
89
95
|
private
|
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
module CheckoutSdk
|
4
4
|
module Payments
|
5
|
+
# @!attribute payment_context_id
|
6
|
+
# @return [String]
|
5
7
|
# @!attribute source
|
6
8
|
# @return [PaymentSource]
|
7
9
|
# @!attribute amount
|
@@ -28,6 +30,8 @@ module CheckoutSdk
|
|
28
30
|
# @return [BillingDescriptor]
|
29
31
|
# @!attribute shipping
|
30
32
|
# @return [ShippingDetails]
|
33
|
+
# @!attribute segment
|
34
|
+
# @return [PaymentSegment]
|
31
35
|
# @!attribute three_ds
|
32
36
|
# @return [ThreeDSRequest]
|
33
37
|
# @!attribute processing_channel_id
|
@@ -55,10 +59,13 @@ module CheckoutSdk
|
|
55
59
|
# @return [ProcessingSettings]
|
56
60
|
# @!attribute items
|
57
61
|
# @return [Array(Product)]
|
62
|
+
# @!attribute retry
|
63
|
+
# @return [PaymentRetryRequest]
|
58
64
|
# @!attribute metadata
|
59
65
|
# @return [Hash{String => Object}]
|
60
66
|
class PaymentRequest
|
61
|
-
attr_accessor :
|
67
|
+
attr_accessor :payment_context_id,
|
68
|
+
:source,
|
62
69
|
:amount,
|
63
70
|
:currency,
|
64
71
|
:payment_type,
|
@@ -71,6 +78,7 @@ module CheckoutSdk
|
|
71
78
|
:customer,
|
72
79
|
:billing_descriptor,
|
73
80
|
:shipping,
|
81
|
+
:segment,
|
74
82
|
:three_ds,
|
75
83
|
:processing_channel_id,
|
76
84
|
:previous_payment_id,
|
@@ -84,6 +92,7 @@ module CheckoutSdk
|
|
84
92
|
:amount_allocations,
|
85
93
|
:processing,
|
86
94
|
:items,
|
95
|
+
:retry,
|
87
96
|
:metadata
|
88
97
|
end
|
89
98
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module CheckoutSdk
|
4
|
+
module Payments
|
5
|
+
# @!attribute enabled
|
6
|
+
# @return [TrueClass, FalseClass]
|
7
|
+
# @!attribute max_attempts
|
8
|
+
# @return [Integer]
|
9
|
+
# @!attribute end_after_days
|
10
|
+
# @return [Integer]
|
11
|
+
class PaymentRetryRequest
|
12
|
+
attr_accessor :enabled,
|
13
|
+
:max_attempts,
|
14
|
+
:end_after_day
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module CheckoutSdk
|
4
|
+
module Payments
|
5
|
+
# @!attribute brand
|
6
|
+
# @return [String]
|
7
|
+
# @!attribute business_category
|
8
|
+
# @return [String]
|
9
|
+
# @!attribute market
|
10
|
+
# @return [String]
|
11
|
+
class PaymentSegment
|
12
|
+
attr_accessor :brand,
|
13
|
+
:business_category,
|
14
|
+
:market
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module CheckoutSdk
|
4
|
+
module Payments
|
5
|
+
class PaymentSessionsClient < Client
|
6
|
+
PAYMENT_SESSIONS = 'payment-sessions'
|
7
|
+
|
8
|
+
# @param [ApiClient] api_client
|
9
|
+
# @param [CheckoutConfiguration] configuration
|
10
|
+
def initialize(api_client, configuration)
|
11
|
+
super api_client, configuration, CheckoutSdk::AuthorizationType::SECRET_KEY
|
12
|
+
end
|
13
|
+
|
14
|
+
# @param [Hash] payment_sessions
|
15
|
+
def create_payment_sessions(payment_sessions)
|
16
|
+
api_client.invoke_post(PAYMENT_SESSIONS, sdk_authorization, payment_sessions)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -2,7 +2,11 @@
|
|
2
2
|
|
3
3
|
module CheckoutSdk
|
4
4
|
module Payments
|
5
|
+
# @!attribute account_holder
|
6
|
+
# @return [CheckoutSdk::Common::AccountHolder]
|
5
7
|
class GiropaySource < PaymentSource
|
8
|
+
attr_accessor :account_holder
|
9
|
+
|
6
10
|
def initialize
|
7
11
|
super CheckoutSdk::Common::PaymentSourceType::GIROPAY
|
8
12
|
end
|
data/lib/checkout_sdk/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: checkout_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Checkout
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -295,6 +295,8 @@ files:
|
|
295
295
|
- lib/checkout_sdk/payments/payment_instruction.rb
|
296
296
|
- lib/checkout_sdk/payments/payment_recipient.rb
|
297
297
|
- lib/checkout_sdk/payments/payment_request.rb
|
298
|
+
- lib/checkout_sdk/payments/payment_retry_request.rb
|
299
|
+
- lib/checkout_sdk/payments/payment_segment.rb
|
298
300
|
- lib/checkout_sdk/payments/payment_type.rb
|
299
301
|
- lib/checkout_sdk/payments/payments.rb
|
300
302
|
- lib/checkout_sdk/payments/payments_client.rb
|
@@ -353,6 +355,7 @@ files:
|
|
353
355
|
- lib/checkout_sdk/payments/sender/sender_type.rb
|
354
356
|
- lib/checkout_sdk/payments/sender/source_of_funds.rb
|
355
357
|
- lib/checkout_sdk/payments/sender/ticket.rb
|
358
|
+
- lib/checkout_sdk/payments/sessions/payment_sessions_client.rb
|
356
359
|
- lib/checkout_sdk/payments/shipping_details.rb
|
357
360
|
- lib/checkout_sdk/payments/shipping_preference.rb
|
358
361
|
- lib/checkout_sdk/payments/source/apm/after_pay_source.rb
|