checkout_sdk 1.2.2 → 1.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 +4 -4
- data/lib/checkout_sdk/accounts/account_holder.rb +10 -2
- data/lib/checkout_sdk/accounts/account_holder_corporate.rb +15 -0
- data/lib/checkout_sdk/accounts/account_holder_individual.rb +18 -0
- data/lib/checkout_sdk/accounts/accounts.rb +23 -0
- data/lib/checkout_sdk/accounts/additional_document.rb +11 -0
- data/lib/checkout_sdk/accounts/additional_info.rb +17 -0
- data/lib/checkout_sdk/accounts/articles_of_association_type.rb +10 -0
- data/lib/checkout_sdk/accounts/bank_verification.rb +14 -0
- data/lib/checkout_sdk/accounts/bank_verification_type.rb +9 -0
- data/lib/checkout_sdk/accounts/company.rb +7 -1
- data/lib/checkout_sdk/accounts/contact_details.rb +4 -1
- data/lib/checkout_sdk/accounts/date_of_incorporation.rb +14 -0
- data/lib/checkout_sdk/accounts/financial_verification.rb +14 -0
- data/lib/checkout_sdk/accounts/financial_verification_type.rb +9 -0
- data/lib/checkout_sdk/accounts/invitee.rb +11 -0
- data/lib/checkout_sdk/accounts/onboard_entity.rb +13 -4
- data/lib/checkout_sdk/accounts/onboard_sub_entity_documents.rb +31 -4
- data/lib/checkout_sdk/accounts/processing_details.rb +26 -0
- data/lib/checkout_sdk/accounts/proof_of_legality.rb +14 -0
- data/lib/checkout_sdk/accounts/proof_of_legality_type.rb +9 -0
- data/lib/checkout_sdk/accounts/proof_of_principal_address.rb +14 -0
- data/lib/checkout_sdk/accounts/proof_of_principal_address_type.rb +9 -0
- data/lib/checkout_sdk/accounts/shareholder_structure.rb +14 -0
- data/lib/checkout_sdk/accounts/shareholder_structure_type.rb +9 -0
- data/lib/checkout_sdk/api_client.rb +59 -50
- data/lib/checkout_sdk/client.rb +2 -3
- data/lib/checkout_sdk/common/account_change_indicator_type.rb +12 -0
- data/lib/checkout_sdk/common/account_holder.rb +12 -9
- data/lib/checkout_sdk/common/account_password_change_indicator_type.rb +13 -0
- data/lib/checkout_sdk/common/account_type_card_product_type.rb +11 -0
- data/lib/checkout_sdk/common/cardholder_account_age_indicator_type.rb +13 -0
- data/lib/checkout_sdk/common/common.rb +6 -0
- data/lib/checkout_sdk/common/customer_retry.rb +11 -0
- data/lib/checkout_sdk/common/destination.rb +38 -0
- data/lib/checkout_sdk/common/payment_source_type.rb +8 -0
- data/lib/checkout_sdk/common/product.rb +4 -1
- data/lib/checkout_sdk/error.rb +24 -8
- data/lib/checkout_sdk/payments/applepay.rb +14 -0
- data/lib/checkout_sdk/payments/{sessions/card.rb → card.rb} +4 -1
- data/lib/checkout_sdk/payments/exemption.rb +2 -0
- data/lib/checkout_sdk/payments/googlepay.rb +14 -0
- data/lib/checkout_sdk/payments/hosted/hosted_payment_instruction.rb +11 -0
- data/lib/checkout_sdk/payments/hosted/hosted_payments_session.rb +44 -23
- data/lib/checkout_sdk/payments/hosted/payment_purpose_type.rb +27 -0
- data/lib/checkout_sdk/payments/links/payment_link.rb +18 -0
- data/lib/checkout_sdk/payments/locale_type.rb +31 -0
- data/lib/checkout_sdk/payments/partial_authorization.rb +11 -0
- data/lib/checkout_sdk/payments/payment_method_configuration.rb +17 -0
- data/lib/checkout_sdk/payments/payment_request.rb +3 -0
- data/lib/checkout_sdk/payments/payments.rb +13 -3
- data/lib/checkout_sdk/payments/product.rb +3 -0
- data/lib/checkout_sdk/payments/refund_order.rb +53 -0
- data/lib/checkout_sdk/payments/refund_request.rb +11 -2
- data/lib/checkout_sdk/payments/sender/government_sender.rb +3 -0
- data/lib/checkout_sdk/payments/sender/individual_sender.rb +3 -0
- data/lib/checkout_sdk/payments/sessions/payment_sessions_request.rb +3 -0
- data/lib/checkout_sdk/payments/source/apm/ach_source.rb +27 -0
- data/lib/checkout_sdk/payments/source/apm/bizum_source.rb +15 -0
- data/lib/checkout_sdk/payments/source/apm/octopus_source.rb +11 -0
- data/lib/checkout_sdk/payments/source/apm/plaid_source.rb +17 -0
- data/lib/checkout_sdk/payments/source/apm/sequra_source.rb +15 -0
- data/lib/checkout_sdk/payments/source/card_source.rb +4 -1
- data/lib/checkout_sdk/payments/source/customer_source.rb +4 -1
- data/lib/checkout_sdk/payments/source/id_source.rb +4 -1
- data/lib/checkout_sdk/payments/source/network_token_source.rb +7 -1
- data/lib/checkout_sdk/payments/source/token_source.rb +4 -1
- data/lib/checkout_sdk/sessions/authentication_method.rb +3 -3
- data/lib/checkout_sdk/sessions/authentication_type.rb +3 -3
- data/lib/checkout_sdk/sessions/card_holder_account_info.rb +39 -3
- data/lib/checkout_sdk/sessions/channel/browser_session.rb +4 -1
- data/lib/checkout_sdk/sessions/channel/channel_data_type.rb +1 -0
- data/lib/checkout_sdk/sessions/channel/merchant_initiated_session.rb +15 -0
- data/lib/checkout_sdk/sessions/channel/request_type.rb +19 -0
- data/lib/checkout_sdk/sessions/channel/sdk_interface_type.rb +2 -2
- data/lib/checkout_sdk/sessions/initial_transaction.rb +23 -0
- data/lib/checkout_sdk/sessions/installment.rb +5 -0
- data/lib/checkout_sdk/sessions/merchant_risk_info.rb +20 -2
- data/lib/checkout_sdk/sessions/optimization.rb +19 -0
- data/lib/checkout_sdk/sessions/optimized_properties.rb +17 -0
- data/lib/checkout_sdk/sessions/pre_order_purchase_indicator_type.rb +10 -0
- data/lib/checkout_sdk/sessions/recurring.rb +5 -0
- data/lib/checkout_sdk/sessions/reorder_items_indicator_type.rb +10 -0
- data/lib/checkout_sdk/sessions/session_request.rb +25 -2
- data/lib/checkout_sdk/sessions/sessions.rb +9 -0
- data/lib/checkout_sdk/sessions/source/card_source.rb +2 -1
- data/lib/checkout_sdk/sessions/three_ds_method_completion_request.rb +3 -1
- data/lib/checkout_sdk/sessions/three_ds_req_auth_method.rb +16 -0
- data/lib/checkout_sdk/sessions/three_ds_requestor_authentication_info.rb +17 -0
- data/lib/checkout_sdk/sessions/transaction_type.rb +3 -3
- data/lib/checkout_sdk/version.rb +1 -1
- metadata +52 -7
- data/lib/checkout_sdk/payments/sessions/payment_method_configuration.rb +0 -11
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module CheckoutSdk
|
4
|
+
module Sessions
|
5
|
+
# @!attribute field
|
6
|
+
# @return [String]
|
7
|
+
# @!attribute original_value
|
8
|
+
# @return [String]
|
9
|
+
# @!attribute optimized_value
|
10
|
+
# @return [String]
|
11
|
+
class OptimizedProperties
|
12
|
+
attr_accessor :field,
|
13
|
+
:original_value,
|
14
|
+
:optimized_value
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -1,5 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'checkout_sdk/sessions/authentication_type'
|
4
|
+
require 'checkout_sdk/sessions/category'
|
5
|
+
require 'checkout_sdk/sessions/transaction_type'
|
6
|
+
require 'checkout_sdk/common/challenge_indicator'
|
7
|
+
|
3
8
|
module CheckoutSdk
|
4
9
|
module Sessions
|
5
10
|
# @!attribute source
|
@@ -35,13 +40,17 @@ module CheckoutSdk
|
|
35
40
|
# @!attribute shipping_address_matches_billing
|
36
41
|
# @return [TrueClass, FalseClass]
|
37
42
|
# @!attribute completion
|
38
|
-
# @return [
|
43
|
+
# @return [Completion]
|
39
44
|
# @!attribute channel_data
|
40
45
|
# @return [ChannelData]
|
41
46
|
# @!attribute recurring
|
42
47
|
# @return [Recurring]
|
43
48
|
# @!attribute installment
|
44
49
|
# @return [Installment]
|
50
|
+
# @!attribute optimization
|
51
|
+
# @return [Optimization]
|
52
|
+
# @!attribute initial_transaction
|
53
|
+
# @return [InitialTransaction]
|
45
54
|
class SessionRequest
|
46
55
|
attr_accessor :source,
|
47
56
|
:amount,
|
@@ -62,7 +71,21 @@ module CheckoutSdk
|
|
62
71
|
:completion,
|
63
72
|
:channel_data,
|
64
73
|
:recurring,
|
65
|
-
:installment
|
74
|
+
:installment,
|
75
|
+
:optimization,
|
76
|
+
:initial_transaction
|
77
|
+
|
78
|
+
def initialize(source: CardSource.new,
|
79
|
+
authentication_type: CheckoutSdk::Sessions::AuthenticationType::REGULAR,
|
80
|
+
authentication_category: CheckoutSdk::Sessions::Category::PAYMENT,
|
81
|
+
challenge_indicator: CheckoutSdk::Common::ChallengeIndicator::NO_PREFERENCE,
|
82
|
+
transaction_type: CheckoutSdk::Sessions::TransactionType::GOODS_SERVICE)
|
83
|
+
@source = source
|
84
|
+
@authentication_type = authentication_type
|
85
|
+
@authentication_category = authentication_category
|
86
|
+
@challenge_indicator = challenge_indicator
|
87
|
+
@transaction_type = transaction_type
|
88
|
+
end
|
66
89
|
end
|
67
90
|
end
|
68
91
|
end
|
@@ -16,6 +16,13 @@ require 'checkout_sdk/sessions/sessions_billing_descriptor'
|
|
16
16
|
require 'checkout_sdk/sessions/shipping_indicator'
|
17
17
|
require 'checkout_sdk/sessions/transaction_type'
|
18
18
|
require 'checkout_sdk/sessions/three_ds_method_completion_request'
|
19
|
+
require 'checkout_sdk/sessions/three_ds_req_auth_method'
|
20
|
+
require 'checkout_sdk/sessions/three_ds_requestor_authentication_info'
|
21
|
+
require 'checkout_sdk/sessions/reorder_items_indicator_type'
|
22
|
+
require 'checkout_sdk/sessions/pre_order_purchase_indicator_type'
|
23
|
+
require 'checkout_sdk/sessions/optimized_properties'
|
24
|
+
require 'checkout_sdk/sessions/optimization'
|
25
|
+
require 'checkout_sdk/sessions/initial_transaction'
|
19
26
|
|
20
27
|
# channel
|
21
28
|
require 'checkout_sdk/sessions/channel/channel_data'
|
@@ -26,6 +33,8 @@ require 'checkout_sdk/sessions/channel/three_ds_method_completion'
|
|
26
33
|
require 'checkout_sdk/sessions/channel/uie_elements'
|
27
34
|
require 'checkout_sdk/sessions/channel/app_session'
|
28
35
|
require 'checkout_sdk/sessions/channel/browser_session'
|
36
|
+
require 'checkout_sdk/sessions/channel/request_type'
|
37
|
+
require 'checkout_sdk/sessions/channel/merchant_initiated_session'
|
29
38
|
|
30
39
|
# completion
|
31
40
|
require 'checkout_sdk/sessions/completion/completion_info'
|
@@ -1,9 +1,11 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'checkout_sdk/sessions/channel/three_ds_method_completion'
|
4
|
+
|
3
5
|
module CheckoutSdk
|
4
6
|
module Sessions
|
5
7
|
# @!attribute three_ds_method_completion
|
6
|
-
# @return [String] {ThreeDsMethodCompletion}
|
8
|
+
# @return [String] {CheckoutSdk::Sessions::Channel::ThreeDsMethodCompletion}
|
7
9
|
class ThreeDsMethodCompletionRequest
|
8
10
|
attr_accessor :three_ds_method_completion
|
9
11
|
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module CheckoutSdk
|
4
|
+
module Sessions
|
5
|
+
module ThreeDsReqAuthMethod
|
6
|
+
NO_THREEDS_REQUESTOR_AUTHENTICATION_OCCURRED = 'no_threeds_requestor_authentication_occurred'
|
7
|
+
THREE3DS_REQUESTOR_OWN_CREDENTIALS = 'three3ds_requestor_own_credentials'
|
8
|
+
FEDERATED_ID = 'federated_id'
|
9
|
+
ISSUER_CREDENTIALS = 'issuer_credentials'
|
10
|
+
THIRD_PARTY_AUTHENTICATION = 'third_party_authentication'
|
11
|
+
FIDO_AUTHENTICATOR = 'fido_authenticator'
|
12
|
+
FIDO_AUTHENTICATOR_FIDO_ASSURANCE_DATA_SIGNED = 'fido_authenticator_fido_assurance_data_signed'
|
13
|
+
SRC_ASSURANCE_DATA = 'src_assurance_data'
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module CheckoutSdk
|
4
|
+
module Sessions
|
5
|
+
# @!attribute three_ds_req_auth_method
|
6
|
+
# @return [String] {ThreeDsReqAuthMethod}
|
7
|
+
# @!attribute three_ds_req_auth_timestamp
|
8
|
+
# @return [Time]
|
9
|
+
# @!attribute three_ds_req_auth_data
|
10
|
+
# @return [String]
|
11
|
+
class ThreeDsRequestorAuthenticationInfo
|
12
|
+
attr_accessor :three_ds_req_auth_method,
|
13
|
+
:three_ds_req_auth_timestamp,
|
14
|
+
:three_ds_req_auth_data
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -3,11 +3,11 @@
|
|
3
3
|
module CheckoutSdk
|
4
4
|
module Sessions
|
5
5
|
module TransactionType
|
6
|
-
GOODS_SERVICE = 'goods_service'
|
7
|
-
CHECK_ACCEPTANCE = 'check_acceptance'
|
8
6
|
ACCOUNT_FUNDING = 'account_funding'
|
9
|
-
|
7
|
+
CHECK_ACCEPTANCE = 'check_acceptance'
|
8
|
+
GOODS_SERVICE = 'goods_service'
|
10
9
|
PREPAID_ACTIVATION_AND_LOAD = 'prepaid_activation_and_load'
|
10
|
+
QUASHI_CARD_TRANSACTION = 'quashi_card_transaction'
|
11
11
|
end
|
12
12
|
end
|
13
13
|
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.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Checkout
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -127,14 +127,22 @@ files:
|
|
127
127
|
- lib/checkout_sdk.rb
|
128
128
|
- lib/checkout_sdk/abstract_checkout_sdk_builder.rb
|
129
129
|
- lib/checkout_sdk/accounts/account_holder.rb
|
130
|
+
- lib/checkout_sdk/accounts/account_holder_corporate.rb
|
131
|
+
- lib/checkout_sdk/accounts/account_holder_individual.rb
|
130
132
|
- lib/checkout_sdk/accounts/accounts.rb
|
131
133
|
- lib/checkout_sdk/accounts/accounts_client.rb
|
134
|
+
- lib/checkout_sdk/accounts/additional_document.rb
|
135
|
+
- lib/checkout_sdk/accounts/additional_info.rb
|
136
|
+
- lib/checkout_sdk/accounts/articles_of_association_type.rb
|
137
|
+
- lib/checkout_sdk/accounts/bank_verification.rb
|
138
|
+
- lib/checkout_sdk/accounts/bank_verification_type.rb
|
132
139
|
- lib/checkout_sdk/accounts/business_type.rb
|
133
140
|
- lib/checkout_sdk/accounts/company.rb
|
134
141
|
- lib/checkout_sdk/accounts/company_verification.rb
|
135
142
|
- lib/checkout_sdk/accounts/company_verification_type.rb
|
136
143
|
- lib/checkout_sdk/accounts/contact_details.rb
|
137
144
|
- lib/checkout_sdk/accounts/date_of_birth.rb
|
145
|
+
- lib/checkout_sdk/accounts/date_of_incorporation.rb
|
138
146
|
- lib/checkout_sdk/accounts/document.rb
|
139
147
|
- lib/checkout_sdk/accounts/document_type.rb
|
140
148
|
- lib/checkout_sdk/accounts/entity_document.rb
|
@@ -142,6 +150,8 @@ files:
|
|
142
150
|
- lib/checkout_sdk/accounts/entity_financial_details.rb
|
143
151
|
- lib/checkout_sdk/accounts/entity_financial_documents.rb
|
144
152
|
- lib/checkout_sdk/accounts/file_request.rb
|
153
|
+
- lib/checkout_sdk/accounts/financial_verification.rb
|
154
|
+
- lib/checkout_sdk/accounts/financial_verification_type.rb
|
145
155
|
- lib/checkout_sdk/accounts/headers.rb
|
146
156
|
- lib/checkout_sdk/accounts/identification.rb
|
147
157
|
- lib/checkout_sdk/accounts/individual.rb
|
@@ -150,6 +160,7 @@ files:
|
|
150
160
|
- lib/checkout_sdk/accounts/instrument_details_faster_payments.rb
|
151
161
|
- lib/checkout_sdk/accounts/instrument_details_sepa.rb
|
152
162
|
- lib/checkout_sdk/accounts/instrument_document.rb
|
163
|
+
- lib/checkout_sdk/accounts/invitee.rb
|
153
164
|
- lib/checkout_sdk/accounts/onboard_entity.rb
|
154
165
|
- lib/checkout_sdk/accounts/onboard_sub_entity_documents.rb
|
155
166
|
- lib/checkout_sdk/accounts/payment_instrument.rb
|
@@ -157,13 +168,20 @@ files:
|
|
157
168
|
- lib/checkout_sdk/accounts/payment_instruments_query.rb
|
158
169
|
- lib/checkout_sdk/accounts/phone.rb
|
159
170
|
- lib/checkout_sdk/accounts/place_of_birth.rb
|
171
|
+
- lib/checkout_sdk/accounts/processing_details.rb
|
160
172
|
- lib/checkout_sdk/accounts/profile.rb
|
173
|
+
- lib/checkout_sdk/accounts/proof_of_legality.rb
|
174
|
+
- lib/checkout_sdk/accounts/proof_of_legality_type.rb
|
175
|
+
- lib/checkout_sdk/accounts/proof_of_principal_address.rb
|
176
|
+
- lib/checkout_sdk/accounts/proof_of_principal_address_type.rb
|
161
177
|
- lib/checkout_sdk/accounts/representative.rb
|
162
178
|
- lib/checkout_sdk/accounts/schedule_frequency_daily.rb
|
163
179
|
- lib/checkout_sdk/accounts/schedule_frequency_monthly.rb
|
164
180
|
- lib/checkout_sdk/accounts/schedule_frequency_type.rb
|
165
181
|
- lib/checkout_sdk/accounts/schedule_frequency_weekly.rb
|
166
182
|
- lib/checkout_sdk/accounts/schedule_request.rb
|
183
|
+
- lib/checkout_sdk/accounts/shareholder_structure.rb
|
184
|
+
- lib/checkout_sdk/accounts/shareholder_structure_type.rb
|
167
185
|
- lib/checkout_sdk/accounts/tax_verification.rb
|
168
186
|
- lib/checkout_sdk/accounts/tax_verification_type.rb
|
169
187
|
- lib/checkout_sdk/accounts/update_payment_instrument_request.rb
|
@@ -187,21 +205,27 @@ files:
|
|
187
205
|
- lib/checkout_sdk/checkout_static_keys_sdk_builder.rb
|
188
206
|
- lib/checkout_sdk/checkout_utils.rb
|
189
207
|
- lib/checkout_sdk/client.rb
|
208
|
+
- lib/checkout_sdk/common/account_change_indicator_type.rb
|
190
209
|
- lib/checkout_sdk/common/account_holder.rb
|
191
210
|
- lib/checkout_sdk/common/account_holder_identification.rb
|
192
211
|
- lib/checkout_sdk/common/account_holder_identification_type.rb
|
193
212
|
- lib/checkout_sdk/common/account_holder_type.rb
|
213
|
+
- lib/checkout_sdk/common/account_password_change_indicator_type.rb
|
194
214
|
- lib/checkout_sdk/common/account_type.rb
|
215
|
+
- lib/checkout_sdk/common/account_type_card_product_type.rb
|
195
216
|
- lib/checkout_sdk/common/address.rb
|
196
217
|
- lib/checkout_sdk/common/amount_allocations.rb
|
197
218
|
- lib/checkout_sdk/common/bank_details.rb
|
219
|
+
- lib/checkout_sdk/common/cardholder_account_age_indicator_type.rb
|
198
220
|
- lib/checkout_sdk/common/challenge_indicator.rb
|
199
221
|
- lib/checkout_sdk/common/commission.rb
|
200
222
|
- lib/checkout_sdk/common/common.rb
|
201
223
|
- lib/checkout_sdk/common/country.rb
|
202
224
|
- lib/checkout_sdk/common/currency.rb
|
203
225
|
- lib/checkout_sdk/common/customer_request.rb
|
226
|
+
- lib/checkout_sdk/common/customer_retry.rb
|
204
227
|
- lib/checkout_sdk/common/date_range_query_filter.rb
|
228
|
+
- lib/checkout_sdk/common/destination.rb
|
205
229
|
- lib/checkout_sdk/common/file_purpose.rb
|
206
230
|
- lib/checkout_sdk/common/file_request.rb
|
207
231
|
- lib/checkout_sdk/common/instrument_type.rb
|
@@ -268,6 +292,7 @@ files:
|
|
268
292
|
- lib/checkout_sdk/oauth_scopes.rb
|
269
293
|
- lib/checkout_sdk/oauth_sdk_credentials.rb
|
270
294
|
- lib/checkout_sdk/payments/airline_data.rb
|
295
|
+
- lib/checkout_sdk/payments/applepay.rb
|
271
296
|
- lib/checkout_sdk/payments/authorization_request.rb
|
272
297
|
- lib/checkout_sdk/payments/authorization_type.rb
|
273
298
|
- lib/checkout_sdk/payments/base_payments_client.rb
|
@@ -277,6 +302,7 @@ files:
|
|
277
302
|
- lib/checkout_sdk/payments/billing_plan_type.rb
|
278
303
|
- lib/checkout_sdk/payments/capture_request.rb
|
279
304
|
- lib/checkout_sdk/payments/capture_type.rb
|
305
|
+
- lib/checkout_sdk/payments/card.rb
|
280
306
|
- lib/checkout_sdk/payments/charge_bearer.rb
|
281
307
|
- lib/checkout_sdk/payments/contexts/payment_contexts_client.rb
|
282
308
|
- lib/checkout_sdk/payments/d_local_installments.rb
|
@@ -289,18 +315,24 @@ files:
|
|
289
315
|
- lib/checkout_sdk/payments/destination/token_destination.rb
|
290
316
|
- lib/checkout_sdk/payments/exemption.rb
|
291
317
|
- lib/checkout_sdk/payments/flight_leg_details.rb
|
318
|
+
- lib/checkout_sdk/payments/googlepay.rb
|
319
|
+
- lib/checkout_sdk/payments/hosted/hosted_payment_instruction.rb
|
292
320
|
- lib/checkout_sdk/payments/hosted/hosted_payments_client.rb
|
293
321
|
- lib/checkout_sdk/payments/hosted/hosted_payments_session.rb
|
322
|
+
- lib/checkout_sdk/payments/hosted/payment_purpose_type.rb
|
294
323
|
- lib/checkout_sdk/payments/instruction_scheme.rb
|
295
324
|
- lib/checkout_sdk/payments/links/payment_link.rb
|
296
325
|
- lib/checkout_sdk/payments/links/payments_links_client.rb
|
326
|
+
- lib/checkout_sdk/payments/locale_type.rb
|
297
327
|
- lib/checkout_sdk/payments/merchant_initiated_reason.rb
|
298
328
|
- lib/checkout_sdk/payments/network_token_type.rb
|
299
329
|
- lib/checkout_sdk/payments/os_type.rb
|
330
|
+
- lib/checkout_sdk/payments/partial_authorization.rb
|
300
331
|
- lib/checkout_sdk/payments/passenger.rb
|
301
332
|
- lib/checkout_sdk/payments/passenger_name.rb
|
302
333
|
- lib/checkout_sdk/payments/payer.rb
|
303
334
|
- lib/checkout_sdk/payments/payment_instruction.rb
|
335
|
+
- lib/checkout_sdk/payments/payment_method_configuration.rb
|
304
336
|
- lib/checkout_sdk/payments/payment_method_details.rb
|
305
337
|
- lib/checkout_sdk/payments/payment_recipient.rb
|
306
338
|
- lib/checkout_sdk/payments/payment_request.rb
|
@@ -353,6 +385,7 @@ files:
|
|
353
385
|
- lib/checkout_sdk/payments/processing_settings.rb
|
354
386
|
- lib/checkout_sdk/payments/product.rb
|
355
387
|
- lib/checkout_sdk/payments/product_type.rb
|
388
|
+
- lib/checkout_sdk/payments/refund_order.rb
|
356
389
|
- lib/checkout_sdk/payments/refund_request.rb
|
357
390
|
- lib/checkout_sdk/payments/reverse_request.rb
|
358
391
|
- lib/checkout_sdk/payments/risk_request.rb
|
@@ -365,19 +398,19 @@ files:
|
|
365
398
|
- lib/checkout_sdk/payments/sender/sender_type.rb
|
366
399
|
- lib/checkout_sdk/payments/sender/source_of_funds.rb
|
367
400
|
- lib/checkout_sdk/payments/sender/ticket.rb
|
368
|
-
- lib/checkout_sdk/payments/sessions/card.rb
|
369
|
-
- lib/checkout_sdk/payments/sessions/payment_method_configuration.rb
|
370
401
|
- lib/checkout_sdk/payments/sessions/payment_methods_type.rb
|
371
402
|
- lib/checkout_sdk/payments/sessions/payment_sessions_client.rb
|
372
403
|
- lib/checkout_sdk/payments/sessions/payment_sessions_request.rb
|
373
404
|
- lib/checkout_sdk/payments/sessions/store_payment_details_type.rb
|
374
405
|
- lib/checkout_sdk/payments/shipping_details.rb
|
375
406
|
- lib/checkout_sdk/payments/shipping_preference.rb
|
407
|
+
- lib/checkout_sdk/payments/source/apm/ach_source.rb
|
376
408
|
- lib/checkout_sdk/payments/source/apm/after_pay_source.rb
|
377
409
|
- lib/checkout_sdk/payments/source/apm/alipay_plus_source.rb
|
378
410
|
- lib/checkout_sdk/payments/source/apm/alma_source.rb
|
379
411
|
- lib/checkout_sdk/payments/source/apm/bancontact_source.rb
|
380
412
|
- lib/checkout_sdk/payments/source/apm/benefit_source.rb
|
413
|
+
- lib/checkout_sdk/payments/source/apm/bizum_source.rb
|
381
414
|
- lib/checkout_sdk/payments/source/apm/cv_connect_source.rb
|
382
415
|
- lib/checkout_sdk/payments/source/apm/eps_source.rb
|
383
416
|
- lib/checkout_sdk/payments/source/apm/fawry_product.rb
|
@@ -389,11 +422,14 @@ files:
|
|
389
422
|
- lib/checkout_sdk/payments/source/apm/knet_source.rb
|
390
423
|
- lib/checkout_sdk/payments/source/apm/mbway_source.rb
|
391
424
|
- lib/checkout_sdk/payments/source/apm/multi_banco_source.rb
|
425
|
+
- lib/checkout_sdk/payments/source/apm/octopus_source.rb
|
392
426
|
- lib/checkout_sdk/payments/source/apm/p24_source.rb
|
393
427
|
- lib/checkout_sdk/payments/source/apm/paypal_source.rb
|
428
|
+
- lib/checkout_sdk/payments/source/apm/plaid_source.rb
|
394
429
|
- lib/checkout_sdk/payments/source/apm/post_finance_source.rb
|
395
430
|
- lib/checkout_sdk/payments/source/apm/qpay_source.rb
|
396
431
|
- lib/checkout_sdk/payments/source/apm/sepa_source.rb
|
432
|
+
- lib/checkout_sdk/payments/source/apm/sequra_source.rb
|
397
433
|
- lib/checkout_sdk/payments/source/apm/sofort_source.rb
|
398
434
|
- lib/checkout_sdk/payments/source/apm/stcpay_source.rb
|
399
435
|
- lib/checkout_sdk/payments/source/apm/tamara_source.rb
|
@@ -452,6 +488,8 @@ files:
|
|
452
488
|
- lib/checkout_sdk/sessions/channel/browser_session.rb
|
453
489
|
- lib/checkout_sdk/sessions/channel/channel_data.rb
|
454
490
|
- lib/checkout_sdk/sessions/channel/channel_data_type.rb
|
491
|
+
- lib/checkout_sdk/sessions/channel/merchant_initiated_session.rb
|
492
|
+
- lib/checkout_sdk/sessions/channel/request_type.rb
|
455
493
|
- lib/checkout_sdk/sessions/channel/sdk_ephemeral_public_key.rb
|
456
494
|
- lib/checkout_sdk/sessions/channel/sdk_interface_type.rb
|
457
495
|
- lib/checkout_sdk/sessions/channel/three_ds_method_completion.rb
|
@@ -461,9 +499,14 @@ files:
|
|
461
499
|
- lib/checkout_sdk/sessions/completion/hosted_completion_info.rb
|
462
500
|
- lib/checkout_sdk/sessions/completion/non_hosted_completion_info.rb
|
463
501
|
- lib/checkout_sdk/sessions/delivery_timeframe.rb
|
502
|
+
- lib/checkout_sdk/sessions/initial_transaction.rb
|
464
503
|
- lib/checkout_sdk/sessions/installment.rb
|
465
504
|
- lib/checkout_sdk/sessions/merchant_risk_info.rb
|
505
|
+
- lib/checkout_sdk/sessions/optimization.rb
|
506
|
+
- lib/checkout_sdk/sessions/optimized_properties.rb
|
507
|
+
- lib/checkout_sdk/sessions/pre_order_purchase_indicator_type.rb
|
466
508
|
- lib/checkout_sdk/sessions/recurring.rb
|
509
|
+
- lib/checkout_sdk/sessions/reorder_items_indicator_type.rb
|
467
510
|
- lib/checkout_sdk/sessions/session_address.rb
|
468
511
|
- lib/checkout_sdk/sessions/session_marketplace_data.rb
|
469
512
|
- lib/checkout_sdk/sessions/session_request.rb
|
@@ -480,6 +523,8 @@ files:
|
|
480
523
|
- lib/checkout_sdk/sessions/source/session_source.rb
|
481
524
|
- lib/checkout_sdk/sessions/source/token_source.rb
|
482
525
|
- lib/checkout_sdk/sessions/three_ds_method_completion_request.rb
|
526
|
+
- lib/checkout_sdk/sessions/three_ds_req_auth_method.rb
|
527
|
+
- lib/checkout_sdk/sessions/three_ds_requestor_authentication_info.rb
|
483
528
|
- lib/checkout_sdk/sessions/transaction_type.rb
|
484
529
|
- lib/checkout_sdk/simple_logger.rb
|
485
530
|
- lib/checkout_sdk/sources/mandate_type.rb
|
@@ -534,7 +579,7 @@ metadata:
|
|
534
579
|
homepage_uri: https://www.checkout.com/
|
535
580
|
source_code_uri: https://github.com/checkout/checkout-sdk-ruby
|
536
581
|
documentation_uri: https://www.checkout.com/docs
|
537
|
-
post_install_message:
|
582
|
+
post_install_message:
|
538
583
|
rdoc_options: []
|
539
584
|
require_paths:
|
540
585
|
- lib
|
@@ -550,7 +595,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
550
595
|
version: '0'
|
551
596
|
requirements: []
|
552
597
|
rubygems_version: 3.0.3.1
|
553
|
-
signing_key:
|
598
|
+
signing_key:
|
554
599
|
specification_version: 4
|
555
600
|
summary: Ruby wrapper for Checkout API
|
556
601
|
test_files: []
|