checkout_sdk 1.2.2 → 1.9.1
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/.overcommit.yml +30 -0
- data/.rubocop.yml +15 -1
- data/.ruby-version +1 -0
- data/Gemfile +3 -1
- data/README.md +38 -0
- data/Rakefile +2 -2
- 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 +34 -1
- data/lib/checkout_sdk/accounts/accounts_client.rb +134 -1
- 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/entity_files_request.rb +13 -0
- data/lib/checkout_sdk/accounts/entity_requirement_priority.rb +12 -0
- data/lib/checkout_sdk/accounts/entity_requirement_reason.rb +11 -0
- data/lib/checkout_sdk/accounts/entity_requirement_update_request.rb +22 -0
- data/lib/checkout_sdk/accounts/entity_requirement_update_status.rb +12 -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/instrument_details_ach.rb +21 -0
- data/lib/checkout_sdk/accounts/{headers.rb → invitee.rb} +3 -3
- data/lib/checkout_sdk/accounts/onboard_entity.rb +21 -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/reserve_rule_create_request.rb +14 -0
- data/lib/checkout_sdk/accounts/reserve_rule_holding_duration.rb +13 -0
- data/lib/checkout_sdk/accounts/reserve_rule_update_request.rb +15 -0
- data/lib/checkout_sdk/accounts/rolling_reserve_rule.rb +15 -0
- data/lib/checkout_sdk/accounts/schedule_frequency_daily.rb +1 -1
- data/lib/checkout_sdk/accounts/schedule_frequency_monthly.rb +1 -1
- data/lib/checkout_sdk/accounts/schedule_frequency_weekly.rb +1 -1
- 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/accounts/submitter.rb +13 -0
- data/lib/checkout_sdk/agentic_commerce/agentic_commerce.rb +8 -0
- data/lib/checkout_sdk/agentic_commerce/agentic_commerce_client.rb +31 -0
- data/lib/checkout_sdk/agentic_commerce/delegated_payment_allowance.rb +28 -0
- data/lib/checkout_sdk/agentic_commerce/delegated_payment_billing_address.rb +33 -0
- data/lib/checkout_sdk/agentic_commerce/delegated_payment_method_card.rb +64 -0
- data/lib/checkout_sdk/agentic_commerce/delegated_payment_request.rb +25 -0
- data/lib/checkout_sdk/agentic_commerce/delegated_payment_risk_signal.rb +20 -0
- data/lib/checkout_sdk/api_client.rb +81 -62
- data/lib/checkout_sdk/apm/ideal/ideal_client.rb +1 -1
- data/lib/checkout_sdk/apm/previous/klarna/klarna_client.rb +1 -1
- data/lib/checkout_sdk/apm/previous/sepa/sepa_client.rb +1 -1
- data/lib/checkout_sdk/balances/balance_values.rb +28 -0
- data/lib/checkout_sdk/balances/balances.rb +4 -0
- data/lib/checkout_sdk/balances/balances_query.rb +32 -0
- data/lib/checkout_sdk/balances/collateral_breakdown.rb +16 -0
- data/lib/checkout_sdk/balances/currency_account_balance.rb +26 -0
- data/lib/checkout_sdk/checkout_api.rb +75 -1
- data/lib/checkout_sdk/checkout_oauth_sdk_builder.rb +12 -1
- 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 +7 -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/headers.rb +16 -0
- data/lib/checkout_sdk/common/payment_source_type.rb +9 -0
- data/lib/checkout_sdk/common/product.rb +4 -1
- data/lib/checkout_sdk/compliance_requests/compliance_request_responded_field.rb +22 -0
- data/lib/checkout_sdk/compliance_requests/compliance_request_responded_fields.rb +15 -0
- data/lib/checkout_sdk/compliance_requests/compliance_requests.rb +6 -0
- data/lib/checkout_sdk/compliance_requests/compliance_requests_client.rb +34 -0
- data/lib/checkout_sdk/compliance_requests/compliance_response_request.rb +16 -0
- data/lib/checkout_sdk/customers/customers_client.rb +1 -1
- data/lib/checkout_sdk/disputes/dispute_status.rb +1 -0
- data/lib/checkout_sdk/disputes/disputes_client.rb +23 -2
- data/lib/checkout_sdk/disputes/disputes_query_filter.rb +49 -11
- data/lib/checkout_sdk/environment.rb +8 -1
- data/lib/checkout_sdk/environment_subdomain.rb +16 -12
- data/lib/checkout_sdk/error.rb +24 -8
- data/lib/checkout_sdk/financial/financial_client.rb +1 -1
- data/lib/checkout_sdk/forward/create_secret_request.rb +17 -0
- data/lib/checkout_sdk/forward/forward.rb +5 -0
- data/lib/checkout_sdk/forward/forward_client.rb +52 -0
- data/lib/checkout_sdk/forward/update_secret_request.rb +15 -0
- data/lib/checkout_sdk/identities/aml_screening/aml_screening_client.rb +29 -0
- data/lib/checkout_sdk/identities/aml_screening/aml_search_parameters.rb +15 -0
- data/lib/checkout_sdk/identities/aml_screening/aml_verification_request.rb +19 -0
- data/lib/checkout_sdk/identities/applicants/applicants_client.rb +43 -0
- data/lib/checkout_sdk/identities/applicants/create_applicant_request.rb +21 -0
- data/lib/checkout_sdk/identities/applicants/update_applicant_request.rb +18 -0
- data/lib/checkout_sdk/identities/face_authentication/face_authentication_attempt_request.rb +17 -0
- data/lib/checkout_sdk/identities/face_authentication/face_authentication_client.rb +82 -0
- data/lib/checkout_sdk/identities/face_authentication/face_authentication_request.rb +21 -0
- data/lib/checkout_sdk/identities/id_document_verification/id_document_verification_client.rb +77 -0
- data/lib/checkout_sdk/identities/id_document_verification/id_document_verification_request.rb +27 -0
- data/lib/checkout_sdk/identities/identities.rb +27 -0
- data/lib/checkout_sdk/identities/identity_verification/identity_verification_attempt_request.rb +17 -0
- data/lib/checkout_sdk/identities/identity_verification/identity_verification_client.rb +99 -0
- data/lib/checkout_sdk/identities/identity_verification/identity_verification_request.rb +21 -0
- data/lib/checkout_sdk/identities/identity_verification/idv_client_information.rb +17 -0
- data/lib/checkout_sdk/identities/identity_verification/idv_declared_data.rb +15 -0
- data/lib/checkout_sdk/instruments/base_instruments_client.rb +9 -0
- data/lib/checkout_sdk/instruments/create/instrument_bank_account.rb +1 -1
- data/lib/checkout_sdk/instruments/create/instrument_sepa.rb +1 -1
- data/lib/checkout_sdk/instruments/create/instrument_token.rb +1 -1
- data/lib/checkout_sdk/instruments/instruments_client.rb +1 -1
- data/lib/checkout_sdk/instruments/previous/instruments_client.rb +1 -1
- data/lib/checkout_sdk/instruments/update/update_instrument_bank_account.rb +1 -1
- data/lib/checkout_sdk/instruments/update/update_instrument_card.rb +1 -1
- data/lib/checkout_sdk/instruments/update/update_instrument_token.rb +1 -1
- data/lib/checkout_sdk/issuing/add_control_group_request.rb +19 -0
- data/lib/checkout_sdk/issuing/add_control_profile_request.rb +13 -0
- data/lib/checkout_sdk/issuing/amend_dispute_request.rb +31 -0
- data/lib/checkout_sdk/issuing/cardholder_access_token_request.rb +26 -0
- data/lib/checkout_sdk/issuing/create_dispute_request.rb +27 -0
- data/lib/checkout_sdk/issuing/escalate_dispute_request.rb +23 -0
- data/lib/checkout_sdk/issuing/issuing.rb +27 -0
- data/lib/checkout_sdk/issuing/issuing_address.rb +25 -0
- data/lib/checkout_sdk/issuing/issuing_client.rb +274 -14
- data/lib/checkout_sdk/issuing/issuing_dispute_fraud_details.rb +18 -0
- data/lib/checkout_sdk/issuing/issuing_dispute_fraud_type.rb +21 -0
- data/lib/checkout_sdk/issuing/issuing_phone_number.rb +16 -0
- data/lib/checkout_sdk/issuing/oob_authentication_request.rb +15 -0
- data/lib/checkout_sdk/issuing/oob_simulate_transaction_details.rb +19 -0
- data/lib/checkout_sdk/issuing/simulate_refund_request.rb +13 -0
- data/lib/checkout_sdk/issuing/submit_dispute_request.rb +21 -0
- data/lib/checkout_sdk/issuing/update_card_request.rb +27 -0
- data/lib/checkout_sdk/issuing/update_cardholder_request.rb +29 -0
- data/lib/checkout_sdk/issuing/update_control_profile_request.rb +13 -0
- data/lib/checkout_sdk/metadata/metadata_client.rb +1 -1
- data/lib/checkout_sdk/metadata/source/bin_metadata_source.rb +1 -1
- data/lib/checkout_sdk/metadata/source/card_metadata_source.rb +1 -1
- data/lib/checkout_sdk/metadata/source/id_metadata_source.rb +1 -1
- data/lib/checkout_sdk/metadata/source/token_metadata_source.rb +1 -1
- data/lib/checkout_sdk/network_tokens/network_token_cryptogram_request.rb +13 -0
- data/lib/checkout_sdk/network_tokens/network_token_source_card.rb +25 -0
- data/lib/checkout_sdk/network_tokens/network_token_source_id.rb +19 -0
- data/lib/checkout_sdk/network_tokens/network_tokens.rb +7 -0
- data/lib/checkout_sdk/network_tokens/network_tokens_client.rb +51 -0
- data/lib/checkout_sdk/network_tokens/provision_network_token_request.rb +14 -0
- data/lib/checkout_sdk/oauth_access_token.rb +6 -1
- data/lib/checkout_sdk/oauth_scopes.rb +4 -0
- data/lib/checkout_sdk/oauth_sdk_credentials.rb +2 -1
- data/lib/checkout_sdk/onboarding_simulator/onboarding_simulator.rb +6 -0
- data/lib/checkout_sdk/onboarding_simulator/onboarding_simulator_client.rb +72 -0
- data/lib/checkout_sdk/onboarding_simulator/simulator_entity_status.rb +16 -0
- data/lib/checkout_sdk/onboarding_simulator/simulator_set_requirements_due_request.rb +14 -0
- data/lib/checkout_sdk/onboarding_simulator/simulator_set_status_request.rb +13 -0
- data/lib/checkout_sdk/payment_methods/payment_methods.rb +4 -0
- data/lib/checkout_sdk/payment_methods/payment_methods_client.rb +24 -0
- data/lib/checkout_sdk/payment_methods/payment_methods_query.rb +13 -0
- data/lib/checkout_sdk/payments/apple_pay/apple_pay_certificate_request.rb +13 -0
- data/lib/checkout_sdk/payments/apple_pay/apple_pay_client.rb +44 -0
- data/lib/checkout_sdk/payments/apple_pay/apple_pay_enrollment_request.rb +13 -0
- data/lib/checkout_sdk/payments/apple_pay/apple_pay_signing_request.rb +13 -0
- data/lib/checkout_sdk/payments/applepay.rb +14 -0
- data/lib/checkout_sdk/payments/base_payments_client.rb +19 -0
- data/lib/checkout_sdk/payments/cancellation_request.rb +13 -0
- data/lib/checkout_sdk/payments/{sessions/card.rb → card.rb} +4 -1
- data/lib/checkout_sdk/payments/contexts/payment_contexts_client.rb +1 -1
- data/lib/checkout_sdk/payments/destination/bank_account_destination.rb +1 -1
- data/lib/checkout_sdk/payments/destination/card_destination.rb +1 -1
- data/lib/checkout_sdk/payments/destination/id_destination.rb +1 -1
- data/lib/checkout_sdk/payments/destination/token_destination.rb +1 -1
- data/lib/checkout_sdk/payments/exemption.rb +2 -0
- data/lib/checkout_sdk/payments/flow/flow_client.rb +59 -0
- data/lib/checkout_sdk/payments/google_pay/google_pay_client.rb +48 -0
- data/lib/checkout_sdk/payments/google_pay/google_pay_domain_request.rb +13 -0
- data/lib/checkout_sdk/payments/google_pay/google_pay_enrollment_request.rb +17 -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_client.rb +1 -1
- data/lib/checkout_sdk/payments/hosted/hosted_payments_session.rb +51 -23
- data/lib/checkout_sdk/payments/hosted/payment_purpose_type.rb +27 -0
- data/lib/checkout_sdk/payments/links/payment_link.rb +26 -1
- data/lib/checkout_sdk/payments/links/payments_links_client.rb +1 -1
- 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/passenger.rb +20 -6
- data/lib/checkout_sdk/payments/payment_method_configuration.rb +17 -0
- data/lib/checkout_sdk/payments/payment_plan.rb +43 -0
- data/lib/checkout_sdk/payments/payment_request.rb +5 -1
- data/lib/checkout_sdk/payments/payments.rb +48 -4
- data/lib/checkout_sdk/payments/payments_client.rb +1 -1
- data/lib/checkout_sdk/payments/payments_search_request.rb +20 -0
- data/lib/checkout_sdk/payments/previous/destination/card_destination.rb +1 -1
- data/lib/checkout_sdk/payments/previous/destination/id_destination.rb +1 -1
- data/lib/checkout_sdk/payments/previous/destination/token_destination.rb +1 -1
- data/lib/checkout_sdk/payments/previous/payments_client.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/alipay_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/alma_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/bancontact_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/benefit_pay_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/boleto_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/eps_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/fawry_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/giropay_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/ideal_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/klarna_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/knet_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/multi_banco_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/oxxo_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/p24_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/pago_facil_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/paypal_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/poli_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/qpay_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/rapi_pago_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/apm/sofort_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/card_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/customer_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/d_local_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/id_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/network_token_source.rb +1 -1
- data/lib/checkout_sdk/payments/previous/source/token_source.rb +1 -1
- data/lib/checkout_sdk/payments/processing_data.rb +45 -0
- data/lib/checkout_sdk/payments/processing_settings.rb +14 -1
- data/lib/checkout_sdk/payments/product.rb +14 -1
- data/lib/checkout_sdk/payments/product_item_type.rb +11 -0
- data/lib/checkout_sdk/payments/product_sub_type.rb +13 -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/corporate_sender.rb +1 -1
- data/lib/checkout_sdk/payments/sender/government_sender.rb +4 -1
- data/lib/checkout_sdk/payments/sender/individual_sender.rb +4 -1
- data/lib/checkout_sdk/payments/sender/instrument_sender.rb +1 -1
- data/lib/checkout_sdk/payments/sessions/payment_sessions_client.rb +13 -1
- data/lib/checkout_sdk/payments/sessions/payment_sessions_request.rb +11 -1
- data/lib/checkout_sdk/payments/sessions/store_payment_details_type.rb +1 -0
- data/lib/checkout_sdk/payments/setups/account_funding_transaction_identification.rb +17 -0
- data/lib/checkout_sdk/payments/setups/account_funding_transaction_identification_type.rb +15 -0
- data/lib/checkout_sdk/payments/setups/account_funding_transaction_purpose.rb +29 -0
- data/lib/checkout_sdk/payments/setups/account_funding_transaction_recipient.rb +26 -0
- data/lib/checkout_sdk/payments/setups/account_funding_transaction_sender.rb +29 -0
- data/lib/checkout_sdk/payments/setups/bacs_payment_method.rb +41 -0
- data/lib/checkout_sdk/payments/setups/blik_payment_method.rb +20 -0
- data/lib/checkout_sdk/payments/setups/card_present_payment_method.rb +35 -0
- data/lib/checkout_sdk/payments/setups/pay_by_bank_payment_method.rb +24 -0
- data/lib/checkout_sdk/payments/setups/payment_setup_account_funding_transaction.rb +20 -0
- data/lib/checkout_sdk/payments/setups/payment_setups_client.rb +75 -0
- data/lib/checkout_sdk/payments/setups/stablecoin_payment_method.rb +16 -0
- data/lib/checkout_sdk/payments/source/apm/ach_source.rb +27 -0
- data/lib/checkout_sdk/payments/source/apm/after_pay_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/alma_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/bancontact_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/benefit_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/bizum_source.rb +15 -0
- data/lib/checkout_sdk/payments/source/apm/blik_source.rb +31 -0
- data/lib/checkout_sdk/payments/source/apm/cv_connect_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/eps_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/fawry_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/giropay_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/ideal_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/illicado_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/klarna_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/knet_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/mbway_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/multi_banco_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/octopus_source.rb +11 -0
- data/lib/checkout_sdk/payments/source/apm/p24_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/paypal_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/plaid_source.rb +17 -0
- data/lib/checkout_sdk/payments/source/apm/post_finance_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/qpay_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/sepa_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/sequra_source.rb +15 -0
- data/lib/checkout_sdk/payments/source/apm/sofort_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/stcpay_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/tamara_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/trustly_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/apm/we_chat_pay_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/bank_account_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/card_source.rb +5 -2
- data/lib/checkout_sdk/payments/source/currency_account_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/customer_source.rb +5 -2
- data/lib/checkout_sdk/payments/source/entity_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/id_source.rb +5 -2
- data/lib/checkout_sdk/payments/source/network_token_source.rb +8 -2
- data/lib/checkout_sdk/payments/source/provider_token_source.rb +1 -1
- data/lib/checkout_sdk/payments/source/token_source.rb +5 -2
- data/lib/checkout_sdk/reports/reports_client.rb +1 -1
- data/lib/checkout_sdk/risk/source/card_source.rb +1 -1
- data/lib/checkout_sdk/risk/source/customer_source.rb +1 -1
- data/lib/checkout_sdk/risk/source/id_source.rb +1 -1
- data/lib/checkout_sdk/risk/source/token_source.rb +1 -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/app_session.rb +1 -1
- data/lib/checkout_sdk/sessions/channel/browser_session.rb +5 -2
- 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/completion/hosted_completion_info.rb +1 -1
- data/lib/checkout_sdk/sessions/completion/non_hosted_completion_info.rb +1 -1
- data/lib/checkout_sdk/sessions/device_information.rb +17 -0
- 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 +26 -2
- data/lib/checkout_sdk/sessions/sessions.rb +10 -0
- data/lib/checkout_sdk/sessions/sessions_client.rb +2 -2
- data/lib/checkout_sdk/sessions/source/card_source.rb +3 -2
- data/lib/checkout_sdk/sessions/source/id_source.rb +1 -1
- data/lib/checkout_sdk/sessions/source/network_token_source.rb +1 -1
- data/lib/checkout_sdk/sessions/source/token_source.rb +1 -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/sources/sepa_source_request.rb +1 -1
- data/lib/checkout_sdk/sources/sources_client.rb +1 -1
- data/lib/checkout_sdk/standalone_account_updater/account_updater_card.rb +17 -0
- data/lib/checkout_sdk/standalone_account_updater/account_updater_instrument.rb +13 -0
- data/lib/checkout_sdk/standalone_account_updater/account_updater_request.rb +13 -0
- data/lib/checkout_sdk/standalone_account_updater/account_updater_source_options.rb +15 -0
- data/lib/checkout_sdk/standalone_account_updater/standalone_account_updater.rb +7 -0
- data/lib/checkout_sdk/standalone_account_updater/standalone_account_updater_client.rb +29 -0
- data/lib/checkout_sdk/tokens/apple_pay_token_request.rb +1 -1
- data/lib/checkout_sdk/tokens/google_pay_token_request.rb +1 -1
- data/lib/checkout_sdk/tokens/token_metadata_billing_address.rb +16 -0
- data/lib/checkout_sdk/tokens/token_metadata_response.rb +55 -0
- data/lib/checkout_sdk/tokens/tokens.rb +2 -0
- data/lib/checkout_sdk/tokens/tokens_client.rb +11 -0
- data/lib/checkout_sdk/transfers/create_transfer.rb +5 -5
- data/lib/checkout_sdk/transfers/transfer_source.rb +4 -1
- data/lib/checkout_sdk/transfers/transfers_client.rb +2 -2
- data/lib/checkout_sdk/version.rb +1 -1
- data/lib/checkout_sdk/workflows/entity_workflow_condition.rb +1 -1
- data/lib/checkout_sdk/workflows/event_workflow_condition.rb +1 -1
- data/lib/checkout_sdk/workflows/processing_channel_workflow_condition.rb +1 -1
- data/lib/checkout_sdk/workflows/webhook_workflow_action.rb +1 -1
- data/lib/checkout_sdk/workflows/workflows_client.rb +1 -1
- data/lib/checkout_sdk.rb +8 -0
- metadata +194 -19
- data/lib/checkout_sdk/payments/passenger_name.rb +0 -11
- data/lib/checkout_sdk/payments/sessions/payment_method_configuration.rb +0 -11
|
@@ -6,9 +6,12 @@ module CheckoutSdk
|
|
|
6
6
|
# @return [String]
|
|
7
7
|
# @!attribute amount
|
|
8
8
|
# @return [Integer]
|
|
9
|
+
# @!attribute currency
|
|
10
|
+
# @return [CheckoutSdk::Common::Currency]
|
|
9
11
|
class TransferSource
|
|
10
12
|
attr_accessor :id,
|
|
11
|
-
:amount
|
|
13
|
+
:amount,
|
|
14
|
+
:currency
|
|
12
15
|
end
|
|
13
16
|
end
|
|
14
17
|
end
|
|
@@ -13,8 +13,8 @@ module CheckoutSdk
|
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
# @param [Hash, CreateTransfer] create_transfer
|
|
16
|
-
# @param [String
|
|
17
|
-
def initiate_transfer_of_funds(create_transfer, idempotency_key
|
|
16
|
+
# @param [String] idempotency_key
|
|
17
|
+
def initiate_transfer_of_funds(create_transfer, idempotency_key)
|
|
18
18
|
api_client.invoke_post(TRANSFERS, sdk_authorization, create_transfer, idempotency_key)
|
|
19
19
|
end
|
|
20
20
|
|
data/lib/checkout_sdk/version.rb
CHANGED
data/lib/checkout_sdk.rb
CHANGED
|
@@ -67,6 +67,14 @@ require 'checkout_sdk/transfers/transfers'
|
|
|
67
67
|
require 'checkout_sdk/metadata/metadata'
|
|
68
68
|
require 'checkout_sdk/financial/financial'
|
|
69
69
|
require 'checkout_sdk/issuing/issuing'
|
|
70
|
+
require 'checkout_sdk/forward/forward'
|
|
71
|
+
require 'checkout_sdk/onboarding_simulator/onboarding_simulator'
|
|
72
|
+
require 'checkout_sdk/agentic_commerce/agentic_commerce'
|
|
73
|
+
require 'checkout_sdk/compliance_requests/compliance_requests'
|
|
74
|
+
require 'checkout_sdk/standalone_account_updater/standalone_account_updater'
|
|
75
|
+
require 'checkout_sdk/network_tokens/network_tokens'
|
|
76
|
+
require 'checkout_sdk/payment_methods/payment_methods'
|
|
77
|
+
require 'checkout_sdk/identities/identities'
|
|
70
78
|
|
|
71
79
|
# Checkout modules (previous)
|
|
72
80
|
require 'checkout_sdk/sources/sources'
|
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.9.1
|
|
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: 2026-07-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -44,56 +44,70 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 1.
|
|
47
|
+
version: '1.82'
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 1.
|
|
54
|
+
version: '1.82'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: overcommit
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0.60'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0.60'
|
|
55
69
|
- !ruby/object:Gem::Dependency
|
|
56
70
|
name: faraday
|
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
|
58
72
|
requirements:
|
|
59
73
|
- - ">="
|
|
60
74
|
- !ruby/object:Gem::Version
|
|
61
|
-
version:
|
|
75
|
+
version: '2.0'
|
|
62
76
|
type: :runtime
|
|
63
77
|
prerelease: false
|
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
79
|
requirements:
|
|
66
80
|
- - ">="
|
|
67
81
|
- !ruby/object:Gem::Version
|
|
68
|
-
version:
|
|
82
|
+
version: '2.0'
|
|
69
83
|
- !ruby/object:Gem::Dependency
|
|
70
84
|
name: faraday-follow_redirects
|
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
|
72
86
|
requirements:
|
|
73
87
|
- - "~>"
|
|
74
88
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 0.
|
|
89
|
+
version: '0.5'
|
|
76
90
|
type: :runtime
|
|
77
91
|
prerelease: false
|
|
78
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
93
|
requirements:
|
|
80
94
|
- - "~>"
|
|
81
95
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 0.
|
|
96
|
+
version: '0.5'
|
|
83
97
|
- !ruby/object:Gem::Dependency
|
|
84
98
|
name: faraday-multipart
|
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
|
86
100
|
requirements:
|
|
87
101
|
- - "~>"
|
|
88
102
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: 1.
|
|
103
|
+
version: '1.2'
|
|
90
104
|
type: :runtime
|
|
91
105
|
prerelease: false
|
|
92
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
107
|
requirements:
|
|
94
108
|
- - "~>"
|
|
95
109
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: 1.
|
|
110
|
+
version: '1.2'
|
|
97
111
|
- !ruby/object:Gem::Dependency
|
|
98
112
|
name: mime-types
|
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -117,8 +131,10 @@ executables: []
|
|
|
117
131
|
extensions: []
|
|
118
132
|
extra_rdoc_files: []
|
|
119
133
|
files:
|
|
134
|
+
- ".overcommit.yml"
|
|
120
135
|
- ".rspec"
|
|
121
136
|
- ".rubocop.yml"
|
|
137
|
+
- ".ruby-version"
|
|
122
138
|
- CODE_OF_CONDUCT.md
|
|
123
139
|
- Gemfile
|
|
124
140
|
- LICENSE.md
|
|
@@ -127,29 +143,45 @@ files:
|
|
|
127
143
|
- lib/checkout_sdk.rb
|
|
128
144
|
- lib/checkout_sdk/abstract_checkout_sdk_builder.rb
|
|
129
145
|
- lib/checkout_sdk/accounts/account_holder.rb
|
|
146
|
+
- lib/checkout_sdk/accounts/account_holder_corporate.rb
|
|
147
|
+
- lib/checkout_sdk/accounts/account_holder_individual.rb
|
|
130
148
|
- lib/checkout_sdk/accounts/accounts.rb
|
|
131
149
|
- lib/checkout_sdk/accounts/accounts_client.rb
|
|
150
|
+
- lib/checkout_sdk/accounts/additional_document.rb
|
|
151
|
+
- lib/checkout_sdk/accounts/additional_info.rb
|
|
152
|
+
- lib/checkout_sdk/accounts/articles_of_association_type.rb
|
|
153
|
+
- lib/checkout_sdk/accounts/bank_verification.rb
|
|
154
|
+
- lib/checkout_sdk/accounts/bank_verification_type.rb
|
|
132
155
|
- lib/checkout_sdk/accounts/business_type.rb
|
|
133
156
|
- lib/checkout_sdk/accounts/company.rb
|
|
134
157
|
- lib/checkout_sdk/accounts/company_verification.rb
|
|
135
158
|
- lib/checkout_sdk/accounts/company_verification_type.rb
|
|
136
159
|
- lib/checkout_sdk/accounts/contact_details.rb
|
|
137
160
|
- lib/checkout_sdk/accounts/date_of_birth.rb
|
|
161
|
+
- lib/checkout_sdk/accounts/date_of_incorporation.rb
|
|
138
162
|
- lib/checkout_sdk/accounts/document.rb
|
|
139
163
|
- lib/checkout_sdk/accounts/document_type.rb
|
|
140
164
|
- lib/checkout_sdk/accounts/entity_document.rb
|
|
141
165
|
- lib/checkout_sdk/accounts/entity_email_addresses.rb
|
|
166
|
+
- lib/checkout_sdk/accounts/entity_files_request.rb
|
|
142
167
|
- lib/checkout_sdk/accounts/entity_financial_details.rb
|
|
143
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
|
|
144
173
|
- lib/checkout_sdk/accounts/file_request.rb
|
|
145
|
-
- lib/checkout_sdk/accounts/
|
|
174
|
+
- lib/checkout_sdk/accounts/financial_verification.rb
|
|
175
|
+
- lib/checkout_sdk/accounts/financial_verification_type.rb
|
|
146
176
|
- lib/checkout_sdk/accounts/identification.rb
|
|
147
177
|
- lib/checkout_sdk/accounts/individual.rb
|
|
148
178
|
- lib/checkout_sdk/accounts/instrument_details.rb
|
|
179
|
+
- lib/checkout_sdk/accounts/instrument_details_ach.rb
|
|
149
180
|
- lib/checkout_sdk/accounts/instrument_details_card_token.rb
|
|
150
181
|
- lib/checkout_sdk/accounts/instrument_details_faster_payments.rb
|
|
151
182
|
- lib/checkout_sdk/accounts/instrument_details_sepa.rb
|
|
152
183
|
- lib/checkout_sdk/accounts/instrument_document.rb
|
|
184
|
+
- lib/checkout_sdk/accounts/invitee.rb
|
|
153
185
|
- lib/checkout_sdk/accounts/onboard_entity.rb
|
|
154
186
|
- lib/checkout_sdk/accounts/onboard_sub_entity_documents.rb
|
|
155
187
|
- lib/checkout_sdk/accounts/payment_instrument.rb
|
|
@@ -157,17 +189,36 @@ files:
|
|
|
157
189
|
- lib/checkout_sdk/accounts/payment_instruments_query.rb
|
|
158
190
|
- lib/checkout_sdk/accounts/phone.rb
|
|
159
191
|
- lib/checkout_sdk/accounts/place_of_birth.rb
|
|
192
|
+
- lib/checkout_sdk/accounts/processing_details.rb
|
|
160
193
|
- lib/checkout_sdk/accounts/profile.rb
|
|
194
|
+
- lib/checkout_sdk/accounts/proof_of_legality.rb
|
|
195
|
+
- lib/checkout_sdk/accounts/proof_of_legality_type.rb
|
|
196
|
+
- lib/checkout_sdk/accounts/proof_of_principal_address.rb
|
|
197
|
+
- lib/checkout_sdk/accounts/proof_of_principal_address_type.rb
|
|
161
198
|
- lib/checkout_sdk/accounts/representative.rb
|
|
199
|
+
- lib/checkout_sdk/accounts/reserve_rule_create_request.rb
|
|
200
|
+
- lib/checkout_sdk/accounts/reserve_rule_holding_duration.rb
|
|
201
|
+
- lib/checkout_sdk/accounts/reserve_rule_update_request.rb
|
|
202
|
+
- lib/checkout_sdk/accounts/rolling_reserve_rule.rb
|
|
162
203
|
- lib/checkout_sdk/accounts/schedule_frequency_daily.rb
|
|
163
204
|
- lib/checkout_sdk/accounts/schedule_frequency_monthly.rb
|
|
164
205
|
- lib/checkout_sdk/accounts/schedule_frequency_type.rb
|
|
165
206
|
- lib/checkout_sdk/accounts/schedule_frequency_weekly.rb
|
|
166
207
|
- lib/checkout_sdk/accounts/schedule_request.rb
|
|
208
|
+
- lib/checkout_sdk/accounts/shareholder_structure.rb
|
|
209
|
+
- lib/checkout_sdk/accounts/shareholder_structure_type.rb
|
|
210
|
+
- lib/checkout_sdk/accounts/submitter.rb
|
|
167
211
|
- lib/checkout_sdk/accounts/tax_verification.rb
|
|
168
212
|
- lib/checkout_sdk/accounts/tax_verification_type.rb
|
|
169
213
|
- lib/checkout_sdk/accounts/update_payment_instrument_request.rb
|
|
170
214
|
- lib/checkout_sdk/accounts/update_schedule.rb
|
|
215
|
+
- lib/checkout_sdk/agentic_commerce/agentic_commerce.rb
|
|
216
|
+
- lib/checkout_sdk/agentic_commerce/agentic_commerce_client.rb
|
|
217
|
+
- lib/checkout_sdk/agentic_commerce/delegated_payment_allowance.rb
|
|
218
|
+
- lib/checkout_sdk/agentic_commerce/delegated_payment_billing_address.rb
|
|
219
|
+
- lib/checkout_sdk/agentic_commerce/delegated_payment_method_card.rb
|
|
220
|
+
- lib/checkout_sdk/agentic_commerce/delegated_payment_request.rb
|
|
221
|
+
- lib/checkout_sdk/agentic_commerce/delegated_payment_risk_signal.rb
|
|
171
222
|
- lib/checkout_sdk/api_client.rb
|
|
172
223
|
- lib/checkout_sdk/apm/apm.rb
|
|
173
224
|
- lib/checkout_sdk/apm/ideal/ideal_client.rb
|
|
@@ -178,8 +229,12 @@ files:
|
|
|
178
229
|
- lib/checkout_sdk/apm/previous/klarna/order_capture_request.rb
|
|
179
230
|
- lib/checkout_sdk/apm/previous/sepa/sepa_client.rb
|
|
180
231
|
- lib/checkout_sdk/authorization_type.rb
|
|
232
|
+
- lib/checkout_sdk/balances/balance_values.rb
|
|
181
233
|
- lib/checkout_sdk/balances/balances.rb
|
|
182
234
|
- lib/checkout_sdk/balances/balances_client.rb
|
|
235
|
+
- lib/checkout_sdk/balances/balances_query.rb
|
|
236
|
+
- lib/checkout_sdk/balances/collateral_breakdown.rb
|
|
237
|
+
- lib/checkout_sdk/balances/currency_account_balance.rb
|
|
183
238
|
- lib/checkout_sdk/checkout_api.rb
|
|
184
239
|
- lib/checkout_sdk/checkout_configuration.rb
|
|
185
240
|
- lib/checkout_sdk/checkout_oauth_sdk_builder.rb
|
|
@@ -187,23 +242,30 @@ files:
|
|
|
187
242
|
- lib/checkout_sdk/checkout_static_keys_sdk_builder.rb
|
|
188
243
|
- lib/checkout_sdk/checkout_utils.rb
|
|
189
244
|
- lib/checkout_sdk/client.rb
|
|
245
|
+
- lib/checkout_sdk/common/account_change_indicator_type.rb
|
|
190
246
|
- lib/checkout_sdk/common/account_holder.rb
|
|
191
247
|
- lib/checkout_sdk/common/account_holder_identification.rb
|
|
192
248
|
- lib/checkout_sdk/common/account_holder_identification_type.rb
|
|
193
249
|
- lib/checkout_sdk/common/account_holder_type.rb
|
|
250
|
+
- lib/checkout_sdk/common/account_password_change_indicator_type.rb
|
|
194
251
|
- lib/checkout_sdk/common/account_type.rb
|
|
252
|
+
- lib/checkout_sdk/common/account_type_card_product_type.rb
|
|
195
253
|
- lib/checkout_sdk/common/address.rb
|
|
196
254
|
- lib/checkout_sdk/common/amount_allocations.rb
|
|
197
255
|
- lib/checkout_sdk/common/bank_details.rb
|
|
256
|
+
- lib/checkout_sdk/common/cardholder_account_age_indicator_type.rb
|
|
198
257
|
- lib/checkout_sdk/common/challenge_indicator.rb
|
|
199
258
|
- lib/checkout_sdk/common/commission.rb
|
|
200
259
|
- lib/checkout_sdk/common/common.rb
|
|
201
260
|
- lib/checkout_sdk/common/country.rb
|
|
202
261
|
- lib/checkout_sdk/common/currency.rb
|
|
203
262
|
- lib/checkout_sdk/common/customer_request.rb
|
|
263
|
+
- lib/checkout_sdk/common/customer_retry.rb
|
|
204
264
|
- lib/checkout_sdk/common/date_range_query_filter.rb
|
|
265
|
+
- lib/checkout_sdk/common/destination.rb
|
|
205
266
|
- lib/checkout_sdk/common/file_purpose.rb
|
|
206
267
|
- lib/checkout_sdk/common/file_request.rb
|
|
268
|
+
- lib/checkout_sdk/common/headers.rb
|
|
207
269
|
- lib/checkout_sdk/common/instrument_type.rb
|
|
208
270
|
- lib/checkout_sdk/common/marketplace_data.rb
|
|
209
271
|
- lib/checkout_sdk/common/payment_source_type.rb
|
|
@@ -211,6 +273,11 @@ files:
|
|
|
211
273
|
- lib/checkout_sdk/common/product.rb
|
|
212
274
|
- lib/checkout_sdk/common/shipping_info.rb
|
|
213
275
|
- lib/checkout_sdk/common/update_customer_request.rb
|
|
276
|
+
- lib/checkout_sdk/compliance_requests/compliance_request_responded_field.rb
|
|
277
|
+
- lib/checkout_sdk/compliance_requests/compliance_request_responded_fields.rb
|
|
278
|
+
- lib/checkout_sdk/compliance_requests/compliance_requests.rb
|
|
279
|
+
- lib/checkout_sdk/compliance_requests/compliance_requests_client.rb
|
|
280
|
+
- lib/checkout_sdk/compliance_requests/compliance_response_request.rb
|
|
214
281
|
- lib/checkout_sdk/customers/customer_request.rb
|
|
215
282
|
- lib/checkout_sdk/customers/customers.rb
|
|
216
283
|
- lib/checkout_sdk/customers/customers_client.rb
|
|
@@ -233,7 +300,28 @@ files:
|
|
|
233
300
|
- lib/checkout_sdk/forex/forex_source.rb
|
|
234
301
|
- lib/checkout_sdk/forex/quote_request.rb
|
|
235
302
|
- lib/checkout_sdk/forex/rates_query_filter.rb
|
|
303
|
+
- lib/checkout_sdk/forward/create_secret_request.rb
|
|
304
|
+
- lib/checkout_sdk/forward/forward.rb
|
|
305
|
+
- lib/checkout_sdk/forward/forward_client.rb
|
|
306
|
+
- lib/checkout_sdk/forward/update_secret_request.rb
|
|
236
307
|
- lib/checkout_sdk/http_metadata.rb
|
|
308
|
+
- lib/checkout_sdk/identities/aml_screening/aml_screening_client.rb
|
|
309
|
+
- lib/checkout_sdk/identities/aml_screening/aml_search_parameters.rb
|
|
310
|
+
- lib/checkout_sdk/identities/aml_screening/aml_verification_request.rb
|
|
311
|
+
- lib/checkout_sdk/identities/applicants/applicants_client.rb
|
|
312
|
+
- lib/checkout_sdk/identities/applicants/create_applicant_request.rb
|
|
313
|
+
- lib/checkout_sdk/identities/applicants/update_applicant_request.rb
|
|
314
|
+
- lib/checkout_sdk/identities/face_authentication/face_authentication_attempt_request.rb
|
|
315
|
+
- lib/checkout_sdk/identities/face_authentication/face_authentication_client.rb
|
|
316
|
+
- lib/checkout_sdk/identities/face_authentication/face_authentication_request.rb
|
|
317
|
+
- lib/checkout_sdk/identities/id_document_verification/id_document_verification_client.rb
|
|
318
|
+
- lib/checkout_sdk/identities/id_document_verification/id_document_verification_request.rb
|
|
319
|
+
- lib/checkout_sdk/identities/identities.rb
|
|
320
|
+
- lib/checkout_sdk/identities/identity_verification/identity_verification_attempt_request.rb
|
|
321
|
+
- lib/checkout_sdk/identities/identity_verification/identity_verification_client.rb
|
|
322
|
+
- lib/checkout_sdk/identities/identity_verification/identity_verification_request.rb
|
|
323
|
+
- lib/checkout_sdk/identities/identity_verification/idv_client_information.rb
|
|
324
|
+
- lib/checkout_sdk/identities/identity_verification/idv_declared_data.rb
|
|
237
325
|
- lib/checkout_sdk/instruments/base_instruments_client.rb
|
|
238
326
|
- lib/checkout_sdk/instruments/create/instrument.rb
|
|
239
327
|
- lib/checkout_sdk/instruments/create/instrument_bank_account.rb
|
|
@@ -251,8 +339,25 @@ files:
|
|
|
251
339
|
- lib/checkout_sdk/instruments/update/update_instrument_bank_account.rb
|
|
252
340
|
- lib/checkout_sdk/instruments/update/update_instrument_card.rb
|
|
253
341
|
- lib/checkout_sdk/instruments/update/update_instrument_token.rb
|
|
342
|
+
- lib/checkout_sdk/issuing/add_control_group_request.rb
|
|
343
|
+
- lib/checkout_sdk/issuing/add_control_profile_request.rb
|
|
344
|
+
- lib/checkout_sdk/issuing/amend_dispute_request.rb
|
|
345
|
+
- lib/checkout_sdk/issuing/cardholder_access_token_request.rb
|
|
346
|
+
- lib/checkout_sdk/issuing/create_dispute_request.rb
|
|
347
|
+
- lib/checkout_sdk/issuing/escalate_dispute_request.rb
|
|
254
348
|
- lib/checkout_sdk/issuing/issuing.rb
|
|
349
|
+
- lib/checkout_sdk/issuing/issuing_address.rb
|
|
255
350
|
- lib/checkout_sdk/issuing/issuing_client.rb
|
|
351
|
+
- lib/checkout_sdk/issuing/issuing_dispute_fraud_details.rb
|
|
352
|
+
- lib/checkout_sdk/issuing/issuing_dispute_fraud_type.rb
|
|
353
|
+
- lib/checkout_sdk/issuing/issuing_phone_number.rb
|
|
354
|
+
- lib/checkout_sdk/issuing/oob_authentication_request.rb
|
|
355
|
+
- lib/checkout_sdk/issuing/oob_simulate_transaction_details.rb
|
|
356
|
+
- lib/checkout_sdk/issuing/simulate_refund_request.rb
|
|
357
|
+
- lib/checkout_sdk/issuing/submit_dispute_request.rb
|
|
358
|
+
- lib/checkout_sdk/issuing/update_card_request.rb
|
|
359
|
+
- lib/checkout_sdk/issuing/update_cardholder_request.rb
|
|
360
|
+
- lib/checkout_sdk/issuing/update_control_profile_request.rb
|
|
256
361
|
- lib/checkout_sdk/json_serializer.rb
|
|
257
362
|
- lib/checkout_sdk/metadata/metadata.rb
|
|
258
363
|
- lib/checkout_sdk/metadata/metadata_client.rb
|
|
@@ -264,10 +369,29 @@ files:
|
|
|
264
369
|
- lib/checkout_sdk/metadata/source/metadata_source.rb
|
|
265
370
|
- lib/checkout_sdk/metadata/source/metadata_source_type.rb
|
|
266
371
|
- lib/checkout_sdk/metadata/source/token_metadata_source.rb
|
|
372
|
+
- lib/checkout_sdk/network_tokens/network_token_cryptogram_request.rb
|
|
373
|
+
- lib/checkout_sdk/network_tokens/network_token_source_card.rb
|
|
374
|
+
- lib/checkout_sdk/network_tokens/network_token_source_id.rb
|
|
375
|
+
- lib/checkout_sdk/network_tokens/network_tokens.rb
|
|
376
|
+
- lib/checkout_sdk/network_tokens/network_tokens_client.rb
|
|
377
|
+
- lib/checkout_sdk/network_tokens/provision_network_token_request.rb
|
|
267
378
|
- lib/checkout_sdk/oauth_access_token.rb
|
|
268
379
|
- lib/checkout_sdk/oauth_scopes.rb
|
|
269
380
|
- lib/checkout_sdk/oauth_sdk_credentials.rb
|
|
381
|
+
- lib/checkout_sdk/onboarding_simulator/onboarding_simulator.rb
|
|
382
|
+
- lib/checkout_sdk/onboarding_simulator/onboarding_simulator_client.rb
|
|
383
|
+
- lib/checkout_sdk/onboarding_simulator/simulator_entity_status.rb
|
|
384
|
+
- lib/checkout_sdk/onboarding_simulator/simulator_set_requirements_due_request.rb
|
|
385
|
+
- lib/checkout_sdk/onboarding_simulator/simulator_set_status_request.rb
|
|
386
|
+
- lib/checkout_sdk/payment_methods/payment_methods.rb
|
|
387
|
+
- lib/checkout_sdk/payment_methods/payment_methods_client.rb
|
|
388
|
+
- lib/checkout_sdk/payment_methods/payment_methods_query.rb
|
|
270
389
|
- lib/checkout_sdk/payments/airline_data.rb
|
|
390
|
+
- lib/checkout_sdk/payments/apple_pay/apple_pay_certificate_request.rb
|
|
391
|
+
- lib/checkout_sdk/payments/apple_pay/apple_pay_client.rb
|
|
392
|
+
- lib/checkout_sdk/payments/apple_pay/apple_pay_enrollment_request.rb
|
|
393
|
+
- lib/checkout_sdk/payments/apple_pay/apple_pay_signing_request.rb
|
|
394
|
+
- lib/checkout_sdk/payments/applepay.rb
|
|
271
395
|
- lib/checkout_sdk/payments/authorization_request.rb
|
|
272
396
|
- lib/checkout_sdk/payments/authorization_type.rb
|
|
273
397
|
- lib/checkout_sdk/payments/base_payments_client.rb
|
|
@@ -275,8 +399,10 @@ files:
|
|
|
275
399
|
- lib/checkout_sdk/payments/billing_information.rb
|
|
276
400
|
- lib/checkout_sdk/payments/billing_plan.rb
|
|
277
401
|
- lib/checkout_sdk/payments/billing_plan_type.rb
|
|
402
|
+
- lib/checkout_sdk/payments/cancellation_request.rb
|
|
278
403
|
- lib/checkout_sdk/payments/capture_request.rb
|
|
279
404
|
- lib/checkout_sdk/payments/capture_type.rb
|
|
405
|
+
- lib/checkout_sdk/payments/card.rb
|
|
280
406
|
- lib/checkout_sdk/payments/charge_bearer.rb
|
|
281
407
|
- lib/checkout_sdk/payments/contexts/payment_contexts_client.rb
|
|
282
408
|
- lib/checkout_sdk/payments/d_local_installments.rb
|
|
@@ -289,19 +415,29 @@ files:
|
|
|
289
415
|
- lib/checkout_sdk/payments/destination/token_destination.rb
|
|
290
416
|
- lib/checkout_sdk/payments/exemption.rb
|
|
291
417
|
- lib/checkout_sdk/payments/flight_leg_details.rb
|
|
418
|
+
- lib/checkout_sdk/payments/flow/flow_client.rb
|
|
419
|
+
- lib/checkout_sdk/payments/google_pay/google_pay_client.rb
|
|
420
|
+
- lib/checkout_sdk/payments/google_pay/google_pay_domain_request.rb
|
|
421
|
+
- lib/checkout_sdk/payments/google_pay/google_pay_enrollment_request.rb
|
|
422
|
+
- lib/checkout_sdk/payments/googlepay.rb
|
|
423
|
+
- lib/checkout_sdk/payments/hosted/hosted_payment_instruction.rb
|
|
292
424
|
- lib/checkout_sdk/payments/hosted/hosted_payments_client.rb
|
|
293
425
|
- lib/checkout_sdk/payments/hosted/hosted_payments_session.rb
|
|
426
|
+
- lib/checkout_sdk/payments/hosted/payment_purpose_type.rb
|
|
294
427
|
- lib/checkout_sdk/payments/instruction_scheme.rb
|
|
295
428
|
- lib/checkout_sdk/payments/links/payment_link.rb
|
|
296
429
|
- lib/checkout_sdk/payments/links/payments_links_client.rb
|
|
430
|
+
- lib/checkout_sdk/payments/locale_type.rb
|
|
297
431
|
- lib/checkout_sdk/payments/merchant_initiated_reason.rb
|
|
298
432
|
- lib/checkout_sdk/payments/network_token_type.rb
|
|
299
433
|
- lib/checkout_sdk/payments/os_type.rb
|
|
434
|
+
- lib/checkout_sdk/payments/partial_authorization.rb
|
|
300
435
|
- lib/checkout_sdk/payments/passenger.rb
|
|
301
|
-
- lib/checkout_sdk/payments/passenger_name.rb
|
|
302
436
|
- lib/checkout_sdk/payments/payer.rb
|
|
303
437
|
- lib/checkout_sdk/payments/payment_instruction.rb
|
|
438
|
+
- lib/checkout_sdk/payments/payment_method_configuration.rb
|
|
304
439
|
- lib/checkout_sdk/payments/payment_method_details.rb
|
|
440
|
+
- lib/checkout_sdk/payments/payment_plan.rb
|
|
305
441
|
- lib/checkout_sdk/payments/payment_recipient.rb
|
|
306
442
|
- lib/checkout_sdk/payments/payment_request.rb
|
|
307
443
|
- lib/checkout_sdk/payments/payment_retry_request.rb
|
|
@@ -310,6 +446,7 @@ files:
|
|
|
310
446
|
- lib/checkout_sdk/payments/payments.rb
|
|
311
447
|
- lib/checkout_sdk/payments/payments_client.rb
|
|
312
448
|
- lib/checkout_sdk/payments/payments_query_filter.rb
|
|
449
|
+
- lib/checkout_sdk/payments/payments_search_request.rb
|
|
313
450
|
- lib/checkout_sdk/payments/payout_billing_descriptor.rb
|
|
314
451
|
- lib/checkout_sdk/payments/payout_request.rb
|
|
315
452
|
- lib/checkout_sdk/payments/preferred_schema.rb
|
|
@@ -350,9 +487,13 @@ files:
|
|
|
350
487
|
- lib/checkout_sdk/payments/previous/source/network_token_source.rb
|
|
351
488
|
- lib/checkout_sdk/payments/previous/source/payment_source.rb
|
|
352
489
|
- lib/checkout_sdk/payments/previous/source/token_source.rb
|
|
490
|
+
- lib/checkout_sdk/payments/processing_data.rb
|
|
353
491
|
- lib/checkout_sdk/payments/processing_settings.rb
|
|
354
492
|
- lib/checkout_sdk/payments/product.rb
|
|
493
|
+
- lib/checkout_sdk/payments/product_item_type.rb
|
|
494
|
+
- lib/checkout_sdk/payments/product_sub_type.rb
|
|
355
495
|
- lib/checkout_sdk/payments/product_type.rb
|
|
496
|
+
- lib/checkout_sdk/payments/refund_order.rb
|
|
356
497
|
- lib/checkout_sdk/payments/refund_request.rb
|
|
357
498
|
- lib/checkout_sdk/payments/reverse_request.rb
|
|
358
499
|
- lib/checkout_sdk/payments/risk_request.rb
|
|
@@ -365,19 +506,32 @@ files:
|
|
|
365
506
|
- lib/checkout_sdk/payments/sender/sender_type.rb
|
|
366
507
|
- lib/checkout_sdk/payments/sender/source_of_funds.rb
|
|
367
508
|
- 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
509
|
- lib/checkout_sdk/payments/sessions/payment_methods_type.rb
|
|
371
510
|
- lib/checkout_sdk/payments/sessions/payment_sessions_client.rb
|
|
372
511
|
- lib/checkout_sdk/payments/sessions/payment_sessions_request.rb
|
|
373
512
|
- lib/checkout_sdk/payments/sessions/store_payment_details_type.rb
|
|
513
|
+
- lib/checkout_sdk/payments/setups/account_funding_transaction_identification.rb
|
|
514
|
+
- lib/checkout_sdk/payments/setups/account_funding_transaction_identification_type.rb
|
|
515
|
+
- lib/checkout_sdk/payments/setups/account_funding_transaction_purpose.rb
|
|
516
|
+
- lib/checkout_sdk/payments/setups/account_funding_transaction_recipient.rb
|
|
517
|
+
- lib/checkout_sdk/payments/setups/account_funding_transaction_sender.rb
|
|
518
|
+
- lib/checkout_sdk/payments/setups/bacs_payment_method.rb
|
|
519
|
+
- lib/checkout_sdk/payments/setups/blik_payment_method.rb
|
|
520
|
+
- lib/checkout_sdk/payments/setups/card_present_payment_method.rb
|
|
521
|
+
- lib/checkout_sdk/payments/setups/pay_by_bank_payment_method.rb
|
|
522
|
+
- lib/checkout_sdk/payments/setups/payment_setup_account_funding_transaction.rb
|
|
523
|
+
- lib/checkout_sdk/payments/setups/payment_setups_client.rb
|
|
524
|
+
- lib/checkout_sdk/payments/setups/stablecoin_payment_method.rb
|
|
374
525
|
- lib/checkout_sdk/payments/shipping_details.rb
|
|
375
526
|
- lib/checkout_sdk/payments/shipping_preference.rb
|
|
527
|
+
- lib/checkout_sdk/payments/source/apm/ach_source.rb
|
|
376
528
|
- lib/checkout_sdk/payments/source/apm/after_pay_source.rb
|
|
377
529
|
- lib/checkout_sdk/payments/source/apm/alipay_plus_source.rb
|
|
378
530
|
- lib/checkout_sdk/payments/source/apm/alma_source.rb
|
|
379
531
|
- lib/checkout_sdk/payments/source/apm/bancontact_source.rb
|
|
380
532
|
- lib/checkout_sdk/payments/source/apm/benefit_source.rb
|
|
533
|
+
- lib/checkout_sdk/payments/source/apm/bizum_source.rb
|
|
534
|
+
- lib/checkout_sdk/payments/source/apm/blik_source.rb
|
|
381
535
|
- lib/checkout_sdk/payments/source/apm/cv_connect_source.rb
|
|
382
536
|
- lib/checkout_sdk/payments/source/apm/eps_source.rb
|
|
383
537
|
- lib/checkout_sdk/payments/source/apm/fawry_product.rb
|
|
@@ -389,11 +543,14 @@ files:
|
|
|
389
543
|
- lib/checkout_sdk/payments/source/apm/knet_source.rb
|
|
390
544
|
- lib/checkout_sdk/payments/source/apm/mbway_source.rb
|
|
391
545
|
- lib/checkout_sdk/payments/source/apm/multi_banco_source.rb
|
|
546
|
+
- lib/checkout_sdk/payments/source/apm/octopus_source.rb
|
|
392
547
|
- lib/checkout_sdk/payments/source/apm/p24_source.rb
|
|
393
548
|
- lib/checkout_sdk/payments/source/apm/paypal_source.rb
|
|
549
|
+
- lib/checkout_sdk/payments/source/apm/plaid_source.rb
|
|
394
550
|
- lib/checkout_sdk/payments/source/apm/post_finance_source.rb
|
|
395
551
|
- lib/checkout_sdk/payments/source/apm/qpay_source.rb
|
|
396
552
|
- lib/checkout_sdk/payments/source/apm/sepa_source.rb
|
|
553
|
+
- lib/checkout_sdk/payments/source/apm/sequra_source.rb
|
|
397
554
|
- lib/checkout_sdk/payments/source/apm/sofort_source.rb
|
|
398
555
|
- lib/checkout_sdk/payments/source/apm/stcpay_source.rb
|
|
399
556
|
- lib/checkout_sdk/payments/source/apm/tamara_source.rb
|
|
@@ -452,6 +609,8 @@ files:
|
|
|
452
609
|
- lib/checkout_sdk/sessions/channel/browser_session.rb
|
|
453
610
|
- lib/checkout_sdk/sessions/channel/channel_data.rb
|
|
454
611
|
- lib/checkout_sdk/sessions/channel/channel_data_type.rb
|
|
612
|
+
- lib/checkout_sdk/sessions/channel/merchant_initiated_session.rb
|
|
613
|
+
- lib/checkout_sdk/sessions/channel/request_type.rb
|
|
455
614
|
- lib/checkout_sdk/sessions/channel/sdk_ephemeral_public_key.rb
|
|
456
615
|
- lib/checkout_sdk/sessions/channel/sdk_interface_type.rb
|
|
457
616
|
- lib/checkout_sdk/sessions/channel/three_ds_method_completion.rb
|
|
@@ -461,9 +620,15 @@ files:
|
|
|
461
620
|
- lib/checkout_sdk/sessions/completion/hosted_completion_info.rb
|
|
462
621
|
- lib/checkout_sdk/sessions/completion/non_hosted_completion_info.rb
|
|
463
622
|
- lib/checkout_sdk/sessions/delivery_timeframe.rb
|
|
623
|
+
- lib/checkout_sdk/sessions/device_information.rb
|
|
624
|
+
- lib/checkout_sdk/sessions/initial_transaction.rb
|
|
464
625
|
- lib/checkout_sdk/sessions/installment.rb
|
|
465
626
|
- lib/checkout_sdk/sessions/merchant_risk_info.rb
|
|
627
|
+
- lib/checkout_sdk/sessions/optimization.rb
|
|
628
|
+
- lib/checkout_sdk/sessions/optimized_properties.rb
|
|
629
|
+
- lib/checkout_sdk/sessions/pre_order_purchase_indicator_type.rb
|
|
466
630
|
- lib/checkout_sdk/sessions/recurring.rb
|
|
631
|
+
- lib/checkout_sdk/sessions/reorder_items_indicator_type.rb
|
|
467
632
|
- lib/checkout_sdk/sessions/session_address.rb
|
|
468
633
|
- lib/checkout_sdk/sessions/session_marketplace_data.rb
|
|
469
634
|
- lib/checkout_sdk/sessions/session_request.rb
|
|
@@ -480,6 +645,8 @@ files:
|
|
|
480
645
|
- lib/checkout_sdk/sessions/source/session_source.rb
|
|
481
646
|
- lib/checkout_sdk/sessions/source/token_source.rb
|
|
482
647
|
- lib/checkout_sdk/sessions/three_ds_method_completion_request.rb
|
|
648
|
+
- lib/checkout_sdk/sessions/three_ds_req_auth_method.rb
|
|
649
|
+
- lib/checkout_sdk/sessions/three_ds_requestor_authentication_info.rb
|
|
483
650
|
- lib/checkout_sdk/sessions/transaction_type.rb
|
|
484
651
|
- lib/checkout_sdk/simple_logger.rb
|
|
485
652
|
- lib/checkout_sdk/sources/mandate_type.rb
|
|
@@ -489,6 +656,12 @@ files:
|
|
|
489
656
|
- lib/checkout_sdk/sources/source_type.rb
|
|
490
657
|
- lib/checkout_sdk/sources/sources.rb
|
|
491
658
|
- lib/checkout_sdk/sources/sources_client.rb
|
|
659
|
+
- lib/checkout_sdk/standalone_account_updater/account_updater_card.rb
|
|
660
|
+
- lib/checkout_sdk/standalone_account_updater/account_updater_instrument.rb
|
|
661
|
+
- lib/checkout_sdk/standalone_account_updater/account_updater_request.rb
|
|
662
|
+
- lib/checkout_sdk/standalone_account_updater/account_updater_source_options.rb
|
|
663
|
+
- lib/checkout_sdk/standalone_account_updater/standalone_account_updater.rb
|
|
664
|
+
- lib/checkout_sdk/standalone_account_updater/standalone_account_updater_client.rb
|
|
492
665
|
- lib/checkout_sdk/static_keys_builder.rb
|
|
493
666
|
- lib/checkout_sdk/static_keys_sdk_credentials.rb
|
|
494
667
|
- lib/checkout_sdk/tokens/apple_pay_token_data.rb
|
|
@@ -496,6 +669,8 @@ files:
|
|
|
496
669
|
- lib/checkout_sdk/tokens/card_token_request.rb
|
|
497
670
|
- lib/checkout_sdk/tokens/google_pay_token_data.rb
|
|
498
671
|
- lib/checkout_sdk/tokens/google_pay_token_request.rb
|
|
672
|
+
- lib/checkout_sdk/tokens/token_metadata_billing_address.rb
|
|
673
|
+
- lib/checkout_sdk/tokens/token_metadata_response.rb
|
|
499
674
|
- lib/checkout_sdk/tokens/token_type.rb
|
|
500
675
|
- lib/checkout_sdk/tokens/tokens.rb
|
|
501
676
|
- lib/checkout_sdk/tokens/tokens_client.rb
|
|
@@ -534,7 +709,7 @@ metadata:
|
|
|
534
709
|
homepage_uri: https://www.checkout.com/
|
|
535
710
|
source_code_uri: https://github.com/checkout/checkout-sdk-ruby
|
|
536
711
|
documentation_uri: https://www.checkout.com/docs
|
|
537
|
-
post_install_message:
|
|
712
|
+
post_install_message:
|
|
538
713
|
rdoc_options: []
|
|
539
714
|
require_paths:
|
|
540
715
|
- lib
|
|
@@ -542,15 +717,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
542
717
|
requirements:
|
|
543
718
|
- - ">="
|
|
544
719
|
- !ruby/object:Gem::Version
|
|
545
|
-
version: 2.
|
|
720
|
+
version: 2.7.0
|
|
546
721
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
547
722
|
requirements:
|
|
548
723
|
- - ">="
|
|
549
724
|
- !ruby/object:Gem::Version
|
|
550
725
|
version: '0'
|
|
551
726
|
requirements: []
|
|
552
|
-
rubygems_version: 3.
|
|
553
|
-
signing_key:
|
|
727
|
+
rubygems_version: 3.3.27
|
|
728
|
+
signing_key:
|
|
554
729
|
specification_version: 4
|
|
555
730
|
summary: Ruby wrapper for Checkout API
|
|
556
731
|
test_files: []
|