checkout_sdk 1.5.0 → 1.7.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.
Files changed (138) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +15 -1
  3. data/lib/checkout_sdk/accounts/accounts.rb +10 -1
  4. data/lib/checkout_sdk/accounts/accounts_client.rb +134 -1
  5. data/lib/checkout_sdk/accounts/entity_files_request.rb +13 -0
  6. data/lib/checkout_sdk/accounts/entity_requirement_priority.rb +12 -0
  7. data/lib/checkout_sdk/accounts/entity_requirement_reason.rb +11 -0
  8. data/lib/checkout_sdk/accounts/entity_requirement_update_request.rb +22 -0
  9. data/lib/checkout_sdk/accounts/entity_requirement_update_status.rb +12 -0
  10. data/lib/checkout_sdk/accounts/onboard_entity.rb +9 -1
  11. data/lib/checkout_sdk/accounts/reserve_rule_create_request.rb +14 -0
  12. data/lib/checkout_sdk/accounts/reserve_rule_holding_duration.rb +13 -0
  13. data/lib/checkout_sdk/accounts/reserve_rule_update_request.rb +15 -0
  14. data/lib/checkout_sdk/accounts/rolling_reserve_rule.rb +15 -0
  15. data/lib/checkout_sdk/accounts/submitter.rb +13 -0
  16. data/lib/checkout_sdk/agentic_commerce/agentic_commerce.rb +8 -0
  17. data/lib/checkout_sdk/agentic_commerce/agentic_commerce_client.rb +31 -0
  18. data/lib/checkout_sdk/agentic_commerce/delegated_payment_allowance.rb +28 -0
  19. data/lib/checkout_sdk/agentic_commerce/delegated_payment_billing_address.rb +33 -0
  20. data/lib/checkout_sdk/agentic_commerce/delegated_payment_method_card.rb +64 -0
  21. data/lib/checkout_sdk/agentic_commerce/delegated_payment_request.rb +25 -0
  22. data/lib/checkout_sdk/agentic_commerce/delegated_payment_risk_signal.rb +20 -0
  23. data/lib/checkout_sdk/api_client.rb +25 -15
  24. data/lib/checkout_sdk/balances/balance_values.rb +28 -0
  25. data/lib/checkout_sdk/balances/balances.rb +4 -0
  26. data/lib/checkout_sdk/balances/balances_query.rb +32 -0
  27. data/lib/checkout_sdk/balances/collateral_breakdown.rb +16 -0
  28. data/lib/checkout_sdk/balances/currency_account_balance.rb +26 -0
  29. data/lib/checkout_sdk/checkout_api.rb +61 -1
  30. data/lib/checkout_sdk/common/common.rb +1 -0
  31. data/lib/checkout_sdk/common/headers.rb +16 -0
  32. data/lib/checkout_sdk/common/payment_source_type.rb +1 -0
  33. data/lib/checkout_sdk/compliance_requests/compliance_request_responded_field.rb +22 -0
  34. data/lib/checkout_sdk/compliance_requests/compliance_request_responded_fields.rb +15 -0
  35. data/lib/checkout_sdk/compliance_requests/compliance_requests.rb +6 -0
  36. data/lib/checkout_sdk/compliance_requests/compliance_requests_client.rb +34 -0
  37. data/lib/checkout_sdk/compliance_requests/compliance_response_request.rb +16 -0
  38. data/lib/checkout_sdk/disputes/dispute_status.rb +1 -0
  39. data/lib/checkout_sdk/disputes/disputes_client.rb +22 -1
  40. data/lib/checkout_sdk/disputes/disputes_query_filter.rb +49 -11
  41. data/lib/checkout_sdk/forward/create_secret_request.rb +17 -0
  42. data/lib/checkout_sdk/forward/forward.rb +2 -0
  43. data/lib/checkout_sdk/forward/forward_client.rb +27 -1
  44. data/lib/checkout_sdk/forward/update_secret_request.rb +15 -0
  45. data/lib/checkout_sdk/identities/aml_screening/aml_screening_client.rb +29 -0
  46. data/lib/checkout_sdk/identities/aml_screening/aml_search_parameters.rb +15 -0
  47. data/lib/checkout_sdk/identities/aml_screening/aml_verification_request.rb +19 -0
  48. data/lib/checkout_sdk/identities/applicants/applicants_client.rb +43 -0
  49. data/lib/checkout_sdk/identities/applicants/create_applicant_request.rb +21 -0
  50. data/lib/checkout_sdk/identities/applicants/update_applicant_request.rb +18 -0
  51. data/lib/checkout_sdk/identities/face_authentication/face_authentication_attempt_request.rb +17 -0
  52. data/lib/checkout_sdk/identities/face_authentication/face_authentication_client.rb +68 -0
  53. data/lib/checkout_sdk/identities/face_authentication/face_authentication_request.rb +21 -0
  54. data/lib/checkout_sdk/identities/id_document_verification/id_document_verification_client.rb +77 -0
  55. data/lib/checkout_sdk/identities/id_document_verification/id_document_verification_request.rb +27 -0
  56. data/lib/checkout_sdk/identities/identities.rb +27 -0
  57. data/lib/checkout_sdk/identities/identity_verification/identity_verification_attempt_request.rb +17 -0
  58. data/lib/checkout_sdk/identities/identity_verification/identity_verification_client.rb +84 -0
  59. data/lib/checkout_sdk/identities/identity_verification/identity_verification_request.rb +21 -0
  60. data/lib/checkout_sdk/identities/identity_verification/idv_client_information.rb +17 -0
  61. data/lib/checkout_sdk/identities/identity_verification/idv_declared_data.rb +15 -0
  62. data/lib/checkout_sdk/instruments/base_instruments_client.rb +9 -0
  63. data/lib/checkout_sdk/issuing/add_control_group_request.rb +19 -0
  64. data/lib/checkout_sdk/issuing/add_control_profile_request.rb +13 -0
  65. data/lib/checkout_sdk/issuing/cardholder_access_token_request.rb +26 -0
  66. data/lib/checkout_sdk/issuing/create_dispute_request.rb +24 -0
  67. data/lib/checkout_sdk/issuing/escalate_dispute_request.rb +19 -0
  68. data/lib/checkout_sdk/issuing/identification_document.rb +18 -0
  69. data/lib/checkout_sdk/issuing/issuing.rb +25 -0
  70. data/lib/checkout_sdk/issuing/issuing_address.rb +25 -0
  71. data/lib/checkout_sdk/issuing/issuing_client.rb +266 -13
  72. data/lib/checkout_sdk/issuing/issuing_phone_number.rb +16 -0
  73. data/lib/checkout_sdk/issuing/oob_authentication_request.rb +15 -0
  74. data/lib/checkout_sdk/issuing/oob_simulate_transaction_details.rb +19 -0
  75. data/lib/checkout_sdk/issuing/schedule_revocation_request.rb +13 -0
  76. data/lib/checkout_sdk/issuing/simulate_refund_request.rb +13 -0
  77. data/lib/checkout_sdk/issuing/update_card_request.rb +19 -0
  78. data/lib/checkout_sdk/issuing/update_cardholder_request.rb +32 -0
  79. data/lib/checkout_sdk/issuing/update_control_profile_request.rb +13 -0
  80. data/lib/checkout_sdk/network_tokens/network_token_cryptogram_request.rb +13 -0
  81. data/lib/checkout_sdk/network_tokens/network_token_source_card.rb +25 -0
  82. data/lib/checkout_sdk/network_tokens/network_token_source_id.rb +19 -0
  83. data/lib/checkout_sdk/network_tokens/network_tokens.rb +7 -0
  84. data/lib/checkout_sdk/network_tokens/network_tokens_client.rb +51 -0
  85. data/lib/checkout_sdk/network_tokens/provision_network_token_request.rb +14 -0
  86. data/lib/checkout_sdk/onboarding_simulator/onboarding_simulator.rb +6 -0
  87. data/lib/checkout_sdk/onboarding_simulator/onboarding_simulator_client.rb +72 -0
  88. data/lib/checkout_sdk/onboarding_simulator/simulator_entity_status.rb +16 -0
  89. data/lib/checkout_sdk/onboarding_simulator/simulator_set_requirements_due_request.rb +14 -0
  90. data/lib/checkout_sdk/onboarding_simulator/simulator_set_status_request.rb +13 -0
  91. data/lib/checkout_sdk/payment_methods/payment_methods.rb +4 -0
  92. data/lib/checkout_sdk/payment_methods/payment_methods_client.rb +24 -0
  93. data/lib/checkout_sdk/payment_methods/payment_methods_query.rb +13 -0
  94. data/lib/checkout_sdk/payments/apple_pay/apple_pay_certificate_request.rb +13 -0
  95. data/lib/checkout_sdk/payments/apple_pay/apple_pay_client.rb +44 -0
  96. data/lib/checkout_sdk/payments/apple_pay/apple_pay_enrollment_request.rb +13 -0
  97. data/lib/checkout_sdk/payments/apple_pay/apple_pay_signing_request.rb +13 -0
  98. data/lib/checkout_sdk/payments/base_payments_client.rb +19 -0
  99. data/lib/checkout_sdk/payments/cancellation_request.rb +13 -0
  100. data/lib/checkout_sdk/payments/flow/flow_client.rb +59 -0
  101. data/lib/checkout_sdk/payments/google_pay/google_pay_client.rb +48 -0
  102. data/lib/checkout_sdk/payments/google_pay/google_pay_domain_request.rb +13 -0
  103. data/lib/checkout_sdk/payments/google_pay/google_pay_enrollment_request.rb +17 -0
  104. data/lib/checkout_sdk/payments/passenger.rb +20 -6
  105. data/lib/checkout_sdk/payments/payment_plan.rb +43 -0
  106. data/lib/checkout_sdk/payments/payment_request.rb +2 -1
  107. data/lib/checkout_sdk/payments/payments.rb +26 -1
  108. data/lib/checkout_sdk/payments/payments_search_request.rb +20 -0
  109. data/lib/checkout_sdk/payments/processing_data.rb +45 -0
  110. data/lib/checkout_sdk/payments/processing_settings.rb +5 -1
  111. data/lib/checkout_sdk/payments/sessions/payment_sessions_client.rb +12 -0
  112. data/lib/checkout_sdk/payments/setups/account_funding_transaction_identification.rb +17 -0
  113. data/lib/checkout_sdk/payments/setups/account_funding_transaction_identification_type.rb +15 -0
  114. data/lib/checkout_sdk/payments/setups/account_funding_transaction_purpose.rb +29 -0
  115. data/lib/checkout_sdk/payments/setups/account_funding_transaction_recipient.rb +26 -0
  116. data/lib/checkout_sdk/payments/setups/account_funding_transaction_sender.rb +29 -0
  117. data/lib/checkout_sdk/payments/setups/blik_payment_method.rb +20 -0
  118. data/lib/checkout_sdk/payments/setups/payment_setup_account_funding_transaction.rb +20 -0
  119. data/lib/checkout_sdk/payments/source/apm/blik_source.rb +31 -0
  120. data/lib/checkout_sdk/sessions/device_information.rb +17 -0
  121. data/lib/checkout_sdk/sessions/session_request.rb +2 -1
  122. data/lib/checkout_sdk/sessions/sessions.rb +1 -0
  123. data/lib/checkout_sdk/standalone_account_updater/account_updater_card.rb +17 -0
  124. data/lib/checkout_sdk/standalone_account_updater/account_updater_instrument.rb +13 -0
  125. data/lib/checkout_sdk/standalone_account_updater/account_updater_request.rb +13 -0
  126. data/lib/checkout_sdk/standalone_account_updater/account_updater_source_options.rb +15 -0
  127. data/lib/checkout_sdk/standalone_account_updater/standalone_account_updater.rb +7 -0
  128. data/lib/checkout_sdk/standalone_account_updater/standalone_account_updater_client.rb +29 -0
  129. data/lib/checkout_sdk/tokens/token_metadata_billing_address.rb +16 -0
  130. data/lib/checkout_sdk/tokens/token_metadata_response.rb +55 -0
  131. data/lib/checkout_sdk/tokens/tokens.rb +2 -0
  132. data/lib/checkout_sdk/tokens/tokens_client.rb +11 -0
  133. data/lib/checkout_sdk/version.rb +1 -1
  134. data/lib/checkout_sdk/workflows/workflows_client.rb +1 -1
  135. data/lib/checkout_sdk.rb +7 -0
  136. metadata +106 -4
  137. data/lib/checkout_sdk/accounts/headers.rb +0 -11
  138. data/lib/checkout_sdk/payments/passenger_name.rb +0 -11
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.5.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Checkout
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-01-28 00:00:00.000000000 Z
11
+ date: 2026-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -163,12 +163,16 @@ files:
163
163
  - lib/checkout_sdk/accounts/document_type.rb
164
164
  - lib/checkout_sdk/accounts/entity_document.rb
165
165
  - lib/checkout_sdk/accounts/entity_email_addresses.rb
166
+ - lib/checkout_sdk/accounts/entity_files_request.rb
166
167
  - lib/checkout_sdk/accounts/entity_financial_details.rb
167
168
  - lib/checkout_sdk/accounts/entity_financial_documents.rb
169
+ - lib/checkout_sdk/accounts/entity_requirement_priority.rb
170
+ - lib/checkout_sdk/accounts/entity_requirement_reason.rb
171
+ - lib/checkout_sdk/accounts/entity_requirement_update_request.rb
172
+ - lib/checkout_sdk/accounts/entity_requirement_update_status.rb
168
173
  - lib/checkout_sdk/accounts/file_request.rb
169
174
  - lib/checkout_sdk/accounts/financial_verification.rb
170
175
  - lib/checkout_sdk/accounts/financial_verification_type.rb
171
- - lib/checkout_sdk/accounts/headers.rb
172
176
  - lib/checkout_sdk/accounts/identification.rb
173
177
  - lib/checkout_sdk/accounts/individual.rb
174
178
  - lib/checkout_sdk/accounts/instrument_details.rb
@@ -191,6 +195,10 @@ files:
191
195
  - lib/checkout_sdk/accounts/proof_of_principal_address.rb
192
196
  - lib/checkout_sdk/accounts/proof_of_principal_address_type.rb
193
197
  - lib/checkout_sdk/accounts/representative.rb
198
+ - lib/checkout_sdk/accounts/reserve_rule_create_request.rb
199
+ - lib/checkout_sdk/accounts/reserve_rule_holding_duration.rb
200
+ - lib/checkout_sdk/accounts/reserve_rule_update_request.rb
201
+ - lib/checkout_sdk/accounts/rolling_reserve_rule.rb
194
202
  - lib/checkout_sdk/accounts/schedule_frequency_daily.rb
195
203
  - lib/checkout_sdk/accounts/schedule_frequency_monthly.rb
196
204
  - lib/checkout_sdk/accounts/schedule_frequency_type.rb
@@ -198,10 +206,18 @@ files:
198
206
  - lib/checkout_sdk/accounts/schedule_request.rb
199
207
  - lib/checkout_sdk/accounts/shareholder_structure.rb
200
208
  - lib/checkout_sdk/accounts/shareholder_structure_type.rb
209
+ - lib/checkout_sdk/accounts/submitter.rb
201
210
  - lib/checkout_sdk/accounts/tax_verification.rb
202
211
  - lib/checkout_sdk/accounts/tax_verification_type.rb
203
212
  - lib/checkout_sdk/accounts/update_payment_instrument_request.rb
204
213
  - lib/checkout_sdk/accounts/update_schedule.rb
214
+ - lib/checkout_sdk/agentic_commerce/agentic_commerce.rb
215
+ - lib/checkout_sdk/agentic_commerce/agentic_commerce_client.rb
216
+ - lib/checkout_sdk/agentic_commerce/delegated_payment_allowance.rb
217
+ - lib/checkout_sdk/agentic_commerce/delegated_payment_billing_address.rb
218
+ - lib/checkout_sdk/agentic_commerce/delegated_payment_method_card.rb
219
+ - lib/checkout_sdk/agentic_commerce/delegated_payment_request.rb
220
+ - lib/checkout_sdk/agentic_commerce/delegated_payment_risk_signal.rb
205
221
  - lib/checkout_sdk/api_client.rb
206
222
  - lib/checkout_sdk/apm/apm.rb
207
223
  - lib/checkout_sdk/apm/ideal/ideal_client.rb
@@ -212,8 +228,12 @@ files:
212
228
  - lib/checkout_sdk/apm/previous/klarna/order_capture_request.rb
213
229
  - lib/checkout_sdk/apm/previous/sepa/sepa_client.rb
214
230
  - lib/checkout_sdk/authorization_type.rb
231
+ - lib/checkout_sdk/balances/balance_values.rb
215
232
  - lib/checkout_sdk/balances/balances.rb
216
233
  - lib/checkout_sdk/balances/balances_client.rb
234
+ - lib/checkout_sdk/balances/balances_query.rb
235
+ - lib/checkout_sdk/balances/collateral_breakdown.rb
236
+ - lib/checkout_sdk/balances/currency_account_balance.rb
217
237
  - lib/checkout_sdk/checkout_api.rb
218
238
  - lib/checkout_sdk/checkout_configuration.rb
219
239
  - lib/checkout_sdk/checkout_oauth_sdk_builder.rb
@@ -244,6 +264,7 @@ files:
244
264
  - lib/checkout_sdk/common/destination.rb
245
265
  - lib/checkout_sdk/common/file_purpose.rb
246
266
  - lib/checkout_sdk/common/file_request.rb
267
+ - lib/checkout_sdk/common/headers.rb
247
268
  - lib/checkout_sdk/common/instrument_type.rb
248
269
  - lib/checkout_sdk/common/marketplace_data.rb
249
270
  - lib/checkout_sdk/common/payment_source_type.rb
@@ -251,6 +272,11 @@ files:
251
272
  - lib/checkout_sdk/common/product.rb
252
273
  - lib/checkout_sdk/common/shipping_info.rb
253
274
  - lib/checkout_sdk/common/update_customer_request.rb
275
+ - lib/checkout_sdk/compliance_requests/compliance_request_responded_field.rb
276
+ - lib/checkout_sdk/compliance_requests/compliance_request_responded_fields.rb
277
+ - lib/checkout_sdk/compliance_requests/compliance_requests.rb
278
+ - lib/checkout_sdk/compliance_requests/compliance_requests_client.rb
279
+ - lib/checkout_sdk/compliance_requests/compliance_response_request.rb
254
280
  - lib/checkout_sdk/customers/customer_request.rb
255
281
  - lib/checkout_sdk/customers/customers.rb
256
282
  - lib/checkout_sdk/customers/customers_client.rb
@@ -273,9 +299,28 @@ files:
273
299
  - lib/checkout_sdk/forex/forex_source.rb
274
300
  - lib/checkout_sdk/forex/quote_request.rb
275
301
  - lib/checkout_sdk/forex/rates_query_filter.rb
302
+ - lib/checkout_sdk/forward/create_secret_request.rb
276
303
  - lib/checkout_sdk/forward/forward.rb
277
304
  - lib/checkout_sdk/forward/forward_client.rb
305
+ - lib/checkout_sdk/forward/update_secret_request.rb
278
306
  - lib/checkout_sdk/http_metadata.rb
307
+ - lib/checkout_sdk/identities/aml_screening/aml_screening_client.rb
308
+ - lib/checkout_sdk/identities/aml_screening/aml_search_parameters.rb
309
+ - lib/checkout_sdk/identities/aml_screening/aml_verification_request.rb
310
+ - lib/checkout_sdk/identities/applicants/applicants_client.rb
311
+ - lib/checkout_sdk/identities/applicants/create_applicant_request.rb
312
+ - lib/checkout_sdk/identities/applicants/update_applicant_request.rb
313
+ - lib/checkout_sdk/identities/face_authentication/face_authentication_attempt_request.rb
314
+ - lib/checkout_sdk/identities/face_authentication/face_authentication_client.rb
315
+ - lib/checkout_sdk/identities/face_authentication/face_authentication_request.rb
316
+ - lib/checkout_sdk/identities/id_document_verification/id_document_verification_client.rb
317
+ - lib/checkout_sdk/identities/id_document_verification/id_document_verification_request.rb
318
+ - lib/checkout_sdk/identities/identities.rb
319
+ - lib/checkout_sdk/identities/identity_verification/identity_verification_attempt_request.rb
320
+ - lib/checkout_sdk/identities/identity_verification/identity_verification_client.rb
321
+ - lib/checkout_sdk/identities/identity_verification/identity_verification_request.rb
322
+ - lib/checkout_sdk/identities/identity_verification/idv_client_information.rb
323
+ - lib/checkout_sdk/identities/identity_verification/idv_declared_data.rb
279
324
  - lib/checkout_sdk/instruments/base_instruments_client.rb
280
325
  - lib/checkout_sdk/instruments/create/instrument.rb
281
326
  - lib/checkout_sdk/instruments/create/instrument_bank_account.rb
@@ -293,8 +338,23 @@ files:
293
338
  - lib/checkout_sdk/instruments/update/update_instrument_bank_account.rb
294
339
  - lib/checkout_sdk/instruments/update/update_instrument_card.rb
295
340
  - lib/checkout_sdk/instruments/update/update_instrument_token.rb
341
+ - lib/checkout_sdk/issuing/add_control_group_request.rb
342
+ - lib/checkout_sdk/issuing/add_control_profile_request.rb
343
+ - lib/checkout_sdk/issuing/cardholder_access_token_request.rb
344
+ - lib/checkout_sdk/issuing/create_dispute_request.rb
345
+ - lib/checkout_sdk/issuing/escalate_dispute_request.rb
346
+ - lib/checkout_sdk/issuing/identification_document.rb
296
347
  - lib/checkout_sdk/issuing/issuing.rb
348
+ - lib/checkout_sdk/issuing/issuing_address.rb
297
349
  - lib/checkout_sdk/issuing/issuing_client.rb
350
+ - lib/checkout_sdk/issuing/issuing_phone_number.rb
351
+ - lib/checkout_sdk/issuing/oob_authentication_request.rb
352
+ - lib/checkout_sdk/issuing/oob_simulate_transaction_details.rb
353
+ - lib/checkout_sdk/issuing/schedule_revocation_request.rb
354
+ - lib/checkout_sdk/issuing/simulate_refund_request.rb
355
+ - lib/checkout_sdk/issuing/update_card_request.rb
356
+ - lib/checkout_sdk/issuing/update_cardholder_request.rb
357
+ - lib/checkout_sdk/issuing/update_control_profile_request.rb
298
358
  - lib/checkout_sdk/json_serializer.rb
299
359
  - lib/checkout_sdk/metadata/metadata.rb
300
360
  - lib/checkout_sdk/metadata/metadata_client.rb
@@ -306,10 +366,28 @@ files:
306
366
  - lib/checkout_sdk/metadata/source/metadata_source.rb
307
367
  - lib/checkout_sdk/metadata/source/metadata_source_type.rb
308
368
  - lib/checkout_sdk/metadata/source/token_metadata_source.rb
369
+ - lib/checkout_sdk/network_tokens/network_token_cryptogram_request.rb
370
+ - lib/checkout_sdk/network_tokens/network_token_source_card.rb
371
+ - lib/checkout_sdk/network_tokens/network_token_source_id.rb
372
+ - lib/checkout_sdk/network_tokens/network_tokens.rb
373
+ - lib/checkout_sdk/network_tokens/network_tokens_client.rb
374
+ - lib/checkout_sdk/network_tokens/provision_network_token_request.rb
309
375
  - lib/checkout_sdk/oauth_access_token.rb
310
376
  - lib/checkout_sdk/oauth_scopes.rb
311
377
  - lib/checkout_sdk/oauth_sdk_credentials.rb
378
+ - lib/checkout_sdk/onboarding_simulator/onboarding_simulator.rb
379
+ - lib/checkout_sdk/onboarding_simulator/onboarding_simulator_client.rb
380
+ - lib/checkout_sdk/onboarding_simulator/simulator_entity_status.rb
381
+ - lib/checkout_sdk/onboarding_simulator/simulator_set_requirements_due_request.rb
382
+ - lib/checkout_sdk/onboarding_simulator/simulator_set_status_request.rb
383
+ - lib/checkout_sdk/payment_methods/payment_methods.rb
384
+ - lib/checkout_sdk/payment_methods/payment_methods_client.rb
385
+ - lib/checkout_sdk/payment_methods/payment_methods_query.rb
312
386
  - lib/checkout_sdk/payments/airline_data.rb
387
+ - lib/checkout_sdk/payments/apple_pay/apple_pay_certificate_request.rb
388
+ - lib/checkout_sdk/payments/apple_pay/apple_pay_client.rb
389
+ - lib/checkout_sdk/payments/apple_pay/apple_pay_enrollment_request.rb
390
+ - lib/checkout_sdk/payments/apple_pay/apple_pay_signing_request.rb
313
391
  - lib/checkout_sdk/payments/applepay.rb
314
392
  - lib/checkout_sdk/payments/authorization_request.rb
315
393
  - lib/checkout_sdk/payments/authorization_type.rb
@@ -318,6 +396,7 @@ files:
318
396
  - lib/checkout_sdk/payments/billing_information.rb
319
397
  - lib/checkout_sdk/payments/billing_plan.rb
320
398
  - lib/checkout_sdk/payments/billing_plan_type.rb
399
+ - lib/checkout_sdk/payments/cancellation_request.rb
321
400
  - lib/checkout_sdk/payments/capture_request.rb
322
401
  - lib/checkout_sdk/payments/capture_type.rb
323
402
  - lib/checkout_sdk/payments/card.rb
@@ -333,6 +412,10 @@ files:
333
412
  - lib/checkout_sdk/payments/destination/token_destination.rb
334
413
  - lib/checkout_sdk/payments/exemption.rb
335
414
  - lib/checkout_sdk/payments/flight_leg_details.rb
415
+ - lib/checkout_sdk/payments/flow/flow_client.rb
416
+ - lib/checkout_sdk/payments/google_pay/google_pay_client.rb
417
+ - lib/checkout_sdk/payments/google_pay/google_pay_domain_request.rb
418
+ - lib/checkout_sdk/payments/google_pay/google_pay_enrollment_request.rb
336
419
  - lib/checkout_sdk/payments/googlepay.rb
337
420
  - lib/checkout_sdk/payments/hosted/hosted_payment_instruction.rb
338
421
  - lib/checkout_sdk/payments/hosted/hosted_payments_client.rb
@@ -347,11 +430,11 @@ files:
347
430
  - lib/checkout_sdk/payments/os_type.rb
348
431
  - lib/checkout_sdk/payments/partial_authorization.rb
349
432
  - lib/checkout_sdk/payments/passenger.rb
350
- - lib/checkout_sdk/payments/passenger_name.rb
351
433
  - lib/checkout_sdk/payments/payer.rb
352
434
  - lib/checkout_sdk/payments/payment_instruction.rb
353
435
  - lib/checkout_sdk/payments/payment_method_configuration.rb
354
436
  - lib/checkout_sdk/payments/payment_method_details.rb
437
+ - lib/checkout_sdk/payments/payment_plan.rb
355
438
  - lib/checkout_sdk/payments/payment_recipient.rb
356
439
  - lib/checkout_sdk/payments/payment_request.rb
357
440
  - lib/checkout_sdk/payments/payment_retry_request.rb
@@ -360,6 +443,7 @@ files:
360
443
  - lib/checkout_sdk/payments/payments.rb
361
444
  - lib/checkout_sdk/payments/payments_client.rb
362
445
  - lib/checkout_sdk/payments/payments_query_filter.rb
446
+ - lib/checkout_sdk/payments/payments_search_request.rb
363
447
  - lib/checkout_sdk/payments/payout_billing_descriptor.rb
364
448
  - lib/checkout_sdk/payments/payout_request.rb
365
449
  - lib/checkout_sdk/payments/preferred_schema.rb
@@ -400,6 +484,7 @@ files:
400
484
  - lib/checkout_sdk/payments/previous/source/network_token_source.rb
401
485
  - lib/checkout_sdk/payments/previous/source/payment_source.rb
402
486
  - lib/checkout_sdk/payments/previous/source/token_source.rb
487
+ - lib/checkout_sdk/payments/processing_data.rb
403
488
  - lib/checkout_sdk/payments/processing_settings.rb
404
489
  - lib/checkout_sdk/payments/product.rb
405
490
  - lib/checkout_sdk/payments/product_sub_type.rb
@@ -421,6 +506,13 @@ files:
421
506
  - lib/checkout_sdk/payments/sessions/payment_sessions_client.rb
422
507
  - lib/checkout_sdk/payments/sessions/payment_sessions_request.rb
423
508
  - lib/checkout_sdk/payments/sessions/store_payment_details_type.rb
509
+ - lib/checkout_sdk/payments/setups/account_funding_transaction_identification.rb
510
+ - lib/checkout_sdk/payments/setups/account_funding_transaction_identification_type.rb
511
+ - lib/checkout_sdk/payments/setups/account_funding_transaction_purpose.rb
512
+ - lib/checkout_sdk/payments/setups/account_funding_transaction_recipient.rb
513
+ - lib/checkout_sdk/payments/setups/account_funding_transaction_sender.rb
514
+ - lib/checkout_sdk/payments/setups/blik_payment_method.rb
515
+ - lib/checkout_sdk/payments/setups/payment_setup_account_funding_transaction.rb
424
516
  - lib/checkout_sdk/payments/setups/payment_setups_client.rb
425
517
  - lib/checkout_sdk/payments/shipping_details.rb
426
518
  - lib/checkout_sdk/payments/shipping_preference.rb
@@ -431,6 +523,7 @@ files:
431
523
  - lib/checkout_sdk/payments/source/apm/bancontact_source.rb
432
524
  - lib/checkout_sdk/payments/source/apm/benefit_source.rb
433
525
  - lib/checkout_sdk/payments/source/apm/bizum_source.rb
526
+ - lib/checkout_sdk/payments/source/apm/blik_source.rb
434
527
  - lib/checkout_sdk/payments/source/apm/cv_connect_source.rb
435
528
  - lib/checkout_sdk/payments/source/apm/eps_source.rb
436
529
  - lib/checkout_sdk/payments/source/apm/fawry_product.rb
@@ -519,6 +612,7 @@ files:
519
612
  - lib/checkout_sdk/sessions/completion/hosted_completion_info.rb
520
613
  - lib/checkout_sdk/sessions/completion/non_hosted_completion_info.rb
521
614
  - lib/checkout_sdk/sessions/delivery_timeframe.rb
615
+ - lib/checkout_sdk/sessions/device_information.rb
522
616
  - lib/checkout_sdk/sessions/initial_transaction.rb
523
617
  - lib/checkout_sdk/sessions/installment.rb
524
618
  - lib/checkout_sdk/sessions/merchant_risk_info.rb
@@ -554,6 +648,12 @@ files:
554
648
  - lib/checkout_sdk/sources/source_type.rb
555
649
  - lib/checkout_sdk/sources/sources.rb
556
650
  - lib/checkout_sdk/sources/sources_client.rb
651
+ - lib/checkout_sdk/standalone_account_updater/account_updater_card.rb
652
+ - lib/checkout_sdk/standalone_account_updater/account_updater_instrument.rb
653
+ - lib/checkout_sdk/standalone_account_updater/account_updater_request.rb
654
+ - lib/checkout_sdk/standalone_account_updater/account_updater_source_options.rb
655
+ - lib/checkout_sdk/standalone_account_updater/standalone_account_updater.rb
656
+ - lib/checkout_sdk/standalone_account_updater/standalone_account_updater_client.rb
557
657
  - lib/checkout_sdk/static_keys_builder.rb
558
658
  - lib/checkout_sdk/static_keys_sdk_credentials.rb
559
659
  - lib/checkout_sdk/tokens/apple_pay_token_data.rb
@@ -561,6 +661,8 @@ files:
561
661
  - lib/checkout_sdk/tokens/card_token_request.rb
562
662
  - lib/checkout_sdk/tokens/google_pay_token_data.rb
563
663
  - lib/checkout_sdk/tokens/google_pay_token_request.rb
664
+ - lib/checkout_sdk/tokens/token_metadata_billing_address.rb
665
+ - lib/checkout_sdk/tokens/token_metadata_response.rb
564
666
  - lib/checkout_sdk/tokens/token_type.rb
565
667
  - lib/checkout_sdk/tokens/tokens.rb
566
668
  - lib/checkout_sdk/tokens/tokens_client.rb
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module CheckoutSdk
4
- module Accounts
5
- # @!attribute if_match
6
- # @return [String]
7
- class Headers
8
- attr_accessor :if_match
9
- end
10
- end
11
- end
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module CheckoutSdk
4
- module Payments
5
- # @!attribute full_name
6
- # @return [String]
7
- class PassengerName
8
- attr_accessor :full_name
9
- end
10
- end
11
- end