├── .codecov.yml ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── auto_merge.yml │ ├── codeql.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cuenca ├── __init__.py ├── exc.py ├── http │ ├── __init__.py │ └── client.py ├── jwt.py ├── py.typed ├── resources │ ├── __init__.py │ ├── accounts.py │ ├── api_keys.py │ ├── arpc.py │ ├── balance_entries.py │ ├── base.py │ ├── bill_payments.py │ ├── card_activations.py │ ├── card_transactions.py │ ├── card_validations.py │ ├── cards.py │ ├── cash_references.py │ ├── clabes.py │ ├── commissions.py │ ├── curp_validations.py │ ├── deposits.py │ ├── endpoints.py │ ├── exist_phones.py │ ├── file_batches.py │ ├── files.py │ ├── identities.py │ ├── identity_events.py │ ├── jwt_tokens.py │ ├── kyc_validations.py │ ├── limited_wallets.py │ ├── login_tokens.py │ ├── otps.py │ ├── phone_verification_associations.py │ ├── platforms.py │ ├── postal_codes.py │ ├── questionnaires.py │ ├── resources.py │ ├── savings.py │ ├── service_providers.py │ ├── sessions.py │ ├── statements.py │ ├── terms_of_service.py │ ├── transfers.py │ ├── user_credentials.py │ ├── user_events.py │ ├── user_lists_validation.py │ ├── user_logins.py │ ├── users.py │ ├── users_tos_agreements.py │ ├── verifications.py │ ├── wallet_transactions.py │ ├── webhooks.py │ └── whatsapp_transfers.py └── version.py ├── examples └── batch_transfers.py ├── mypy.ini ├── requirements-test.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── data └── test_file.jpeg ├── http ├── __init__.py ├── cassettes │ ├── test_configures_jwt.yaml │ ├── test_invalid_auth.yaml │ ├── test_no_password.yaml │ ├── test_no_session.yaml │ ├── test_request_expired_token.yaml │ └── test_request_valid_token.yaml ├── conftest.py └── test_client.py ├── resources ├── __init__.py ├── cassettes │ ├── test_api_key_deactivate.yaml │ ├── test_api_keys_create.yaml │ ├── test_api_keys_retrieve.yaml │ ├── test_arpc.yaml │ ├── test_balance_entry_retrieve.yaml │ ├── test_bill_payment.yaml │ ├── test_block_user.yaml │ ├── test_blocked_attemps.yaml │ ├── test_can_not_assign_new_virtual_card.yaml │ ├── test_card_activation.yaml │ ├── test_card_all.yaml │ ├── test_card_can_not_be_updated_if_it_is_deactivated.yaml │ ├── test_card_create.yaml │ ├── test_card_create_dcvv.yaml │ ├── test_card_not_found.yaml │ ├── test_card_one.yaml │ ├── test_card_one_errors.yaml │ ├── test_card_retrieve.yaml │ ├── test_card_retrieve_dcvv.yaml │ ├── test_card_transaction_child_retrieve.yaml │ ├── test_card_transaction_expiration_retrieve.yaml │ ├── test_card_transaction_parent_retrieve.yaml │ ├── test_card_transaction_refund_without_parent_id_retrieve.yaml │ ├── test_card_transaction_retrieve_card.yaml │ ├── test_card_update.yaml │ ├── test_card_update_pin.yaml │ ├── test_card_validations.yaml │ ├── test_cash_reference_all.yaml │ ├── test_cash_reference_retrieve.yaml │ ├── test_clabe_all.yaml │ ├── test_clabe_create.yaml │ ├── test_clabe_retrieve.yaml │ ├── test_commission_retrieve.yaml │ ├── test_commission_retrieve_with_cash_deposit.yaml │ ├── test_commission_retrieve_with_cash_transfer.yaml │ ├── test_complete_flow_wallets.yaml │ ├── test_create_questionnaire.yaml │ ├── test_create_user_validation.yaml │ ├── test_create_user_validation_invalid_inputs.yaml │ ├── test_create_user_validation_with_response.yaml │ ├── test_create_wallet_transaction.yaml │ ├── test_curp_validations_create.yaml │ ├── test_curp_validations_retrieve.yaml │ ├── test_deactivate_card.yaml │ ├── test_deposit_retrieve.yaml │ ├── test_endpoint_create.yaml │ ├── test_endpoint_create_another.yaml │ ├── test_endpoint_deactivate.yaml │ ├── test_endpoint_retrieve.yaml │ ├── test_endpoint_update.yaml │ ├── test_exist_phone_retrieve.yaml │ ├── test_file_batch_create.yaml │ ├── test_file_download.yaml │ ├── test_file_download_only_bytes.yaml │ ├── test_file_error_on_xml_pdf.yaml │ ├── test_file_upload.yaml │ ├── test_identity_event_retrieve.yaml │ ├── test_identity_retrieve.yaml │ ├── test_invalid_login.yaml │ ├── test_jwt_tokens.yaml │ ├── test_limited_wallet_create.yaml │ ├── test_limited_wallet_retrieve.yaml │ ├── test_login_token.yaml │ ├── test_logout.yaml │ ├── test_otps.yaml │ ├── test_phone_verification_association_create.yaml │ ├── test_platforms_create.yaml │ ├── test_postal_codes_retrieve[00000-0].yaml │ ├── test_postal_codes_retrieve[40100-1].yaml │ ├── test_postal_codes_retrieve[40106-2].yaml │ ├── test_query_account.yaml │ ├── test_query_balance_entry.yaml │ ├── test_query_wallet_transactions.yaml │ ├── test_retrieve_wallet_transaction.yaml │ ├── test_saving_create.yaml │ ├── test_saving_deactivate.yaml │ ├── test_saving_retrieve.yaml │ ├── test_saving_update.yaml │ ├── test_service_provider.yaml │ ├── test_session_create.yaml │ ├── test_statement_one_download_pdf.yaml │ ├── test_statement_one_download_xml.yaml │ ├── test_transfers_all.yaml │ ├── test_transfers_count.yaml │ ├── test_transfers_count_vs_all.yaml │ ├── test_transfers_create.yaml │ ├── test_transfers_create_many.yaml │ ├── test_transfers_first.yaml │ ├── test_transfers_one.yaml │ ├── test_transfers_one_errors.yaml │ ├── test_transfers_retrieve.yaml │ ├── test_update_api_key.yaml │ ├── test_update_password.yaml │ ├── test_user_beneficiaries_update.yaml │ ├── test_user_create.yaml │ ├── test_user_event_retrieve.yaml │ ├── test_user_fetch_balance.yaml │ ├── test_user_identity_retrieve.yaml │ ├── test_user_query.yaml │ ├── test_user_query_all_identity_id.yaml │ ├── test_user_query_by_identity_id.yaml │ ├── test_user_tos_agreements_create.yaml │ ├── test_user_update.yaml │ ├── test_user_update_user_email_from_verification.yaml │ ├── test_valid_login.yaml │ ├── test_validation_create.yaml │ ├── test_validation_retrieve.yaml │ ├── test_verification_email_create.yaml │ ├── test_verification_phone_create.yaml │ ├── test_verification_verify.yaml │ ├── test_verification_verify_deactivated_verification.yaml │ ├── test_verification_verify_fail.yaml │ ├── test_verification_verify_fail_max_attempt.yaml │ ├── test_wa_transfer_cuenca.yaml │ ├── test_wa_transfer_spei.yaml │ ├── test_wa_transfer_submitted.yaml │ ├── test_webhook_all.yaml │ └── test_webhook_retrieve.yaml ├── test_accounts.py ├── test_api_keys.py ├── test_arpc.py ├── test_balance_entries.py ├── test_bill_payments.py ├── test_card_activations.py ├── test_card_transactions.py ├── test_card_validations.py ├── test_cards.py ├── test_cash_references.py ├── test_clabes.py ├── test_commissions.py ├── test_curp_validations.py ├── test_deposits.py ├── test_endpoints.py ├── test_exist_phone.py ├── test_file_batches.py ├── test_files.py ├── test_identities.py ├── test_identity_events.py ├── test_jwt_tokens.py ├── test_kyc_validations.py ├── test_limited_wallets.py ├── test_login_tokens.py ├── test_otps.py ├── test_phone_verification_association.py ├── test_platforms.py ├── test_postal_codes.py ├── test_questionnaires.py ├── test_resources.py ├── test_savings.py ├── test_service_providers.py ├── test_sessions.py ├── test_statements.py ├── test_transfers.py ├── test_user_credentials.py ├── test_user_events.py ├── test_user_lists_validation.py ├── test_user_logins.py ├── test_users.py ├── test_users_tos_agreements.py ├── test_verifications.py ├── test_wallet_transactions.py ├── test_webhooks.py └── test_whatsapp_transfers.py ├── test_cuenca.py └── test_jwt.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @alexviquez 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto_merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/.github/workflows/auto_merge.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/README.md -------------------------------------------------------------------------------- /cuenca/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/__init__.py -------------------------------------------------------------------------------- /cuenca/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/exc.py -------------------------------------------------------------------------------- /cuenca/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/http/__init__.py -------------------------------------------------------------------------------- /cuenca/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/http/client.py -------------------------------------------------------------------------------- /cuenca/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/jwt.py -------------------------------------------------------------------------------- /cuenca/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cuenca/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/__init__.py -------------------------------------------------------------------------------- /cuenca/resources/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/accounts.py -------------------------------------------------------------------------------- /cuenca/resources/api_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/api_keys.py -------------------------------------------------------------------------------- /cuenca/resources/arpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/arpc.py -------------------------------------------------------------------------------- /cuenca/resources/balance_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/balance_entries.py -------------------------------------------------------------------------------- /cuenca/resources/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/base.py -------------------------------------------------------------------------------- /cuenca/resources/bill_payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/bill_payments.py -------------------------------------------------------------------------------- /cuenca/resources/card_activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/card_activations.py -------------------------------------------------------------------------------- /cuenca/resources/card_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/card_transactions.py -------------------------------------------------------------------------------- /cuenca/resources/card_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/card_validations.py -------------------------------------------------------------------------------- /cuenca/resources/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/cards.py -------------------------------------------------------------------------------- /cuenca/resources/cash_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/cash_references.py -------------------------------------------------------------------------------- /cuenca/resources/clabes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/clabes.py -------------------------------------------------------------------------------- /cuenca/resources/commissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/commissions.py -------------------------------------------------------------------------------- /cuenca/resources/curp_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/curp_validations.py -------------------------------------------------------------------------------- /cuenca/resources/deposits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/deposits.py -------------------------------------------------------------------------------- /cuenca/resources/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/endpoints.py -------------------------------------------------------------------------------- /cuenca/resources/exist_phones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/exist_phones.py -------------------------------------------------------------------------------- /cuenca/resources/file_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/file_batches.py -------------------------------------------------------------------------------- /cuenca/resources/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/files.py -------------------------------------------------------------------------------- /cuenca/resources/identities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/identities.py -------------------------------------------------------------------------------- /cuenca/resources/identity_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/identity_events.py -------------------------------------------------------------------------------- /cuenca/resources/jwt_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/jwt_tokens.py -------------------------------------------------------------------------------- /cuenca/resources/kyc_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/kyc_validations.py -------------------------------------------------------------------------------- /cuenca/resources/limited_wallets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/limited_wallets.py -------------------------------------------------------------------------------- /cuenca/resources/login_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/login_tokens.py -------------------------------------------------------------------------------- /cuenca/resources/otps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/otps.py -------------------------------------------------------------------------------- /cuenca/resources/phone_verification_associations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/phone_verification_associations.py -------------------------------------------------------------------------------- /cuenca/resources/platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/platforms.py -------------------------------------------------------------------------------- /cuenca/resources/postal_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/postal_codes.py -------------------------------------------------------------------------------- /cuenca/resources/questionnaires.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/questionnaires.py -------------------------------------------------------------------------------- /cuenca/resources/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/resources.py -------------------------------------------------------------------------------- /cuenca/resources/savings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/savings.py -------------------------------------------------------------------------------- /cuenca/resources/service_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/service_providers.py -------------------------------------------------------------------------------- /cuenca/resources/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/sessions.py -------------------------------------------------------------------------------- /cuenca/resources/statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/statements.py -------------------------------------------------------------------------------- /cuenca/resources/terms_of_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/terms_of_service.py -------------------------------------------------------------------------------- /cuenca/resources/transfers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/transfers.py -------------------------------------------------------------------------------- /cuenca/resources/user_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/user_credentials.py -------------------------------------------------------------------------------- /cuenca/resources/user_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/user_events.py -------------------------------------------------------------------------------- /cuenca/resources/user_lists_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/user_lists_validation.py -------------------------------------------------------------------------------- /cuenca/resources/user_logins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/user_logins.py -------------------------------------------------------------------------------- /cuenca/resources/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/users.py -------------------------------------------------------------------------------- /cuenca/resources/users_tos_agreements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/users_tos_agreements.py -------------------------------------------------------------------------------- /cuenca/resources/verifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/verifications.py -------------------------------------------------------------------------------- /cuenca/resources/wallet_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/wallet_transactions.py -------------------------------------------------------------------------------- /cuenca/resources/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/webhooks.py -------------------------------------------------------------------------------- /cuenca/resources/whatsapp_transfers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/resources/whatsapp_transfers.py -------------------------------------------------------------------------------- /cuenca/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/cuenca/version.py -------------------------------------------------------------------------------- /examples/batch_transfers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/examples/batch_transfers.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | plugins = pydantic.mypy -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/test_file.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/data/test_file.jpeg -------------------------------------------------------------------------------- /tests/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/http/cassettes/test_configures_jwt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/http/cassettes/test_configures_jwt.yaml -------------------------------------------------------------------------------- /tests/http/cassettes/test_invalid_auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/http/cassettes/test_invalid_auth.yaml -------------------------------------------------------------------------------- /tests/http/cassettes/test_no_password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/http/cassettes/test_no_password.yaml -------------------------------------------------------------------------------- /tests/http/cassettes/test_no_session.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/http/cassettes/test_no_session.yaml -------------------------------------------------------------------------------- /tests/http/cassettes/test_request_expired_token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/http/cassettes/test_request_expired_token.yaml -------------------------------------------------------------------------------- /tests/http/cassettes/test_request_valid_token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/http/cassettes/test_request_valid_token.yaml -------------------------------------------------------------------------------- /tests/http/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/http/conftest.py -------------------------------------------------------------------------------- /tests/http/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/http/test_client.py -------------------------------------------------------------------------------- /tests/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/cassettes/test_api_key_deactivate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_api_key_deactivate.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_api_keys_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_api_keys_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_api_keys_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_api_keys_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_arpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_arpc.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_balance_entry_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_balance_entry_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_bill_payment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_bill_payment.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_block_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_block_user.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_blocked_attemps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_blocked_attemps.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_can_not_assign_new_virtual_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_can_not_assign_new_virtual_card.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_activation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_activation.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_all.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_can_not_be_updated_if_it_is_deactivated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_can_not_be_updated_if_it_is_deactivated.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_create_dcvv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_create_dcvv.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_not_found.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_not_found.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_one.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_one_errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_one_errors.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_retrieve_dcvv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_retrieve_dcvv.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_transaction_child_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_transaction_child_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_transaction_expiration_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_transaction_expiration_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_transaction_parent_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_transaction_parent_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_transaction_refund_without_parent_id_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_transaction_refund_without_parent_id_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_transaction_retrieve_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_transaction_retrieve_card.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_update.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_update_pin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_update_pin.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_card_validations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_card_validations.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_cash_reference_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_cash_reference_all.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_cash_reference_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_cash_reference_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_clabe_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_clabe_all.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_clabe_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_clabe_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_clabe_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_clabe_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_commission_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_commission_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_commission_retrieve_with_cash_deposit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_commission_retrieve_with_cash_deposit.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_commission_retrieve_with_cash_transfer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_commission_retrieve_with_cash_transfer.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_complete_flow_wallets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_complete_flow_wallets.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_create_questionnaire.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_create_questionnaire.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_create_user_validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_create_user_validation.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_create_user_validation_invalid_inputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_create_user_validation_invalid_inputs.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_create_user_validation_with_response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_create_user_validation_with_response.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_create_wallet_transaction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_create_wallet_transaction.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_curp_validations_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_curp_validations_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_curp_validations_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_curp_validations_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_deactivate_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_deactivate_card.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_deposit_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_deposit_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_endpoint_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_endpoint_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_endpoint_create_another.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_endpoint_create_another.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_endpoint_deactivate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_endpoint_deactivate.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_endpoint_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_endpoint_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_endpoint_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_endpoint_update.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_exist_phone_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_exist_phone_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_file_batch_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_file_batch_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_file_download.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_file_download.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_file_download_only_bytes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_file_download_only_bytes.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_file_error_on_xml_pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_file_error_on_xml_pdf.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_file_upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_file_upload.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_identity_event_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_identity_event_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_identity_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_identity_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_invalid_login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_invalid_login.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_jwt_tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_jwt_tokens.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_limited_wallet_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_limited_wallet_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_limited_wallet_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_limited_wallet_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_login_token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_login_token.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_logout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_logout.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_otps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_otps.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_phone_verification_association_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_phone_verification_association_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_platforms_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_platforms_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_postal_codes_retrieve[00000-0].yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_postal_codes_retrieve[00000-0].yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_postal_codes_retrieve[40100-1].yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_postal_codes_retrieve[40100-1].yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_postal_codes_retrieve[40106-2].yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_postal_codes_retrieve[40106-2].yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_query_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_query_account.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_query_balance_entry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_query_balance_entry.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_query_wallet_transactions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_query_wallet_transactions.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_retrieve_wallet_transaction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_retrieve_wallet_transaction.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_saving_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_saving_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_saving_deactivate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_saving_deactivate.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_saving_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_saving_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_saving_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_saving_update.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_service_provider.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_service_provider.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_session_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_session_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_statement_one_download_pdf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_statement_one_download_pdf.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_statement_one_download_xml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_statement_one_download_xml.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_transfers_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_transfers_all.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_transfers_count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_transfers_count.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_transfers_count_vs_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_transfers_count_vs_all.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_transfers_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_transfers_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_transfers_create_many.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_transfers_create_many.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_transfers_first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_transfers_first.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_transfers_one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_transfers_one.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_transfers_one_errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_transfers_one_errors.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_transfers_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_transfers_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_update_api_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_update_api_key.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_update_password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_update_password.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_beneficiaries_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_beneficiaries_update.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_event_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_event_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_fetch_balance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_fetch_balance.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_identity_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_identity_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_query.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_query_all_identity_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_query_all_identity_id.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_query_by_identity_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_query_by_identity_id.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_tos_agreements_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_tos_agreements_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_update.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_user_update_user_email_from_verification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_user_update_user_email_from_verification.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_valid_login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_valid_login.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_validation_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_validation_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_validation_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_validation_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_verification_email_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_verification_email_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_verification_phone_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_verification_phone_create.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_verification_verify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_verification_verify.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_verification_verify_deactivated_verification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_verification_verify_deactivated_verification.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_verification_verify_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_verification_verify_fail.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_verification_verify_fail_max_attempt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_verification_verify_fail_max_attempt.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_wa_transfer_cuenca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_wa_transfer_cuenca.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_wa_transfer_spei.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_wa_transfer_spei.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_wa_transfer_submitted.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_wa_transfer_submitted.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_webhook_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_webhook_all.yaml -------------------------------------------------------------------------------- /tests/resources/cassettes/test_webhook_retrieve.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/cassettes/test_webhook_retrieve.yaml -------------------------------------------------------------------------------- /tests/resources/test_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_accounts.py -------------------------------------------------------------------------------- /tests/resources/test_api_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_api_keys.py -------------------------------------------------------------------------------- /tests/resources/test_arpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_arpc.py -------------------------------------------------------------------------------- /tests/resources/test_balance_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_balance_entries.py -------------------------------------------------------------------------------- /tests/resources/test_bill_payments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_bill_payments.py -------------------------------------------------------------------------------- /tests/resources/test_card_activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_card_activations.py -------------------------------------------------------------------------------- /tests/resources/test_card_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_card_transactions.py -------------------------------------------------------------------------------- /tests/resources/test_card_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_card_validations.py -------------------------------------------------------------------------------- /tests/resources/test_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_cards.py -------------------------------------------------------------------------------- /tests/resources/test_cash_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_cash_references.py -------------------------------------------------------------------------------- /tests/resources/test_clabes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_clabes.py -------------------------------------------------------------------------------- /tests/resources/test_commissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_commissions.py -------------------------------------------------------------------------------- /tests/resources/test_curp_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_curp_validations.py -------------------------------------------------------------------------------- /tests/resources/test_deposits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_deposits.py -------------------------------------------------------------------------------- /tests/resources/test_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_endpoints.py -------------------------------------------------------------------------------- /tests/resources/test_exist_phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_exist_phone.py -------------------------------------------------------------------------------- /tests/resources/test_file_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_file_batches.py -------------------------------------------------------------------------------- /tests/resources/test_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_files.py -------------------------------------------------------------------------------- /tests/resources/test_identities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_identities.py -------------------------------------------------------------------------------- /tests/resources/test_identity_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_identity_events.py -------------------------------------------------------------------------------- /tests/resources/test_jwt_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_jwt_tokens.py -------------------------------------------------------------------------------- /tests/resources/test_kyc_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_kyc_validations.py -------------------------------------------------------------------------------- /tests/resources/test_limited_wallets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_limited_wallets.py -------------------------------------------------------------------------------- /tests/resources/test_login_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_login_tokens.py -------------------------------------------------------------------------------- /tests/resources/test_otps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_otps.py -------------------------------------------------------------------------------- /tests/resources/test_phone_verification_association.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_phone_verification_association.py -------------------------------------------------------------------------------- /tests/resources/test_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_platforms.py -------------------------------------------------------------------------------- /tests/resources/test_postal_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_postal_codes.py -------------------------------------------------------------------------------- /tests/resources/test_questionnaires.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_questionnaires.py -------------------------------------------------------------------------------- /tests/resources/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_resources.py -------------------------------------------------------------------------------- /tests/resources/test_savings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_savings.py -------------------------------------------------------------------------------- /tests/resources/test_service_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_service_providers.py -------------------------------------------------------------------------------- /tests/resources/test_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_sessions.py -------------------------------------------------------------------------------- /tests/resources/test_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_statements.py -------------------------------------------------------------------------------- /tests/resources/test_transfers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_transfers.py -------------------------------------------------------------------------------- /tests/resources/test_user_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_user_credentials.py -------------------------------------------------------------------------------- /tests/resources/test_user_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_user_events.py -------------------------------------------------------------------------------- /tests/resources/test_user_lists_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_user_lists_validation.py -------------------------------------------------------------------------------- /tests/resources/test_user_logins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_user_logins.py -------------------------------------------------------------------------------- /tests/resources/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_users.py -------------------------------------------------------------------------------- /tests/resources/test_users_tos_agreements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_users_tos_agreements.py -------------------------------------------------------------------------------- /tests/resources/test_verifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_verifications.py -------------------------------------------------------------------------------- /tests/resources/test_wallet_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_wallet_transactions.py -------------------------------------------------------------------------------- /tests/resources/test_webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_webhooks.py -------------------------------------------------------------------------------- /tests/resources/test_whatsapp_transfers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/resources/test_whatsapp_transfers.py -------------------------------------------------------------------------------- /tests/test_cuenca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/test_cuenca.py -------------------------------------------------------------------------------- /tests/test_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuenca-mx/cuenca-python/HEAD/tests/test_jwt.py --------------------------------------------------------------------------------