From c2f8786ffabe9a29cc764e250af318f7d4eb7df5 Mon Sep 17 00:00:00 2001 From: David Cook Date: Wed, 7 Feb 2024 09:45:32 +1100 Subject: [PATCH] Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes And also STRIPE_ENDPOINT_SECRET just in case it's ever used in tests. Re-records Stripe tests. But some failed... :'( Failed examples: rspec ./spec/lib/stripe/credit_card_cloner_spec.rb:71 # Stripe::CreditCardCloner#find_or_clone when called with a valid customer and payment_method clones both the payment method and the customer rspec ./spec/lib/stripe/payment_intent_validator_spec.rb[1:1:1:1:17:1:2] # Stripe::PaymentIntentValidator#call when payment intent is valid valid non-3D credit cards are correctly handled behaves like payments intents from UnionPay (debit) captures the payment --- .../clones_the_payment_method_only.yml | 659 ------------------ .../saves_the_card_locally.yml | 93 +-- ...t_intent_state_is_not_requires_capture.yml | 89 +-- .../_purchase/completes_the_purchase.yml | 172 ++--- ..._error_message_to_help_developer_debug.yml | 95 +-- ...stroys_the_record_and_notifies_Bugsnag.yml | 51 +- .../destroys_the_record.yml | 93 +-- .../returns_true.yml | 161 ++--- .../returns_false.yml | 130 ++-- .../returns_failed_response.yml | 60 +- ...tus_with_Stripe_PaymentIntentValidator.yml | 89 +-- .../returns_nil.yml | 60 +- .../clones_the_payment_method_only.yml | 201 ++++++ ...th_the_payment_method_and_the_customer.yml | 92 ++- .../raises_an_error.yml | 48 +- .../deletes_the_credit_card_clone.yml | 96 ++- ...the_credit_card_clone_and_the_customer.yml | 139 ++-- ...t_intent_last_payment_error_as_message.yml | 167 ++++- ...t_intent_last_payment_error_as_message.yml | 167 ++++- ...t_intent_last_payment_error_as_message.yml | 167 ++++- ...t_intent_last_payment_error_as_message.yml | 167 ++++- ...t_intent_last_payment_error_as_message.yml | 167 ++++- ...t_intent_last_payment_error_as_message.yml | 167 ++++- ...t_intent_last_payment_error_as_message.yml | 167 ++++- ...t_intent_last_payment_error_as_message.yml | 167 ++++- .../captures_the_payment.yml | 567 +++++++++++++++ ...s_payment_intent_id_and_does_not_raise.yml | 416 +++++++++++ .../captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../from_Diners_Club/captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../from_Discover/captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../from_JCB/captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../from_Mastercard/captures_the_payment.yml | 290 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../captures_the_payment.yml | 290 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../from_UnionPay/captures_the_payment.yml | 290 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- .../captures_the_payment.yml | 563 +++++++++++++++ ...s_payment_intent_id_and_does_not_raise.yml | 415 +++++++++++ .../from_Visa/captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 144 +++- .../from_Visa_debit_/captures_the_payment.yml | 294 +++++++- ...s_payment_intent_id_and_does_not_raise.yml | 143 +++- spec/support/vcr_setup.rb | 3 +- 60 files changed, 10683 insertions(+), 1489 deletions(-) delete mode 100644 spec/fixtures/vcr_cassettes/Stripe-v10.3.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_card_without_a_customer_one_time_usage_card_/clones_the_payment_method_only.yml create mode 100644 spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_3D_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/captures_the_payment.yml create mode 100644 spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_3D_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/returns_payment_intent_id_and_does_not_raise.yml create mode 100644 spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/captures_the_payment.yml create mode 100644 spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/returns_payment_intent_id_and_does_not_raise.yml diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.3.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_card_without_a_customer_one_time_usage_card_/clones_the_payment_method_only.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.3.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_card_without_a_customer_one_time_usage_card_/clones_the_payment_method_only.yml deleted file mode 100644 index 81ce9818ae..0000000000 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.3.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_card_without_a_customer_one_time_usage_card_/clones_the_payment_method_only.yml +++ /dev/null @@ -1,659 +0,0 @@ ---- -http_interactions: -- request: - method: post - uri: https://api.stripe.com/v1/accounts - body: - encoding: UTF-8 - string: type=standard&country=AU&email=jumping.jack%40example.com - headers: - User-Agent: - - Stripe/v1 RubyBindings/10.3.0 - Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - Stripe-Version: - - '2023-10-16' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.3.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-14-generic (buildd@lcy02-amd64-110) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #14~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Nov 20 18:15:30 UTC 2","hostname":"ff-LAT"}' - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Server: - - nginx - Date: - - Tue, 23 Jan 2024 16:23:55 GMT - Content-Type: - - application/json - Content-Length: - - '2916' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET,HEAD,PUT,PATCH,POST,DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, - X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Content-Security-Policy: - - report-uri https://q.stripe.com/csp-report?p=v1%2Faccounts; block-all-mixed-content; - default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; - img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' - Idempotency-Key: - - b7f8337e-7418-47e7-896b-a01d7e53f450 - Original-Request: - - req_ETps93mntx0Hji - Request-Id: - - req_ETps93mntx0Hji - Stripe-Should-Retry: - - 'false' - Stripe-Version: - - '2023-10-16' - Vary: - - Origin - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode - Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload - body: - encoding: UTF-8 - string: |- - { - "id": "acct_1ObmlRQRhBsuAoMF", - "object": "account", - "business_profile": { - "mcc": null, - "name": null, - "product_description": null, - "support_address": null, - "support_email": null, - "support_phone": null, - "support_url": null, - "url": null - }, - "business_type": null, - "capabilities": {}, - "charges_enabled": false, - "controller": { - "is_controller": true, - "type": "application" - }, - "country": "AU", - "created": 1706027034, - "default_currency": "aud", - "details_submitted": false, - "email": "jumping.jack@example.com", - "external_accounts": { - "object": "list", - "data": [], - "has_more": false, - "total_count": 0, - "url": "/v1/accounts/acct_1ObmlRQRhBsuAoMF/external_accounts" - }, - "future_requirements": { - "alternatives": [], - "current_deadline": null, - "currently_due": [], - "disabled_reason": null, - "errors": [], - "eventually_due": [], - "past_due": [], - "pending_verification": [] - }, - "metadata": {}, - "payouts_enabled": false, - "requirements": { - "alternatives": [], - "current_deadline": null, - "currently_due": [ - "business_profile.product_description", - "business_profile.support_phone", - "business_profile.url", - "external_account", - "tos_acceptance.date", - "tos_acceptance.ip" - ], - "disabled_reason": "requirements.past_due", - "errors": [], - "eventually_due": [ - "business_profile.product_description", - "business_profile.support_phone", - "business_profile.url", - "external_account", - "tos_acceptance.date", - "tos_acceptance.ip" - ], - "past_due": [ - "external_account", - "tos_acceptance.date", - "tos_acceptance.ip" - ], - "pending_verification": [] - }, - "settings": { - "bacs_debit_payments": { - "display_name": null, - "service_user_number": null - }, - "branding": { - "icon": null, - "logo": null, - "primary_color": null, - "secondary_color": null - }, - "card_issuing": { - "tos_acceptance": { - "date": null, - "ip": null - } - }, - "card_payments": { - "decline_on": { - "avs_failure": false, - "cvc_failure": false - }, - "statement_descriptor_prefix": null, - "statement_descriptor_prefix_kana": null, - "statement_descriptor_prefix_kanji": null - }, - "dashboard": { - "display_name": null, - "timezone": "Etc/UTC" - }, - "payments": { - "statement_descriptor": null, - "statement_descriptor_kana": null, - "statement_descriptor_kanji": null - }, - "payouts": { - "debit_negative_balances": true, - "schedule": { - "delay_days": 2, - "interval": "daily" - }, - "statement_descriptor": null - }, - "sepa_debit_payments": {} - }, - "tos_acceptance": { - "date": null, - "ip": null, - "user_agent": null - }, - "type": "standard" - } - recorded_at: Tue, 23 Jan 2024 16:23:55 GMT -- request: - method: post - uri: https://api.stripe.com/v1/payment_methods - body: - encoding: UTF-8 - string: type=card&card[number]=4242424242424242&card[exp_month]=8&card[exp_year]=2026&card[cvc]=314 - headers: - User-Agent: - - Stripe/v1 RubyBindings/10.3.0 - Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ETps93mntx0Hji","request_duration_ms":1924}}' - Stripe-Version: - - '2023-10-16' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.3.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-14-generic (buildd@lcy02-amd64-110) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #14~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Nov 20 18:15:30 UTC 2","hostname":"ff-LAT"}' - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Server: - - nginx - Date: - - Tue, 23 Jan 2024 16:23:55 GMT - Content-Type: - - application/json - Content-Length: - - '930' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET,HEAD,PUT,PATCH,POST,DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, - X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Content-Security-Policy: - - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_methods; block-all-mixed-content; - default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; - img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' - Idempotency-Key: - - f365ffc1-ce6c-4692-9cc1-adc6fc462c72 - Original-Request: - - req_fWgeyCgbxGQaGe - Request-Id: - - req_fWgeyCgbxGQaGe - Stripe-Should-Retry: - - 'false' - Stripe-Version: - - '2023-10-16' - Vary: - - Origin - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode - Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload - body: - encoding: UTF-8 - string: |- - { - "id": "pm_1ObmlTKuuB1fWySnPG0TmSeT", - "object": "payment_method", - "billing_details": { - "address": { - "city": null, - "country": null, - "line1": null, - "line2": null, - "postal_code": null, - "state": null - }, - "email": null, - "name": null, - "phone": null - }, - "card": { - "brand": "visa", - "checks": { - "address_line1_check": null, - "address_postal_code_check": null, - "cvc_check": "unchecked" - }, - "country": "US", - "exp_month": 8, - "exp_year": 2026, - "fingerprint": "6E6tgVjx6U65iHFV", - "funding": "credit", - "generated_from": null, - "last4": "4242", - "networks": { - "available": [ - "visa" - ], - "preferred": null - }, - "three_d_secure_usage": { - "supported": true - }, - "wallet": null - }, - "created": 1706027035, - "customer": null, - "livemode": false, - "metadata": {}, - "type": "card" - } - recorded_at: Tue, 23 Jan 2024 16:23:55 GMT -- request: - method: get - uri: https://api.stripe.com/v1/payment_methods/pm_1ObmlTKuuB1fWySnPG0TmSeT - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Stripe/v1 RubyBindings/10.3.0 - Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_fWgeyCgbxGQaGe","request_duration_ms":568}}' - Stripe-Version: - - '2023-10-16' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.3.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-14-generic (buildd@lcy02-amd64-110) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #14~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Nov 20 18:15:30 UTC 2","hostname":"ff-LAT"}' - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Server: - - nginx - Date: - - Tue, 23 Jan 2024 16:23:55 GMT - Content-Type: - - application/json - Content-Length: - - '930' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET,HEAD,PUT,PATCH,POST,DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, - X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Content-Security-Policy: - - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_methods%2F%3Apayment_method; - block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action - 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; - style-src 'self' - Request-Id: - - req_aGxstt0cKMvnS7 - Stripe-Version: - - '2023-10-16' - Vary: - - Origin - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode - Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload - body: - encoding: UTF-8 - string: |- - { - "id": "pm_1ObmlTKuuB1fWySnPG0TmSeT", - "object": "payment_method", - "billing_details": { - "address": { - "city": null, - "country": null, - "line1": null, - "line2": null, - "postal_code": null, - "state": null - }, - "email": null, - "name": null, - "phone": null - }, - "card": { - "brand": "visa", - "checks": { - "address_line1_check": null, - "address_postal_code_check": null, - "cvc_check": "unchecked" - }, - "country": "US", - "exp_month": 8, - "exp_year": 2026, - "fingerprint": "6E6tgVjx6U65iHFV", - "funding": "credit", - "generated_from": null, - "last4": "4242", - "networks": { - "available": [ - "visa" - ], - "preferred": null - }, - "three_d_secure_usage": { - "supported": true - }, - "wallet": null - }, - "created": 1706027035, - "customer": null, - "livemode": false, - "metadata": {}, - "type": "card" - } - recorded_at: Tue, 23 Jan 2024 16:23:56 GMT -- request: - method: get - uri: https://api.stripe.com/v1/customers?email=jumping.jane@example.com&limit=100 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Stripe/v1 RubyBindings/10.3.0 - Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_aGxstt0cKMvnS7","request_duration_ms":256}}' - Stripe-Version: - - '2023-10-16' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.3.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-14-generic (buildd@lcy02-amd64-110) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #14~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Nov 20 18:15:30 UTC 2","hostname":"ff-LAT"}' - Stripe-Account: - - acct_1ObmlRQRhBsuAoMF - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Server: - - nginx - Date: - - Tue, 23 Jan 2024 16:23:56 GMT - Content-Type: - - application/json - Content-Length: - - '83' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET,HEAD,PUT,PATCH,POST,DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, - X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Content-Security-Policy: - - report-uri https://q.stripe.com/csp-report?p=v1%2Fcustomers; block-all-mixed-content; - default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; - img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' - Request-Id: - - req_ldrBEz4VKjd4on - Stripe-Account: - - acct_1ObmlRQRhBsuAoMF - Stripe-Version: - - '2023-10-16' - Vary: - - Origin - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode - Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload - body: - encoding: UTF-8 - string: |- - { - "object": "list", - "data": [], - "has_more": false, - "url": "/v1/customers" - } - recorded_at: Tue, 23 Jan 2024 16:23:56 GMT -- request: - method: post - uri: https://api.stripe.com/v1/payment_methods - body: - encoding: UTF-8 - string: payment_method=pm_1ObmlTKuuB1fWySnPG0TmSeT - headers: - User-Agent: - - Stripe/v1 RubyBindings/10.3.0 - Authorization: - - Bearer - Content-Type: - - application/x-www-form-urlencoded - X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_ldrBEz4VKjd4on","request_duration_ms":270}}' - Stripe-Version: - - '2023-10-16' - X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.3.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-14-generic (buildd@lcy02-amd64-110) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #14~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Nov 20 18:15:30 UTC 2","hostname":"ff-LAT"}' - Stripe-Account: - - acct_1ObmlRQRhBsuAoMF - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Server: - - nginx - Date: - - Tue, 23 Jan 2024 16:23:56 GMT - Content-Type: - - application/json - Content-Length: - - '930' - Connection: - - keep-alive - Access-Control-Allow-Credentials: - - 'true' - Access-Control-Allow-Methods: - - GET,HEAD,PUT,PATCH,POST,DELETE - Access-Control-Allow-Origin: - - "*" - Access-Control-Expose-Headers: - - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, - X-Stripe-Privileged-Session-Required - Access-Control-Max-Age: - - '300' - Cache-Control: - - no-cache, no-store - Content-Security-Policy: - - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_methods; block-all-mixed-content; - default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; - img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' - Idempotency-Key: - - 4ae80a5e-73f5-43b0-a389-cf48d73a005e - Original-Request: - - req_PsTG3WUYVeOUSW - Request-Id: - - req_PsTG3WUYVeOUSW - Stripe-Account: - - acct_1ObmlRQRhBsuAoMF - Stripe-Should-Retry: - - 'false' - Stripe-Version: - - '2023-10-16' - Vary: - - Origin - X-Stripe-Routing-Context-Priority-Tier: - - api-testmode - Strict-Transport-Security: - - max-age=63072000; includeSubDomains; preload - body: - encoding: UTF-8 - string: |- - { - "id": "pm_1ObmlUQRhBsuAoMFqUKGOj9C", - "object": "payment_method", - "billing_details": { - "address": { - "city": null, - "country": null, - "line1": null, - "line2": null, - "postal_code": null, - "state": null - }, - "email": null, - "name": null, - "phone": null - }, - "card": { - "brand": "visa", - "checks": { - "address_line1_check": null, - "address_postal_code_check": null, - "cvc_check": "unchecked" - }, - "country": "US", - "exp_month": 8, - "exp_year": 2026, - "fingerprint": "6E6tgVjx6U65iHFV", - "funding": "credit", - "generated_from": null, - "last4": "4242", - "networks": { - "available": [ - "visa" - ], - "preferred": null - }, - "three_d_secure_usage": { - "supported": true - }, - "wallet": null - }, - "created": 1706027036, - "customer": null, - "livemode": false, - "metadata": {}, - "type": "card" - } - recorded_at: Tue, 23 Jan 2024 16:23:56 GMT -recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_CreditCardsController/using_VCR/_new_from_token/when_the_request_to_store_the_customer/card_with_Stripe_is_successful/saves_the_card_locally.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_CreditCardsController/using_VCR/_new_from_token/when_the_request_to_store_the_customer/card_with_Stripe_is_successful/saves_the_card_locally.yml index 3a2d1a8aa4..0fea673b39 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_CreditCardsController/using_VCR/_new_from_token/when_the_request_to_store_the_customer/card_with_Stripe_is_successful/saves_the_card_locally.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_CreditCardsController/using_VCR/_new_from_token/when_the_request_to_store_the_customer/card_with_Stripe_is_successful/saves_the_card_locally.yml @@ -10,16 +10,15 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -32,7 +31,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:17:31 GMT + - Tue, 06 Feb 2024 22:46:59 GMT Content-Type: - application/json Content-Length: @@ -57,17 +56,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 25f85b6b-843b-4a64-89b0-fbec80e642e5 + - 2aceadf6-97cf-4609-b495-cfb6cf04a852 Original-Request: - - req_zz9NZyBc8pMdP4 + - req_5wrfN3E1X2o5Wd Request-Id: - - req_zz9NZyBc8pMdP4 + - req_5wrfN3E1X2o5Wd Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '251.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -76,10 +77,10 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "tok_1ObAGdKuuB1fWySn5e53EYXn", + "id": "tok_1OgxPrKuuB1fWySnHR27MJCc", "object": "token", "card": { - "id": "card_1ObAGdKuuB1fWySnzig5k3T2", + "id": "card_1OgxPrKuuB1fWySnd8FhebQ4", "object": "card", "address_city": null, "address_country": null, @@ -103,35 +104,34 @@ http_interactions: "tokenization_method": null, "wallet": null }, - "client_ip": "115.166.50.47", - "created": 1705879051, + "client_ip": "121.200.4.121", + "created": 1707259619, "livemode": false, "type": "card", "used": false } - recorded_at: Sun, 21 Jan 2024 23:17:31 GMT + recorded_at: Tue, 06 Feb 2024 22:46:59 GMT - request: method: post uri: https://api.stripe.com/v1/customers body: encoding: UTF-8 - string: email=demetra%40greenfelder.ca&source=tok_1ObAGdKuuB1fWySn5e53EYXn + string: email=monica%40grant.us&source=tok_1OgxPrKuuB1fWySnHR27MJCc headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_zz9NZyBc8pMdP4","request_duration_ms":848}}' + - '{"last_request_metrics":{"request_id":"req_5wrfN3E1X2o5Wd","request_duration_ms":562}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -144,11 +144,11 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:17:33 GMT + - Tue, 06 Feb 2024 22:47:00 GMT Content-Type: - application/json Content-Length: - - '661' + - '654' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -169,17 +169,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - d0274fe4-9ce7-4387-829e-c6b246035491 + - acbb5d82-aad3-4849-b9a8-03ebf94f8175 Original-Request: - - req_144xT6tf8cLxH7 + - req_uJal0h6QgFXLpf Request-Id: - - req_144xT6tf8cLxH7 + - req_uJal0h6QgFXLpf Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '614.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -188,18 +190,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_PQ0HyRJ0baOkF6", + "id": "cus_PVzOf3eECDs5zs", "object": "customer", "address": null, "balance": 0, - "created": 1705879052, + "created": 1707259620, "currency": null, - "default_source": "card_1ObAGdKuuB1fWySnzig5k3T2", + "default_source": "card_1OgxPrKuuB1fWySnd8FhebQ4", "delinquent": false, "description": null, "discount": null, - "email": "demetra@greenfelder.ca", - "invoice_prefix": "F02BC31D", + "email": "monica@grant.us", + "invoice_prefix": "93F895B6", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -216,10 +218,10 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Sun, 21 Jan 2024 23:17:33 GMT + recorded_at: Tue, 06 Feb 2024 22:47:00 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_PQ0HyRJ0baOkF6/sources?limit=1&object=card + uri: https://api.stripe.com/v1/customers/cus_PVzOf3eECDs5zs/sources?limit=1&object=card body: encoding: US-ASCII string: '' @@ -227,18 +229,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_144xT6tf8cLxH7","request_duration_ms":1043}}' + - '{"last_request_metrics":{"request_id":"req_uJal0h6QgFXLpf","request_duration_ms":865}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -251,7 +252,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:17:33 GMT + - Tue, 06 Feb 2024 22:47:01 GMT Content-Type: - application/json Content-Length: @@ -277,11 +278,13 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_iiAzSB5Tpf5LMk + - req_n0MurC7cfrOQpG Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '148.00000000000003' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -293,7 +296,7 @@ http_interactions: "object": "list", "data": [ { - "id": "card_1ObAGdKuuB1fWySnzig5k3T2", + "id": "card_1OgxPrKuuB1fWySnd8FhebQ4", "object": "card", "address_city": null, "address_country": null, @@ -305,7 +308,7 @@ http_interactions: "address_zip_check": null, "brand": "Visa", "country": "US", - "customer": "cus_PQ0HyRJ0baOkF6", + "customer": "cus_PVzOf3eECDs5zs", "cvc_check": "pass", "dynamic_last4": null, "exp_month": 9, @@ -320,7 +323,7 @@ http_interactions: } ], "has_more": false, - "url": "/v1/customers/cus_PQ0HyRJ0baOkF6/sources" + "url": "/v1/customers/cus_PVzOf3eECDs5zs/sources" } - recorded_at: Sun, 21 Jan 2024 23:17:33 GMT + recorded_at: Tue, 06 Feb 2024 22:47:01 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_error_message/when_payment_intent_state_is_not_in_requires_capture_state/does_not_succeed_if_payment_intent_state_is_not_requires_capture.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_error_message/when_payment_intent_state_is_not_in_requires_capture_state/does_not_succeed_if_payment_intent_state_is_not_requires_capture.yml index 69b9467e4e..0e863c3360 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_error_message/when_payment_intent_state_is_not_in_requires_capture_state/does_not_succeed_if_payment_intent_state_is_not_requires_capture.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_error_message/when_payment_intent_state_is_not_in_requires_capture_state/does_not_succeed_if_payment_intent_state_is_not_requires_capture.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_AI4rhd02172q6Z","request_duration_ms":1022}}' + - '{"last_request_metrics":{"request_id":"req_SclGRSFpwv1dZp","request_duration_ms":921}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:43 GMT + - Tue, 06 Feb 2024 22:48:57 GMT Content-Type: - application/json Content-Length: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - a9de3dab-8640-49f9-b3c7-c18e2c7485af + - ff675b08-7561-4bc0-a75f-5cfd3d283bb0 Original-Request: - - req_yYh72p3xNCMM0m + - req_R4APmKGddG5heh Request-Id: - - req_yYh72p3xNCMM0m + - req_R4APmKGddG5heh Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '243.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1ObAIkKuuB1fWySnfikscgf2", + "id": "pm_1OgxRlKuuB1fWySnFxERlhSg", "object": "payment_method", "billing_details": { "address": { @@ -118,35 +119,34 @@ http_interactions: }, "wallet": null }, - "created": 1705879182, + "created": 1707259737, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Sun, 21 Jan 2024 23:19:43 GMT + recorded_at: Tue, 06 Feb 2024 22:48:57 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 - string: amount=1000¤cy=aud&payment_method=pm_1ObAIkKuuB1fWySnfikscgf2&payment_method_types[0]=card&capture_method=manual + string: amount=1000¤cy=aud&payment_method=pm_1OgxRlKuuB1fWySnFxERlhSg&payment_method_types[0]=card&capture_method=manual headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_yYh72p3xNCMM0m","request_duration_ms":490}}' + - '{"last_request_metrics":{"request_id":"req_R4APmKGddG5heh","request_duration_ms":444}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:43 GMT + - Tue, 06 Feb 2024 22:48:58 GMT Content-Type: - application/json Content-Length: @@ -184,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - a78324ae-ee65-4a1b-bced-01ed70d7cd89 + - 21ffa3a3-55ee-4623-a3f8-ba6adb65d983 Original-Request: - - req_hh9G8X9YWnpzKq + - req_1yagzQvuuKeU55 Request-Id: - - req_hh9G8X9YWnpzKq + - req_1yagzQvuuKeU55 Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '176.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -203,7 +205,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIlKuuB1fWySn2JyJWnJB", + "id": "pi_3OgxRlKuuB1fWySn0wTKb3JI", "object": "payment_intent", "amount": 1000, "amount_capturable": 0, @@ -217,9 +219,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIlKuuB1fWySn2JyJWnJB_secret_Du0AAG9Bn7kFkVFBzdVtWh4zB", + "client_secret": "pi_3OgxRlKuuB1fWySn0wTKb3JI_secret_xVS0h5HHEFo4WuhB2hUx6QVUy", "confirmation_method": "automatic", - "created": 1705879183, + "created": 1707259737, "currency": "aud", "customer": null, "description": null, @@ -230,7 +232,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIkKuuB1fWySnfikscgf2", + "payment_method": "pm_1OgxRlKuuB1fWySnFxERlhSg", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -255,10 +257,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:43 GMT + recorded_at: Tue, 06 Feb 2024 22:48:57 GMT - request: method: get - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIlKuuB1fWySn2JyJWnJB + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRlKuuB1fWySn0wTKb3JI body: encoding: US-ASCII string: '' @@ -266,18 +268,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_hh9G8X9YWnpzKq","request_duration_ms":475}}' + - '{"last_request_metrics":{"request_id":"req_1yagzQvuuKeU55","request_duration_ms":366}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -290,7 +291,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:43 GMT + - Tue, 06 Feb 2024 22:48:58 GMT Content-Type: - application/json Content-Length: @@ -316,11 +317,13 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_gG5ra8Uywc0X0K + - req_syTIAs5eTss7Qw Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '52.00000000000001' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -329,7 +332,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIlKuuB1fWySn2JyJWnJB", + "id": "pi_3OgxRlKuuB1fWySn0wTKb3JI", "object": "payment_intent", "amount": 1000, "amount_capturable": 0, @@ -343,9 +346,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIlKuuB1fWySn2JyJWnJB_secret_Du0AAG9Bn7kFkVFBzdVtWh4zB", + "client_secret": "pi_3OgxRlKuuB1fWySn0wTKb3JI_secret_xVS0h5HHEFo4WuhB2hUx6QVUy", "confirmation_method": "automatic", - "created": 1705879183, + "created": 1707259737, "currency": "aud", "customer": null, "description": null, @@ -356,7 +359,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIkKuuB1fWySnfikscgf2", + "payment_method": "pm_1OgxRlKuuB1fWySnFxERlhSg", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -381,5 +384,5 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:43 GMT + recorded_at: Tue, 06 Feb 2024 22:48:58 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_purchase/completes_the_purchase.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_purchase/completes_the_purchase.yml index 0d5c379928..abc5eb7be9 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_purchase/completes_the_purchase.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_purchase/completes_the_purchase.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_4L4ikvXarxIJ7c","request_duration_ms":509}}' + - '{"last_request_metrics":{"request_id":"req_MfI6n9vYtJppCY","request_duration_ms":456}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:33 GMT + - Tue, 06 Feb 2024 22:48:48 GMT Content-Type: - application/json Content-Length: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - dd1df01a-0e8a-4577-94cf-38347521077e + - 8183b478-2cac-4784-918e-1fa9137eb783 Original-Request: - - req_mI8ZKBkvCxDaFs + - req_aauXRwUa21Rn44 Request-Id: - - req_mI8ZKBkvCxDaFs + - req_aauXRwUa21Rn44 Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '320.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1ObAIbKuuB1fWySnCJmWagcJ", + "id": "pm_1OgxRcKuuB1fWySnlgpGhQRx", "object": "payment_method", "billing_details": { "address": { @@ -118,35 +119,34 @@ http_interactions: }, "wallet": null }, - "created": 1705879173, + "created": 1707259728, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Sun, 21 Jan 2024 23:19:33 GMT + recorded_at: Tue, 06 Feb 2024 22:48:48 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 - string: amount=1000¤cy=aud&payment_method=pm_1ObAIbKuuB1fWySnCJmWagcJ&payment_method_types[0]=card&capture_method=manual + string: amount=1000¤cy=aud&payment_method=pm_1OgxRcKuuB1fWySnlgpGhQRx&payment_method_types[0]=card&capture_method=manual headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_mI8ZKBkvCxDaFs","request_duration_ms":571}}' + - '{"last_request_metrics":{"request_id":"req_aauXRwUa21Rn44","request_duration_ms":514}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:34 GMT + - Tue, 06 Feb 2024 22:48:49 GMT Content-Type: - application/json Content-Length: @@ -184,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 775f72d4-508d-48bb-8f91-688cbf2d92ce + - 69b0f506-cafd-4a1e-ac10-27b2dbe59a08 Original-Request: - - req_Gpli1oq7u4VoN9 + - req_Iox7NmMpPOSeOj Request-Id: - - req_Gpli1oq7u4VoN9 + - req_Iox7NmMpPOSeOj Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '169.99999999999997' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -203,7 +205,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIcKuuB1fWySn2O1vjvPU", + "id": "pi_3OgxRdKuuB1fWySn2NHUSkoV", "object": "payment_intent", "amount": 1000, "amount_capturable": 0, @@ -217,9 +219,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIcKuuB1fWySn2O1vjvPU_secret_X0MxT6gXpYikL10PJMRfglRFH", + "client_secret": "pi_3OgxRdKuuB1fWySn2NHUSkoV_secret_fqa5p6tkliGHLNxFllxqeCyHZ", "confirmation_method": "automatic", - "created": 1705879174, + "created": 1707259729, "currency": "aud", "customer": null, "description": null, @@ -230,7 +232,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIbKuuB1fWySnCJmWagcJ", + "payment_method": "pm_1OgxRcKuuB1fWySnlgpGhQRx", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -255,10 +257,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:34 GMT + recorded_at: Tue, 06 Feb 2024 22:48:49 GMT - request: method: post - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIcKuuB1fWySn2O1vjvPU/confirm + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRdKuuB1fWySn2NHUSkoV/confirm body: encoding: US-ASCII string: '' @@ -266,18 +268,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_Gpli1oq7u4VoN9","request_duration_ms":510}}' + - '{"last_request_metrics":{"request_id":"req_Iox7NmMpPOSeOj","request_duration_ms":372}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -290,7 +291,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:35 GMT + - Tue, 06 Feb 2024 22:48:50 GMT Content-Type: - application/json Content-Length: @@ -316,17 +317,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 5520e10c-2d2d-42b6-ab0a-f6f0188e7bbb + - 36334f16-392c-4333-8359-1372de407e79 Original-Request: - - req_rGIWL0xa2oABat + - req_3aCd73SQyJY6hp Request-Id: - - req_rGIWL0xa2oABat + - req_3aCd73SQyJY6hp Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '761.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -335,7 +338,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIcKuuB1fWySn2O1vjvPU", + "id": "pi_3OgxRdKuuB1fWySn2NHUSkoV", "object": "payment_intent", "amount": 1000, "amount_capturable": 1000, @@ -349,20 +352,20 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIcKuuB1fWySn2O1vjvPU_secret_X0MxT6gXpYikL10PJMRfglRFH", + "client_secret": "pi_3OgxRdKuuB1fWySn2NHUSkoV_secret_fqa5p6tkliGHLNxFllxqeCyHZ", "confirmation_method": "automatic", - "created": 1705879174, + "created": 1707259729, "currency": "aud", "customer": null, "description": null, "invoice": null, "last_payment_error": null, - "latest_charge": "ch_3ObAIcKuuB1fWySn23nBsjRJ", + "latest_charge": "ch_3OgxRdKuuB1fWySn2z5z43Nd", "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIbKuuB1fWySnCJmWagcJ", + "payment_method": "pm_1OgxRcKuuB1fWySnlgpGhQRx", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -387,10 +390,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:35 GMT + recorded_at: Tue, 06 Feb 2024 22:48:50 GMT - request: method: get - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIcKuuB1fWySn2O1vjvPU + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRdKuuB1fWySn2NHUSkoV body: encoding: US-ASCII string: '' @@ -398,18 +401,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_rGIWL0xa2oABat","request_duration_ms":1021}}' + - '{"last_request_metrics":{"request_id":"req_3aCd73SQyJY6hp","request_duration_ms":954}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -422,7 +424,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:37 GMT + - Tue, 06 Feb 2024 22:48:52 GMT Content-Type: - application/json Content-Length: @@ -448,11 +450,13 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_6jI10FqYIWGpcZ + - req_7k7XAjaihfcRJu Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '62.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -461,7 +465,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIcKuuB1fWySn2O1vjvPU", + "id": "pi_3OgxRdKuuB1fWySn2NHUSkoV", "object": "payment_intent", "amount": 1000, "amount_capturable": 1000, @@ -475,20 +479,20 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIcKuuB1fWySn2O1vjvPU_secret_X0MxT6gXpYikL10PJMRfglRFH", + "client_secret": "pi_3OgxRdKuuB1fWySn2NHUSkoV_secret_fqa5p6tkliGHLNxFllxqeCyHZ", "confirmation_method": "automatic", - "created": 1705879174, + "created": 1707259729, "currency": "aud", "customer": null, "description": null, "invoice": null, "last_payment_error": null, - "latest_charge": "ch_3ObAIcKuuB1fWySn23nBsjRJ", + "latest_charge": "ch_3OgxRdKuuB1fWySn2z5z43Nd", "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIbKuuB1fWySnCJmWagcJ", + "payment_method": "pm_1OgxRcKuuB1fWySnlgpGhQRx", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -513,10 +517,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:37 GMT + recorded_at: Tue, 06 Feb 2024 22:48:52 GMT - request: method: post - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIcKuuB1fWySn2O1vjvPU/capture + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRdKuuB1fWySn2NHUSkoV/capture body: encoding: UTF-8 string: amount_to_capture=1000 @@ -530,7 +534,7 @@ http_interactions: Stripe-Version: - '2019-05-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"1.123.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","publisher":"active_merchant"}' + - '{"bindings_version":"1.123.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","publisher":"active_merchant"}' X-Stripe-Client-User-Metadata: - '{"ip":null}' Connection: @@ -547,7 +551,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:38 GMT + - Tue, 06 Feb 2024 22:48:53 GMT Content-Type: - application/json Content-Length: @@ -573,17 +577,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 33bfe301-ae4d-4cc4-9613-38b5e1434866 + - a485c203-1acd-43d5-8b01-214969b521b7 Original-Request: - - req_AaryynarC4rVIR + - req_N8LT56o8kEGVse Request-Id: - - req_AaryynarC4rVIR + - req_N8LT56o8kEGVse Stripe-Should-Retry: - 'false' Stripe-Version: - '2019-05-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '839.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -592,7 +598,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIcKuuB1fWySn2O1vjvPU", + "id": "pi_3OgxRdKuuB1fWySn2NHUSkoV", "object": "payment_intent", "amount": 1000, "amount_capturable": 0, @@ -610,7 +616,7 @@ http_interactions: "object": "list", "data": [ { - "id": "ch_3ObAIcKuuB1fWySn23nBsjRJ", + "id": "ch_3OgxRdKuuB1fWySn2z5z43Nd", "object": "charge", "amount": 1000, "amount_captured": 1000, @@ -619,7 +625,7 @@ http_interactions: "application": null, "application_fee": null, "application_fee_amount": null, - "balance_transaction": "txn_3ObAIcKuuB1fWySn2A0Zw7lw", + "balance_transaction": "txn_3OgxRdKuuB1fWySn2ITB908C", "billing_details": { "address": { "city": null, @@ -635,7 +641,7 @@ http_interactions: }, "calculated_statement_descriptor": "OFNOFNOFN", "captured": true, - "created": 1705879174, + "created": 1707259729, "currency": "aud", "customer": null, "description": null, @@ -655,18 +661,18 @@ http_interactions: "network_status": "approved_by_network", "reason": null, "risk_level": "normal", - "risk_score": 21, + "risk_score": 51, "seller_message": "Payment complete.", "type": "authorized" }, "paid": true, - "payment_intent": "pi_3ObAIcKuuB1fWySn2O1vjvPU", - "payment_method": "pm_1ObAIbKuuB1fWySnCJmWagcJ", + "payment_intent": "pi_3OgxRdKuuB1fWySn2NHUSkoV", + "payment_method": "pm_1OgxRcKuuB1fWySnlgpGhQRx", "payment_method_details": { "card": { "amount_authorized": 1000, "brand": "visa", - "capture_before": 1706483974, + "capture_before": 1707864529, "checks": { "address_line1_check": null, "address_postal_code_check": null, @@ -705,14 +711,14 @@ http_interactions: "radar_options": {}, "receipt_email": null, "receipt_number": null, - "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xRmlxRXNLdXVCMWZXeVNuKIrNtq0GMgYj3BGwxAg6LBZQxvu8fXYvrG5O8lA9riQTny4XMHsjx7-vJYQJoFXiPQIdPF2he8ARngXj", + "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xRmlxRXNLdXVCMWZXeVNuKNXuiq4GMgYtsI4WPgs6LBYdsMzIPSJlo4vQFH9Yu8B6uLfF0eGhElnHk641M9O5lGt-v0QDZK59Dne6", "refunded": false, "refunds": { "object": "list", "data": [], "has_more": false, "total_count": 0, - "url": "/v1/charges/ch_3ObAIcKuuB1fWySn23nBsjRJ/refunds" + "url": "/v1/charges/ch_3OgxRdKuuB1fWySn2z5z43Nd/refunds" }, "review": null, "shipping": null, @@ -727,22 +733,22 @@ http_interactions: ], "has_more": false, "total_count": 1, - "url": "/v1/charges?payment_intent=pi_3ObAIcKuuB1fWySn2O1vjvPU" + "url": "/v1/charges?payment_intent=pi_3OgxRdKuuB1fWySn2NHUSkoV" }, - "client_secret": "pi_3ObAIcKuuB1fWySn2O1vjvPU_secret_X0MxT6gXpYikL10PJMRfglRFH", + "client_secret": "pi_3OgxRdKuuB1fWySn2NHUSkoV_secret_fqa5p6tkliGHLNxFllxqeCyHZ", "confirmation_method": "automatic", - "created": 1705879174, + "created": 1707259729, "currency": "aud", "customer": null, "description": null, "invoice": null, "last_payment_error": null, - "latest_charge": "ch_3ObAIcKuuB1fWySn23nBsjRJ", + "latest_charge": "ch_3OgxRdKuuB1fWySn2z5z43Nd", "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIbKuuB1fWySnCJmWagcJ", + "payment_method": "pm_1OgxRcKuuB1fWySnlgpGhQRx", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -767,5 +773,5 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:38 GMT + recorded_at: Tue, 06 Feb 2024 22:48:53 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_purchase/provides_an_error_message_to_help_developer_debug.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_purchase/provides_an_error_message_to_help_developer_debug.yml index 0ff0dea929..5106522da1 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_purchase/provides_an_error_message_to_help_developer_debug.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Spree_Gateway_StripeSCA/_purchase/provides_an_error_message_to_help_developer_debug.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_6jI10FqYIWGpcZ","request_duration_ms":395}}' + - '{"last_request_metrics":{"request_id":"req_7k7XAjaihfcRJu","request_duration_ms":279}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:39 GMT + - Tue, 06 Feb 2024 22:48:53 GMT Content-Type: - application/json Content-Length: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 13f6621e-ba40-401c-a85e-8c97af6ad6dc + - 0bc9652f-7d4c-47c4-abf7-cc31d326c082 Original-Request: - - req_DX2HCnuhBmBzbA + - req_E8J1KAmED9fHUt Request-Id: - - req_DX2HCnuhBmBzbA + - req_E8J1KAmED9fHUt Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '221.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1ObAIgKuuB1fWySnp7iv5vjN", + "id": "pm_1OgxRhKuuB1fWySnnANS0Zgf", "object": "payment_method", "billing_details": { "address": { @@ -118,35 +119,34 @@ http_interactions: }, "wallet": null }, - "created": 1705879178, + "created": 1707259733, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Sun, 21 Jan 2024 23:19:39 GMT + recorded_at: Tue, 06 Feb 2024 22:48:53 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 - string: amount=1000¤cy=aud&payment_method=pm_1ObAIgKuuB1fWySnp7iv5vjN&payment_method_types[0]=card&capture_method=manual + string: amount=1000¤cy=aud&payment_method=pm_1OgxRhKuuB1fWySnnANS0Zgf&payment_method_types[0]=card&capture_method=manual headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_DX2HCnuhBmBzbA","request_duration_ms":578}}' + - '{"last_request_metrics":{"request_id":"req_E8J1KAmED9fHUt","request_duration_ms":426}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:39 GMT + - Tue, 06 Feb 2024 22:48:54 GMT Content-Type: - application/json Content-Length: @@ -184,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 48ac6082-1e2a-4b16-ae10-a4b79ad9463a + - '0791d86f-f52b-4415-9ab6-6f159217af81' Original-Request: - - req_hXx5AdhkIWzvIp + - req_JwQfRkkQbpUaF2 Request-Id: - - req_hXx5AdhkIWzvIp + - req_JwQfRkkQbpUaF2 Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '172.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -203,7 +205,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIhKuuB1fWySn1KBx5Rh7", + "id": "pi_3OgxRhKuuB1fWySn1lcRdhDx", "object": "payment_intent", "amount": 1000, "amount_capturable": 0, @@ -217,9 +219,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIhKuuB1fWySn1KBx5Rh7_secret_27qUI4DQQDFuqAoArORswDJ3k", + "client_secret": "pi_3OgxRhKuuB1fWySn1lcRdhDx_secret_QRHqg0D4NK02Ue6wUWeMGT8TT", "confirmation_method": "automatic", - "created": 1705879179, + "created": 1707259733, "currency": "aud", "customer": null, "description": null, @@ -230,7 +232,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIgKuuB1fWySnp7iv5vjN", + "payment_method": "pm_1OgxRhKuuB1fWySnnANS0Zgf", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -255,10 +257,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:39 GMT + recorded_at: Tue, 06 Feb 2024 22:48:53 GMT - request: method: post - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIhKuuB1fWySn1KBx5Rh7/confirm + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRhKuuB1fWySn1lcRdhDx/confirm body: encoding: US-ASCII string: '' @@ -266,18 +268,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_hXx5AdhkIWzvIp","request_duration_ms":613}}' + - '{"last_request_metrics":{"request_id":"req_JwQfRkkQbpUaF2","request_duration_ms":379}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -290,7 +291,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:40 GMT + - Tue, 06 Feb 2024 22:48:54 GMT Content-Type: - application/json Content-Length: @@ -316,17 +317,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 108dce40-1672-4966-8ff7-df9b29db989a + - 96523412-4adf-4fea-9b5d-9cbac42bdbc1 Original-Request: - - req_AI4rhd02172q6Z + - req_SclGRSFpwv1dZp Request-Id: - - req_AI4rhd02172q6Z + - req_SclGRSFpwv1dZp Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '719.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -335,7 +338,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIhKuuB1fWySn1KBx5Rh7", + "id": "pi_3OgxRhKuuB1fWySn1lcRdhDx", "object": "payment_intent", "amount": 1000, "amount_capturable": 1000, @@ -349,20 +352,20 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIhKuuB1fWySn1KBx5Rh7_secret_27qUI4DQQDFuqAoArORswDJ3k", + "client_secret": "pi_3OgxRhKuuB1fWySn1lcRdhDx_secret_QRHqg0D4NK02Ue6wUWeMGT8TT", "confirmation_method": "automatic", - "created": 1705879179, + "created": 1707259733, "currency": "aud", "customer": null, "description": null, "invoice": null, "last_payment_error": null, - "latest_charge": "ch_3ObAIhKuuB1fWySn1zP05Pmj", + "latest_charge": "ch_3OgxRhKuuB1fWySn1nhym64g", "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIgKuuB1fWySnp7iv5vjN", + "payment_method": "pm_1OgxRhKuuB1fWySnnANS0Zgf", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -387,5 +390,5 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:40 GMT + recorded_at: Tue, 06 Feb 2024 22:48:54 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripeAccount/deauthorize_and_destroy/when_the_Stripe_API_disconnect_fails/destroys_the_record_and_notifies_Bugsnag.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripeAccount/deauthorize_and_destroy/when_the_Stripe_API_disconnect_fails/destroys_the_record_and_notifies_Bugsnag.yml index e9b150782c..3d1725a6ec 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripeAccount/deauthorize_and_destroy/when_the_Stripe_API_disconnect_fails/destroys_the_record_and_notifies_Bugsnag.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripeAccount/deauthorize_and_destroy/when_the_Stripe_API_disconnect_fails/destroys_the_record_and_notifies_Bugsnag.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_gG5ra8Uywc0X0K","request_duration_ms":368}}' + - '{"last_request_metrics":{"request_id":"req_syTIAs5eTss7Qw","request_duration_ms":265}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:44 GMT + - Tue, 06 Feb 2024 22:48:58 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -56,24 +55,24 @@ http_interactions: Referrer-Policy: - strict-origin-when-cross-origin Request-Id: - - req_N0jHvcWXU7xF8I + - req_NMSMlMkLt0QPPF Set-Cookie: - __Host-session=; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; secure; SameSite=None - __stripe_orig_props=%7B%22referrer%22%3A%22%22%2C%22landing%22%3A%22https%3A%2F%2Fconnect.stripe.com%2Foauth%2Fdeauthorize%22%7D; - domain=stripe.com; path=/; expires=Mon, 20 Jan 2025 23:19:44 GMT; secure; + domain=stripe.com; path=/; expires=Wed, 05 Feb 2025 22:48:58 GMT; secure; HttpOnly; SameSite=Lax - - cid=3a8e1ba3-9ae7-4e86-9751-0a35403f2465; domain=stripe.com; path=/; expires=Sat, - 20 Apr 2024 23:19:44 GMT; secure; SameSite=Lax - - machine_identifier=WVvKEJAnBq5vlD%2FBZrPMjAHBU2FyW7fQ92Oli0iAs%2F8BJm4JnMJ3gyke%2FzlbJaSl%2BFY%3D; - domain=stripe.com; path=/; expires=Mon, 20 Jan 2025 23:19:44 GMT; secure; + - cid=b4bb01e5-72ae-4559-9ed9-da4abdd31e38; domain=stripe.com; path=/; expires=Mon, + 06 May 2024 22:48:58 GMT; secure; SameSite=Lax + - machine_identifier=grsNI57m8zbKFBkgl1vz3mrgu0Qxnxi9U4EOo1L89VdeGOCtP2HA4Ajti%2By6eHzEbGA%3D; + domain=stripe.com; path=/; expires=Wed, 05 Feb 2025 22:48:58 GMT; secure; HttpOnly; SameSite=Lax - - private_machine_identifier=sVC7qdoNZ28xZXkc2xne7nPB5o%2F4XACCtFwDcdopcG%2FbcxSAo6YxIxeSBblUhHak7%2Fw%3D; - domain=stripe.com; path=/; expires=Mon, 20 Jan 2025 23:19:44 GMT; secure; + - private_machine_identifier=yxVsl8ZoZTvbYeQSTbgNOWOyIpEjMq1aXu63uxGSmzj8hr2Bb3bYR2roIJqaqkS3o2s%3D; + domain=stripe.com; path=/; expires=Wed, 05 Feb 2025 22:48:58 GMT; secure; HttpOnly; SameSite=None - site-auth=; domain=stripe.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; secure - - stripe.csrf=5eQpnkO8ljaphg5y7B4X0uZ5jYrEFrb55Jbmm7AC35jh19gtrcUBxVUABPsIGBSamcR37fb77GK_iNbUq9k0NTw-AYTZVJycukEVO439Kvi9z9cg-cSskl1sx-tlfI4INhUoXr7UEg%3D%3D; + - stripe.csrf=KAO-PdEc8RJbbPf4YJ6fKBxGCgTLfF3v2AAsZ1eTbn-HoLwl43QCDnicb3FfuoSCyS_VKgyLb6SBI9rWbuYQPTw-AYTZVJw88G_t5LIjLIpORiqNeBuUAmFZi2dH4yaosONZa--rnA%3D%3D; domain=stripe.com; path=/; secure; HttpOnly; SameSite=None Strict-Transport-Security: - max-age=63072000; includeSubDomains; preload @@ -83,17 +82,17 @@ http_interactions: Stripe-Parent-Id: - '0000000000000000' Stripe-Span-Id: - - a8e9e61296965589 + - e741d10a61b4e3b4 Www-Authenticate: - Bearer realm="Stripe" X-Apiori-Intentional-Latency: - 0s X-Apiori-Reqid: - - syd1DJquiVHdgEr1mnf6RLS + - syd1DKWLsXhHjUQLV4cVlbz X-Apiori-Server-Duration-Ms: - - '77' + - '121' X-Apiori-Upstream-Duration: - - 77.398085ms + - 121.512664ms X-Apiori-Upstream-Name: - manage-srv X-Apiori-Upstream-Region: @@ -103,21 +102,21 @@ http_interactions: X-Envoy-Attempt-Count: - '1' X-Envoy-Upstream-Service-Time: - - '255' + - '263' X-Robots-Tag: - none X-Stripe-Bg-Intended-Route-Color: - - green + - blue X-Stripe-C-Cost: - '2' X-Stripe-Client-Envoy-Start-Time-Us: - - '1705879184732166' + - '1707259738625670' X-Stripe-Rpc-C-Cost-Report: - Cg0IARIJY2VsbF8wMDA3Cg8IARILZ2xvYmFsX2NlbGw= X-Stripe-Server-Envoy-Start-Time-Us: - - '1705879184733241' + - '1707259738626420' X-Stripe-Server-Envoy-Upstream-Service-Time-Ms: - - '74' + - '119' body: encoding: UTF-8 string: |- @@ -125,5 +124,5 @@ http_interactions: "error": "invalid_client", "error_description": "No such application: 'bogus_client_id'" } - recorded_at: Sun, 21 Jan 2024 23:19:45 GMT + recorded_at: Tue, 06 Feb 2024 22:48:58 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripeAccount/deauthorize_and_destroy/when_the_Stripe_API_disconnect_succeeds/destroys_the_record.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripeAccount/deauthorize_and_destroy/when_the_Stripe_API_disconnect_succeeds/destroys_the_record.yml index 61d1742865..82e1cc03eb 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripeAccount/deauthorize_and_destroy/when_the_Stripe_API_disconnect_succeeds/destroys_the_record.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripeAccount/deauthorize_and_destroy/when_the_Stripe_API_disconnect_succeeds/destroys_the_record.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_gG5ra8Uywc0X0K","request_duration_ms":368}}' + - '{"last_request_metrics":{"request_id":"req_syTIAs5eTss7Qw","request_duration_ms":265}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,11 +33,11 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:46 GMT + - Tue, 06 Feb 2024 22:49:00 GMT Content-Type: - application/json Content-Length: - - '2916' + - '3043' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 37159153-2311-4560-bc55-6a6ae24fe4cf + - 8a7c008b-4ed2-42a6-b177-036d7f21c02a Original-Request: - - req_f5FaZouH4WAiEK + - req_MJcgGsyBNk1zlH Request-Id: - - req_f5FaZouH4WAiEK + - req_MJcgGsyBNk1zlH Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '1717.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,9 +79,11 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "acct_1ObAInQRl3qk9JPs", + "id": "acct_1OgxRn4ECf3dheuT", "object": "account", "business_profile": { + "annual_revenue": null, + "estimated_worker_count": null, "mcc": null, "name": null, "product_description": null, @@ -98,7 +101,7 @@ http_interactions: "type": "application" }, "country": "AU", - "created": 1705879186, + "created": 1707259740, "default_currency": "aud", "details_submitted": false, "email": "jumping.jack@example.com", @@ -107,7 +110,7 @@ http_interactions: "data": [], "has_more": false, "total_count": 0, - "url": "/v1/accounts/acct_1ObAInQRl3qk9JPs/external_accounts" + "url": "/v1/accounts/acct_1OgxRn4ECf3dheuT/external_accounts" }, "future_requirements": { "alternatives": [], @@ -179,6 +182,9 @@ http_interactions: "display_name": null, "timezone": "Etc/UTC" }, + "invoices": { + "default_account_tax_ids": null + }, "payments": { "statement_descriptor": null, "statement_descriptor_kana": null, @@ -201,29 +207,28 @@ http_interactions: }, "type": "standard" } - recorded_at: Sun, 21 Jan 2024 23:19:46 GMT + recorded_at: Tue, 06 Feb 2024 22:49:00 GMT - request: method: post uri: https://connect.stripe.com/oauth/deauthorize body: encoding: UTF-8 - string: stripe_user_id=acct_1ObAInQRl3qk9JPs&client_id= + string: stripe_user_id=acct_1OgxRn4ECf3dheuT&client_id= headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_f5FaZouH4WAiEK","request_duration_ms":1804}}' + - '{"last_request_metrics":{"request_id":"req_MJcgGsyBNk1zlH","request_duration_ms":1998}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -236,7 +241,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:47 GMT + - Tue, 06 Feb 2024 22:49:01 GMT Content-Type: - application/json Content-Length: @@ -258,24 +263,24 @@ http_interactions: Referrer-Policy: - strict-origin-when-cross-origin Request-Id: - - req_tDciq7l72MsLWK + - req_886vYrnTTHBtql Set-Cookie: - __Host-session=; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; secure; SameSite=None - __stripe_orig_props=%7B%22referrer%22%3A%22%22%2C%22landing%22%3A%22https%3A%2F%2Fconnect.stripe.com%2Foauth%2Fdeauthorize%22%7D; - domain=stripe.com; path=/; expires=Mon, 20 Jan 2025 23:19:47 GMT; secure; + domain=stripe.com; path=/; expires=Wed, 05 Feb 2025 22:49:01 GMT; secure; HttpOnly; SameSite=Lax - - cid=3c61f2e0-0ad7-4b87-a77e-ea0de90c0a4f; domain=stripe.com; path=/; expires=Sat, - 20 Apr 2024 23:19:47 GMT; secure; SameSite=Lax - - machine_identifier=ji6fQeTk7BfUF6FKPl9myZxBPaKSmCP8EjAmi61M9%2FJcpqKQewTD8alyMw4%2FOwxuMU8%3D; - domain=stripe.com; path=/; expires=Mon, 20 Jan 2025 23:19:47 GMT; secure; + - cid=23232868-a107-4b91-92da-8fd8e632ae19; domain=stripe.com; path=/; expires=Mon, + 06 May 2024 22:49:01 GMT; secure; SameSite=Lax + - machine_identifier=G6qKOkyNoewfUQv7NXa8sdGfO8%2FNwvY%2Fgq5E4HdVn2DqcY5RO0Y%2FAfGlox1AvKUbNbs%3D; + domain=stripe.com; path=/; expires=Wed, 05 Feb 2025 22:49:01 GMT; secure; HttpOnly; SameSite=Lax - - private_machine_identifier=a9tGxJkptXnJK%2Bs%2FXBiN0kBDO6kWa2CEM34HJKYZTe%2BdSjX26AT3B6yvMcitkGNGVP0%3D; - domain=stripe.com; path=/; expires=Mon, 20 Jan 2025 23:19:47 GMT; secure; + - private_machine_identifier=YPbPAxcqXd2JK4uhumHFQPFAYzu6ltp6n9rv2uSZYrRH6BjrERkpP1lEdoEgLwIkJuQ%3D; + domain=stripe.com; path=/; expires=Wed, 05 Feb 2025 22:49:01 GMT; secure; HttpOnly; SameSite=None - site-auth=; domain=stripe.com; path=/; max-age=0; expires=Thu, 01 Jan 1970 00:00:00 GMT; secure - - stripe.csrf=j6mPSHgyqtnKugVY5La-ovfl464NzWLlTCrMUq0HMdanYw1n8lG3eRpupl16uoLT9vSDRDClFOQscvPfYxnyrTw-AYTZVJwZ9iL5E8o41tSLYcp3o-MsEdMDNR85930MUQhWzpyvOQ%3D%3D; + - stripe.csrf=CBcHdN3-dVUWw5ajNYbzTalcN_yXpC_Ueur1Rhd0456DINEv8aKp9q7CV76fnHdMAxt0ta0mH6SLf1dBqToTtzw-AYTZVJzEVc1-oce1UIAZDgPr3LDr_bF5Bk70K8rFkrJfVOfjfA%3D%3D; domain=stripe.com; path=/; secure; HttpOnly; SameSite=None Strict-Transport-Security: - max-age=63072000; includeSubDomains; preload @@ -285,15 +290,15 @@ http_interactions: Stripe-Parent-Id: - '0000000000000000' Stripe-Span-Id: - - c669fde8764e5062 + - 11a6980cf99f5c2e X-Apiori-Intentional-Latency: - 0s X-Apiori-Reqid: - - syd2DJquinJLc3y2SNiqSWa + - syd1DKWLspPtYHcdi4JFVSK X-Apiori-Server-Duration-Ms: - - '156' + - '225' X-Apiori-Upstream-Duration: - - 156.360766ms + - 225.672361ms X-Apiori-Upstream-Name: - manage-srv X-Apiori-Upstream-Region: @@ -303,28 +308,28 @@ http_interactions: X-Envoy-Attempt-Count: - '1' X-Envoy-Upstream-Service-Time: - - '335' + - '371' X-Robots-Tag: - none X-Stripe-Bg-Intended-Route-Color: - - green + - blue X-Stripe-C-Cost: - '22' X-Stripe-Client-Envoy-Start-Time-Us: - - '1705879187253339' + - '1707259741106446' X-Stripe-Rpc-C-Cost-Report: - Cg0IFBIJY2VsbF8wMDA3Cg8IAhILZ2xvYmFsX2NlbGw= X-Stripe-Server-Envoy-Start-Time-Us: - - '1705879187254248' + - '1707259741107504' X-Stripe-Server-Envoy-Upstream-Service-Time-Ms: - - '154' + - '222' Stripe-Action-Id: - - syd2DJquinJLc3y2SNiqSWa + - syd1DKWLspPtYHcdi4JFVSK body: encoding: UTF-8 string: |- { - "stripe_user_id": "acct_1ObAInQRl3qk9JPs" + "stripe_user_id": "acct_1OgxRn4ECf3dheuT" } - recorded_at: Sun, 21 Jan 2024 23:19:47 GMT + recorded_at: Tue, 06 Feb 2024 22:49:01 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_captured_/when_the_Stripe_payment_has_been_captured/returns_true.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_captured_/when_the_Stripe_payment_has_been_captured/returns_true.yml index 5ef9e296e2..7c27fa5882 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_captured_/when_the_Stripe_payment_has_been_captured/returns_true.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_captured_/when_the_Stripe_payment_has_been_captured/returns_true.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_pVM4kINl9cjxOL","request_duration_ms":1225}}' + - '{"last_request_metrics":{"request_id":"req_c3MoIQO8Y9e105","request_duration_ms":1220}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:56 GMT + - Tue, 06 Feb 2024 22:49:08 GMT Content-Type: - application/json Content-Length: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 4267672a-7452-4c52-8be2-40504488a3cf + - f8ba922a-132c-4be4-8ac5-070881e319d9 Original-Request: - - req_9TaXKD84RBbNXC + - req_78FzjBf3tLH55e Request-Id: - - req_9TaXKD84RBbNXC + - req_78FzjBf3tLH55e Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '208.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1ObAIyKuuB1fWySnzC1wO2Yg", + "id": "pm_1OgxRwKuuB1fWySnJoAslgJF", "object": "payment_method", "billing_details": { "address": { @@ -118,35 +119,34 @@ http_interactions: }, "wallet": null }, - "created": 1705879196, + "created": 1707259748, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Sun, 21 Jan 2024 23:19:56 GMT + recorded_at: Tue, 06 Feb 2024 22:49:08 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 - string: amount=100¤cy=aud&payment_method=pm_1ObAIyKuuB1fWySnzC1wO2Yg&payment_method_types[0]=card&capture_method=manual + string: amount=100¤cy=aud&payment_method=pm_1OgxRwKuuB1fWySnJoAslgJF&payment_method_types[0]=card&capture_method=manual headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_9TaXKD84RBbNXC","request_duration_ms":546}}' + - '{"last_request_metrics":{"request_id":"req_78FzjBf3tLH55e","request_duration_ms":406}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:56 GMT + - Tue, 06 Feb 2024 22:49:09 GMT Content-Type: - application/json Content-Length: @@ -184,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 313113f5-95ed-44c1-b97c-10e179a39def + - 98db4a60-0135-406a-b950-1125a2433353 Original-Request: - - req_dOJbd1KLgwDxfk + - req_fiza0gXE6Y48Dd Request-Id: - - req_dOJbd1KLgwDxfk + - req_fiza0gXE6Y48Dd Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '222.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -203,7 +205,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIyKuuB1fWySn0sU9rRO5", + "id": "pi_3OgxRwKuuB1fWySn2qMdjX0C", "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -217,9 +219,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIyKuuB1fWySn0sU9rRO5_secret_oQznkuNwcSxsncXke7cRLSKDv", + "client_secret": "pi_3OgxRwKuuB1fWySn2qMdjX0C_secret_n6XR9TPrdtdcvflyzGwZKrLZB", "confirmation_method": "automatic", - "created": 1705879196, + "created": 1707259748, "currency": "aud", "customer": null, "description": null, @@ -230,7 +232,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIyKuuB1fWySnzC1wO2Yg", + "payment_method": "pm_1OgxRwKuuB1fWySnJoAslgJF", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -255,10 +257,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:56 GMT + recorded_at: Tue, 06 Feb 2024 22:49:08 GMT - request: method: post - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIyKuuB1fWySn0sU9rRO5/confirm + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRwKuuB1fWySn2qMdjX0C/confirm body: encoding: US-ASCII string: '' @@ -266,18 +268,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dOJbd1KLgwDxfk","request_duration_ms":456}}' + - '{"last_request_metrics":{"request_id":"req_fiza0gXE6Y48Dd","request_duration_ms":423}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -290,7 +291,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:57 GMT + - Tue, 06 Feb 2024 22:49:10 GMT Content-Type: - application/json Content-Length: @@ -316,17 +317,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 2455c644-0642-47b7-a6b0-4f0a61a90478 + - e81d66b0-6014-400f-90b6-1fe212a783f0 Original-Request: - - req_zR6hsug8AmE41D + - req_N0CBJGYmn0yVvy Request-Id: - - req_zR6hsug8AmE41D + - req_N0CBJGYmn0yVvy Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '818.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -335,7 +338,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIyKuuB1fWySn0sU9rRO5", + "id": "pi_3OgxRwKuuB1fWySn2qMdjX0C", "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -349,20 +352,20 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIyKuuB1fWySn0sU9rRO5_secret_oQznkuNwcSxsncXke7cRLSKDv", + "client_secret": "pi_3OgxRwKuuB1fWySn2qMdjX0C_secret_n6XR9TPrdtdcvflyzGwZKrLZB", "confirmation_method": "automatic", - "created": 1705879196, + "created": 1707259748, "currency": "aud", "customer": null, "description": null, "invoice": null, "last_payment_error": null, - "latest_charge": "ch_3ObAIyKuuB1fWySn08hXVZwK", + "latest_charge": "ch_3OgxRwKuuB1fWySn2uFbGJRw", "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIyKuuB1fWySnzC1wO2Yg", + "payment_method": "pm_1OgxRwKuuB1fWySnJoAslgJF", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -387,10 +390,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:58 GMT + recorded_at: Tue, 06 Feb 2024 22:49:09 GMT - request: method: post - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIyKuuB1fWySn0sU9rRO5/capture + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRwKuuB1fWySn2qMdjX0C/capture body: encoding: US-ASCII string: '' @@ -398,18 +401,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_zR6hsug8AmE41D","request_duration_ms":1075}}' + - '{"last_request_metrics":{"request_id":"req_N0CBJGYmn0yVvy","request_duration_ms":1011}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -422,7 +424,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:59 GMT + - Tue, 06 Feb 2024 22:49:11 GMT Content-Type: - application/json Content-Length: @@ -448,17 +450,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - e184b23c-b090-47d9-989c-5b8c591967e5 + - 96d8b98d-5a7a-4098-b3f4-94c2635ad8fe Original-Request: - - req_MSVnHeamAwx9Dr + - req_TvW3068XprAwvT Request-Id: - - req_MSVnHeamAwx9Dr + - req_TvW3068XprAwvT Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '920.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -467,7 +471,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIyKuuB1fWySn0sU9rRO5", + "id": "pi_3OgxRwKuuB1fWySn2qMdjX0C", "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -481,20 +485,20 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIyKuuB1fWySn0sU9rRO5_secret_oQznkuNwcSxsncXke7cRLSKDv", + "client_secret": "pi_3OgxRwKuuB1fWySn2qMdjX0C_secret_n6XR9TPrdtdcvflyzGwZKrLZB", "confirmation_method": "automatic", - "created": 1705879196, + "created": 1707259748, "currency": "aud", "customer": null, "description": null, "invoice": null, "last_payment_error": null, - "latest_charge": "ch_3ObAIyKuuB1fWySn08hXVZwK", + "latest_charge": "ch_3OgxRwKuuB1fWySn2uFbGJRw", "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIyKuuB1fWySnzC1wO2Yg", + "payment_method": "pm_1OgxRwKuuB1fWySnJoAslgJF", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -519,10 +523,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:59 GMT + recorded_at: Tue, 06 Feb 2024 22:49:11 GMT - request: method: get - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIyKuuB1fWySn0sU9rRO5 + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRwKuuB1fWySn2qMdjX0C body: encoding: US-ASCII string: '' @@ -530,18 +534,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_MSVnHeamAwx9Dr","request_duration_ms":1124}}' + - '{"last_request_metrics":{"request_id":"req_TvW3068XprAwvT","request_duration_ms":1114}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -554,7 +557,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:59 GMT + - Tue, 06 Feb 2024 22:49:11 GMT Content-Type: - application/json Content-Length: @@ -580,11 +583,13 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_vJl755fY2d5z2C + - req_E4AKQLScOClor3 Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '63.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -593,7 +598,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIyKuuB1fWySn0sU9rRO5", + "id": "pi_3OgxRwKuuB1fWySn2qMdjX0C", "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -607,20 +612,20 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIyKuuB1fWySn0sU9rRO5_secret_oQznkuNwcSxsncXke7cRLSKDv", + "client_secret": "pi_3OgxRwKuuB1fWySn2qMdjX0C_secret_n6XR9TPrdtdcvflyzGwZKrLZB", "confirmation_method": "automatic", - "created": 1705879196, + "created": 1707259748, "currency": "aud", "customer": null, "description": null, "invoice": null, "last_payment_error": null, - "latest_charge": "ch_3ObAIyKuuB1fWySn08hXVZwK", + "latest_charge": "ch_3OgxRwKuuB1fWySn2uFbGJRw", "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIyKuuB1fWySnzC1wO2Yg", + "payment_method": "pm_1OgxRwKuuB1fWySnJoAslgJF", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -645,5 +650,5 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:59 GMT + recorded_at: Tue, 06 Feb 2024 22:49:11 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_captured_/when_the_payment_is_not_a_Stripe_payment_or_does_not_have_a_payment_intent/returns_false.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_captured_/when_the_payment_is_not_a_Stripe_payment_or_does_not_have_a_payment_intent/returns_false.yml index 009ade61a0..4e9a10740e 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_captured_/when_the_payment_is_not_a_Stripe_payment_or_does_not_have_a_payment_intent/returns_false.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_captured_/when_the_payment_is_not_a_Stripe_payment_or_does_not_have_a_payment_intent/returns_false.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_dtKvu4cgMz9NCY","request_duration_ms":452}}' + - '{"last_request_metrics":{"request_id":"req_964R6MEH0KEtUW","request_duration_ms":385}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:52 GMT + - Tue, 06 Feb 2024 22:49:05 GMT Content-Type: - application/json Content-Length: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 6a6570a7-8bfb-410b-b79b-315c5c7c3847 + - 5b45034d-c612-416c-b4fc-eb36794dab0d Original-Request: - - req_SlABMw2T6SgZIY + - req_bpDgb7IALggfPk Request-Id: - - req_SlABMw2T6SgZIY + - req_bpDgb7IALggfPk Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '239.00000000000003' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1ObAIuKuuB1fWySnGelGu7Bh", + "id": "pm_1OgxRtKuuB1fWySnlHJCohPD", "object": "payment_method", "billing_details": { "address": { @@ -118,35 +119,34 @@ http_interactions: }, "wallet": null }, - "created": 1705879192, + "created": 1707259745, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Sun, 21 Jan 2024 23:19:52 GMT + recorded_at: Tue, 06 Feb 2024 22:49:05 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 - string: amount=100¤cy=aud&payment_method=pm_1ObAIuKuuB1fWySnGelGu7Bh&payment_method_types[0]=card&capture_method=manual + string: amount=100¤cy=aud&payment_method=pm_1OgxRtKuuB1fWySnlHJCohPD&payment_method_types[0]=card&capture_method=manual headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_SlABMw2T6SgZIY","request_duration_ms":571}}' + - '{"last_request_metrics":{"request_id":"req_bpDgb7IALggfPk","request_duration_ms":454}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:53 GMT + - Tue, 06 Feb 2024 22:49:05 GMT Content-Type: - application/json Content-Length: @@ -184,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 6151ceeb-7d45-4a44-8f83-8186a775f88e + - 9da97b20-e0a8-481d-9847-a4ed863e0029 Original-Request: - - req_oL7uwjQbi30gSi + - req_kxP5BULLaEW7sp Request-Id: - - req_oL7uwjQbi30gSi + - req_kxP5BULLaEW7sp Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '189.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -203,7 +205,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIvKuuB1fWySn0z3kon9C", + "id": "pi_3OgxRtKuuB1fWySn2IRyzj28", "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -217,9 +219,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIvKuuB1fWySn0z3kon9C_secret_cwxTRwWA8mHNZgBZdBp5SalHT", + "client_secret": "pi_3OgxRtKuuB1fWySn2IRyzj28_secret_DpoZHJQwF8mGrPJC0fHrHdP0j", "confirmation_method": "automatic", - "created": 1705879193, + "created": 1707259745, "currency": "aud", "customer": null, "description": null, @@ -230,7 +232,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIuKuuB1fWySnGelGu7Bh", + "payment_method": "pm_1OgxRtKuuB1fWySnlHJCohPD", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -255,10 +257,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:53 GMT + recorded_at: Tue, 06 Feb 2024 22:49:05 GMT - request: method: post - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIvKuuB1fWySn0z3kon9C/confirm + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRtKuuB1fWySn2IRyzj28/confirm body: encoding: US-ASCII string: '' @@ -266,18 +268,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_oL7uwjQbi30gSi","request_duration_ms":509}}' + - '{"last_request_metrics":{"request_id":"req_kxP5BULLaEW7sp","request_duration_ms":384}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -290,7 +291,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:54 GMT + - Tue, 06 Feb 2024 22:49:06 GMT Content-Type: - application/json Content-Length: @@ -316,17 +317,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - f59efae7-d875-4113-ab3f-c91a1b5c861f + - b4af4e32-21d1-4fd0-b0d6-a4aa2de8e715 Original-Request: - - req_PUMXqb8xU81Td2 + - req_lSHjEoTAJEXhJu Request-Id: - - req_PUMXqb8xU81Td2 + - req_lSHjEoTAJEXhJu Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '705.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -335,7 +338,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIvKuuB1fWySn0z3kon9C", + "id": "pi_3OgxRtKuuB1fWySn2IRyzj28", "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -349,20 +352,20 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIvKuuB1fWySn0z3kon9C_secret_cwxTRwWA8mHNZgBZdBp5SalHT", + "client_secret": "pi_3OgxRtKuuB1fWySn2IRyzj28_secret_DpoZHJQwF8mGrPJC0fHrHdP0j", "confirmation_method": "automatic", - "created": 1705879193, + "created": 1707259745, "currency": "aud", "customer": null, "description": null, "invoice": null, "last_payment_error": null, - "latest_charge": "ch_3ObAIvKuuB1fWySn0pTt3wIi", + "latest_charge": "ch_3OgxRtKuuB1fWySn2Blvg7cc", "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIuKuuB1fWySnGelGu7Bh", + "payment_method": "pm_1OgxRtKuuB1fWySnlHJCohPD", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -387,10 +390,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:54 GMT + recorded_at: Tue, 06 Feb 2024 22:49:06 GMT - request: method: post - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIvKuuB1fWySn0z3kon9C/capture + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRtKuuB1fWySn2IRyzj28/capture body: encoding: US-ASCII string: '' @@ -398,18 +401,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_PUMXqb8xU81Td2","request_duration_ms":1099}}' + - '{"last_request_metrics":{"request_id":"req_lSHjEoTAJEXhJu","request_duration_ms":898}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -422,7 +424,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:55 GMT + - Tue, 06 Feb 2024 22:49:08 GMT Content-Type: - application/json Content-Length: @@ -448,17 +450,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - b4b19abb-3158-4729-9bce-bb1d02442115 + - 0f93a7c9-a55a-444b-96e5-238a0fdd3b89 Original-Request: - - req_pVM4kINl9cjxOL + - req_c3MoIQO8Y9e105 Request-Id: - - req_pVM4kINl9cjxOL + - req_c3MoIQO8Y9e105 Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '1027.9999999999998' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -467,7 +471,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIvKuuB1fWySn0z3kon9C", + "id": "pi_3OgxRtKuuB1fWySn2IRyzj28", "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -481,20 +485,20 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIvKuuB1fWySn0z3kon9C_secret_cwxTRwWA8mHNZgBZdBp5SalHT", + "client_secret": "pi_3OgxRtKuuB1fWySn2IRyzj28_secret_DpoZHJQwF8mGrPJC0fHrHdP0j", "confirmation_method": "automatic", - "created": 1705879193, + "created": 1707259745, "currency": "aud", "customer": null, "description": null, "invoice": null, "last_payment_error": null, - "latest_charge": "ch_3ObAIvKuuB1fWySn0pTt3wIi", + "latest_charge": "ch_3OgxRtKuuB1fWySn2Blvg7cc", "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIuKuuB1fWySnGelGu7Bh", + "payment_method": "pm_1OgxRtKuuB1fWySnlHJCohPD", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -519,5 +523,5 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:55 GMT + recorded_at: Tue, 06 Feb 2024 22:49:07 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_has_a_payment_intent/and_the_last_action_on_the_Stripe_payment_failed/returns_failed_response.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_has_a_payment_intent/and_the_last_action_on_the_Stripe_payment_failed/returns_failed_response.yml index 775dc31eec..6e837b94d3 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_has_a_payment_intent/and_the_last_action_on_the_Stripe_payment_failed/returns_failed_response.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_has_a_payment_intent/and_the_last_action_on_the_Stripe_payment_failed/returns_failed_response.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_9Nr18eRE8SEidn","request_duration_ms":447}}' + - '{"last_request_metrics":{"request_id":"req_oHsM7WIPr0Lxio","request_duration_ms":296}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:51 GMT + - Tue, 06 Feb 2024 22:49:04 GMT Content-Type: - application/json Content-Length: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - a77f5880-fa5f-40d9-af30-2fb493461745 + - 6c764c59-a653-4c01-8650-0ae7a3726034 Original-Request: - - req_P8XGVIsRiY9tJR + - req_ev8GYXGuwmdK5e Request-Id: - - req_P8XGVIsRiY9tJR + - req_ev8GYXGuwmdK5e Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '224.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1ObAItKuuB1fWySnbK6jUlZU", + "id": "pm_1OgxRsKuuB1fWySnCZeT9dV1", "object": "payment_method", "billing_details": { "address": { @@ -118,35 +119,34 @@ http_interactions: }, "wallet": null }, - "created": 1705879191, + "created": 1707259744, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Sun, 21 Jan 2024 23:19:51 GMT + recorded_at: Tue, 06 Feb 2024 22:49:04 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 - string: amount=100¤cy=aud&payment_method=pm_1ObAItKuuB1fWySnbK6jUlZU&payment_method_types[0]=card&capture_method=manual + string: amount=100¤cy=aud&payment_method=pm_1OgxRsKuuB1fWySnCZeT9dV1&payment_method_types[0]=card&capture_method=manual headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_P8XGVIsRiY9tJR","request_duration_ms":627}}' + - '{"last_request_metrics":{"request_id":"req_ev8GYXGuwmdK5e","request_duration_ms":424}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:52 GMT + - Tue, 06 Feb 2024 22:49:04 GMT Content-Type: - application/json Content-Length: @@ -184,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - ec84ff82-5f66-4408-bc8e-f3409356f9d6 + - bed30446-f21c-456d-8e7d-a501f7229835 Original-Request: - - req_dtKvu4cgMz9NCY + - req_964R6MEH0KEtUW Request-Id: - - req_dtKvu4cgMz9NCY + - req_964R6MEH0KEtUW Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '185.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -203,7 +205,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAItKuuB1fWySn1ksisNpW", + "id": "pi_3OgxRsKuuB1fWySn0MABlhCD", "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -217,9 +219,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAItKuuB1fWySn1ksisNpW_secret_6eijyIluZn4P7qc6kYXoTlprC", + "client_secret": "pi_3OgxRsKuuB1fWySn0MABlhCD_secret_lZggDIDEljaSOhBn4mqcz9UZe", "confirmation_method": "automatic", - "created": 1705879191, + "created": 1707259744, "currency": "aud", "customer": null, "description": null, @@ -230,7 +232,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAItKuuB1fWySnbK6jUlZU", + "payment_method": "pm_1OgxRsKuuB1fWySnCZeT9dV1", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -255,5 +257,5 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:52 GMT + recorded_at: Tue, 06 Feb 2024 22:49:04 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_has_a_payment_intent/fetches_the_status_with_Stripe_PaymentIntentValidator.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_has_a_payment_intent/fetches_the_status_with_Stripe_PaymentIntentValidator.yml index 0694af40b0..5cf7899b5d 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_has_a_payment_intent/fetches_the_status_with_Stripe_PaymentIntentValidator.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_has_a_payment_intent/fetches_the_status_with_Stripe_PaymentIntentValidator.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_vAJaRtWnhYdamz","request_duration_ms":499}}' + - '{"last_request_metrics":{"request_id":"req_RB4dkPw6sXMeAz","request_duration_ms":373}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:49 GMT + - Tue, 06 Feb 2024 22:49:03 GMT Content-Type: - application/json Content-Length: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 815cd186-8efd-414a-b169-cbcbece400fd + - d4f53fd8-96b7-4a29-b5e5-fc410e6634b0 Original-Request: - - req_PE36ryEz4XWH8B + - req_8aaZZniQZJeIYs Request-Id: - - req_PE36ryEz4XWH8B + - req_8aaZZniQZJeIYs Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '239.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1ObAIrKuuB1fWySnlPjoYeX4", + "id": "pm_1OgxRqKuuB1fWySn9NpfKlAy", "object": "payment_method", "billing_details": { "address": { @@ -118,35 +119,34 @@ http_interactions: }, "wallet": null }, - "created": 1705879189, + "created": 1707259743, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Sun, 21 Jan 2024 23:19:49 GMT + recorded_at: Tue, 06 Feb 2024 22:49:03 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 - string: amount=100¤cy=aud&payment_method=pm_1ObAIrKuuB1fWySnlPjoYeX4&payment_method_types[0]=card&capture_method=manual + string: amount=100¤cy=aud&payment_method=pm_1OgxRqKuuB1fWySn9NpfKlAy&payment_method_types[0]=card&capture_method=manual headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_PE36ryEz4XWH8B","request_duration_ms":608}}' + - '{"last_request_metrics":{"request_id":"req_8aaZZniQZJeIYs","request_duration_ms":451}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:50 GMT + - Tue, 06 Feb 2024 22:49:03 GMT Content-Type: - application/json Content-Length: @@ -184,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - b61672ba-0833-4633-82dd-d1e1fe88275a + - b522570a-2e64-4861-bc94-fdaab4c3cb07 Original-Request: - - req_3wZMnDsejPsCCt + - req_GCYrYPT8N0ByKj Request-Id: - - req_3wZMnDsejPsCCt + - req_GCYrYPT8N0ByKj Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '221.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -203,7 +205,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIsKuuB1fWySn14vEpMji", + "id": "pi_3OgxRrKuuB1fWySn015Aq6DT", "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -217,9 +219,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIsKuuB1fWySn14vEpMji_secret_2whq57pE7tm8n0zaMSKSCsK0q", + "client_secret": "pi_3OgxRrKuuB1fWySn015Aq6DT_secret_JIGSUIhlqfVYn1jnIuMFfeDEy", "confirmation_method": "automatic", - "created": 1705879190, + "created": 1707259743, "currency": "aud", "customer": null, "description": null, @@ -230,7 +232,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIrKuuB1fWySnlPjoYeX4", + "payment_method": "pm_1OgxRqKuuB1fWySn9NpfKlAy", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -255,10 +257,10 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:50 GMT + recorded_at: Tue, 06 Feb 2024 22:49:03 GMT - request: method: get - uri: https://api.stripe.com/v1/payment_intents/pi_3ObAIsKuuB1fWySn14vEpMji + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRrKuuB1fWySn015Aq6DT body: encoding: US-ASCII string: '' @@ -266,18 +268,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_3wZMnDsejPsCCt","request_duration_ms":505}}' + - '{"last_request_metrics":{"request_id":"req_GCYrYPT8N0ByKj","request_duration_ms":420}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -290,7 +291,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:50 GMT + - Tue, 06 Feb 2024 22:49:04 GMT Content-Type: - application/json Content-Length: @@ -316,11 +317,13 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_9Nr18eRE8SEidn + - req_oHsM7WIPr0Lxio Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '67.99999999999999' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -329,7 +332,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIsKuuB1fWySn14vEpMji", + "id": "pi_3OgxRrKuuB1fWySn015Aq6DT", "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -343,9 +346,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIsKuuB1fWySn14vEpMji_secret_2whq57pE7tm8n0zaMSKSCsK0q", + "client_secret": "pi_3OgxRrKuuB1fWySn015Aq6DT_secret_JIGSUIhlqfVYn1jnIuMFfeDEy", "confirmation_method": "automatic", - "created": 1705879190, + "created": 1707259743, "currency": "aud", "customer": null, "description": null, @@ -356,7 +359,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIrKuuB1fWySnlPjoYeX4", + "payment_method": "pm_1OgxRqKuuB1fWySn9NpfKlAy", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -381,5 +384,5 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:50 GMT + recorded_at: Tue, 06 Feb 2024 22:49:03 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_is_not_a_Stripe_payment_or_does_not_have_a_payment_intent/returns_nil.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_is_not_a_Stripe_payment_or_does_not_have_a_payment_intent/returns_nil.yml index c20517a2ef..cb50985150 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_is_not_a_Stripe_payment_or_does_not_have_a_payment_intent/returns_nil.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/StripePaymentStatus/_stripe_status/when_the_payment_is_not_a_Stripe_payment_or_does_not_have_a_payment_intent/returns_nil.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_tDciq7l72MsLWK","request_duration_ms":543}}' + - '{"last_request_metrics":{"request_id":"req_886vYrnTTHBtql","request_duration_ms":445}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:48 GMT + - Tue, 06 Feb 2024 22:49:02 GMT Content-Type: - application/json Content-Length: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 87316fcf-9808-459e-887a-17c741cbde9a + - 688e279d-e10c-4c04-9500-93d90d82bbcb Original-Request: - - req_wbD021BstDooPs + - req_OlS9yKwCnuKcbR Request-Id: - - req_wbD021BstDooPs + - req_OlS9yKwCnuKcbR Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '290.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1ObAIqKuuB1fWySnp4uBplju", + "id": "pm_1OgxRpKuuB1fWySnFrbMCoDq", "object": "payment_method", "billing_details": { "address": { @@ -118,35 +119,34 @@ http_interactions: }, "wallet": null }, - "created": 1705879188, + "created": 1707259742, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Sun, 21 Jan 2024 23:19:48 GMT + recorded_at: Tue, 06 Feb 2024 22:49:02 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 - string: amount=100¤cy=aud&payment_method=pm_1ObAIqKuuB1fWySnp4uBplju&payment_method_types[0]=card&capture_method=manual + string: amount=100¤cy=aud&payment_method=pm_1OgxRpKuuB1fWySnFrbMCoDq&payment_method_types[0]=card&capture_method=manual headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_wbD021BstDooPs","request_duration_ms":536}}' + - '{"last_request_metrics":{"request_id":"req_OlS9yKwCnuKcbR","request_duration_ms":497}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.1.0-17-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) - 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian - 6.1.69-1 (2023-12-30)","hostname":"blackbox"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Sun, 21 Jan 2024 23:19:49 GMT + - Tue, 06 Feb 2024 22:49:02 GMT Content-Type: - application/json Content-Length: @@ -184,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - a632029d-98cb-431e-915e-a48f0b642371 + - 2789a0e9-a951-41f3-8814-02b2543d768e Original-Request: - - req_vAJaRtWnhYdamz + - req_RB4dkPw6sXMeAz Request-Id: - - req_vAJaRtWnhYdamz + - req_RB4dkPw6sXMeAz Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '170.99999999999997' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -203,7 +205,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pi_3ObAIqKuuB1fWySn268pSkty", + "id": "pi_3OgxRqKuuB1fWySn00MucQvc", "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -217,9 +219,9 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", - "client_secret": "pi_3ObAIqKuuB1fWySn268pSkty_secret_UbqRm6VJkwxM4VlcAn5VIdUB3", + "client_secret": "pi_3OgxRqKuuB1fWySn00MucQvc_secret_x6RfnyRE9OUjE3VDDiCHVDsor", "confirmation_method": "automatic", - "created": 1705879188, + "created": 1707259742, "currency": "aud", "customer": null, "description": null, @@ -230,7 +232,7 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, - "payment_method": "pm_1ObAIqKuuB1fWySnp4uBplju", + "payment_method": "pm_1OgxRpKuuB1fWySnFrbMCoDq", "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -255,5 +257,5 @@ http_interactions: "transfer_data": null, "transfer_group": null } - recorded_at: Sun, 21 Jan 2024 23:19:49 GMT + recorded_at: Tue, 06 Feb 2024 22:49:02 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_card_without_a_customer_one_time_usage_card_/clones_the_payment_method_only.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_card_without_a_customer_one_time_usage_card_/clones_the_payment_method_only.yml index 07fecf162b..dad290b3f5 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_card_without_a_customer_one_time_usage_card_/clones_the_payment_method_only.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_card_without_a_customer_one_time_usage_card_/clones_the_payment_method_only.yml @@ -10,16 +10,28 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: +<<<<<<< HEAD - Bearer sk_test_xFgJQOlXpMAFsoztzwFBTFhP00HG7BuCJm +======= + - Bearer +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_n0MurC7cfrOQpG","request_duration_ms":361}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: +<<<<<<< HEAD - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -32,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Tue, 06 Feb 2024 18:42:29 GMT +======= + - Tue, 06 Feb 2024 22:47:01 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -57,17 +73,27 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - e2eab0fd-8bc2-43a9-9bfa-2f01a93aee61 Original-Request: - req_xWny3IJCfaBk98 Request-Id: - req_xWny3IJCfaBk98 +======= + - 41ea6b56-2dfc-4b49-9ae6-0867b78d960f + Original-Request: + - req_wwv7ZLPpuY2LXs + Request-Id: + - req_wwv7ZLPpuY2LXs +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '277.99999999999994' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -76,7 +102,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OgtbFKuuB1fWySnU69LsNcz", +======= + "id": "pm_1OgxPtKuuB1fWySnvbXewp53", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -116,13 +146,21 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707244949, +======= + "created": 1707259621, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Tue, 06 Feb 2024 18:42:30 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:01 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/accounts @@ -133,6 +171,7 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: +<<<<<<< HEAD - Bearer sk_test_xFgJQOlXpMAFsoztzwFBTFhP00HG7BuCJm Content-Type: - application/x-www-form-urlencoded @@ -145,6 +184,19 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_wwv7ZLPpuY2LXs","request_duration_ms":488}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -157,7 +209,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Tue, 06 Feb 2024 18:42:31 GMT +======= + - Tue, 06 Feb 2024 22:47:03 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -182,17 +238,27 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 4b9da851-8006-4504-81a7-4c6d3f2a9fc9 Original-Request: - req_WBg971zIPIEE3j Request-Id: - req_WBg971zIPIEE3j +======= + - 3a68a9a9-2360-43e5-a2af-0ea2b63b6320 + Original-Request: + - req_xrznGQmG5yzqEL + Request-Id: + - req_xrznGQmG5yzqEL +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '1354.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -201,7 +267,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "acct_1OgtbGQQV4I1MMIB", +======= + "id": "acct_1OgxPu4IHy72K1ai", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "account", "business_profile": { "annual_revenue": null, @@ -223,7 +293,11 @@ http_interactions: "type": "application" }, "country": "AU", +<<<<<<< HEAD "created": 1707244951, +======= + "created": 1707259622, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "default_currency": "aud", "details_submitted": false, "email": "apple.producer@example.com", @@ -232,7 +306,11 @@ http_interactions: "data": [], "has_more": false, "total_count": 0, +<<<<<<< HEAD "url": "/v1/accounts/acct_1OgtbGQQV4I1MMIB/external_accounts" +======= + "url": "/v1/accounts/acct_1OgxPu4IHy72K1ai/external_accounts" +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) }, "future_requirements": { "alternatives": [], @@ -329,10 +407,17 @@ http_interactions: }, "type": "standard" } +<<<<<<< HEAD recorded_at: Tue, 06 Feb 2024 18:42:31 GMT - request: method: get uri: https://api.stripe.com/v1/payment_methods/pm_1OgtbFKuuB1fWySnU69LsNcz +======= + recorded_at: Tue, 06 Feb 2024 22:47:03 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_methods/pm_1OgxPtKuuB1fWySnvbXewp53 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -340,6 +425,7 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: +<<<<<<< HEAD - Bearer sk_test_xFgJQOlXpMAFsoztzwFBTFhP00HG7BuCJm Content-Type: - application/x-www-form-urlencoded @@ -352,6 +438,19 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_xrznGQmG5yzqEL","request_duration_ms":1567}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -364,7 +463,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Tue, 06 Feb 2024 18:42:32 GMT +======= + - Tue, 06 Feb 2024 22:47:03 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -390,11 +493,17 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_vysLJsNDBbozUz +======= + - req_AWWEQHLAkXS9lh +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '51.00000000000001' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -403,7 +512,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OgtbFKuuB1fWySnU69LsNcz", +======= + "id": "pm_1OgxPtKuuB1fWySnvbXewp53", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -443,13 +556,21 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707244949, +======= + "created": 1707259621, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Tue, 06 Feb 2024 18:42:32 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:03 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: get uri: https://api.stripe.com/v1/customers?email=apple.customer@example.com&limit=100 @@ -460,6 +581,7 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: +<<<<<<< HEAD - Bearer sk_test_xFgJQOlXpMAFsoztzwFBTFhP00HG7BuCJm Content-Type: - application/x-www-form-urlencoded @@ -474,6 +596,21 @@ http_interactions: #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' Stripe-Account: - acct_1OgtbGQQV4I1MMIB +======= + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_AWWEQHLAkXS9lh","request_duration_ms":259}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' + Stripe-Account: + - acct_1OgxPu4IHy72K1ai +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -486,7 +623,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Tue, 06 Feb 2024 18:42:32 GMT +======= + - Tue, 06 Feb 2024 22:47:04 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -511,13 +652,21 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_UtrSHLEmcb7NTO Stripe-Account: - acct_1OgtbGQQV4I1MMIB +======= + - req_WfcQME5T6QGslh + Stripe-Account: + - acct_1OgxPu4IHy72K1ai +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '28.000000000000004' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -531,17 +680,26 @@ http_interactions: "has_more": false, "url": "/v1/customers" } +<<<<<<< HEAD recorded_at: Tue, 06 Feb 2024 18:42:32 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:03 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_methods body: encoding: UTF-8 +<<<<<<< HEAD string: payment_method=pm_1OgtbFKuuB1fWySnU69LsNcz +======= + string: payment_method=pm_1OgxPtKuuB1fWySnvbXewp53 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: +<<<<<<< HEAD - Bearer sk_test_xFgJQOlXpMAFsoztzwFBTFhP00HG7BuCJm Content-Type: - application/x-www-form-urlencoded @@ -556,6 +714,21 @@ http_interactions: #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' Stripe-Account: - acct_1OgtbGQQV4I1MMIB +======= + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_WfcQME5T6QGslh","request_duration_ms":265}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' + Stripe-Account: + - acct_1OgxPu4IHy72K1ai +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -568,7 +741,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Tue, 06 Feb 2024 18:42:33 GMT +======= + - Tue, 06 Feb 2024 22:47:04 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -593,6 +770,7 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 89657a9c-2684-408c-9703-a621544e27a6 Original-Request: - req_WDobZZX30jLukm @@ -600,12 +778,23 @@ http_interactions: - req_WDobZZX30jLukm Stripe-Account: - acct_1OgtbGQQV4I1MMIB +======= + - 47292b58-03ce-4e9a-a6bf-e01a2cb798bd + Original-Request: + - req_nRHRtgQ7yRAr7b + Request-Id: + - req_nRHRtgQ7yRAr7b + Stripe-Account: + - acct_1OgxPu4IHy72K1ai +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '165.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -614,7 +803,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OgtbIQQV4I1MMIBRKqP8uc5", +======= + "id": "pm_1OgxPw4IHy72K1ai7nyLRo4v", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -654,11 +847,19 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707244952, +======= + "created": 1707259624, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Tue, 06 Feb 2024 18:42:33 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:04 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_valid_customer_and_payment_method/clones_both_the_payment_method_and_the_customer.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_valid_customer_and_payment_method/clones_both_the_payment_method_and_the_customer.yml index 2ce92db3bf..94182bf876 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_valid_customer_and_payment_method/clones_both_the_payment_method_and_the_customer.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardCloner/_find_or_clone/when_called_with_a_valid_customer_and_payment_method/clones_both_the_payment_method_and_the_customer.yml @@ -10,6 +10,7 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: +<<<<<<< HEAD - Bearer sk_test_xFgJQOlXpMAFsoztzwFBTFhP00HG7BuCJm Content-Type: - application/x-www-form-urlencoded @@ -22,6 +23,19 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_nRHRtgQ7yRAr7b","request_duration_ms":393}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +48,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Tue, 06 Feb 2024 18:42:33 GMT +======= + - Tue, 06 Feb 2024 22:47:04 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,17 +77,27 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - ed1948a3-7b17-485e-8a6c-ef5a8c68d92e Original-Request: - req_fWFpHYy4YY1kyI Request-Id: - req_fWFpHYy4YY1kyI +======= + - a55572d4-83d0-4543-a123-efe5a88ec599 + Original-Request: + - req_ICbmWHvcLEqZ38 + Request-Id: + - req_ICbmWHvcLEqZ38 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '239.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OgtbJKuuB1fWySnjM9KpMs5", +======= + "id": "pm_1OgxPwKuuB1fWySnW4JE9xBy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -118,16 +150,27 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707244953, +======= + "created": 1707259624, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Tue, 06 Feb 2024 18:42:33 GMT - request: method: post uri: https://api.stripe.com/v1/customers +======= + recorded_at: Tue, 06 Feb 2024 22:47:04 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_methods/pm_1OgxPwKuuB1fWySnW4JE9xBy/attach +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: UTF-8 string: name=Apple+Customer&email=apple.customer%40example.com @@ -135,6 +178,7 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: +<<<<<<< HEAD - Bearer sk_test_xFgJQOlXpMAFsoztzwFBTFhP00HG7BuCJm Content-Type: - application/x-www-form-urlencoded @@ -147,18 +191,32 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_ICbmWHvcLEqZ38","request_duration_ms":443}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - "*/*" response: status: - code: 200 - message: OK + code: 400 + message: Bad Request headers: Server: - nginx Date: +<<<<<<< HEAD - Tue, 06 Feb 2024 18:42:34 GMT Content-Type: - application/json @@ -267,10 +325,13 @@ http_interactions: - nginx Date: - Tue, 06 Feb 2024 18:42:34 GMT +======= + - Tue, 06 Feb 2024 22:47:05 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: - - '941' + - '335' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -292,6 +353,7 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 8227bd73-0fba-4e75-927f-12e1e98d8c24 Original-Request: - req_GW3zum6dtoJ4Tj @@ -299,18 +361,28 @@ http_interactions: - req_GW3zum6dtoJ4Tj Stripe-Should-Retry: - 'false' +======= + - 5774a66d-dffc-4722-947b-c1d59a104f1b + Original-Request: + - req_H1LIcYLfRbqjrW + Request-Id: + - req_H1LIcYLfRbqjrW +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '60.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: - max-age=63072000; includeSubDomains; preload body: encoding: UTF-8 - string: |- + string: | { +<<<<<<< HEAD "id": "pm_1OgtbJKuuB1fWySnjM9KpMs5", "object": "payment_method", "billing_details": { @@ -1269,4 +1341,16 @@ http_interactions: "type": "card" } recorded_at: Tue, 06 Feb 2024 18:42:39 GMT +======= + "error": { + "code": "resource_missing", + "doc_url": "https://stripe.com/docs/error-codes/resource-missing", + "message": "No such customer: ''", + "param": "customer", + "request_log_url": "https://dashboard.stripe.com/test/logs/req_H1LIcYLfRbqjrW?t=1707259625", + "type": "invalid_request_error" + } + } + recorded_at: Tue, 06 Feb 2024 22:47:05 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_does_not_exist/raises_an_error.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_does_not_exist/raises_an_error.yml index d13effdcc3..57dd63a41b 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_does_not_exist/raises_an_error.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_does_not_exist/raises_an_error.yml @@ -10,16 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_FcfWajHvMwvJSe","request_duration_ms":653}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -32,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Fri, 02 Feb 2024 12:34:42 GMT + - Tue, 06 Feb 2024 22:47:09 GMT Content-Type: - application/json Content-Length: @@ -57,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - ac534a65-f0cc-41dc-9e05-f09e9ac769be + - 6d2140d3-9f61-408f-86af-0582127c636f Original-Request: - - req_9umUNdXkK1NOpT + - req_fDFbUTMwDOn0fP Request-Id: - - req_9umUNdXkK1NOpT + - req_fDFbUTMwDOn0fP Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '210.00000000000003' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -76,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1OfLx8KuuB1fWySnSl66LWab", + "id": "pm_1OgxQ1KuuB1fWySnTpu7xAh3", "object": "payment_method", "billing_details": { "address": { @@ -116,13 +119,13 @@ http_interactions: }, "wallet": null }, - "created": 1706877282, + "created": 1707259629, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Fri, 02 Feb 2024 12:34:42 GMT + recorded_at: Tue, 06 Feb 2024 22:47:09 GMT - request: method: get uri: https://api.stripe.com/v1/customers/non_existing_customer_id @@ -133,18 +136,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_9umUNdXkK1NOpT","request_duration_ms":772}}' + - '{"last_request_metrics":{"request_id":"req_fDFbUTMwDOn0fP","request_duration_ms":419}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -157,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Fri, 02 Feb 2024 12:34:43 GMT + - Tue, 06 Feb 2024 22:47:09 GMT Content-Type: - application/json Content-Length: @@ -183,11 +185,13 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_NRBUy7l7nHKTUp + - req_2x32RYQVsqy4J7 Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '27.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -201,9 +205,9 @@ http_interactions: "doc_url": "https://stripe.com/docs/error-codes/resource-missing", "message": "No such customer: 'non_existing_customer_id'", "param": "id", - "request_log_url": "https://dashboard.stripe.com/test/logs/req_NRBUy7l7nHKTUp?t=1706877282", + "request_log_url": "https://dashboard.stripe.com/test/logs/req_2x32RYQVsqy4J7?t=1707259629", "type": "invalid_request_error" } } - recorded_at: Fri, 02 Feb 2024 12:34:43 GMT + recorded_at: Tue, 06 Feb 2024 22:47:09 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_exists/and_is_deleted/deletes_the_credit_card_clone.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_exists/and_is_deleted/deletes_the_credit_card_clone.yml index 6455ffe3a8..7410326807 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_exists/and_is_deleted/deletes_the_credit_card_clone.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_exists/and_is_deleted/deletes_the_credit_card_clone.yml @@ -10,18 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_6yqdUNCO7VZA9L","request_duration_ms":416}}' + - '{"last_request_metrics":{"request_id":"req_MxH0xDEsRbBVXZ","request_duration_ms":415}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Wed, 31 Jan 2024 18:56:25 GMT + - Tue, 06 Feb 2024 22:47:07 GMT Content-Type: - application/json Content-Length: @@ -59,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - ea44d346-500d-4dec-85bd-98960f9bd4ad + - 929f5fb1-3857-4a74-836d-cc7e887bf370 Original-Request: - - req_FMxnXHQ6h6QPF3 + - req_zUdSkAB84XmhM5 Request-Id: - - req_FMxnXHQ6h6QPF3 + - req_zUdSkAB84XmhM5 Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '211.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1OeixRKuuB1fWySn94l0sALn", + "id": "pm_1OgxPzKuuB1fWySnapiqGLnn", "object": "payment_method", "billing_details": { "address": { @@ -118,13 +119,13 @@ http_interactions: }, "wallet": null }, - "created": 1706727385, + "created": 1707259627, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Wed, 31 Jan 2024 18:56:25 GMT + recorded_at: Tue, 06 Feb 2024 22:47:07 GMT - request: method: post uri: https://api.stripe.com/v1/customers @@ -135,18 +136,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_FMxnXHQ6h6QPF3","request_duration_ms":497}}' + - '{"last_request_metrics":{"request_id":"req_zUdSkAB84XmhM5","request_duration_ms":424}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Wed, 31 Jan 2024 18:56:26 GMT + - Tue, 06 Feb 2024 22:47:08 GMT Content-Type: - application/json Content-Length: @@ -184,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 3bdd78ef-b970-45fe-a3f6-763eb5d1f08c + - 32fa7c4b-5f51-4eec-b6f1-dec088dff0a8 Original-Request: - - req_awPDup0O3nlPAn + - req_L18YmbCQhd03Ou Request-Id: - - req_awPDup0O3nlPAn + - req_L18YmbCQhd03Ou Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '219.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -203,18 +205,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_PTgK9kQm5CLg1d", + "id": "cus_PVzO0bgkgqaEE4", "object": "customer", "address": null, "balance": 0, - "created": 1706727385, + "created": 1707259628, "currency": null, "default_source": null, "delinquent": false, "description": null, "discount": null, "email": "applecustomer@example.com", - "invoice_prefix": "B254E3AC", + "invoice_prefix": "2AC1DA46", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -231,29 +233,28 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 31 Jan 2024 18:56:26 GMT + recorded_at: Tue, 06 Feb 2024 22:47:08 GMT - request: method: post - uri: https://api.stripe.com/v1/payment_methods/pm_1OeixRKuuB1fWySn94l0sALn/attach + uri: https://api.stripe.com/v1/payment_methods/pm_1OgxPzKuuB1fWySnapiqGLnn/attach body: encoding: UTF-8 - string: customer=cus_PTgK9kQm5CLg1d + string: customer=cus_PVzO0bgkgqaEE4 headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_awPDup0O3nlPAn","request_duration_ms":415}}' + - '{"last_request_metrics":{"request_id":"req_L18YmbCQhd03Ou","request_duration_ms":416}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -266,11 +267,11 @@ http_interactions: Server: - nginx Date: - - Wed, 31 Jan 2024 18:56:26 GMT + - Tue, 06 Feb 2024 22:47:09 GMT Content-Type: - application/json Content-Length: - - '1095' + - '941' Connection: - keep-alive Access-Control-Allow-Credentials: @@ -292,17 +293,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - eceff5bf-9a18-4484-a26b-b0866231b892 + - 8739075e-dcc4-441c-a1b3-8d0d993ece45 Original-Request: - - req_nVxOB6GyIQjq2r + - req_FcfWajHvMwvJSe Request-Id: - - req_nVxOB6GyIQjq2r + - req_FcfWajHvMwvJSe Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '456.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -311,7 +314,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1OeixRKuuB1fWySn94l0sALn", + "id": "pm_1OgxPzKuuB1fWySnapiqGLnn", "object": "payment_method", "billing_details": { "address": { @@ -334,11 +337,6 @@ http_interactions: "cvc_check": "pass" }, "country": "US", - "display_brand": { - "label": "Visa", - "logo_url": "https://b.stripecdn.com/cards-metadata/logos/card-visa.svg", - "type": "visa" - }, "exp_month": 8, "exp_year": 2025, "fingerprint": "6E6tgVjx6U65iHFV", @@ -356,11 +354,11 @@ http_interactions: }, "wallet": null }, - "created": 1706727385, - "customer": "cus_PTgK9kQm5CLg1d", + "created": 1707259627, + "customer": "cus_PVzO0bgkgqaEE4", "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Wed, 31 Jan 2024 18:56:27 GMT + recorded_at: Tue, 06 Feb 2024 22:47:08 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_exists/and_is_not_deleted/deletes_the_credit_card_clone_and_the_customer.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_exists/and_is_not_deleted/deletes_the_credit_card_clone_and_the_customer.yml index 4e45e17c9e..12a5b29894 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_exists/and_is_not_deleted/deletes_the_credit_card_clone_and_the_customer.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_CreditCardRemover/_remove/Stripe_customer_exists/and_is_not_deleted/deletes_the_credit_card_clone_and_the_customer.yml @@ -10,16 +10,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_ICbmWHvcLEqZ38","request_duration_ms":443}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -32,7 +33,7 @@ http_interactions: Server: - nginx Date: - - Wed, 31 Jan 2024 18:56:22 GMT + - Tue, 06 Feb 2024 22:47:05 GMT Content-Type: - application/json Content-Length: @@ -57,17 +58,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - dcab8f42-8922-4488-9763-8bf0f5a36d70 + - ed2d6353-a934-402b-936b-f8dd6918d863 Original-Request: - - req_N1Y7qkaYx0SmUL + - req_ApeKbTyWkyeIEu Request-Id: - - req_N1Y7qkaYx0SmUL + - req_ApeKbTyWkyeIEu Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '209.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -76,7 +79,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1OeixOKuuB1fWySn4ofvl5oW", + "id": "pm_1OgxPxKuuB1fWySnFyFjBpbh", "object": "payment_method", "billing_details": { "address": { @@ -116,13 +119,13 @@ http_interactions: }, "wallet": null }, - "created": 1706727382, + "created": 1707259625, "customer": null, "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Wed, 31 Jan 2024 18:56:22 GMT + recorded_at: Tue, 06 Feb 2024 22:47:05 GMT - request: method: post uri: https://api.stripe.com/v1/customers @@ -133,18 +136,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_N1Y7qkaYx0SmUL","request_duration_ms":744}}' + - '{"last_request_metrics":{"request_id":"req_ApeKbTyWkyeIEu","request_duration_ms":423}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -157,7 +159,7 @@ http_interactions: Server: - nginx Date: - - Wed, 31 Jan 2024 18:56:23 GMT + - Tue, 06 Feb 2024 22:47:06 GMT Content-Type: - application/json Content-Length: @@ -182,17 +184,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - d3933cb5-b52d-4688-ae2c-b916fd0eeb15 + - 5c4cd3b0-7849-446c-80ff-ff369fb7081b Original-Request: - - req_LqZz8FiH8mJbDT + - req_IPdOD1v7Aes0T2 Request-Id: - - req_LqZz8FiH8mJbDT + - req_IPdOD1v7Aes0T2 Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '183.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -201,18 +205,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_PTgK7hMYYzU7Rl", + "id": "cus_PVzOOVJMyEuO6Z", "object": "customer", "address": null, "balance": 0, - "created": 1706727383, + "created": 1707259625, "currency": null, "default_source": null, "delinquent": false, "description": null, "discount": null, "email": "applecustomer@example.com", - "invoice_prefix": "70534FFF", + "invoice_prefix": "E32040C9", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -229,29 +233,28 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 31 Jan 2024 18:56:23 GMT + recorded_at: Tue, 06 Feb 2024 22:47:06 GMT - request: method: post - uri: https://api.stripe.com/v1/payment_methods/pm_1OeixOKuuB1fWySn4ofvl5oW/attach + uri: https://api.stripe.com/v1/payment_methods/pm_1OgxPxKuuB1fWySnFyFjBpbh/attach body: encoding: UTF-8 - string: customer=cus_PTgK7hMYYzU7Rl + string: customer=cus_PVzOOVJMyEuO6Z headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_LqZz8FiH8mJbDT","request_duration_ms":621}}' + - '{"last_request_metrics":{"request_id":"req_IPdOD1v7Aes0T2","request_duration_ms":385}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -264,7 +267,7 @@ http_interactions: Server: - nginx Date: - - Wed, 31 Jan 2024 18:56:24 GMT + - Tue, 06 Feb 2024 22:47:06 GMT Content-Type: - application/json Content-Length: @@ -290,17 +293,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: - - 9ed7c6c5-4135-473c-8932-87dfe1e046fe + - 5eb22b2c-2a20-4baa-a999-241eb8ebd960 Original-Request: - - req_zyskeoxPUygBlg + - req_uiuJl4P23a4gd9 Request-Id: - - req_zyskeoxPUygBlg + - req_uiuJl4P23a4gd9 Stripe-Should-Retry: - 'false' Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '477.00000000000006' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -309,7 +314,7 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "pm_1OeixOKuuB1fWySn4ofvl5oW", + "id": "pm_1OgxPxKuuB1fWySnFyFjBpbh", "object": "payment_method", "billing_details": { "address": { @@ -349,16 +354,16 @@ http_interactions: }, "wallet": null }, - "created": 1706727382, - "customer": "cus_PTgK7hMYYzU7Rl", + "created": 1707259625, + "customer": "cus_PVzOOVJMyEuO6Z", "livemode": false, "metadata": {}, "type": "card" } - recorded_at: Wed, 31 Jan 2024 18:56:24 GMT + recorded_at: Tue, 06 Feb 2024 22:47:06 GMT - request: method: get - uri: https://api.stripe.com/v1/customers/cus_PTgK7hMYYzU7Rl + uri: https://api.stripe.com/v1/customers/cus_PVzOOVJMyEuO6Z body: encoding: US-ASCII string: '' @@ -366,18 +371,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_zyskeoxPUygBlg","request_duration_ms":728}}' + - '{"last_request_metrics":{"request_id":"req_uiuJl4P23a4gd9","request_duration_ms":660}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -390,7 +394,7 @@ http_interactions: Server: - nginx Date: - - Wed, 31 Jan 2024 18:56:24 GMT + - Tue, 06 Feb 2024 22:47:07 GMT Content-Type: - application/json Content-Length: @@ -416,11 +420,13 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_JiUCvLOyub90XZ + - req_nlZYpzg0WJFQY6 Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '28.999999999999996' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -429,18 +435,18 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_PTgK7hMYYzU7Rl", + "id": "cus_PVzOOVJMyEuO6Z", "object": "customer", "address": null, "balance": 0, - "created": 1706727383, + "created": 1707259625, "currency": null, "default_source": null, "delinquent": false, "description": null, "discount": null, "email": "applecustomer@example.com", - "invoice_prefix": "70534FFF", + "invoice_prefix": "E32040C9", "invoice_settings": { "custom_fields": null, "default_payment_method": null, @@ -457,10 +463,10 @@ http_interactions: "tax_exempt": "none", "test_clock": null } - recorded_at: Wed, 31 Jan 2024 18:56:24 GMT + recorded_at: Tue, 06 Feb 2024 22:47:06 GMT - request: method: delete - uri: https://api.stripe.com/v1/customers/cus_PTgK7hMYYzU7Rl + uri: https://api.stripe.com/v1/customers/cus_PVzOOVJMyEuO6Z body: encoding: US-ASCII string: '' @@ -468,18 +474,17 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: - - '{"last_request_metrics":{"request_id":"req_JiUCvLOyub90XZ","request_duration_ms":339}}' + - '{"last_request_metrics":{"request_id":"req_nlZYpzg0WJFQY6","request_duration_ms":246}}' Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: - - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux - version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 - (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) - #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -492,7 +497,7 @@ http_interactions: Server: - nginx Date: - - Wed, 31 Jan 2024 18:56:25 GMT + - Tue, 06 Feb 2024 22:47:07 GMT Content-Type: - application/json Content-Length: @@ -518,11 +523,13 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: - - req_6yqdUNCO7VZA9L + - req_MxH0xDEsRbBVXZ Stripe-Version: - '2023-10-16' Vary: - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '216.0' X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -531,9 +538,9 @@ http_interactions: encoding: UTF-8 string: |- { - "id": "cus_PTgK7hMYYzU7Rl", + "id": "cus_PVzOOVJMyEuO6Z", "object": "customer", "deleted": true } - recorded_at: Wed, 31 Jan 2024 18:56:25 GMT + recorded_at: Tue, 06 Feb 2024 22:47:07 GMT recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Exceeding_velocity_limit_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Exceeding_velocity_limit_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml index d1fe24d024..22e1379a2f 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Exceeding_velocity_limit_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Exceeding_velocity_limit_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_n4HlchPRqwZKmI","request_duration_ms":428}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_TuL0KVL2rD9MmQ","request_duration_ms":360}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:54 GMT +======= + - Tue, 06 Feb 2024 22:48:46 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - a5231ca7-6b52-4512-a2c6-a44dbd160432 Original-Request: - req_94HigFNfi2SRTr Request-Id: - req_94HigFNfi2SRTr +======= + - 2438cca4-8ee8-46bb-a49d-b70bc999a53e + Original-Request: + - req_mNsdaaj4SxyNL0 + Request-Id: + - req_mNsdaaj4SxyNL0 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '299.0' +======= + - '320.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0UKuuB1fWySnn0PT67WG", +======= + "id": "pm_1OgxRaKuuB1fWySnvd85Pxjt", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323394, +======= + "created": 1707259726, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:55 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:46 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0UKuuB1fWySnn0PT67WG&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRaKuuB1fWySnvd85Pxjt&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_94HigFNfi2SRTr","request_duration_ms":596}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_mNsdaaj4SxyNL0","request_duration_ms":530}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:55 GMT +======= + - Tue, 06 Feb 2024 22:48:47 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 948aae76-3b36-4d64-bffe-850c2e38d975 Original-Request: - req_fJ474lOa4nOffW Request-Id: - req_fJ474lOa4nOffW +======= + - 7f6145ff-2a8d-4f12-a06a-ee1696a94d39 + Original-Request: + - req_MfI6n9vYtJppCY + Request-Id: + - req_MfI6n9vYtJppCY +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '226.0' +======= + - '245.00000000000003' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0VKuuB1fWySn1z8pdGVZ", +======= + "id": "pi_3OgxRbKuuB1fWySn0FguB9Zz", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0VKuuB1fWySn1z8pdGVZ_secret_yD1nLFWc5KmmUz1gzwiOH3ZPE", "confirmation_method": "automatic", "created": 1707323395, +======= + "client_secret": "pi_3OgxRbKuuB1fWySn0FguB9Zz_secret_GrkUKbXUHcsqoBD3gjWR6iu9f", + "confirmation_method": "automatic", + "created": 1707259727, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0UKuuB1fWySnn0PT67WG", +======= + "payment_method": "pm_1OgxRaKuuB1fWySnvd85Pxjt", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:55 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0VKuuB1fWySn1z8pdGVZ/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:47 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRbKuuB1fWySn0FguB9Zz/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_fJ474lOa4nOffW","request_duration_ms":523}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_MfI6n9vYtJppCY","request_duration_ms":456}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:56 GMT +======= + - Tue, 06 Feb 2024 22:48:48 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 6edaadd9-09da-4e48-bc3f-773549587173 Original-Request: - req_xcZQs9lx5oRKOM Request-Id: - req_xcZQs9lx5oRKOM +======= + - b54335bb-e0c9-46e7-9784-3ccb2ecadfcb + Original-Request: + - req_qCNYiCpvVVeV6g + Request-Id: + - req_qCNYiCpvVVeV6g +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '774.0' +======= + - '888.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -342,13 +457,21 @@ http_interactions: string: | { "error": { +<<<<<<< HEAD "charge": "ch_3OhE0VKuuB1fWySn1PWDWygU", +======= + "charge": "ch_3OgxRbKuuB1fWySn0q67U7d6", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "card_velocity_exceeded", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card was declined for making repeated attempts too frequently or exceeding its amount limit.", "payment_intent": { +<<<<<<< HEAD "id": "pi_3OhE0VKuuB1fWySn1z8pdGVZ", +======= + "id": "pi_3OgxRbKuuB1fWySn0FguB9Zz", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -363,21 +486,35 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0VKuuB1fWySn1z8pdGVZ_secret_yD1nLFWc5KmmUz1gzwiOH3ZPE", "confirmation_method": "automatic", "created": 1707323395, +======= + "client_secret": "pi_3OgxRbKuuB1fWySn0FguB9Zz_secret_GrkUKbXUHcsqoBD3gjWR6iu9f", + "confirmation_method": "automatic", + "created": 1707259727, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": { +<<<<<<< HEAD "charge": "ch_3OhE0VKuuB1fWySn1PWDWygU", +======= + "charge": "ch_3OgxRbKuuB1fWySn0q67U7d6", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "card_velocity_exceeded", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card was declined for making repeated attempts too frequently or exceeding its amount limit.", "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0UKuuB1fWySnn0PT67WG", +======= + "id": "pm_1OgxRaKuuB1fWySnvd85Pxjt", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -417,7 +554,11 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323394, +======= + "created": 1707259726, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { @@ -426,7 +567,11 @@ http_interactions: }, "type": "card_error" }, +<<<<<<< HEAD "latest_charge": "ch_3OhE0VKuuB1fWySn1PWDWygU", +======= + "latest_charge": "ch_3OgxRbKuuB1fWySn0q67U7d6", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": { }, @@ -458,7 +603,11 @@ http_interactions: "transfer_group": null }, "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0UKuuB1fWySnn0PT67WG", +======= + "id": "pm_1OgxRaKuuB1fWySnvd85Pxjt", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -498,16 +647,28 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323394, +======= + "created": 1707259726, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { }, "type": "card" }, +<<<<<<< HEAD "request_log_url": "https://dashboard.stripe.com/test/logs/req_xcZQs9lx5oRKOM?t=1707323395", "type": "card_error" } } recorded_at: Wed, 07 Feb 2024 16:29:56 GMT +======= + "request_log_url": "https://dashboard.stripe.com/test/logs/req_qCNYiCpvVVeV6g?t=1707259727", + "type": "card_error" + } + } + recorded_at: Tue, 06 Feb 2024 22:48:48 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Expired_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Expired_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml index 5458f9d593..f60dd8c06a 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Expired_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Expired_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_DOXqxSvziA2Lbj","request_duration_ms":518}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_bbmilYLl9N7znh","request_duration_ms":384}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:48 GMT +======= + - Tue, 06 Feb 2024 22:48:41 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 6d40ba8f-3535-4b52-aa99-3242772244be Original-Request: - req_Zt0ReiTMbNftQk Request-Id: - req_Zt0ReiTMbNftQk +======= + - 639f0bfb-3746-4044-839c-424a3b6c09ea + Original-Request: + - req_mMpeT3MNcU0C6S + Request-Id: + - req_mMpeT3MNcU0C6S +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '226.99999999999997' +======= + - '269.99999999999994' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0OKuuB1fWySn4xbXYenk", +======= + "id": "pm_1OgxRVKuuB1fWySnGBhCgzr5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323388, +======= + "created": 1707259721, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:48 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:41 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0OKuuB1fWySn4xbXYenk&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRVKuuB1fWySnGBhCgzr5&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Zt0ReiTMbNftQk","request_duration_ms":525}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_mMpeT3MNcU0C6S","request_duration_ms":485}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:49 GMT +======= + - Tue, 06 Feb 2024 22:48:41 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 9a29f1e7-726e-4f1e-b910-0cffb9105134 Original-Request: - req_Wu7pdrr9j5iuJW Request-Id: - req_Wu7pdrr9j5iuJW +======= + - bfdfc023-4d6b-410e-933b-3136b939eb3d + Original-Request: + - req_rCsqyksHu3tOCs + Request-Id: + - req_rCsqyksHu3tOCs +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '192.0' +======= + - '181.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0OKuuB1fWySn2O1nkLDG", +======= + "id": "pi_3OgxRVKuuB1fWySn2oE5jx8f", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0OKuuB1fWySn2O1nkLDG_secret_sjKjYVDlyUI5zX53BRHvh0ldp", "confirmation_method": "automatic", "created": 1707323389, +======= + "client_secret": "pi_3OgxRVKuuB1fWySn2oE5jx8f_secret_ZhBHein5IrWxmfIJhWir0ybT0", + "confirmation_method": "automatic", + "created": 1707259721, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0OKuuB1fWySn4xbXYenk", +======= + "payment_method": "pm_1OgxRVKuuB1fWySnGBhCgzr5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:49 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0OKuuB1fWySn2O1nkLDG/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:41 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRVKuuB1fWySn2oE5jx8f/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Wu7pdrr9j5iuJW","request_duration_ms":413}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_rCsqyksHu3tOCs","request_duration_ms":390}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:50 GMT +======= + - Tue, 06 Feb 2024 22:48:42 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - ff0f9895-3db4-4241-b04f-e2eb9b469846 Original-Request: - req_TAUAtT6zZVt81f Request-Id: - req_TAUAtT6zZVt81f +======= + - b51bf4e3-4933-4fba-8f3c-83900f962996 + Original-Request: + - req_WTAsEmxrFCcuST + Request-Id: + - req_WTAsEmxrFCcuST +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '778.9999999999999' +======= + - '782.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -342,13 +457,21 @@ http_interactions: string: | { "error": { +<<<<<<< HEAD "charge": "ch_3OhE0OKuuB1fWySn2EB7Xxl0", +======= + "charge": "ch_3OgxRVKuuB1fWySn2khCONF7", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "expired_card", "doc_url": "https://stripe.com/docs/error-codes/expired-card", "message": "Your card has expired.", "param": "exp_month", "payment_intent": { +<<<<<<< HEAD "id": "pi_3OhE0OKuuB1fWySn2O1nkLDG", +======= + "id": "pi_3OgxRVKuuB1fWySn2oE5jx8f", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -363,21 +486,35 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0OKuuB1fWySn2O1nkLDG_secret_sjKjYVDlyUI5zX53BRHvh0ldp", "confirmation_method": "automatic", "created": 1707323389, +======= + "client_secret": "pi_3OgxRVKuuB1fWySn2oE5jx8f_secret_ZhBHein5IrWxmfIJhWir0ybT0", + "confirmation_method": "automatic", + "created": 1707259721, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": { +<<<<<<< HEAD "charge": "ch_3OhE0OKuuB1fWySn2EB7Xxl0", +======= + "charge": "ch_3OgxRVKuuB1fWySn2khCONF7", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "expired_card", "doc_url": "https://stripe.com/docs/error-codes/expired-card", "message": "Your card has expired.", "param": "exp_month", "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0OKuuB1fWySn4xbXYenk", +======= + "id": "pm_1OgxRVKuuB1fWySnGBhCgzr5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -417,7 +554,11 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323388, +======= + "created": 1707259721, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { @@ -426,7 +567,11 @@ http_interactions: }, "type": "card_error" }, +<<<<<<< HEAD "latest_charge": "ch_3OhE0OKuuB1fWySn2EB7Xxl0", +======= + "latest_charge": "ch_3OgxRVKuuB1fWySn2khCONF7", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": { }, @@ -458,7 +603,11 @@ http_interactions: "transfer_group": null }, "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0OKuuB1fWySn4xbXYenk", +======= + "id": "pm_1OgxRVKuuB1fWySnGBhCgzr5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -498,16 +647,28 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323388, +======= + "created": 1707259721, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { }, "type": "card" }, +<<<<<<< HEAD "request_log_url": "https://dashboard.stripe.com/test/logs/req_TAUAtT6zZVt81f?t=1707323389", "type": "card_error" } } recorded_at: Wed, 07 Feb 2024 16:29:50 GMT +======= + "request_log_url": "https://dashboard.stripe.com/test/logs/req_WTAsEmxrFCcuST?t=1707259721", + "type": "card_error" + } + } + recorded_at: Tue, 06 Feb 2024 22:48:42 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Generic_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Generic_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml index 836059d704..1e0eeb27e3 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Generic_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Generic_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_4tX06iAWytFkY4","request_duration_ms":309}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_gflMz8EgIXp42W","request_duration_ms":304}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:40 GMT +======= + - Tue, 06 Feb 2024 22:48:33 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 75594109-4134-43d7-b03a-24649fe68ee2 Original-Request: - req_YwFeKb5aD1T3Nf Request-Id: - req_YwFeKb5aD1T3Nf +======= + - 5cd10013-e4f4-4e9e-a676-6bf33c6e8066 + Original-Request: + - req_EdkH1J5hc49YiH + Request-Id: + - req_EdkH1J5hc49YiH +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '258.0' +======= + - '218.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0GKuuB1fWySnXfELM5MN", +======= + "id": "pm_1OgxRNKuuB1fWySnbRM74iy1", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323380, +======= + "created": 1707259713, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:40 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:33 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0GKuuB1fWySnXfELM5MN&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRNKuuB1fWySnbRM74iy1&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_YwFeKb5aD1T3Nf","request_duration_ms":484}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_EdkH1J5hc49YiH","request_duration_ms":417}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:41 GMT +======= + - Tue, 06 Feb 2024 22:48:34 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - f2583fda-bd82-4d29-9ed3-4ded43a8b06c Original-Request: - req_Y5IBHksc8xlWUs Request-Id: - req_Y5IBHksc8xlWUs +======= + - b8b41d99-dd6d-475e-95c8-bb06290168da + Original-Request: + - req_KSsSEWxVwDox4O + Request-Id: + - req_KSsSEWxVwDox4O +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '166.99999999999997' +======= + - '174.00000000000003' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0GKuuB1fWySn2kV8EUzv", +======= + "id": "pi_3OgxROKuuB1fWySn2KAvR65w", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0GKuuB1fWySn2kV8EUzv_secret_rMmIsXpLwpRhdxSYS6ApOstF8", "confirmation_method": "automatic", "created": 1707323380, +======= + "client_secret": "pi_3OgxROKuuB1fWySn2KAvR65w_secret_PXaAVVrYGPU2aIxexCiTseSPt", + "confirmation_method": "automatic", + "created": 1707259714, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0GKuuB1fWySnXfELM5MN", +======= + "payment_method": "pm_1OgxRNKuuB1fWySnbRM74iy1", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:41 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0GKuuB1fWySn2kV8EUzv/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:34 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxROKuuB1fWySn2KAvR65w/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Y5IBHksc8xlWUs","request_duration_ms":414}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_KSsSEWxVwDox4O","request_duration_ms":387}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:42 GMT +======= + - Tue, 06 Feb 2024 22:48:35 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 0f5dba42-9250-486b-bd20-2572abfb3516 Original-Request: - req_5Rm2jOmblty6mQ Request-Id: - req_5Rm2jOmblty6mQ +======= + - a9f13974-e761-46ab-a13b-3157ef56b1be + Original-Request: + - req_qN43n8uknebQOU + Request-Id: + - req_qN43n8uknebQOU +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '821.0000000000001' +======= + - '753.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -342,13 +457,21 @@ http_interactions: string: | { "error": { +<<<<<<< HEAD "charge": "ch_3OhE0GKuuB1fWySn28pEcNeC", +======= + "charge": "ch_3OgxROKuuB1fWySn26atn8dL", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "generic_decline", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card was declined.", "payment_intent": { +<<<<<<< HEAD "id": "pi_3OhE0GKuuB1fWySn2kV8EUzv", +======= + "id": "pi_3OgxROKuuB1fWySn2KAvR65w", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -363,21 +486,35 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0GKuuB1fWySn2kV8EUzv_secret_rMmIsXpLwpRhdxSYS6ApOstF8", "confirmation_method": "automatic", "created": 1707323380, +======= + "client_secret": "pi_3OgxROKuuB1fWySn2KAvR65w_secret_PXaAVVrYGPU2aIxexCiTseSPt", + "confirmation_method": "automatic", + "created": 1707259714, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": { +<<<<<<< HEAD "charge": "ch_3OhE0GKuuB1fWySn28pEcNeC", +======= + "charge": "ch_3OgxROKuuB1fWySn26atn8dL", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "generic_decline", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card was declined.", "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0GKuuB1fWySnXfELM5MN", +======= + "id": "pm_1OgxRNKuuB1fWySnbRM74iy1", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -417,7 +554,11 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323380, +======= + "created": 1707259713, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { @@ -426,7 +567,11 @@ http_interactions: }, "type": "card_error" }, +<<<<<<< HEAD "latest_charge": "ch_3OhE0GKuuB1fWySn28pEcNeC", +======= + "latest_charge": "ch_3OgxROKuuB1fWySn26atn8dL", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": { }, @@ -458,7 +603,11 @@ http_interactions: "transfer_group": null }, "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0GKuuB1fWySnXfELM5MN", +======= + "id": "pm_1OgxRNKuuB1fWySnbRM74iy1", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -498,16 +647,28 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323380, +======= + "created": 1707259713, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { }, "type": "card" }, +<<<<<<< HEAD "request_log_url": "https://dashboard.stripe.com/test/logs/req_5Rm2jOmblty6mQ?t=1707323381", "type": "card_error" } } recorded_at: Wed, 07 Feb 2024 16:29:42 GMT +======= + "request_log_url": "https://dashboard.stripe.com/test/logs/req_qN43n8uknebQOU?t=1707259714", + "type": "card_error" + } + } + recorded_at: Tue, 06 Feb 2024 22:48:35 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Incorrect_CVC_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Incorrect_CVC_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml index 9f0e853451..ff580e0233 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Incorrect_CVC_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Incorrect_CVC_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Wu7pdrr9j5iuJW","request_duration_ms":413}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_rCsqyksHu3tOCs","request_duration_ms":390}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:50 GMT +======= + - Tue, 06 Feb 2024 22:48:43 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - cd8ac2b6-44e7-45f1-a652-6092dbe8c5e4 Original-Request: - req_AAxsmcqiFGscKF Request-Id: - req_AAxsmcqiFGscKF +======= + - 532e01e8-7cc9-4bfc-a4c8-282c3eddaaa9 + Original-Request: + - req_y9gfqBjlbBv4NC + Request-Id: + - req_y9gfqBjlbBv4NC +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '224.0' +======= + - '200.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0QKuuB1fWySngoHul0A1", +======= + "id": "pm_1OgxRWKuuB1fWySnkpdhoxG2", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323390, +======= + "created": 1707259722, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:50 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:43 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0QKuuB1fWySngoHul0A1&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRWKuuB1fWySnkpdhoxG2&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_AAxsmcqiFGscKF","request_duration_ms":491}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_y9gfqBjlbBv4NC","request_duration_ms":393}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:51 GMT +======= + - Tue, 06 Feb 2024 22:48:43 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 9dceddf2-b942-4ffd-9038-4baa6b074f55 Original-Request: - req_qQP8kFn8cbQTa7 Request-Id: - req_qQP8kFn8cbQTa7 +======= + - 8ab6ac93-b4e3-4d1c-acbc-6efc0dbfe609 + Original-Request: + - req_AZ29Oe19NrEVxp + Request-Id: + - req_AZ29Oe19NrEVxp +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '199.0' +======= + - '193.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0QKuuB1fWySn2RSd5hBl", +======= + "id": "pi_3OgxRXKuuB1fWySn1CDMxVI5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0QKuuB1fWySn2RSd5hBl_secret_o5GKqIrZoaPHCw04O6gnx03qF", "confirmation_method": "automatic", "created": 1707323390, +======= + "client_secret": "pi_3OgxRXKuuB1fWySn1CDMxVI5_secret_2hYrqnUElzODGxrwmR2xF7d3B", + "confirmation_method": "automatic", + "created": 1707259723, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0QKuuB1fWySngoHul0A1", +======= + "payment_method": "pm_1OgxRWKuuB1fWySnkpdhoxG2", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:51 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0QKuuB1fWySn2RSd5hBl/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:43 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRXKuuB1fWySn1CDMxVI5/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_qQP8kFn8cbQTa7","request_duration_ms":517}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_AZ29Oe19NrEVxp","request_duration_ms":387}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:52 GMT +======= + - Tue, 06 Feb 2024 22:48:44 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 788accec-3cd6-461d-bbd1-20af6a7c8130 Original-Request: - req_T4BSrrORMhSS83 Request-Id: - req_T4BSrrORMhSS83 +======= + - cd740493-423b-4a52-899a-c3a4db0f3984 + Original-Request: + - req_A0ezW98enF3Cih + Request-Id: + - req_A0ezW98enF3Cih +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '860.0000000000001' +======= + - '842.0000000000001' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -342,13 +457,21 @@ http_interactions: string: | { "error": { +<<<<<<< HEAD "charge": "ch_3OhE0QKuuB1fWySn2YDK5KQJ", +======= + "charge": "ch_3OgxRXKuuB1fWySn1x1kspPq", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "incorrect_cvc", "doc_url": "https://stripe.com/docs/error-codes/incorrect-cvc", "message": "Your card's security code is incorrect.", "param": "cvc", "payment_intent": { +<<<<<<< HEAD "id": "pi_3OhE0QKuuB1fWySn2RSd5hBl", +======= + "id": "pi_3OgxRXKuuB1fWySn1CDMxVI5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -363,21 +486,35 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0QKuuB1fWySn2RSd5hBl_secret_o5GKqIrZoaPHCw04O6gnx03qF", "confirmation_method": "automatic", "created": 1707323390, +======= + "client_secret": "pi_3OgxRXKuuB1fWySn1CDMxVI5_secret_2hYrqnUElzODGxrwmR2xF7d3B", + "confirmation_method": "automatic", + "created": 1707259723, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": { +<<<<<<< HEAD "charge": "ch_3OhE0QKuuB1fWySn2YDK5KQJ", +======= + "charge": "ch_3OgxRXKuuB1fWySn1x1kspPq", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "incorrect_cvc", "doc_url": "https://stripe.com/docs/error-codes/incorrect-cvc", "message": "Your card's security code is incorrect.", "param": "cvc", "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0QKuuB1fWySngoHul0A1", +======= + "id": "pm_1OgxRWKuuB1fWySnkpdhoxG2", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -417,7 +554,11 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323390, +======= + "created": 1707259722, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { @@ -426,7 +567,11 @@ http_interactions: }, "type": "card_error" }, +<<<<<<< HEAD "latest_charge": "ch_3OhE0QKuuB1fWySn2YDK5KQJ", +======= + "latest_charge": "ch_3OgxRXKuuB1fWySn1x1kspPq", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": { }, @@ -458,7 +603,11 @@ http_interactions: "transfer_group": null }, "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0QKuuB1fWySngoHul0A1", +======= + "id": "pm_1OgxRWKuuB1fWySnkpdhoxG2", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -498,16 +647,28 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323390, +======= + "created": 1707259722, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { }, "type": "card" }, +<<<<<<< HEAD "request_log_url": "https://dashboard.stripe.com/test/logs/req_T4BSrrORMhSS83?t=1707323391", "type": "card_error" } } recorded_at: Wed, 07 Feb 2024 16:29:52 GMT +======= + "request_log_url": "https://dashboard.stripe.com/test/logs/req_A0ezW98enF3Cih?t=1707259723", + "type": "card_error" + } + } + recorded_at: Tue, 06 Feb 2024 22:48:44 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Insufficient_funds_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Insufficient_funds_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml index 956b20d9f4..7d75d89c37 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Insufficient_funds_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Insufficient_funds_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Y5IBHksc8xlWUs","request_duration_ms":414}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_KSsSEWxVwDox4O","request_duration_ms":387}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:42 GMT +======= + - Tue, 06 Feb 2024 22:48:35 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 67453512-8921-497d-89e0-1c09dbfd2b44 Original-Request: - req_6i0Rtp1tzko2Hz Request-Id: - req_6i0Rtp1tzko2Hz +======= + - 70387d46-2efd-432d-9925-83a2e42ddad3 + Original-Request: + - req_uI7uILdwfR7iiW + Request-Id: + - req_uI7uILdwfR7iiW +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '208.0' +======= + - '231.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0IKuuB1fWySn6iltSOKp", +======= + "id": "pm_1OgxRPKuuB1fWySn85qcsLCr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323382, +======= + "created": 1707259715, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:42 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:35 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0IKuuB1fWySn6iltSOKp&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRPKuuB1fWySn85qcsLCr&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_6i0Rtp1tzko2Hz","request_duration_ms":486}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_uI7uILdwfR7iiW","request_duration_ms":429}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:43 GMT +======= + - Tue, 06 Feb 2024 22:48:35 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 572178ca-e9e9-4b94-baa6-f565078c64b5 Original-Request: - req_4S3dWztMRC0TcG Request-Id: - req_4S3dWztMRC0TcG +======= + - 1584513a-59cf-4d0e-af77-202ce9c04c64 + Original-Request: + - req_V2kqu4WuxlIoWC + Request-Id: + - req_V2kqu4WuxlIoWC +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '177.0' +======= + - '168.99999999999997' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0IKuuB1fWySn2T2P3SJD", +======= + "id": "pi_3OgxRPKuuB1fWySn1FGg10h5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0IKuuB1fWySn2T2P3SJD_secret_55Pz9ifQHfEQqrUXCwE2j6DBw", "confirmation_method": "automatic", "created": 1707323382, +======= + "client_secret": "pi_3OgxRPKuuB1fWySn1FGg10h5_secret_wfOn6FLOL8WVEDncvL6dabUmY", + "confirmation_method": "automatic", + "created": 1707259715, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0IKuuB1fWySn6iltSOKp", +======= + "payment_method": "pm_1OgxRPKuuB1fWySn85qcsLCr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:43 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0IKuuB1fWySn2T2P3SJD/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:35 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRPKuuB1fWySn1FGg10h5/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_4S3dWztMRC0TcG","request_duration_ms":375}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_V2kqu4WuxlIoWC","request_duration_ms":369}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:44 GMT +======= + - Tue, 06 Feb 2024 22:48:36 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 8ee2a58b-2ff8-4fd1-a4c9-41ca2352a4f2 Original-Request: - req_SYV97dFzHwDWOF Request-Id: - req_SYV97dFzHwDWOF +======= + - cdcda1f4-1924-4209-b913-30adfad56584 + Original-Request: + - req_c2M7l9BHWZ7ERF + Request-Id: + - req_c2M7l9BHWZ7ERF +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '829.0000000000001' +======= + - '825.0000000000001' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -342,13 +457,21 @@ http_interactions: string: | { "error": { +<<<<<<< HEAD "charge": "ch_3OhE0IKuuB1fWySn2WcZogUS", +======= + "charge": "ch_3OgxRPKuuB1fWySn1MhMtTYr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "insufficient_funds", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card has insufficient funds.", "payment_intent": { +<<<<<<< HEAD "id": "pi_3OhE0IKuuB1fWySn2T2P3SJD", +======= + "id": "pi_3OgxRPKuuB1fWySn1FGg10h5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -363,21 +486,35 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0IKuuB1fWySn2T2P3SJD_secret_55Pz9ifQHfEQqrUXCwE2j6DBw", "confirmation_method": "automatic", "created": 1707323382, +======= + "client_secret": "pi_3OgxRPKuuB1fWySn1FGg10h5_secret_wfOn6FLOL8WVEDncvL6dabUmY", + "confirmation_method": "automatic", + "created": 1707259715, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": { +<<<<<<< HEAD "charge": "ch_3OhE0IKuuB1fWySn2WcZogUS", +======= + "charge": "ch_3OgxRPKuuB1fWySn1MhMtTYr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "insufficient_funds", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card has insufficient funds.", "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0IKuuB1fWySn6iltSOKp", +======= + "id": "pm_1OgxRPKuuB1fWySn85qcsLCr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -417,7 +554,11 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323382, +======= + "created": 1707259715, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { @@ -426,7 +567,11 @@ http_interactions: }, "type": "card_error" }, +<<<<<<< HEAD "latest_charge": "ch_3OhE0IKuuB1fWySn2WcZogUS", +======= + "latest_charge": "ch_3OgxRPKuuB1fWySn1MhMtTYr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": { }, @@ -458,7 +603,11 @@ http_interactions: "transfer_group": null }, "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0IKuuB1fWySn6iltSOKp", +======= + "id": "pm_1OgxRPKuuB1fWySn85qcsLCr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -498,16 +647,28 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323382, +======= + "created": 1707259715, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { }, "type": "card" }, +<<<<<<< HEAD "request_log_url": "https://dashboard.stripe.com/test/logs/req_SYV97dFzHwDWOF?t=1707323383", "type": "card_error" } } recorded_at: Wed, 07 Feb 2024 16:29:44 GMT +======= + "request_log_url": "https://dashboard.stripe.com/test/logs/req_c2M7l9BHWZ7ERF?t=1707259716", + "type": "card_error" + } + } + recorded_at: Tue, 06 Feb 2024 22:48:36 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Lost_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Lost_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml index 3dd445f5bb..49b989ad7d 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Lost_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Lost_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_4S3dWztMRC0TcG","request_duration_ms":375}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_V2kqu4WuxlIoWC","request_duration_ms":369}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:44 GMT +======= + - Tue, 06 Feb 2024 22:48:37 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 28882d1e-7af4-4145-aa99-e07bc87e965a Original-Request: - req_EHKK2ryolg8gdt Request-Id: - req_EHKK2ryolg8gdt +======= + - 25721316-8d2b-47e3-85b6-54203c88124d + Original-Request: + - req_ed163Tzn2Wkj8Y + Request-Id: + - req_ed163Tzn2Wkj8Y +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '268.0' +======= + - '260.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0KKuuB1fWySnwDDM91bp", +======= + "id": "pm_1OgxRRKuuB1fWySnkkKBCw6m", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323384, +======= + "created": 1707259717, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:44 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:37 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0KKuuB1fWySnwDDM91bp&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRRKuuB1fWySnkkKBCw6m&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_EHKK2ryolg8gdt","request_duration_ms":485}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_ed163Tzn2Wkj8Y","request_duration_ms":489}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:45 GMT +======= + - Tue, 06 Feb 2024 22:48:37 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - bb104cf3-00ec-4013-858f-1910c79d9d80 Original-Request: - req_wMJERd2KNABPc0 Request-Id: - req_wMJERd2KNABPc0 +======= + - 485d44d0-c117-4c0f-a025-0ed953594bf4 + Original-Request: + - req_KM0V6YzsMcJI0g + Request-Id: + - req_KM0V6YzsMcJI0g +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '229.99999999999997' +======= + - '180.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0KKuuB1fWySn1p4TXUcj", +======= + "id": "pi_3OgxRRKuuB1fWySn2100nIfA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0KKuuB1fWySn1p4TXUcj_secret_Bw2SXBCyPYAypmToMxFtZEFsL", "confirmation_method": "automatic", "created": 1707323384, +======= + "client_secret": "pi_3OgxRRKuuB1fWySn2100nIfA_secret_ouK1K2W4jXxbP6y402uNVHlsU", + "confirmation_method": "automatic", + "created": 1707259717, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0KKuuB1fWySnwDDM91bp", +======= + "payment_method": "pm_1OgxRRKuuB1fWySnkkKBCw6m", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:45 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0KKuuB1fWySn1p4TXUcj/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:37 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRRKuuB1fWySn2100nIfA/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_wMJERd2KNABPc0","request_duration_ms":518}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_KM0V6YzsMcJI0g","request_duration_ms":390}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:46 GMT +======= + - Tue, 06 Feb 2024 22:48:38 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 2d789b18-d525-45e7-be8e-6250bd8677d0 Original-Request: - req_oG6RRtOlaRWfyU Request-Id: - req_oG6RRtOlaRWfyU +======= + - e0f1b774-2d2f-4e55-bc5d-3536048a7a7c + Original-Request: + - req_CAmym0ZVGJBq5j + Request-Id: + - req_CAmym0ZVGJBq5j +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '770.0' +======= + - '989.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -342,13 +457,21 @@ http_interactions: string: | { "error": { +<<<<<<< HEAD "charge": "ch_3OhE0KKuuB1fWySn1OTWvIW8", +======= + "charge": "ch_3OgxRRKuuB1fWySn2BfEc7mC", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "lost_card", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card was declined.", "payment_intent": { +<<<<<<< HEAD "id": "pi_3OhE0KKuuB1fWySn1p4TXUcj", +======= + "id": "pi_3OgxRRKuuB1fWySn2100nIfA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -363,21 +486,35 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0KKuuB1fWySn1p4TXUcj_secret_Bw2SXBCyPYAypmToMxFtZEFsL", "confirmation_method": "automatic", "created": 1707323384, +======= + "client_secret": "pi_3OgxRRKuuB1fWySn2100nIfA_secret_ouK1K2W4jXxbP6y402uNVHlsU", + "confirmation_method": "automatic", + "created": 1707259717, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": { +<<<<<<< HEAD "charge": "ch_3OhE0KKuuB1fWySn1OTWvIW8", +======= + "charge": "ch_3OgxRRKuuB1fWySn2BfEc7mC", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "lost_card", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card was declined.", "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0KKuuB1fWySnwDDM91bp", +======= + "id": "pm_1OgxRRKuuB1fWySnkkKBCw6m", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -417,7 +554,11 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323384, +======= + "created": 1707259717, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { @@ -426,7 +567,11 @@ http_interactions: }, "type": "card_error" }, +<<<<<<< HEAD "latest_charge": "ch_3OhE0KKuuB1fWySn1OTWvIW8", +======= + "latest_charge": "ch_3OgxRRKuuB1fWySn2BfEc7mC", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": { }, @@ -458,7 +603,11 @@ http_interactions: "transfer_group": null }, "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0KKuuB1fWySnwDDM91bp", +======= + "id": "pm_1OgxRRKuuB1fWySnkkKBCw6m", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -498,16 +647,28 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323384, +======= + "created": 1707259717, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { }, "type": "card" }, +<<<<<<< HEAD "request_log_url": "https://dashboard.stripe.com/test/logs/req_oG6RRtOlaRWfyU?t=1707323385", "type": "card_error" } } recorded_at: Wed, 07 Feb 2024 16:29:46 GMT +======= + "request_log_url": "https://dashboard.stripe.com/test/logs/req_CAmym0ZVGJBq5j?t=1707259717", + "type": "card_error" + } + } + recorded_at: Tue, 06 Feb 2024 22:48:38 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Processing_error_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Processing_error_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml index eea5a9ed88..4e88d7dbcc 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Processing_error_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Processing_error_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_qQP8kFn8cbQTa7","request_duration_ms":517}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_AZ29Oe19NrEVxp","request_duration_ms":387}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:52 GMT +======= + - Tue, 06 Feb 2024 22:48:44 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - b2ad7481-ead0-4c5e-a3d7-266b1c5ed72c Original-Request: - req_0LXpGJoWcuM0Y4 Request-Id: - req_0LXpGJoWcuM0Y4 +======= + - 5c5f07da-aa27-48da-8a4d-360d13db2dc6 + Original-Request: + - req_G272WOxXw4DsV2 + Request-Id: + - req_G272WOxXw4DsV2 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '229.99999999999997' +======= + - '270.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0SKuuB1fWySnAcUnanRc", +======= + "id": "pm_1OgxRYKuuB1fWySnr67rvxFo", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323392, +======= + "created": 1707259724, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:52 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:44 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0SKuuB1fWySnAcUnanRc&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRYKuuB1fWySnr67rvxFo&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_0LXpGJoWcuM0Y4","request_duration_ms":488}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_G272WOxXw4DsV2","request_duration_ms":465}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:53 GMT +======= + - Tue, 06 Feb 2024 22:48:45 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - abf31e1f-50f2-4dd1-80f7-83c02d8d2709 Original-Request: - req_n4HlchPRqwZKmI Request-Id: - req_n4HlchPRqwZKmI +======= + - 506789bb-874e-40a8-b5a0-0cc2af3b16fc + Original-Request: + - req_TuL0KVL2rD9MmQ + Request-Id: + - req_TuL0KVL2rD9MmQ +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '219.0' +======= + - '163.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0SKuuB1fWySn1EdsmzjU", +======= + "id": "pi_3OgxRZKuuB1fWySn2SL1ABff", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0SKuuB1fWySn1EdsmzjU_secret_v0btMTDbnaRs0cu2qofzOQrPu", "confirmation_method": "automatic", "created": 1707323392, +======= + "client_secret": "pi_3OgxRZKuuB1fWySn2SL1ABff_secret_QMjcwnzJpKbRWGbDqvHoKHL84", + "confirmation_method": "automatic", + "created": 1707259725, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0SKuuB1fWySnAcUnanRc", +======= + "payment_method": "pm_1OgxRYKuuB1fWySnr67rvxFo", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:53 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0SKuuB1fWySn1EdsmzjU/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:45 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRZKuuB1fWySn2SL1ABff/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_n4HlchPRqwZKmI","request_duration_ms":428}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_TuL0KVL2rD9MmQ","request_duration_ms":360}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:54 GMT +======= + - Tue, 06 Feb 2024 22:48:46 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - ee76adef-cbc8-4d73-9252-e34d97ba65dc Original-Request: - req_bZ8DkioJojBGul Request-Id: - req_bZ8DkioJojBGul +======= + - 0f533f82-2e02-4ee1-a110-5b4c8e52b984 + Original-Request: + - req_7OKePgAGwG68bL + Request-Id: + - req_7OKePgAGwG68bL +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '1007.0000000000001' +======= + - '872.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -342,12 +457,20 @@ http_interactions: string: | { "error": { +<<<<<<< HEAD "charge": "ch_3OhE0SKuuB1fWySn1rZgpCpG", +======= + "charge": "ch_3OgxRZKuuB1fWySn21QoLntn", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "processing_error", "doc_url": "https://stripe.com/docs/error-codes/processing-error", "message": "An error occurred while processing your card. Try again in a little bit.", "payment_intent": { +<<<<<<< HEAD "id": "pi_3OhE0SKuuB1fWySn1EdsmzjU", +======= + "id": "pi_3OgxRZKuuB1fWySn2SL1ABff", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -362,20 +485,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0SKuuB1fWySn1EdsmzjU_secret_v0btMTDbnaRs0cu2qofzOQrPu", "confirmation_method": "automatic", "created": 1707323392, +======= + "client_secret": "pi_3OgxRZKuuB1fWySn2SL1ABff_secret_QMjcwnzJpKbRWGbDqvHoKHL84", + "confirmation_method": "automatic", + "created": 1707259725, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": { +<<<<<<< HEAD "charge": "ch_3OhE0SKuuB1fWySn1rZgpCpG", +======= + "charge": "ch_3OgxRZKuuB1fWySn21QoLntn", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "processing_error", "doc_url": "https://stripe.com/docs/error-codes/processing-error", "message": "An error occurred while processing your card. Try again in a little bit.", "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0SKuuB1fWySnAcUnanRc", +======= + "id": "pm_1OgxRYKuuB1fWySnr67rvxFo", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -415,7 +552,11 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323392, +======= + "created": 1707259724, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { @@ -424,7 +565,11 @@ http_interactions: }, "type": "card_error" }, +<<<<<<< HEAD "latest_charge": "ch_3OhE0SKuuB1fWySn1rZgpCpG", +======= + "latest_charge": "ch_3OgxRZKuuB1fWySn21QoLntn", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": { }, @@ -456,7 +601,11 @@ http_interactions: "transfer_group": null }, "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0SKuuB1fWySnAcUnanRc", +======= + "id": "pm_1OgxRYKuuB1fWySnr67rvxFo", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -496,16 +645,28 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323392, +======= + "created": 1707259724, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { }, "type": "card" }, +<<<<<<< HEAD "request_log_url": "https://dashboard.stripe.com/test/logs/req_bZ8DkioJojBGul?t=1707323393", "type": "card_error" } } recorded_at: Wed, 07 Feb 2024 16:29:54 GMT +======= + "request_log_url": "https://dashboard.stripe.com/test/logs/req_7OKePgAGwG68bL?t=1707259725", + "type": "card_error" + } + } + recorded_at: Tue, 06 Feb 2024 22:48:46 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Stolen_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Stolen_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml index 7fa6842e41..0bb353aae7 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Stolen_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_invalid/invalid_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Stolen_card_decline/raises_Stripe_error_with_payment_intent_last_payment_error_as_message.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_wMJERd2KNABPc0","request_duration_ms":518}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_KM0V6YzsMcJI0g","request_duration_ms":390}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:46 GMT +======= + - Tue, 06 Feb 2024 22:48:39 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 17c17911-dde8-4d5a-8c02-580297cfe04e Original-Request: - req_ZGjzvDl6RUVOpX Request-Id: - req_ZGjzvDl6RUVOpX +======= + - f7de88f6-e16d-43dc-9a5c-2a1addba38be + Original-Request: + - req_L5nWWHZFA19cgx + Request-Id: + - req_L5nWWHZFA19cgx +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '239.0' +======= + - '277.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0MKuuB1fWySnC0ptS8Pk", +======= + "id": "pm_1OgxRTKuuB1fWySnSw3pk6LE", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323386, +======= + "created": 1707259719, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:46 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:39 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0MKuuB1fWySnC0ptS8Pk&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRTKuuB1fWySnSw3pk6LE&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_ZGjzvDl6RUVOpX","request_duration_ms":470}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_L5nWWHZFA19cgx","request_duration_ms":475}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:47 GMT +======= + - Tue, 06 Feb 2024 22:48:39 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 75cf4f17-1891-4797-a03c-b47cfa0ac1bf Original-Request: - req_DOXqxSvziA2Lbj Request-Id: - req_DOXqxSvziA2Lbj +======= + - b053eeb3-0b77-4b32-851e-a36422365298 + Original-Request: + - req_bbmilYLl9N7znh + Request-Id: + - req_bbmilYLl9N7znh +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '251.0' +======= + - '185.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0MKuuB1fWySn2QgHzma4", +======= + "id": "pi_3OgxRTKuuB1fWySn0DS604ja", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0MKuuB1fWySn2QgHzma4_secret_hCwwgME6OG8qq9WBw0wGDpJlD", "confirmation_method": "automatic", "created": 1707323386, +======= + "client_secret": "pi_3OgxRTKuuB1fWySn0DS604ja_secret_xHcRx7h7IbQ6dOuGPom4PqSo2", + "confirmation_method": "automatic", + "created": 1707259719, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0MKuuB1fWySnC0ptS8Pk", +======= + "payment_method": "pm_1OgxRTKuuB1fWySnSw3pk6LE", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:47 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0MKuuB1fWySn2QgHzma4/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:39 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRTKuuB1fWySn0DS604ja/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_DOXqxSvziA2Lbj","request_duration_ms":518}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_bbmilYLl9N7znh","request_duration_ms":384}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:48 GMT +======= + - Tue, 06 Feb 2024 22:48:40 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - b0bb1683-a7cc-4543-80f0-a763c1c91c51 Original-Request: - req_swBzNqWX3MNl3E Request-Id: - req_swBzNqWX3MNl3E +======= + - 74061873-77d4-4888-9497-6b011532f241 + Original-Request: + - req_AC8Ntyfiv9HHfg + Request-Id: + - req_AC8Ntyfiv9HHfg +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '852.0000000000001' +======= + - '826.0000000000001' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -342,13 +457,21 @@ http_interactions: string: | { "error": { +<<<<<<< HEAD "charge": "ch_3OhE0MKuuB1fWySn2xQQTXoX", +======= + "charge": "ch_3OgxRTKuuB1fWySn0RVkcFJn", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "stolen_card", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card was declined.", "payment_intent": { +<<<<<<< HEAD "id": "pi_3OhE0MKuuB1fWySn2QgHzma4", +======= + "id": "pi_3OgxRTKuuB1fWySn0DS604ja", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -363,21 +486,35 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0MKuuB1fWySn2QgHzma4_secret_hCwwgME6OG8qq9WBw0wGDpJlD", "confirmation_method": "automatic", "created": 1707323386, +======= + "client_secret": "pi_3OgxRTKuuB1fWySn0DS604ja_secret_xHcRx7h7IbQ6dOuGPom4PqSo2", + "confirmation_method": "automatic", + "created": 1707259719, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": { +<<<<<<< HEAD "charge": "ch_3OhE0MKuuB1fWySn2xQQTXoX", +======= + "charge": "ch_3OgxRTKuuB1fWySn0RVkcFJn", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "code": "card_declined", "decline_code": "stolen_card", "doc_url": "https://stripe.com/docs/error-codes/card-declined", "message": "Your card was declined.", "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0MKuuB1fWySnC0ptS8Pk", +======= + "id": "pm_1OgxRTKuuB1fWySnSw3pk6LE", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -417,7 +554,11 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323386, +======= + "created": 1707259719, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { @@ -426,7 +567,11 @@ http_interactions: }, "type": "card_error" }, +<<<<<<< HEAD "latest_charge": "ch_3OhE0MKuuB1fWySn2xQQTXoX", +======= + "latest_charge": "ch_3OgxRTKuuB1fWySn0RVkcFJn", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": { }, @@ -458,7 +603,11 @@ http_interactions: "transfer_group": null }, "payment_method": { +<<<<<<< HEAD "id": "pm_1OhE0MKuuB1fWySnC0ptS8Pk", +======= + "id": "pm_1OgxRTKuuB1fWySnSw3pk6LE", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -498,16 +647,28 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323386, +======= + "created": 1707259719, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": { }, "type": "card" }, +<<<<<<< HEAD "request_log_url": "https://dashboard.stripe.com/test/logs/req_swBzNqWX3MNl3E?t=1707323387", "type": "card_error" } } recorded_at: Wed, 07 Feb 2024 16:29:48 GMT +======= + "request_log_url": "https://dashboard.stripe.com/test/logs/req_AC8Ntyfiv9HHfg?t=1707259719", + "type": "card_error" + } + } + recorded_at: Tue, 06 Feb 2024 22:48:40 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_3D_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_3D_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/captures_the_payment.yml new file mode 100644 index 0000000000..3ca0c484df --- /dev/null +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_3D_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/captures_the_payment.yml @@ -0,0 +1,567 @@ +--- +http_interactions: +- request: + method: post + uri: https://api.stripe.com/v1/payment_methods + body: + encoding: UTF-8 + string: type=card&card[number]=6200000000000047&card[exp_month]=12&card[exp_year]=2025&card[cvc]=314 + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_44EjjqBUy4TbBg","request_duration_ms":834}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux + version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 + (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) + #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Wed, 07 Feb 2024 16:35:29 GMT + Content-Type: + - application/json + Content-Length: + - '938' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_methods; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - e521d90c-8ec2-47fd-9e75-4608fa6dd09a + Original-Request: + - req_wZb5NSTmTT3lyq + Request-Id: + - req_wZb5NSTmTT3lyq + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '237.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pm_1OhE5sKuuB1fWySnv3jJkFMW", + "object": "payment_method", + "billing_details": { + "address": { + "city": null, + "country": null, + "line1": null, + "line2": null, + "postal_code": null, + "state": null + }, + "email": null, + "name": null, + "phone": null + }, + "card": { + "brand": "unionpay", + "checks": { + "address_line1_check": null, + "address_postal_code_check": null, + "cvc_check": "unchecked" + }, + "country": "CN", + "exp_month": 12, + "exp_year": 2025, + "fingerprint": "Bk3yMwVTBMfdXTtb", + "funding": "debit", + "generated_from": null, + "last4": "0047", + "networks": { + "available": [ + "unionpay" + ], + "preferred": null + }, + "three_d_secure_usage": { + "supported": true + }, + "wallet": null + }, + "created": 1707323729, + "customer": null, + "livemode": false, + "metadata": {}, + "type": "card" + } + recorded_at: Wed, 07 Feb 2024 16:35:29 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents + body: + encoding: UTF-8 + string: amount=100¤cy=eur&payment_method=pm_1OhE5sKuuB1fWySnv3jJkFMW&payment_method_types[0]=card&capture_method=manual + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_wZb5NSTmTT3lyq","request_duration_ms":548}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux + version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 + (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) + #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Wed, 07 Feb 2024 16:35:29 GMT + Content-Type: + - application/json + Content-Length: + - '1343' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 5467ffc6-fd9e-4353-9eb2-2376cc30d7b8 + Original-Request: + - req_kch3RlIGEPYdvV + Request-Id: + - req_kch3RlIGEPYdvV + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '175.00000000000003' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OhE5tKuuB1fWySn2HqwVUhK", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OhE5tKuuB1fWySn2HqwVUhK_secret_kPDBi7ibw1pZDcDDf0c85bvHg", + "confirmation_method": "automatic", + "created": 1707323729, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": null, + "on_behalf_of": null, + "payment_method": "pm_1OhE5sKuuB1fWySnv3jJkFMW", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_confirmation", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Wed, 07 Feb 2024 16:35:29 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OhE5tKuuB1fWySn2HqwVUhK/confirm + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_kch3RlIGEPYdvV","request_duration_ms":398}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux + version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 + (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) + #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Wed, 07 Feb 2024 16:35:30 GMT + Content-Type: + - application/json + Content-Length: + - '7578' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents%2F%3Aintent%2Fconfirm; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' + Idempotency-Key: + - 85c16412-77c6-48b9-91c9-0b1bff45b8d2 + Original-Request: + - req_mK70x5679sumyp + Request-Id: + - req_mK70x5679sumyp + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '480.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OhE5tKuuB1fWySn2HqwVUhK", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OhE5tKuuB1fWySn2HqwVUhK_secret_kPDBi7ibw1pZDcDDf0c85bvHg", + "confirmation_method": "automatic", + "created": 1707323729, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": { + "type": "use_stripe_sdk", + "use_stripe_sdk": { + "directory_server_encryption": { + "algorithm": "RSA", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIE5DCCA8ygAwIBAgIFRVOQdGYwDQYJKoZIhvcNAQELBQAwWDELMAkGA1UEBhMC\nQ04xMDAuBgNVBAoMJ0NoaW5hIEZpbmFuY2lhbCBDZXJ0aWZpY2F0aW9uIEF1dGhv\ncml0eTEXMBUGA1UEAwwOQ0ZDQSBBQ1MgT0NBMzEwHhcNMjIwNzA4MDc1NTQwWhcN\nMjUwNzA4MDc1NTQwWjCBkjELMAkGA1UEBhMCQ04xFzAVBgNVBAoMDkNGQ0EgQUNT\nIE9DQTMxMRMwEQYDVQQLDApDRkNBIE9DQTMxMRkwFwYDVQQLDBBPcmdhbml6YXRp\nb25hbC0xMTowOAYDVQQDDDFDRkNBQFVuaW9uUGF5IEludGVybmF0aW9uYWxATjkx\nMzEwMDAwMDU0NTU4NzhYNkAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC\nAQEAwuRlVZUwD6W730Te77RvLKf8fqY/bSVmw2OKZQcfLiH1VDoPFRes5Z2WmAhA\n2JnGnnZ+WYRjC4n+CvaKHPGhH4LRVLXBDjNbY7vjN9DWJnji5DTM/DLkCaggt481\n9mJz06oHIKOCgXUSIVVLWsOYjkot1kmU6ln5kQgROJ2WPmcu0Ks3FSdb/FRGINoF\nOw6c/LM+JxFNcLOaq5l9bd3ScRbzf/sZgpY2BZtEK/GCKaBCup/aLCxQiPd2YHg4\nDwGA6ntpFf/OUxaUqRbgsacoWkfYaQb6mJiInvpRulmQNJ7L/EVLhefs4aBSL30j\nPplG58GI48wfnnn7DGFECN1txQIDAQABo4IBeDCCAXQwbAYIKwYBBQUHAQEEYDBe\nMCgGCCsGAQUFBzABhhxodHRwOi8vb2NzcC5jZmNhLmNvbS5jbi9vY3NwMDIGCCsG\nAQUFBzAChiZodHRwOi8vY3JsLmNmY2EuY29tLmNuL29jYTMxL29jYTMxLmNlcjAf\nBgNVHSMEGDAWgBTitAnLzWGhc0p5f/GKgwvdtH6MHTAMBgNVHRMBAf8EAjAAMEgG\nA1UdIARBMD8wPQYIYIEchu8qAQQwMTAvBggrBgEFBQcCARYjaHR0cDovL3d3dy5j\nZmNhLmNvbS5jbi91cy91cy0xNC5odG0wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDov\nL2NybC5jZmNhLmNvbS5jbi9vY2EzMS9SU0EvY3JsMzY0NS5jcmwwDgYDVR0PAQH/\nBAQDAgbAMB0GA1UdDgQWBBRrdk+U/3RQ6UypCMhaDf6I9xfXEDAdBgNVHSUEFjAU\nBggrBgEFBQcDAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBABCH0cZGmphf\nzI9qa3afdIN0poPLP3krYnDkcjWgm18pxrnKtpP00VpyGDmsBv0YJnqpqoT1+x7h\nWFaT2Ks9CUulnAGYIjhIqKMJIgMN+IfiHCZ+XpUk/P941Jod0FxSKhe3uybx+WOR\nVml5umKApFlQzfzqHzs34CO7c+z2EfK7cpGiFY/dj+vXp1rdIYPyZmYzamUsi1oL\n5B0NHvVWm6jFWzU65IvM8RaWyDqsufYaQC/kxvaBwL6aHSsuwhfd4UdDHmegSmXD\n06GRIJk0s6HVSLB1n3yw+emFh7bQiWgskDmIiek653xJpu0LClaypFBJNzHTqCqH\n7x8zY3NIVeM=\n-----END CERTIFICATE-----\n", + "directory_server_id": "A000000333", + "root_certificate_authorities": [ + "-----BEGIN CERTIFICATE-----\nMIIE2TCCAsGgAwIBAgIQNKxHTPjyFWmPZvSg97mGvDANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5Mjcw\nMjExMjNaFw0zNTA5MjIwMjExMjNaMFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMM\nDkNGQ0EgQUNTIE9DQTMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\n7mY3rHQfCJCRB0HVK9taITB8ZEGtOVElUH4ou3kB0dOWbACf5pCI9MSMndqOZAlj\n/djcAfwJ8gtW0j8STzsIDe+uoFnyxXEIwu0wb5JoumYSdFVWssa6Fu8UnoUFLBXR\ny7lbYmxcQlBVAoXjoVZuVldNJz/pV7pvDtFDCmnCyzo1OmH09yrsSz4lSQrNAJOL\nyGD0OmGI/lJX36grEYKteey8mspVcnTFF7/rDXeVXCNvTy774iW70ByalW2xfR3e\nTr7XkXLTU9GE3JsbHxo5kf+jsfuPJM0qZFAEWHstFMDcSdGBy1VCyLWnH8xRPCmd\nM4EuyTfB3U30BI/ts46t1wIDAQABo4GhMIGeMB8GA1UdIwQYMBaAFBHheNM4IPrt\n69YjljCofbmZ21/3MA8GA1UdEwEB/wQFMAMBAf8wOwYDVR0fBDQwMjAwoC6gLIYq\naHR0cDovL2NybC5jZmNhLmNvbS5jbi9hY3NyY2EvUlNBL2NybDEuY3JsMA4GA1Ud\nDwEB/wQEAwIBBjAdBgNVHQ4EFgQU4rQJy81hoXNKeX/xioML3bR+jB0wDQYJKoZI\nhvcNAQELBQADggIBAD+MkwGqVdv4x49yWoZ/CuIIGMRmhs3zvCG9XezkiFQDBw2u\n/bVvkJB2nAg2ECYFbUUU+lDNK6xuooRD0fKDuRT37aH2Ydvwy8B1aus2VJA+FKAt\nyrgX/T103LC3K0CJW7z72op8P5H0lyob8QQfRXuhYvz8K3DENwej4LO9H6lAfZUK\n/QMqeB3fnz+YZCc84quRtY/lbNdlz9Qh5Lf73zq/oWOUIXAzYktmx/cS3KeL9t+c\nQ3EW/qiHaxouNo0ioS6bRby17OW4h+5M0v/WnVddl17EbFySVh0ffcjQfuznjYVr\nwwR1JARC5QSs6cmxF4fHByZftTGqjIiN5ZlD0xHVTx2y1WHGmInUDa562sSMIVCc\nUWminQb4kBLCHBLm4j7mVrNG0GukjMkdmhh+K5YjZkAfET07tgtr13u2/Dgi0BQw\nh5VDZom2CVbzodXSfcQbsFRJEKrmeaAzmuksc6nHCbdxvcgeFLKfo3L5gFjttbLn\ndJswtPmjQCTMheQBSbHN8TpeN+Fpzuf9Y9oV+vOwfnCmhejakoNOuOt1Pl66phTg\nX/EgW+c/iNiIRcNlEY7ujJUEiXeP1W3VQLcvI24mSQB/n4C3NJhik84AHaz4WIPQ\nWZJktegihU6LSsnpop7scR519fmNysRprjdmnmBSrXc5s2E6HF6FdpPVErcE\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIFlzCCA3+gAwIBAgIQQa7zz75EZFRPZPial/I5FzANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5MjMw\nMzI0MDhaFw0zNTA5MjgwMzI0MDhaMFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMM\nC0NGQ0EgQUNTIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2FvC\ndOW7TF1MjdaKZmyk+H98ySeklKrumik09l1j6X3n15ii+K2FI7R9YauQw344sOH9\nwkE+ow8O+gj3L7QwqrZFtORTsufXRZtsWl3P9PpXFSKu2RLS7HULMNk93R1lDuVU\nudwZt12AUZZa1Wxg47bXq415Z6Ws/CuEuKQodsrXpzGiqpPqcLkIRx7sE6y99Afy\nVS5A0e/8LpC5jTGep2ZlskgZxU5nA/rEM42sUBh/nT4lFFXkq7y+mQ1JLSEDRVXO\nzxXQIAEIxsmB5hALMe4TterMHvPMoJUPYsSbF5Zr2npGZI3MEomYqDbbZqT+kbOe\nraUQ/l1IYMXEwviPL5RBY2xbNyZzKlepsC5fHukAgf1PJUhJ/OEjUVz+2ysOyjeL\nT5p+Lk+u3WDmavrQNmLaFLGzG0tl86FVP6RZ+kzjUiZAMu3Cx0FgAmqf72mjMk4V\n7YsfhhZk42zBwTiN1zpnrSBeU7ZfTxsws9GTIta55AM0sqHrCN32vVOoEzy+hWHf\nzJ58aE9/2kK8eiEpFIhIUEYuU6q4LZOGqNNWccMtrC/ZwmblyU8+ZrFaXGKGzBxH\n1K+o6iL9vTYfsC4SsCfKbiMHoujj5ru1fcpRrppQUWPt9Nuxrlo3OwXpH1dAGc8/\nUEDtBPD/ONM57SVpCeHUJLZR7WpCPUG2d+R2AnMCAwEAAaNjMGEwHwYDVR0jBBgw\nFoAUEeF40zgg+u3r1iOWMKh9uZnbX/cwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B\nAf8EBAMCAQYwHQYDVR0OBBYEFBHheNM4IPrt69YjljCofbmZ21/3MA0GCSqGSIb3\nDQEBCwUAA4ICAQDECZu0YlzbcAXr9JWTEbEP0C65XskOYSNBFodAjjqGunUyxhyy\nQc/BUAen0ClEf1OeuWj9YivQXMg2TGg6qr91Pp+bLH51M/rVNAgPIevnqCGFDbF8\nGqlrNJnevZHNilJYXmCDA6eJY7nkzf/ECcMdtMLTxoa+BRgh/x9d9YELU1sIjUVg\n/V9t6KXACv1E4wMrhV30savEgKWqjtt2eJwz1tkN0qXIjah3Ey8zbtrqyI0tV/uR\nQWRGRIK1h4VunWEODOGb3HrQa2D4nraKXumCXWJtuO2g0U0ktxy4+s95zq/y53Ms\nTG+cYtUyDoCwMA0QBAVztVnee4qzTbSfzoiXAu57lQWcPNkFVl8DIPDyImpa0v4c\nUoJLV4wedYFKDNQvt7yaqqbuF15D2MJq7lsEe3yybUGp2GPbwqEuNrS56D8mqYhE\n51QZusdoP/bTYnz9kUI4HKAziLqwmdNyg8g3dQwU3AAx6tsz6ZoncqU0Jhwcx/TG\nQ+3uDTP50De44FfGsTCZXGBLnwuog9cT64TGkB5Upp7DHyeErzHghh4I+Yb1bzSX\nfGgRsAGUHDdi6zZZA4I/Cmmpz4yBNGwLclyvOrD9xR0BfoiTAFk2DxGeebU17pK/\nxFi1ldh2uDvTKMQxh3CWusRG5wBkNjA9jmajHHDY9OEIFhALNbPmAu8D0Q==\n-----END CERTIFICATE-----\n" + ] + }, + "directory_server_name": "unionpay", + "merchant": "", + "one_click_authn": null, + "server_transaction_id": "95feddd0-9e8b-4a64-8fdd-7dba587288cd", + "three_d_secure_2_source": "payatt_3OhE5tKuuB1fWySn2hTNOahK", + "three_ds_method_url": "", + "three_ds_optimizations": "kf", + "type": "stripe_3ds2_fingerprint" + } + }, + "on_behalf_of": null, + "payment_method": "pm_1OhE5sKuuB1fWySnv3jJkFMW", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_action", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Wed, 07 Feb 2024 16:35:30 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OhE5tKuuB1fWySn2HqwVUhK + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_mK70x5679sumyp","request_duration_ms":744}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux + version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 + (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) + #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Wed, 07 Feb 2024 16:35:30 GMT + Content-Type: + - application/json + Content-Length: + - '7578' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents%2F%3Aintent; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' + Request-Id: + - req_8G87nyZ8PQZ9yv + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '102.99999999999999' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OhE5tKuuB1fWySn2HqwVUhK", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OhE5tKuuB1fWySn2HqwVUhK_secret_kPDBi7ibw1pZDcDDf0c85bvHg", + "confirmation_method": "automatic", + "created": 1707323729, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": { + "type": "use_stripe_sdk", + "use_stripe_sdk": { + "directory_server_encryption": { + "algorithm": "RSA", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIE5DCCA8ygAwIBAgIFRVOQdGYwDQYJKoZIhvcNAQELBQAwWDELMAkGA1UEBhMC\nQ04xMDAuBgNVBAoMJ0NoaW5hIEZpbmFuY2lhbCBDZXJ0aWZpY2F0aW9uIEF1dGhv\ncml0eTEXMBUGA1UEAwwOQ0ZDQSBBQ1MgT0NBMzEwHhcNMjIwNzA4MDc1NTQwWhcN\nMjUwNzA4MDc1NTQwWjCBkjELMAkGA1UEBhMCQ04xFzAVBgNVBAoMDkNGQ0EgQUNT\nIE9DQTMxMRMwEQYDVQQLDApDRkNBIE9DQTMxMRkwFwYDVQQLDBBPcmdhbml6YXRp\nb25hbC0xMTowOAYDVQQDDDFDRkNBQFVuaW9uUGF5IEludGVybmF0aW9uYWxATjkx\nMzEwMDAwMDU0NTU4NzhYNkAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC\nAQEAwuRlVZUwD6W730Te77RvLKf8fqY/bSVmw2OKZQcfLiH1VDoPFRes5Z2WmAhA\n2JnGnnZ+WYRjC4n+CvaKHPGhH4LRVLXBDjNbY7vjN9DWJnji5DTM/DLkCaggt481\n9mJz06oHIKOCgXUSIVVLWsOYjkot1kmU6ln5kQgROJ2WPmcu0Ks3FSdb/FRGINoF\nOw6c/LM+JxFNcLOaq5l9bd3ScRbzf/sZgpY2BZtEK/GCKaBCup/aLCxQiPd2YHg4\nDwGA6ntpFf/OUxaUqRbgsacoWkfYaQb6mJiInvpRulmQNJ7L/EVLhefs4aBSL30j\nPplG58GI48wfnnn7DGFECN1txQIDAQABo4IBeDCCAXQwbAYIKwYBBQUHAQEEYDBe\nMCgGCCsGAQUFBzABhhxodHRwOi8vb2NzcC5jZmNhLmNvbS5jbi9vY3NwMDIGCCsG\nAQUFBzAChiZodHRwOi8vY3JsLmNmY2EuY29tLmNuL29jYTMxL29jYTMxLmNlcjAf\nBgNVHSMEGDAWgBTitAnLzWGhc0p5f/GKgwvdtH6MHTAMBgNVHRMBAf8EAjAAMEgG\nA1UdIARBMD8wPQYIYIEchu8qAQQwMTAvBggrBgEFBQcCARYjaHR0cDovL3d3dy5j\nZmNhLmNvbS5jbi91cy91cy0xNC5odG0wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDov\nL2NybC5jZmNhLmNvbS5jbi9vY2EzMS9SU0EvY3JsMzY0NS5jcmwwDgYDVR0PAQH/\nBAQDAgbAMB0GA1UdDgQWBBRrdk+U/3RQ6UypCMhaDf6I9xfXEDAdBgNVHSUEFjAU\nBggrBgEFBQcDAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBABCH0cZGmphf\nzI9qa3afdIN0poPLP3krYnDkcjWgm18pxrnKtpP00VpyGDmsBv0YJnqpqoT1+x7h\nWFaT2Ks9CUulnAGYIjhIqKMJIgMN+IfiHCZ+XpUk/P941Jod0FxSKhe3uybx+WOR\nVml5umKApFlQzfzqHzs34CO7c+z2EfK7cpGiFY/dj+vXp1rdIYPyZmYzamUsi1oL\n5B0NHvVWm6jFWzU65IvM8RaWyDqsufYaQC/kxvaBwL6aHSsuwhfd4UdDHmegSmXD\n06GRIJk0s6HVSLB1n3yw+emFh7bQiWgskDmIiek653xJpu0LClaypFBJNzHTqCqH\n7x8zY3NIVeM=\n-----END CERTIFICATE-----\n", + "directory_server_id": "A000000333", + "root_certificate_authorities": [ + "-----BEGIN CERTIFICATE-----\nMIIE2TCCAsGgAwIBAgIQNKxHTPjyFWmPZvSg97mGvDANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5Mjcw\nMjExMjNaFw0zNTA5MjIwMjExMjNaMFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMM\nDkNGQ0EgQUNTIE9DQTMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\n7mY3rHQfCJCRB0HVK9taITB8ZEGtOVElUH4ou3kB0dOWbACf5pCI9MSMndqOZAlj\n/djcAfwJ8gtW0j8STzsIDe+uoFnyxXEIwu0wb5JoumYSdFVWssa6Fu8UnoUFLBXR\ny7lbYmxcQlBVAoXjoVZuVldNJz/pV7pvDtFDCmnCyzo1OmH09yrsSz4lSQrNAJOL\nyGD0OmGI/lJX36grEYKteey8mspVcnTFF7/rDXeVXCNvTy774iW70ByalW2xfR3e\nTr7XkXLTU9GE3JsbHxo5kf+jsfuPJM0qZFAEWHstFMDcSdGBy1VCyLWnH8xRPCmd\nM4EuyTfB3U30BI/ts46t1wIDAQABo4GhMIGeMB8GA1UdIwQYMBaAFBHheNM4IPrt\n69YjljCofbmZ21/3MA8GA1UdEwEB/wQFMAMBAf8wOwYDVR0fBDQwMjAwoC6gLIYq\naHR0cDovL2NybC5jZmNhLmNvbS5jbi9hY3NyY2EvUlNBL2NybDEuY3JsMA4GA1Ud\nDwEB/wQEAwIBBjAdBgNVHQ4EFgQU4rQJy81hoXNKeX/xioML3bR+jB0wDQYJKoZI\nhvcNAQELBQADggIBAD+MkwGqVdv4x49yWoZ/CuIIGMRmhs3zvCG9XezkiFQDBw2u\n/bVvkJB2nAg2ECYFbUUU+lDNK6xuooRD0fKDuRT37aH2Ydvwy8B1aus2VJA+FKAt\nyrgX/T103LC3K0CJW7z72op8P5H0lyob8QQfRXuhYvz8K3DENwej4LO9H6lAfZUK\n/QMqeB3fnz+YZCc84quRtY/lbNdlz9Qh5Lf73zq/oWOUIXAzYktmx/cS3KeL9t+c\nQ3EW/qiHaxouNo0ioS6bRby17OW4h+5M0v/WnVddl17EbFySVh0ffcjQfuznjYVr\nwwR1JARC5QSs6cmxF4fHByZftTGqjIiN5ZlD0xHVTx2y1WHGmInUDa562sSMIVCc\nUWminQb4kBLCHBLm4j7mVrNG0GukjMkdmhh+K5YjZkAfET07tgtr13u2/Dgi0BQw\nh5VDZom2CVbzodXSfcQbsFRJEKrmeaAzmuksc6nHCbdxvcgeFLKfo3L5gFjttbLn\ndJswtPmjQCTMheQBSbHN8TpeN+Fpzuf9Y9oV+vOwfnCmhejakoNOuOt1Pl66phTg\nX/EgW+c/iNiIRcNlEY7ujJUEiXeP1W3VQLcvI24mSQB/n4C3NJhik84AHaz4WIPQ\nWZJktegihU6LSsnpop7scR519fmNysRprjdmnmBSrXc5s2E6HF6FdpPVErcE\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIFlzCCA3+gAwIBAgIQQa7zz75EZFRPZPial/I5FzANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5MjMw\nMzI0MDhaFw0zNTA5MjgwMzI0MDhaMFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMM\nC0NGQ0EgQUNTIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2FvC\ndOW7TF1MjdaKZmyk+H98ySeklKrumik09l1j6X3n15ii+K2FI7R9YauQw344sOH9\nwkE+ow8O+gj3L7QwqrZFtORTsufXRZtsWl3P9PpXFSKu2RLS7HULMNk93R1lDuVU\nudwZt12AUZZa1Wxg47bXq415Z6Ws/CuEuKQodsrXpzGiqpPqcLkIRx7sE6y99Afy\nVS5A0e/8LpC5jTGep2ZlskgZxU5nA/rEM42sUBh/nT4lFFXkq7y+mQ1JLSEDRVXO\nzxXQIAEIxsmB5hALMe4TterMHvPMoJUPYsSbF5Zr2npGZI3MEomYqDbbZqT+kbOe\nraUQ/l1IYMXEwviPL5RBY2xbNyZzKlepsC5fHukAgf1PJUhJ/OEjUVz+2ysOyjeL\nT5p+Lk+u3WDmavrQNmLaFLGzG0tl86FVP6RZ+kzjUiZAMu3Cx0FgAmqf72mjMk4V\n7YsfhhZk42zBwTiN1zpnrSBeU7ZfTxsws9GTIta55AM0sqHrCN32vVOoEzy+hWHf\nzJ58aE9/2kK8eiEpFIhIUEYuU6q4LZOGqNNWccMtrC/ZwmblyU8+ZrFaXGKGzBxH\n1K+o6iL9vTYfsC4SsCfKbiMHoujj5ru1fcpRrppQUWPt9Nuxrlo3OwXpH1dAGc8/\nUEDtBPD/ONM57SVpCeHUJLZR7WpCPUG2d+R2AnMCAwEAAaNjMGEwHwYDVR0jBBgw\nFoAUEeF40zgg+u3r1iOWMKh9uZnbX/cwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B\nAf8EBAMCAQYwHQYDVR0OBBYEFBHheNM4IPrt69YjljCofbmZ21/3MA0GCSqGSIb3\nDQEBCwUAA4ICAQDECZu0YlzbcAXr9JWTEbEP0C65XskOYSNBFodAjjqGunUyxhyy\nQc/BUAen0ClEf1OeuWj9YivQXMg2TGg6qr91Pp+bLH51M/rVNAgPIevnqCGFDbF8\nGqlrNJnevZHNilJYXmCDA6eJY7nkzf/ECcMdtMLTxoa+BRgh/x9d9YELU1sIjUVg\n/V9t6KXACv1E4wMrhV30savEgKWqjtt2eJwz1tkN0qXIjah3Ey8zbtrqyI0tV/uR\nQWRGRIK1h4VunWEODOGb3HrQa2D4nraKXumCXWJtuO2g0U0ktxy4+s95zq/y53Ms\nTG+cYtUyDoCwMA0QBAVztVnee4qzTbSfzoiXAu57lQWcPNkFVl8DIPDyImpa0v4c\nUoJLV4wedYFKDNQvt7yaqqbuF15D2MJq7lsEe3yybUGp2GPbwqEuNrS56D8mqYhE\n51QZusdoP/bTYnz9kUI4HKAziLqwmdNyg8g3dQwU3AAx6tsz6ZoncqU0Jhwcx/TG\nQ+3uDTP50De44FfGsTCZXGBLnwuog9cT64TGkB5Upp7DHyeErzHghh4I+Yb1bzSX\nfGgRsAGUHDdi6zZZA4I/Cmmpz4yBNGwLclyvOrD9xR0BfoiTAFk2DxGeebU17pK/\nxFi1ldh2uDvTKMQxh3CWusRG5wBkNjA9jmajHHDY9OEIFhALNbPmAu8D0Q==\n-----END CERTIFICATE-----\n" + ] + }, + "directory_server_name": "unionpay", + "merchant": "", + "one_click_authn": null, + "server_transaction_id": "95feddd0-9e8b-4a64-8fdd-7dba587288cd", + "three_d_secure_2_source": "payatt_3OhE5tKuuB1fWySn2hTNOahK", + "three_ds_method_url": "", + "three_ds_optimizations": "kf", + "type": "stripe_3ds2_fingerprint" + } + }, + "on_behalf_of": null, + "payment_method": "pm_1OhE5sKuuB1fWySnv3jJkFMW", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_action", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Wed, 07 Feb 2024 16:35:30 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_3D_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_3D_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/returns_payment_intent_id_and_does_not_raise.yml new file mode 100644 index 0000000000..2dfc1223b6 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_3D_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/returns_payment_intent_id_and_does_not_raise.yml @@ -0,0 +1,416 @@ +--- +http_interactions: +- request: + method: post + uri: https://api.stripe.com/v1/payment_methods + body: + encoding: UTF-8 + string: type=card&card[number]=6200000000000047&card[exp_month]=12&card[exp_year]=2025&card[cvc]=314 + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux + version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 + (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) + #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Wed, 07 Feb 2024 16:35:26 GMT + Content-Type: + - application/json + Content-Length: + - '938' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_methods; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - d14215ba-5a9d-4739-93cd-e8514cfbaf11 + Original-Request: + - req_zhoA86rFZRIDyr + Request-Id: + - req_zhoA86rFZRIDyr + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '251.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pm_1OhE5qKuuB1fWySn7vVdj10P", + "object": "payment_method", + "billing_details": { + "address": { + "city": null, + "country": null, + "line1": null, + "line2": null, + "postal_code": null, + "state": null + }, + "email": null, + "name": null, + "phone": null + }, + "card": { + "brand": "unionpay", + "checks": { + "address_line1_check": null, + "address_postal_code_check": null, + "cvc_check": "unchecked" + }, + "country": "CN", + "exp_month": 12, + "exp_year": 2025, + "fingerprint": "Bk3yMwVTBMfdXTtb", + "funding": "debit", + "generated_from": null, + "last4": "0047", + "networks": { + "available": [ + "unionpay" + ], + "preferred": null + }, + "three_d_secure_usage": { + "supported": true + }, + "wallet": null + }, + "created": 1707323726, + "customer": null, + "livemode": false, + "metadata": {}, + "type": "card" + } + recorded_at: Wed, 07 Feb 2024 16:35:26 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents + body: + encoding: UTF-8 + string: amount=100¤cy=eur&payment_method=pm_1OhE5qKuuB1fWySn7vVdj10P&payment_method_types[0]=card&capture_method=manual + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_zhoA86rFZRIDyr","request_duration_ms":727}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux + version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 + (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) + #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Wed, 07 Feb 2024 16:35:26 GMT + Content-Type: + - application/json + Content-Length: + - '1343' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - cc67adf6-76e8-4884-9526-1709a07e9397 + Original-Request: + - req_rMeQyQUlu9oYqY + Request-Id: + - req_rMeQyQUlu9oYqY + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '196.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OhE5qKuuB1fWySn2zz8hdxS", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OhE5qKuuB1fWySn2zz8hdxS_secret_KyUMzDWZtpWo02ayRKdHMCndd", + "confirmation_method": "automatic", + "created": 1707323726, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": null, + "on_behalf_of": null, + "payment_method": "pm_1OhE5qKuuB1fWySn7vVdj10P", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_confirmation", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Wed, 07 Feb 2024 16:35:26 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OhE5qKuuB1fWySn2zz8hdxS/confirm + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_rMeQyQUlu9oYqY","request_duration_ms":621}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux + version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 + (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) + #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Wed, 07 Feb 2024 16:35:27 GMT + Content-Type: + - application/json + Content-Length: + - '7578' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents%2F%3Aintent%2Fconfirm; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' + Idempotency-Key: + - 5bce512c-1ebe-4d0a-be9f-f3ac03b01f6b + Original-Request: + - req_44EjjqBUy4TbBg + Request-Id: + - req_44EjjqBUy4TbBg + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '507.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OhE5qKuuB1fWySn2zz8hdxS", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OhE5qKuuB1fWySn2zz8hdxS_secret_KyUMzDWZtpWo02ayRKdHMCndd", + "confirmation_method": "automatic", + "created": 1707323726, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": { + "type": "use_stripe_sdk", + "use_stripe_sdk": { + "directory_server_encryption": { + "algorithm": "RSA", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIE5DCCA8ygAwIBAgIFRVOQdGYwDQYJKoZIhvcNAQELBQAwWDELMAkGA1UEBhMC\nQ04xMDAuBgNVBAoMJ0NoaW5hIEZpbmFuY2lhbCBDZXJ0aWZpY2F0aW9uIEF1dGhv\ncml0eTEXMBUGA1UEAwwOQ0ZDQSBBQ1MgT0NBMzEwHhcNMjIwNzA4MDc1NTQwWhcN\nMjUwNzA4MDc1NTQwWjCBkjELMAkGA1UEBhMCQ04xFzAVBgNVBAoMDkNGQ0EgQUNT\nIE9DQTMxMRMwEQYDVQQLDApDRkNBIE9DQTMxMRkwFwYDVQQLDBBPcmdhbml6YXRp\nb25hbC0xMTowOAYDVQQDDDFDRkNBQFVuaW9uUGF5IEludGVybmF0aW9uYWxATjkx\nMzEwMDAwMDU0NTU4NzhYNkAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC\nAQEAwuRlVZUwD6W730Te77RvLKf8fqY/bSVmw2OKZQcfLiH1VDoPFRes5Z2WmAhA\n2JnGnnZ+WYRjC4n+CvaKHPGhH4LRVLXBDjNbY7vjN9DWJnji5DTM/DLkCaggt481\n9mJz06oHIKOCgXUSIVVLWsOYjkot1kmU6ln5kQgROJ2WPmcu0Ks3FSdb/FRGINoF\nOw6c/LM+JxFNcLOaq5l9bd3ScRbzf/sZgpY2BZtEK/GCKaBCup/aLCxQiPd2YHg4\nDwGA6ntpFf/OUxaUqRbgsacoWkfYaQb6mJiInvpRulmQNJ7L/EVLhefs4aBSL30j\nPplG58GI48wfnnn7DGFECN1txQIDAQABo4IBeDCCAXQwbAYIKwYBBQUHAQEEYDBe\nMCgGCCsGAQUFBzABhhxodHRwOi8vb2NzcC5jZmNhLmNvbS5jbi9vY3NwMDIGCCsG\nAQUFBzAChiZodHRwOi8vY3JsLmNmY2EuY29tLmNuL29jYTMxL29jYTMxLmNlcjAf\nBgNVHSMEGDAWgBTitAnLzWGhc0p5f/GKgwvdtH6MHTAMBgNVHRMBAf8EAjAAMEgG\nA1UdIARBMD8wPQYIYIEchu8qAQQwMTAvBggrBgEFBQcCARYjaHR0cDovL3d3dy5j\nZmNhLmNvbS5jbi91cy91cy0xNC5odG0wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDov\nL2NybC5jZmNhLmNvbS5jbi9vY2EzMS9SU0EvY3JsMzY0NS5jcmwwDgYDVR0PAQH/\nBAQDAgbAMB0GA1UdDgQWBBRrdk+U/3RQ6UypCMhaDf6I9xfXEDAdBgNVHSUEFjAU\nBggrBgEFBQcDAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBABCH0cZGmphf\nzI9qa3afdIN0poPLP3krYnDkcjWgm18pxrnKtpP00VpyGDmsBv0YJnqpqoT1+x7h\nWFaT2Ks9CUulnAGYIjhIqKMJIgMN+IfiHCZ+XpUk/P941Jod0FxSKhe3uybx+WOR\nVml5umKApFlQzfzqHzs34CO7c+z2EfK7cpGiFY/dj+vXp1rdIYPyZmYzamUsi1oL\n5B0NHvVWm6jFWzU65IvM8RaWyDqsufYaQC/kxvaBwL6aHSsuwhfd4UdDHmegSmXD\n06GRIJk0s6HVSLB1n3yw+emFh7bQiWgskDmIiek653xJpu0LClaypFBJNzHTqCqH\n7x8zY3NIVeM=\n-----END CERTIFICATE-----\n", + "directory_server_id": "A000000333", + "root_certificate_authorities": [ + "-----BEGIN CERTIFICATE-----\nMIIE2TCCAsGgAwIBAgIQNKxHTPjyFWmPZvSg97mGvDANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5Mjcw\nMjExMjNaFw0zNTA5MjIwMjExMjNaMFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMM\nDkNGQ0EgQUNTIE9DQTMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\n7mY3rHQfCJCRB0HVK9taITB8ZEGtOVElUH4ou3kB0dOWbACf5pCI9MSMndqOZAlj\n/djcAfwJ8gtW0j8STzsIDe+uoFnyxXEIwu0wb5JoumYSdFVWssa6Fu8UnoUFLBXR\ny7lbYmxcQlBVAoXjoVZuVldNJz/pV7pvDtFDCmnCyzo1OmH09yrsSz4lSQrNAJOL\nyGD0OmGI/lJX36grEYKteey8mspVcnTFF7/rDXeVXCNvTy774iW70ByalW2xfR3e\nTr7XkXLTU9GE3JsbHxo5kf+jsfuPJM0qZFAEWHstFMDcSdGBy1VCyLWnH8xRPCmd\nM4EuyTfB3U30BI/ts46t1wIDAQABo4GhMIGeMB8GA1UdIwQYMBaAFBHheNM4IPrt\n69YjljCofbmZ21/3MA8GA1UdEwEB/wQFMAMBAf8wOwYDVR0fBDQwMjAwoC6gLIYq\naHR0cDovL2NybC5jZmNhLmNvbS5jbi9hY3NyY2EvUlNBL2NybDEuY3JsMA4GA1Ud\nDwEB/wQEAwIBBjAdBgNVHQ4EFgQU4rQJy81hoXNKeX/xioML3bR+jB0wDQYJKoZI\nhvcNAQELBQADggIBAD+MkwGqVdv4x49yWoZ/CuIIGMRmhs3zvCG9XezkiFQDBw2u\n/bVvkJB2nAg2ECYFbUUU+lDNK6xuooRD0fKDuRT37aH2Ydvwy8B1aus2VJA+FKAt\nyrgX/T103LC3K0CJW7z72op8P5H0lyob8QQfRXuhYvz8K3DENwej4LO9H6lAfZUK\n/QMqeB3fnz+YZCc84quRtY/lbNdlz9Qh5Lf73zq/oWOUIXAzYktmx/cS3KeL9t+c\nQ3EW/qiHaxouNo0ioS6bRby17OW4h+5M0v/WnVddl17EbFySVh0ffcjQfuznjYVr\nwwR1JARC5QSs6cmxF4fHByZftTGqjIiN5ZlD0xHVTx2y1WHGmInUDa562sSMIVCc\nUWminQb4kBLCHBLm4j7mVrNG0GukjMkdmhh+K5YjZkAfET07tgtr13u2/Dgi0BQw\nh5VDZom2CVbzodXSfcQbsFRJEKrmeaAzmuksc6nHCbdxvcgeFLKfo3L5gFjttbLn\ndJswtPmjQCTMheQBSbHN8TpeN+Fpzuf9Y9oV+vOwfnCmhejakoNOuOt1Pl66phTg\nX/EgW+c/iNiIRcNlEY7ujJUEiXeP1W3VQLcvI24mSQB/n4C3NJhik84AHaz4WIPQ\nWZJktegihU6LSsnpop7scR519fmNysRprjdmnmBSrXc5s2E6HF6FdpPVErcE\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIFlzCCA3+gAwIBAgIQQa7zz75EZFRPZPial/I5FzANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5MjMw\nMzI0MDhaFw0zNTA5MjgwMzI0MDhaMFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMM\nC0NGQ0EgQUNTIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2FvC\ndOW7TF1MjdaKZmyk+H98ySeklKrumik09l1j6X3n15ii+K2FI7R9YauQw344sOH9\nwkE+ow8O+gj3L7QwqrZFtORTsufXRZtsWl3P9PpXFSKu2RLS7HULMNk93R1lDuVU\nudwZt12AUZZa1Wxg47bXq415Z6Ws/CuEuKQodsrXpzGiqpPqcLkIRx7sE6y99Afy\nVS5A0e/8LpC5jTGep2ZlskgZxU5nA/rEM42sUBh/nT4lFFXkq7y+mQ1JLSEDRVXO\nzxXQIAEIxsmB5hALMe4TterMHvPMoJUPYsSbF5Zr2npGZI3MEomYqDbbZqT+kbOe\nraUQ/l1IYMXEwviPL5RBY2xbNyZzKlepsC5fHukAgf1PJUhJ/OEjUVz+2ysOyjeL\nT5p+Lk+u3WDmavrQNmLaFLGzG0tl86FVP6RZ+kzjUiZAMu3Cx0FgAmqf72mjMk4V\n7YsfhhZk42zBwTiN1zpnrSBeU7ZfTxsws9GTIta55AM0sqHrCN32vVOoEzy+hWHf\nzJ58aE9/2kK8eiEpFIhIUEYuU6q4LZOGqNNWccMtrC/ZwmblyU8+ZrFaXGKGzBxH\n1K+o6iL9vTYfsC4SsCfKbiMHoujj5ru1fcpRrppQUWPt9Nuxrlo3OwXpH1dAGc8/\nUEDtBPD/ONM57SVpCeHUJLZR7WpCPUG2d+R2AnMCAwEAAaNjMGEwHwYDVR0jBBgw\nFoAUEeF40zgg+u3r1iOWMKh9uZnbX/cwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B\nAf8EBAMCAQYwHQYDVR0OBBYEFBHheNM4IPrt69YjljCofbmZ21/3MA0GCSqGSIb3\nDQEBCwUAA4ICAQDECZu0YlzbcAXr9JWTEbEP0C65XskOYSNBFodAjjqGunUyxhyy\nQc/BUAen0ClEf1OeuWj9YivQXMg2TGg6qr91Pp+bLH51M/rVNAgPIevnqCGFDbF8\nGqlrNJnevZHNilJYXmCDA6eJY7nkzf/ECcMdtMLTxoa+BRgh/x9d9YELU1sIjUVg\n/V9t6KXACv1E4wMrhV30savEgKWqjtt2eJwz1tkN0qXIjah3Ey8zbtrqyI0tV/uR\nQWRGRIK1h4VunWEODOGb3HrQa2D4nraKXumCXWJtuO2g0U0ktxy4+s95zq/y53Ms\nTG+cYtUyDoCwMA0QBAVztVnee4qzTbSfzoiXAu57lQWcPNkFVl8DIPDyImpa0v4c\nUoJLV4wedYFKDNQvt7yaqqbuF15D2MJq7lsEe3yybUGp2GPbwqEuNrS56D8mqYhE\n51QZusdoP/bTYnz9kUI4HKAziLqwmdNyg8g3dQwU3AAx6tsz6ZoncqU0Jhwcx/TG\nQ+3uDTP50De44FfGsTCZXGBLnwuog9cT64TGkB5Upp7DHyeErzHghh4I+Yb1bzSX\nfGgRsAGUHDdi6zZZA4I/Cmmpz4yBNGwLclyvOrD9xR0BfoiTAFk2DxGeebU17pK/\nxFi1ldh2uDvTKMQxh3CWusRG5wBkNjA9jmajHHDY9OEIFhALNbPmAu8D0Q==\n-----END CERTIFICATE-----\n" + ] + }, + "directory_server_name": "unionpay", + "merchant": "", + "one_click_authn": null, + "server_transaction_id": "e43d9a70-0483-4ffa-a293-90e98c5af9f0", + "three_d_secure_2_source": "payatt_3OhE5qKuuB1fWySn2fibXj7T", + "three_ds_method_url": "", + "three_ds_optimizations": "kf", + "type": "stripe_3ds2_fingerprint" + } + }, + "on_behalf_of": null, + "payment_method": "pm_1OhE5qKuuB1fWySn7vVdj10P", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_action", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Wed, 07 Feb 2024 16:35:27 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_American_Express/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_American_Express/captures_the_payment.yml index 54c4aafd64..21f3b75aa4 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_American_Express/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_American_Express/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_WvheiVlIA3GAJn","request_duration_ms":1042}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_53teNpwYJyF0SH","request_duration_ms":909}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:45 GMT +======= + - Tue, 06 Feb 2024 22:47:44 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 151a99f0-159d-43fd-b5a6-e0d133d9743f Original-Request: - req_Xspq0ChIRGM9cV Request-Id: - req_Xspq0ChIRGM9cV +======= + - b4905c52-497c-49a2-bfff-dd9516ae3cd1 + Original-Request: + - req_pxkCEeiAsgMBDw + Request-Id: + - req_pxkCEeiAsgMBDw +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '229.0' +======= + - '242.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzNKuuB1fWySnfw5SrR7D", +======= + "id": "pm_1OgxQaKuuB1fWySn3IkdtOZy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323325, +======= + "created": 1707259664, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:45 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:44 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzNKuuB1fWySnfw5SrR7D&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQaKuuB1fWySn3IkdtOZy&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Xspq0ChIRGM9cV","request_duration_ms":488}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_pxkCEeiAsgMBDw","request_duration_ms":439}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:45 GMT +======= + - Tue, 06 Feb 2024 22:47:44 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 5398d06d-c837-4010-8115-0b74735a747f Original-Request: - req_AsaZRWOlEkMfXA Request-Id: - req_AsaZRWOlEkMfXA +======= + - 9325a885-1b5e-4773-88e4-c736abdd9036 + Original-Request: + - req_TKfqlwYMjWh98I + Request-Id: + - req_TKfqlwYMjWh98I +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '207.0' +======= + - '191.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzNKuuB1fWySn1O4S2vjJ", +======= + "id": "pi_3OgxQaKuuB1fWySn0ktCeyVp", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzNKuuB1fWySn1O4S2vjJ_secret_mSTsfgVhwbF6Nd1MxxVB0X60j", "confirmation_method": "automatic", "created": 1707323325, +======= + "client_secret": "pi_3OgxQaKuuB1fWySn0ktCeyVp_secret_7zguWlz4gRxCaAhzKKpAp8zZW", + "confirmation_method": "automatic", + "created": 1707259664, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzNKuuB1fWySnfw5SrR7D", +======= + "payment_method": "pm_1OgxQaKuuB1fWySn3IkdtOZy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:45 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzNKuuB1fWySn1O4S2vjJ/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:44 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQaKuuB1fWySn0ktCeyVp/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_AsaZRWOlEkMfXA","request_duration_ms":519}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_TKfqlwYMjWh98I","request_duration_ms":394}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:47 GMT +======= + - Tue, 06 Feb 2024 22:47:45 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 5cc677a8-a237-4175-b9be-bf2d9cc1b320 Original-Request: - req_ZZgELBKmj6KS27 Request-Id: - req_ZZgELBKmj6KS27 +======= + - 84226276-eff4-4127-9605-f2d0bada9fd1 + Original-Request: + - req_vZlvi7akrJGylD + Request-Id: + - req_vZlvi7akrJGylD +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '887.0' +======= + - '755.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzNKuuB1fWySn1O4S2vjJ", +======= + "id": "pi_3OgxQaKuuB1fWySn0ktCeyVp", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzNKuuB1fWySn1O4S2vjJ_secret_mSTsfgVhwbF6Nd1MxxVB0X60j", "confirmation_method": "automatic", "created": 1707323325, +======= + "client_secret": "pi_3OgxQaKuuB1fWySn0ktCeyVp_secret_7zguWlz4gRxCaAhzKKpAp8zZW", + "confirmation_method": "automatic", + "created": 1707259664, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzNKuuB1fWySn1l9zhOLz", +======= + "latest_charge": "ch_3OgxQaKuuB1fWySn0deJDbJN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzNKuuB1fWySnfw5SrR7D", +======= + "payment_method": "pm_1OgxQaKuuB1fWySn3IkdtOZy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:47 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzNKuuB1fWySn1O4S2vjJ +======= + recorded_at: Tue, 06 Feb 2024 22:47:45 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQaKuuB1fWySn0ktCeyVp +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_ZZgELBKmj6KS27","request_duration_ms":1146}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_vZlvi7akrJGylD","request_duration_ms":950}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:47 GMT +======= + - Tue, 06 Feb 2024 22:47:46 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_bY0WkMQYHOFjx0 +======= + - req_ADSYl4kb4dLeGP +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '69.0' +======= + - '67.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzNKuuB1fWySn1O4S2vjJ", +======= + "id": "pi_3OgxQaKuuB1fWySn0ktCeyVp", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzNKuuB1fWySn1O4S2vjJ_secret_mSTsfgVhwbF6Nd1MxxVB0X60j", "confirmation_method": "automatic", "created": 1707323325, +======= + "client_secret": "pi_3OgxQaKuuB1fWySn0ktCeyVp_secret_7zguWlz4gRxCaAhzKKpAp8zZW", + "confirmation_method": "automatic", + "created": 1707259664, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzNKuuB1fWySn1l9zhOLz", +======= + "latest_charge": "ch_3OgxQaKuuB1fWySn0deJDbJN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzNKuuB1fWySnfw5SrR7D", +======= + "payment_method": "pm_1OgxQaKuuB1fWySn3IkdtOZy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:47 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzNKuuB1fWySn1O4S2vjJ/capture +======= + recorded_at: Tue, 06 Feb 2024 22:47:46 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQaKuuB1fWySn0ktCeyVp/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_bY0WkMQYHOFjx0","request_duration_ms":311}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_ADSYl4kb4dLeGP","request_duration_ms":289}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:48 GMT +======= + - Tue, 06 Feb 2024 22:47:46 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 2121c1e3-9bc2-48ee-988d-a21871ac3ff2 Original-Request: - req_beO6ThTbZF1dVn Request-Id: - req_beO6ThTbZF1dVn +======= + - a2ee8ae9-ed72-488c-9953-0cbbaeb6aa65 + Original-Request: + - req_Khk4up46wKDwJC + Request-Id: + - req_Khk4up46wKDwJC +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '772.0' +======= + - '678.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzNKuuB1fWySn1O4S2vjJ", +======= + "id": "pi_3OgxQaKuuB1fWySn0ktCeyVp", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzNKuuB1fWySn1O4S2vjJ_secret_mSTsfgVhwbF6Nd1MxxVB0X60j", "confirmation_method": "automatic", "created": 1707323325, +======= + "client_secret": "pi_3OgxQaKuuB1fWySn0ktCeyVp_secret_7zguWlz4gRxCaAhzKKpAp8zZW", + "confirmation_method": "automatic", + "created": 1707259664, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzNKuuB1fWySn1l9zhOLz", +======= + "latest_charge": "ch_3OgxQaKuuB1fWySn0deJDbJN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzNKuuB1fWySnfw5SrR7D", +======= + "payment_method": "pm_1OgxQaKuuB1fWySn3IkdtOZy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:48 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzNKuuB1fWySn1O4S2vjJ +======= + recorded_at: Tue, 06 Feb 2024 22:47:46 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQaKuuB1fWySn0ktCeyVp +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_beO6ThTbZF1dVn","request_duration_ms":1041}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_Khk4up46wKDwJC","request_duration_ms":869}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:48 GMT +======= + - Tue, 06 Feb 2024 22:47:47 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_FCMFZsMym2sbML +======= + - req_Srkds2mxev7gJq +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '83.0' +======= + - '68.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzNKuuB1fWySn1O4S2vjJ", +======= + "id": "pi_3OgxQaKuuB1fWySn0ktCeyVp", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzNKuuB1fWySn1O4S2vjJ_secret_mSTsfgVhwbF6Nd1MxxVB0X60j", "confirmation_method": "automatic", "created": 1707323325, +======= + "client_secret": "pi_3OgxQaKuuB1fWySn0ktCeyVp_secret_7zguWlz4gRxCaAhzKKpAp8zZW", + "confirmation_method": "automatic", + "created": 1707259664, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzNKuuB1fWySn1l9zhOLz", +======= + "latest_charge": "ch_3OgxQaKuuB1fWySn0deJDbJN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzNKuuB1fWySnfw5SrR7D", +======= + "payment_method": "pm_1OgxQaKuuB1fWySn3IkdtOZy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:48 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:47 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_American_Express/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_American_Express/returns_payment_intent_id_and_does_not_raise.yml index f47655195a..697886cb88 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_American_Express/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_American_Express/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_K0nU8RZXAzMS41","request_duration_ms":311}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_2aKyUUI2XeyhW4","request_duration_ms":279}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:43 GMT +======= + - Tue, 06 Feb 2024 22:47:42 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 40c2639c-2aa8-4ecd-b1a0-dc5cf8c4f00b Original-Request: - req_tiX3XDto1Or8hf Request-Id: - req_tiX3XDto1Or8hf +======= + - 1e31bdb7-787b-45a9-8fcd-5d4823ce9f37 + Original-Request: + - req_vzWKRlBwNDJpND + Request-Id: + - req_vzWKRlBwNDJpND +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '229.99999999999997' +======= + - '192.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzKKuuB1fWySnVCZlfqfL", +======= + "id": "pm_1OgxQYKuuB1fWySnnmVHquBC", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323322, +======= + "created": 1707259662, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:43 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:42 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzKKuuB1fWySnVCZlfqfL&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQYKuuB1fWySnnmVHquBC&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_tiX3XDto1Or8hf","request_duration_ms":443}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_vzWKRlBwNDJpND","request_duration_ms":398}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:43 GMT +======= + - Tue, 06 Feb 2024 22:47:42 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 1d1766cc-e0d5-4113-b5b1-a5a3c215cbcc Original-Request: - req_XKPkHWocBBegXI Request-Id: - req_XKPkHWocBBegXI +======= + - d3b4ad7c-ecaa-4fc8-9d01-a5f14cc39d01 + Original-Request: + - req_07B5ZErJBp0Mxu + Request-Id: + - req_07B5ZErJBp0Mxu +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '199.0' +======= + - '192.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzLKuuB1fWySn1f2MrgLK", +======= + "id": "pi_3OgxQYKuuB1fWySn0a2VJ1fJ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzLKuuB1fWySn1f2MrgLK_secret_xzCepcQc9t3AGD1CxojbqHpvV", "confirmation_method": "automatic", "created": 1707323323, +======= + "client_secret": "pi_3OgxQYKuuB1fWySn0a2VJ1fJ_secret_aYQUEVe9rXAgoH2WkkZAlOK3A", + "confirmation_method": "automatic", + "created": 1707259662, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzKKuuB1fWySnVCZlfqfL", +======= + "payment_method": "pm_1OgxQYKuuB1fWySnnmVHquBC", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:43 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzLKuuB1fWySn1f2MrgLK/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:42 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQYKuuB1fWySn0a2VJ1fJ/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_XKPkHWocBBegXI","request_duration_ms":443}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_07B5ZErJBp0Mxu","request_duration_ms":405}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:44 GMT +======= + - Tue, 06 Feb 2024 22:47:43 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 7470e2ae-c475-442a-ae85-dfa89ab6b823 Original-Request: - req_WvheiVlIA3GAJn Request-Id: - req_WvheiVlIA3GAJn +======= + - '06904ec8-95c5-4103-ad8e-4ef01e28e7e6' + Original-Request: + - req_53teNpwYJyF0SH + Request-Id: + - req_53teNpwYJyF0SH +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '799.0' +======= + - '717.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzLKuuB1fWySn1f2MrgLK", +======= + "id": "pi_3OgxQYKuuB1fWySn0a2VJ1fJ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzLKuuB1fWySn1f2MrgLK_secret_xzCepcQc9t3AGD1CxojbqHpvV", "confirmation_method": "automatic", "created": 1707323323, +======= + "client_secret": "pi_3OgxQYKuuB1fWySn0a2VJ1fJ_secret_aYQUEVe9rXAgoH2WkkZAlOK3A", + "confirmation_method": "automatic", + "created": 1707259662, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzLKuuB1fWySn1lgEzMeb", +======= + "latest_charge": "ch_3OgxQYKuuB1fWySn06Wo1J48", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzKKuuB1fWySnVCZlfqfL", +======= + "payment_method": "pm_1OgxQYKuuB1fWySnnmVHquBC", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:44 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:43 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_BCcard_and_DinaCard/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_BCcard_and_DinaCard/captures_the_payment.yml index 941f6990fb..5c66fc15c0 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_BCcard_and_DinaCard/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_BCcard_and_DinaCard/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_wKV0e4xiz6uxbq","request_duration_ms":1146}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_tSTN85WgKFfB76","request_duration_ms":975}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:17 GMT +======= + - Tue, 06 Feb 2024 22:48:10 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - d63adfd1-8dbc-497e-9ab9-75e0aead0693 Original-Request: - req_Q5tTwl8R1L8KCQ Request-Id: - req_Q5tTwl8R1L8KCQ +======= + - 2429e65d-485a-4d1d-ad7e-cc55df76d694 + Original-Request: + - req_JvAlRBRRSFuftq + Request-Id: + - req_JvAlRBRRSFuftq +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '251.0' +======= + - '215.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDztKuuB1fWySnyG6PcdEF", +======= + "id": "pm_1OgxR0KuuB1fWySng6VHdVkA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323357, +======= + "created": 1707259690, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:17 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:10 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDztKuuB1fWySnyG6PcdEF&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxR0KuuB1fWySng6VHdVkA&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Q5tTwl8R1L8KCQ","request_duration_ms":496}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_JvAlRBRRSFuftq","request_duration_ms":418}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:18 GMT +======= + - Tue, 06 Feb 2024 22:48:11 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - d51b205c-3ad6-4dbc-98b0-9dd9932a025f Original-Request: - req_Rs5hcUkagWpih1 Request-Id: - req_Rs5hcUkagWpih1 +======= + - e579ba62-69aa-4233-9cdc-ec635e1c5d86 + Original-Request: + - req_vSR3VspguCc5R5 + Request-Id: + - req_vSR3VspguCc5R5 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '219.0' +======= + - '190.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzuKuuB1fWySn2oR22NHq", +======= + "id": "pi_3OgxR1KuuB1fWySn2GOjGRhZ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzuKuuB1fWySn2oR22NHq_secret_Zdeh40P8pQqH982arQWubbm04", "confirmation_method": "automatic", "created": 1707323358, +======= + "client_secret": "pi_3OgxR1KuuB1fWySn2GOjGRhZ_secret_cNbbuewoh97RdN2pZYwcLhkys", + "confirmation_method": "automatic", + "created": 1707259691, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDztKuuB1fWySnyG6PcdEF", +======= + "payment_method": "pm_1OgxR0KuuB1fWySng6VHdVkA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:18 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzuKuuB1fWySn2oR22NHq/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:11 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR1KuuB1fWySn2GOjGRhZ/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Rs5hcUkagWpih1","request_duration_ms":519}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_vSR3VspguCc5R5","request_duration_ms":382}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:19 GMT +======= + - Tue, 06 Feb 2024 22:48:12 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - c608854d-8f41-4620-967e-f7f73cbc3aaf Original-Request: - req_QHNMfTNRjldhuc Request-Id: - req_QHNMfTNRjldhuc +======= + - bef161da-bac9-43bb-8760-d08e3a2478f7 + Original-Request: + - req_oMIlh9ByOHrTRl + Request-Id: + - req_oMIlh9ByOHrTRl +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '785.0' +======= + - '686.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzuKuuB1fWySn2oR22NHq", +======= + "id": "pi_3OgxR1KuuB1fWySn2GOjGRhZ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzuKuuB1fWySn2oR22NHq_secret_Zdeh40P8pQqH982arQWubbm04", "confirmation_method": "automatic", "created": 1707323358, +======= + "client_secret": "pi_3OgxR1KuuB1fWySn2GOjGRhZ_secret_cNbbuewoh97RdN2pZYwcLhkys", + "confirmation_method": "automatic", + "created": 1707259691, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzuKuuB1fWySn2q83Ks4p", +======= + "latest_charge": "ch_3OgxR1KuuB1fWySn2V1GJ7vN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDztKuuB1fWySnyG6PcdEF", +======= + "payment_method": "pm_1OgxR0KuuB1fWySng6VHdVkA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:19 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzuKuuB1fWySn2oR22NHq +======= + recorded_at: Tue, 06 Feb 2024 22:48:12 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR1KuuB1fWySn2GOjGRhZ +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_QHNMfTNRjldhuc","request_duration_ms":1056}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_oMIlh9ByOHrTRl","request_duration_ms":871}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:19 GMT +======= + - Tue, 06 Feb 2024 22:48:12 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_Qi9IHwmCHicjaQ +======= + - req_7Di7xINtgg1N6Q +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '87.0' +======= + - '63.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzuKuuB1fWySn2oR22NHq", +======= + "id": "pi_3OgxR1KuuB1fWySn2GOjGRhZ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzuKuuB1fWySn2oR22NHq_secret_Zdeh40P8pQqH982arQWubbm04", "confirmation_method": "automatic", "created": 1707323358, +======= + "client_secret": "pi_3OgxR1KuuB1fWySn2GOjGRhZ_secret_cNbbuewoh97RdN2pZYwcLhkys", + "confirmation_method": "automatic", + "created": 1707259691, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzuKuuB1fWySn2q83Ks4p", +======= + "latest_charge": "ch_3OgxR1KuuB1fWySn2V1GJ7vN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDztKuuB1fWySnyG6PcdEF", +======= + "payment_method": "pm_1OgxR0KuuB1fWySng6VHdVkA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:19 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzuKuuB1fWySn2oR22NHq/capture +======= + recorded_at: Tue, 06 Feb 2024 22:48:12 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR1KuuB1fWySn2GOjGRhZ/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Qi9IHwmCHicjaQ","request_duration_ms":395}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_7Di7xINtgg1N6Q","request_duration_ms":293}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:20 GMT +======= + - Tue, 06 Feb 2024 22:48:13 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 52d5a53c-377c-40ea-bae4-43c9c2cc239f Original-Request: - req_fqTUEpxZtxENY3 Request-Id: - req_fqTUEpxZtxENY3 +======= + - c0936aab-0977-4bd6-bd9a-394fe661ea8e + Original-Request: + - req_2d3hKGZTVMr4hU + Request-Id: + - req_2d3hKGZTVMr4hU +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '876.0' +======= + - '837.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzuKuuB1fWySn2oR22NHq", +======= + "id": "pi_3OgxR1KuuB1fWySn2GOjGRhZ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzuKuuB1fWySn2oR22NHq_secret_Zdeh40P8pQqH982arQWubbm04", "confirmation_method": "automatic", "created": 1707323358, +======= + "client_secret": "pi_3OgxR1KuuB1fWySn2GOjGRhZ_secret_cNbbuewoh97RdN2pZYwcLhkys", + "confirmation_method": "automatic", + "created": 1707259691, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzuKuuB1fWySn2q83Ks4p", +======= + "latest_charge": "ch_3OgxR1KuuB1fWySn2V1GJ7vN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDztKuuB1fWySnyG6PcdEF", +======= + "payment_method": "pm_1OgxR0KuuB1fWySng6VHdVkA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:21 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzuKuuB1fWySn2oR22NHq +======= + recorded_at: Tue, 06 Feb 2024 22:48:13 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR1KuuB1fWySn2GOjGRhZ +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_fqTUEpxZtxENY3","request_duration_ms":1146}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_2d3hKGZTVMr4hU","request_duration_ms":1039}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:21 GMT +======= + - Tue, 06 Feb 2024 22:48:13 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_fmwq0gy007gqNk +======= + - req_6ZjstVKgLGLzyY +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '82.0' +======= + - '70.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzuKuuB1fWySn2oR22NHq", +======= + "id": "pi_3OgxR1KuuB1fWySn2GOjGRhZ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzuKuuB1fWySn2oR22NHq_secret_Zdeh40P8pQqH982arQWubbm04", "confirmation_method": "automatic", "created": 1707323358, +======= + "client_secret": "pi_3OgxR1KuuB1fWySn2GOjGRhZ_secret_cNbbuewoh97RdN2pZYwcLhkys", + "confirmation_method": "automatic", + "created": 1707259691, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzuKuuB1fWySn2q83Ks4p", +======= + "latest_charge": "ch_3OgxR1KuuB1fWySn2V1GJ7vN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDztKuuB1fWySnyG6PcdEF", +======= + "payment_method": "pm_1OgxR0KuuB1fWySng6VHdVkA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:21 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:13 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_BCcard_and_DinaCard/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_BCcard_and_DinaCard/returns_payment_intent_id_and_does_not_raise.yml index c39d270ccc..b70d720d1d 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_BCcard_and_DinaCard/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_BCcard_and_DinaCard/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_gfPynJdwwAGLE8","request_duration_ms":357}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_wjNPzi5NRsspxq","request_duration_ms":277}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:15 GMT +======= + - Tue, 06 Feb 2024 22:48:09 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 6d4160d7-ed5f-46c7-93bb-3ee201ada452 Original-Request: - req_uH0jApBTjIlR5N Request-Id: - req_uH0jApBTjIlR5N +======= + - 95f5b125-2953-44f7-9d86-7933b0b96b93 + Original-Request: + - req_1fK642Ft21n018 + Request-Id: + - req_1fK642Ft21n018 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '274.99999999999994' +======= + - '220.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzqKuuB1fWySnNPF8stqr", +======= + "id": "pm_1OgxQyKuuB1fWySnMGYdJfQ2", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323355, +======= + "created": 1707259688, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:15 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:08 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzqKuuB1fWySnNPF8stqr&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQyKuuB1fWySnMGYdJfQ2&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_uH0jApBTjIlR5N","request_duration_ms":534}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_1fK642Ft21n018","request_duration_ms":424}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:15 GMT +======= + - Tue, 06 Feb 2024 22:48:09 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - cbcf81cf-9ac1-4f00-aa7f-3becd87277cd Original-Request: - req_4ATjVerG8edTnS Request-Id: - req_4ATjVerG8edTnS +======= + - 348039b9-20e6-4c71-a5ce-8021016e8c4b + Original-Request: + - req_7Ym6d2hyCIxW4n + Request-Id: + - req_7Ym6d2hyCIxW4n +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '225.0' +======= + - '186.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzrKuuB1fWySn1es8vbBc", +======= + "id": "pi_3OgxQzKuuB1fWySn10PEp8CU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzrKuuB1fWySn1es8vbBc_secret_X2rdqLaVZjHGdw0Jpm2DFq8hd", "confirmation_method": "automatic", "created": 1707323355, +======= + "client_secret": "pi_3OgxQzKuuB1fWySn10PEp8CU_secret_ZRWxlUUgi4oUUgyGM1awzZcdd", + "confirmation_method": "automatic", + "created": 1707259689, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzqKuuB1fWySnNPF8stqr", +======= + "payment_method": "pm_1OgxQyKuuB1fWySnMGYdJfQ2", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:15 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzrKuuB1fWySn1es8vbBc/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:09 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQzKuuB1fWySn10PEp8CU/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_4ATjVerG8edTnS","request_duration_ms":458}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_7Ym6d2hyCIxW4n","request_duration_ms":389}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:16 GMT +======= + - Tue, 06 Feb 2024 22:48:10 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - f16b76c2-f636-47c7-aab6-f14fe54337f3 Original-Request: - req_wKV0e4xiz6uxbq Request-Id: - req_wKV0e4xiz6uxbq +======= + - 95419fce-9282-461e-b9df-d589e105f9cc + Original-Request: + - req_tSTN85WgKFfB76 + Request-Id: + - req_tSTN85WgKFfB76 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '856.0' +======= + - '780.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzrKuuB1fWySn1es8vbBc", +======= + "id": "pi_3OgxQzKuuB1fWySn10PEp8CU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzrKuuB1fWySn1es8vbBc_secret_X2rdqLaVZjHGdw0Jpm2DFq8hd", "confirmation_method": "automatic", "created": 1707323355, +======= + "client_secret": "pi_3OgxQzKuuB1fWySn10PEp8CU_secret_ZRWxlUUgi4oUUgyGM1awzZcdd", + "confirmation_method": "automatic", + "created": 1707259689, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzrKuuB1fWySn1iEdDr2f", +======= + "latest_charge": "ch_3OgxQzKuuB1fWySn1i3OmcwL", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzqKuuB1fWySnNPF8stqr", +======= + "payment_method": "pm_1OgxQyKuuB1fWySnMGYdJfQ2", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:16 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:10 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club/captures_the_payment.yml index 2cd5589362..98159a2f25 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_keH3UTy0cwaNet","request_duration_ms":1040}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_u4F0ErO1HKEGra","request_duration_ms":858}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:05 GMT +======= + - Tue, 06 Feb 2024 22:48:00 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 401fbdc7-0d09-4125-81c5-1f78dcfa3fb6 Original-Request: - req_bIVJj8F19e2raP Request-Id: - req_bIVJj8F19e2raP +======= + - 7d8acc7c-cf84-4d6b-9870-eabd612bfee0 + Original-Request: + - req_VQbN7BRQtytFGw + Request-Id: + - req_VQbN7BRQtytFGw +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '247.0' +======= + - '234.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzhKuuB1fWySngur3CEj4", +======= + "id": "pm_1OgxQqKuuB1fWySnVAPWIdiR", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323345, +======= + "created": 1707259680, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:05 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:00 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzhKuuB1fWySngur3CEj4&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQqKuuB1fWySnVAPWIdiR&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_bIVJj8F19e2raP","request_duration_ms":464}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_VQbN7BRQtytFGw","request_duration_ms":432}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:05 GMT +======= + - Tue, 06 Feb 2024 22:48:01 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 4344409d-272c-443e-8d31-53677868d108 Original-Request: - req_YIUBsKS0TrWdzV Request-Id: - req_YIUBsKS0TrWdzV +======= + - be4a54ef-3337-4e37-ad9c-02f4472464d7 + Original-Request: + - req_wy9Y87W1gIYiq9 + Request-Id: + - req_wy9Y87W1gIYiq9 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '183.0' +======= + - '244.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzhKuuB1fWySn0e1P2QDv", +======= + "id": "pi_3OgxQqKuuB1fWySn07GuBUSP", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzhKuuB1fWySn0e1P2QDv_secret_s13mvKwWm9hrarQxHSOUAi52Y", "confirmation_method": "automatic", "created": 1707323345, +======= + "client_secret": "pi_3OgxQqKuuB1fWySn07GuBUSP_secret_eR0RyVmEmWH8vLm5YMF9qxaHx", + "confirmation_method": "automatic", + "created": 1707259680, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzhKuuB1fWySngur3CEj4", +======= + "payment_method": "pm_1OgxQqKuuB1fWySnVAPWIdiR", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:06 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzhKuuB1fWySn0e1P2QDv/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:00 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQqKuuB1fWySn07GuBUSP/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_YIUBsKS0TrWdzV","request_duration_ms":517}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_wy9Y87W1gIYiq9","request_duration_ms":438}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:07 GMT +======= + - Tue, 06 Feb 2024 22:48:01 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - db6af863-260a-4670-afeb-7064e2641161 Original-Request: - req_prWYB3S7tD4cUq Request-Id: - req_prWYB3S7tD4cUq +======= + - 3ac11843-254f-4908-b919-d30541fae5ce + Original-Request: + - req_JM7MjPRFv5EmFc + Request-Id: + - req_JM7MjPRFv5EmFc +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '739.0' +======= + - '695.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzhKuuB1fWySn0e1P2QDv", +======= + "id": "pi_3OgxQqKuuB1fWySn07GuBUSP", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzhKuuB1fWySn0e1P2QDv_secret_s13mvKwWm9hrarQxHSOUAi52Y", "confirmation_method": "automatic", "created": 1707323345, +======= + "client_secret": "pi_3OgxQqKuuB1fWySn07GuBUSP_secret_eR0RyVmEmWH8vLm5YMF9qxaHx", + "confirmation_method": "automatic", + "created": 1707259680, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzhKuuB1fWySn03FWIUuN", +======= + "latest_charge": "ch_3OgxQqKuuB1fWySn0zOxRzD4", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzhKuuB1fWySngur3CEj4", +======= + "payment_method": "pm_1OgxQqKuuB1fWySnVAPWIdiR", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:07 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzhKuuB1fWySn0e1P2QDv +======= + recorded_at: Tue, 06 Feb 2024 22:48:01 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQqKuuB1fWySn07GuBUSP +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_prWYB3S7tD4cUq","request_duration_ms":936}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_JM7MjPRFv5EmFc","request_duration_ms":889}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:07 GMT +======= + - Tue, 06 Feb 2024 22:48:02 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_bjCFCXQhw5cokl +======= + - req_veifm6HBGa4XcM +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '63.0' +======= + - '76.00000000000001' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzhKuuB1fWySn0e1P2QDv", +======= + "id": "pi_3OgxQqKuuB1fWySn07GuBUSP", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzhKuuB1fWySn0e1P2QDv_secret_s13mvKwWm9hrarQxHSOUAi52Y", "confirmation_method": "automatic", "created": 1707323345, +======= + "client_secret": "pi_3OgxQqKuuB1fWySn07GuBUSP_secret_eR0RyVmEmWH8vLm5YMF9qxaHx", + "confirmation_method": "automatic", + "created": 1707259680, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzhKuuB1fWySn03FWIUuN", +======= + "latest_charge": "ch_3OgxQqKuuB1fWySn0zOxRzD4", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzhKuuB1fWySngur3CEj4", +======= + "payment_method": "pm_1OgxQqKuuB1fWySnVAPWIdiR", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:07 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzhKuuB1fWySn0e1P2QDv/capture +======= + recorded_at: Tue, 06 Feb 2024 22:48:02 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQqKuuB1fWySn07GuBUSP/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_bjCFCXQhw5cokl","request_duration_ms":309}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_veifm6HBGa4XcM","request_duration_ms":298}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:08 GMT +======= + - Tue, 06 Feb 2024 22:48:03 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - '0954e0ca-d9e7-4623-9033-ada66a53b678' Original-Request: - req_ITTCVTENBhNH0M Request-Id: - req_ITTCVTENBhNH0M +======= + - 8ccf995d-5466-4efa-b1f2-ddb9636c18f1 + Original-Request: + - req_2oovwVDOghXiYd + Request-Id: + - req_2oovwVDOghXiYd +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '868.0' +======= + - '738.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzhKuuB1fWySn0e1P2QDv", +======= + "id": "pi_3OgxQqKuuB1fWySn07GuBUSP", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzhKuuB1fWySn0e1P2QDv_secret_s13mvKwWm9hrarQxHSOUAi52Y", "confirmation_method": "automatic", "created": 1707323345, +======= + "client_secret": "pi_3OgxQqKuuB1fWySn07GuBUSP_secret_eR0RyVmEmWH8vLm5YMF9qxaHx", + "confirmation_method": "automatic", + "created": 1707259680, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzhKuuB1fWySn03FWIUuN", +======= + "latest_charge": "ch_3OgxQqKuuB1fWySn0zOxRzD4", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzhKuuB1fWySngur3CEj4", +======= + "payment_method": "pm_1OgxQqKuuB1fWySnVAPWIdiR", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:08 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzhKuuB1fWySn0e1P2QDv +======= + recorded_at: Tue, 06 Feb 2024 22:48:03 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQqKuuB1fWySn07GuBUSP +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_ITTCVTENBhNH0M","request_duration_ms":1145}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_2oovwVDOghXiYd","request_duration_ms":929}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:08 GMT +======= + - Tue, 06 Feb 2024 22:48:03 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_9aBnxmXbCDNeTT +======= + - req_DJa5cZ6JVim9Bs +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '72.00000000000001' +======= + - '63.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzhKuuB1fWySn0e1P2QDv", +======= + "id": "pi_3OgxQqKuuB1fWySn07GuBUSP", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzhKuuB1fWySn0e1P2QDv_secret_s13mvKwWm9hrarQxHSOUAi52Y", "confirmation_method": "automatic", "created": 1707323345, +======= + "client_secret": "pi_3OgxQqKuuB1fWySn07GuBUSP_secret_eR0RyVmEmWH8vLm5YMF9qxaHx", + "confirmation_method": "automatic", + "created": 1707259680, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzhKuuB1fWySn03FWIUuN", +======= + "latest_charge": "ch_3OgxQqKuuB1fWySn0zOxRzD4", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzhKuuB1fWySngur3CEj4", +======= + "payment_method": "pm_1OgxQqKuuB1fWySnVAPWIdiR", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:08 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:03 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club/returns_payment_intent_id_and_does_not_raise.yml index 54798bc2d5..19679cdcb4 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_gxuTbRtvasI9K9","request_duration_ms":310}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_V8XquIda1bwnoa","request_duration_ms":278}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:02 GMT +======= + - Tue, 06 Feb 2024 22:47:58 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 5127d1b8-c9b3-4e90-b320-1a22ea407f4d Original-Request: - req_CGCkLE5S0x0734 Request-Id: - req_CGCkLE5S0x0734 +======= + - ae43c0aa-774b-4ded-9c5b-8deeeda9f6ab + Original-Request: + - req_1ZOU5Pu6OHbpPK + Request-Id: + - req_1ZOU5Pu6OHbpPK +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '241.0' +======= + - '296.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzeKuuB1fWySnkQ96bdx8", +======= + "id": "pm_1OgxQoKuuB1fWySnhw56AHbs", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323342, +======= + "created": 1707259678, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:02 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:58 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzeKuuB1fWySnkQ96bdx8&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQoKuuB1fWySnhw56AHbs&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_CGCkLE5S0x0734","request_duration_ms":456}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_1ZOU5Pu6OHbpPK","request_duration_ms":490}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:03 GMT +======= + - Tue, 06 Feb 2024 22:47:59 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 8b07467f-fa4d-414e-8043-5694cfe21176 Original-Request: - req_CNYm0NLM7A2pkt Request-Id: - req_CNYm0NLM7A2pkt +======= + - 18acefa5-5a20-4640-b21a-a9917a41d413 + Original-Request: + - req_TaphJfTyvhp5Zj + Request-Id: + - req_TaphJfTyvhp5Zj +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '185.0' +======= + - '201.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzfKuuB1fWySn2pu8Jx50", +======= + "id": "pi_3OgxQoKuuB1fWySn1uWpxems", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzfKuuB1fWySn2pu8Jx50_secret_Rj1YDbz0xboVdN2eO1YLNVKDv", "confirmation_method": "automatic", "created": 1707323343, +======= + "client_secret": "pi_3OgxQoKuuB1fWySn1uWpxems_secret_7I3zvr9LWNtIkTKq1k0yfofeq", + "confirmation_method": "automatic", + "created": 1707259678, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzeKuuB1fWySnkQ96bdx8", +======= + "payment_method": "pm_1OgxQoKuuB1fWySnhw56AHbs", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:03 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzfKuuB1fWySn2pu8Jx50/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:59 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQoKuuB1fWySn1uWpxems/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_CNYm0NLM7A2pkt","request_duration_ms":412}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_TaphJfTyvhp5Zj","request_duration_ms":396}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:04 GMT +======= + - Tue, 06 Feb 2024 22:48:00 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 0c32b569-a81c-4e08-b9e2-5b148f9a0500 Original-Request: - req_keH3UTy0cwaNet Request-Id: - req_keH3UTy0cwaNet +======= + - 1c98300e-4dab-47a4-90e5-9ba9294ecd30 + Original-Request: + - req_u4F0ErO1HKEGra + Request-Id: + - req_u4F0ErO1HKEGra +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '772.0' +======= + - '673.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzfKuuB1fWySn2pu8Jx50", +======= + "id": "pi_3OgxQoKuuB1fWySn1uWpxems", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzfKuuB1fWySn2pu8Jx50_secret_Rj1YDbz0xboVdN2eO1YLNVKDv", "confirmation_method": "automatic", "created": 1707323343, +======= + "client_secret": "pi_3OgxQoKuuB1fWySn1uWpxems_secret_7I3zvr9LWNtIkTKq1k0yfofeq", + "confirmation_method": "automatic", + "created": 1707259678, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzfKuuB1fWySn2YwEpcdc", +======= + "latest_charge": "ch_3OgxQoKuuB1fWySn10yiZwJA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzeKuuB1fWySnkQ96bdx8", +======= + "payment_method": "pm_1OgxQoKuuB1fWySnhw56AHbs", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:04 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:59 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club_14-digit_card_/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club_14-digit_card_/captures_the_payment.yml index 4a6fc6e0db..045ae09e50 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club_14-digit_card_/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club_14-digit_card_/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_OD9UanLgLyrWfc","request_duration_ms":960}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_pca1FFHvoe9qFF","request_duration_ms":913}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:11 GMT +======= + - Tue, 06 Feb 2024 22:48:05 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 625d4c82-42f3-4e27-9822-819dac056bdd Original-Request: - req_OY6jca2WeDruoy Request-Id: - req_OY6jca2WeDruoy +======= + - e294f769-881c-4524-8e41-b68eafa8a56b + Original-Request: + - req_QXiQh7oWKPO6WW + Request-Id: + - req_QXiQh7oWKPO6WW +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '245.0' +======= + - '215.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDznKuuB1fWySnPTKi1Z99", +======= + "id": "pm_1OgxQvKuuB1fWySnDQOUz0Oe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323351, +======= + "created": 1707259685, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:11 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:05 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDznKuuB1fWySnPTKi1Z99&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQvKuuB1fWySnDQOUz0Oe&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_OY6jca2WeDruoy","request_duration_ms":481}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_QXiQh7oWKPO6WW","request_duration_ms":412}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:11 GMT +======= + - Tue, 06 Feb 2024 22:48:06 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 9d26b25e-31ae-45de-86a8-8d8abddbee7a Original-Request: - req_nvOFOJgYQm85kE Request-Id: - req_nvOFOJgYQm85kE +======= + - cd9760f2-0d5a-4042-8218-6835e8c898d1 + Original-Request: + - req_yrf6DOgPb5kG3y + Request-Id: + - req_yrf6DOgPb5kG3y +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '218.0' +======= + - '164.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDznKuuB1fWySn1RxjSOvo", +======= + "id": "pi_3OgxQvKuuB1fWySn0psModFU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDznKuuB1fWySn1RxjSOvo_secret_pVrajT8WUBjTlUQo0Lzd2vbBr", "confirmation_method": "automatic", "created": 1707323351, +======= + "client_secret": "pi_3OgxQvKuuB1fWySn0psModFU_secret_ZCxfDNmW43DJ2nU33C9fGqtm3", + "confirmation_method": "automatic", + "created": 1707259685, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDznKuuB1fWySnPTKi1Z99", +======= + "payment_method": "pm_1OgxQvKuuB1fWySnDQOUz0Oe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:11 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDznKuuB1fWySn1RxjSOvo/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:06 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQvKuuB1fWySn0psModFU/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_nvOFOJgYQm85kE","request_duration_ms":433}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_yrf6DOgPb5kG3y","request_duration_ms":356}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:12 GMT +======= + - Tue, 06 Feb 2024 22:48:07 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 016b7023-4e36-4ae0-acab-453120ac5435 Original-Request: - req_2IT7fFjSK2mwIC Request-Id: - req_2IT7fFjSK2mwIC +======= + - b0b60c7c-2e7f-4027-a3bf-bc4ef349b707 + Original-Request: + - req_Cmr0SUCQ0uxapm + Request-Id: + - req_Cmr0SUCQ0uxapm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '724.0' +======= + - '742.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDznKuuB1fWySn1RxjSOvo", +======= + "id": "pi_3OgxQvKuuB1fWySn0psModFU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDznKuuB1fWySn1RxjSOvo_secret_pVrajT8WUBjTlUQo0Lzd2vbBr", "confirmation_method": "automatic", "created": 1707323351, +======= + "client_secret": "pi_3OgxQvKuuB1fWySn0psModFU_secret_ZCxfDNmW43DJ2nU33C9fGqtm3", + "confirmation_method": "automatic", + "created": 1707259685, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDznKuuB1fWySn1GHjWiWR", +======= + "latest_charge": "ch_3OgxQvKuuB1fWySn0o2xhQCU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDznKuuB1fWySnPTKi1Z99", +======= + "payment_method": "pm_1OgxQvKuuB1fWySnDQOUz0Oe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:12 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDznKuuB1fWySn1RxjSOvo +======= + recorded_at: Tue, 06 Feb 2024 22:48:06 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQvKuuB1fWySn0psModFU +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_2IT7fFjSK2mwIC","request_duration_ms":1014}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_Cmr0SUCQ0uxapm","request_duration_ms":930}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:13 GMT +======= + - Tue, 06 Feb 2024 22:48:07 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_BjntuCyRZiUKGH +======= + - req_Lj4KdtoEqYjxdm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '73.0' +======= + - '72.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDznKuuB1fWySn1RxjSOvo", +======= + "id": "pi_3OgxQvKuuB1fWySn0psModFU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDznKuuB1fWySn1RxjSOvo_secret_pVrajT8WUBjTlUQo0Lzd2vbBr", "confirmation_method": "automatic", "created": 1707323351, +======= + "client_secret": "pi_3OgxQvKuuB1fWySn0psModFU_secret_ZCxfDNmW43DJ2nU33C9fGqtm3", + "confirmation_method": "automatic", + "created": 1707259685, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDznKuuB1fWySn1GHjWiWR", +======= + "latest_charge": "ch_3OgxQvKuuB1fWySn0o2xhQCU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDznKuuB1fWySnPTKi1Z99", +======= + "payment_method": "pm_1OgxQvKuuB1fWySnDQOUz0Oe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:13 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDznKuuB1fWySn1RxjSOvo/capture +======= + recorded_at: Tue, 06 Feb 2024 22:48:07 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQvKuuB1fWySn0psModFU/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_BjntuCyRZiUKGH","request_duration_ms":317}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_Lj4KdtoEqYjxdm","request_duration_ms":295}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:14 GMT +======= + - Tue, 06 Feb 2024 22:48:08 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 7b03656f-9f7a-4af4-a63a-9d5ce447c506 Original-Request: - req_4FpE3KmLbdf8d8 Request-Id: - req_4FpE3KmLbdf8d8 +======= + - 74ac275f-28c4-4533-9c89-bb4cc0ac81d3 + Original-Request: + - req_KsLkucm88p04i0 + Request-Id: + - req_KsLkucm88p04i0 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '1016.0' +======= + - '755.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDznKuuB1fWySn1RxjSOvo", +======= + "id": "pi_3OgxQvKuuB1fWySn0psModFU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDznKuuB1fWySn1RxjSOvo_secret_pVrajT8WUBjTlUQo0Lzd2vbBr", "confirmation_method": "automatic", "created": 1707323351, +======= + "client_secret": "pi_3OgxQvKuuB1fWySn0psModFU_secret_ZCxfDNmW43DJ2nU33C9fGqtm3", + "confirmation_method": "automatic", + "created": 1707259685, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDznKuuB1fWySn1GHjWiWR", +======= + "latest_charge": "ch_3OgxQvKuuB1fWySn0o2xhQCU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDznKuuB1fWySnPTKi1Z99", +======= + "payment_method": "pm_1OgxQvKuuB1fWySnDQOUz0Oe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:14 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDznKuuB1fWySn1RxjSOvo +======= + recorded_at: Tue, 06 Feb 2024 22:48:08 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQvKuuB1fWySn0psModFU +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_4FpE3KmLbdf8d8","request_duration_ms":1206}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_KsLkucm88p04i0","request_duration_ms":939}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:14 GMT +======= + - Tue, 06 Feb 2024 22:48:08 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_gfPynJdwwAGLE8 +======= + - req_wjNPzi5NRsspxq +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '83.99999999999999' +======= + - '64.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDznKuuB1fWySn1RxjSOvo", +======= + "id": "pi_3OgxQvKuuB1fWySn0psModFU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDznKuuB1fWySn1RxjSOvo_secret_pVrajT8WUBjTlUQo0Lzd2vbBr", "confirmation_method": "automatic", "created": 1707323351, +======= + "client_secret": "pi_3OgxQvKuuB1fWySn0psModFU_secret_ZCxfDNmW43DJ2nU33C9fGqtm3", + "confirmation_method": "automatic", + "created": 1707259685, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDznKuuB1fWySn1GHjWiWR", +======= + "latest_charge": "ch_3OgxQvKuuB1fWySn0o2xhQCU", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDznKuuB1fWySnPTKi1Z99", +======= + "payment_method": "pm_1OgxQvKuuB1fWySnDQOUz0Oe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:14 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:08 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club_14-digit_card_/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club_14-digit_card_/returns_payment_intent_id_and_does_not_raise.yml index df41ec7161..6c98b5d373 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club_14-digit_card_/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Diners_Club_14-digit_card_/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_9aBnxmXbCDNeTT","request_duration_ms":311}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_DJa5cZ6JVim9Bs","request_duration_ms":278}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:09 GMT +======= + - Tue, 06 Feb 2024 22:48:03 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - a4f947a9-1a06-43f8-9656-ad1ecf316b5a Original-Request: - req_ppaeHFxzE0MRTU Request-Id: - req_ppaeHFxzE0MRTU +======= + - 9bde9216-9db2-4894-9369-1658683262a2 + Original-Request: + - req_vcSCCRNwRiSy9Q + Request-Id: + - req_vcSCCRNwRiSy9Q +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '252.0' +======= + - '223.99999999999997' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzlKuuB1fWySnCj38fjRx", +======= + "id": "pm_1OgxQtKuuB1fWySnJUrsAvoQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323349, +======= + "created": 1707259683, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:09 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:03 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzlKuuB1fWySnCj38fjRx&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQtKuuB1fWySnJUrsAvoQ&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_ppaeHFxzE0MRTU","request_duration_ms":473}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_vcSCCRNwRiSy9Q","request_duration_ms":442}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:09 GMT +======= + - Tue, 06 Feb 2024 22:48:04 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 75af8963-127d-4b14-b4eb-0d0c291e6028 Original-Request: - req_HoT8OnCP4rmurA Request-Id: - req_HoT8OnCP4rmurA +======= + - 94988f03-6e3a-4450-a2fe-77f5163fab4b + Original-Request: + - req_WMXNyooeCf58W7 + Request-Id: + - req_WMXNyooeCf58W7 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '211.0' +======= + - '195.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzlKuuB1fWySn1dye8TUb", +======= + "id": "pi_3OgxQuKuuB1fWySn0p7KhwjP", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzlKuuB1fWySn1dye8TUb_secret_cBLvtfS2qe1dErsSLGAqJdqpp", "confirmation_method": "automatic", "created": 1707323349, +======= + "client_secret": "pi_3OgxQuKuuB1fWySn0p7KhwjP_secret_hD8FaGyhF2Hx5VBUWuKh2BKIM", + "confirmation_method": "automatic", + "created": 1707259684, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzlKuuB1fWySnCj38fjRx", +======= + "payment_method": "pm_1OgxQtKuuB1fWySnJUrsAvoQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:09 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzlKuuB1fWySn1dye8TUb/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:04 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQuKuuB1fWySn0p7KhwjP/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_HoT8OnCP4rmurA","request_duration_ms":398}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_WMXNyooeCf58W7","request_duration_ms":392}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:10 GMT +======= + - Tue, 06 Feb 2024 22:48:05 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 88afcdfa-fa5b-465b-b802-18bd7ec3e507 Original-Request: - req_OD9UanLgLyrWfc Request-Id: - req_OD9UanLgLyrWfc +======= + - b326486b-8025-41d7-adc5-3764d5d0b9ed + Original-Request: + - req_pca1FFHvoe9qFF + Request-Id: + - req_pca1FFHvoe9qFF +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '768.0' +======= + - '721.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzlKuuB1fWySn1dye8TUb", +======= + "id": "pi_3OgxQuKuuB1fWySn0p7KhwjP", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzlKuuB1fWySn1dye8TUb_secret_cBLvtfS2qe1dErsSLGAqJdqpp", "confirmation_method": "automatic", "created": 1707323349, +======= + "client_secret": "pi_3OgxQuKuuB1fWySn0p7KhwjP_secret_hD8FaGyhF2Hx5VBUWuKh2BKIM", + "confirmation_method": "automatic", + "created": 1707259684, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzlKuuB1fWySn1SiClIO1", +======= + "latest_charge": "ch_3OgxQuKuuB1fWySn0bW57lbn", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzlKuuB1fWySnCj38fjRx", +======= + "payment_method": "pm_1OgxQtKuuB1fWySnJUrsAvoQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:10 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:05 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover/captures_the_payment.yml index ebaaa5ddd5..a3ed65b0a7 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Q5xn7l5OlJCWn2","request_duration_ms":940}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_hIMIU1ZjLbi9dt","request_duration_ms":927}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:52 GMT +======= + - Tue, 06 Feb 2024 22:47:50 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 6345b7a7-8962-44d3-93a2-b7bc6da1d6f6 Original-Request: - req_LxN2a9xwRkajcn Request-Id: - req_LxN2a9xwRkajcn +======= + - d648f04a-bf23-4b03-95b9-14a820b4996f + Original-Request: + - req_iSLXUeEz55T6GI + Request-Id: + - req_iSLXUeEz55T6GI +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '263.0' +======= + - '264.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzUKuuB1fWySndOJPGZtz", +======= + "id": "pm_1OgxQfKuuB1fWySn8CqIeljr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323332, +======= + "created": 1707259669, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:52 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:49 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzUKuuB1fWySndOJPGZtz&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQfKuuB1fWySn8CqIeljr&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_LxN2a9xwRkajcn","request_duration_ms":599}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_iSLXUeEz55T6GI","request_duration_ms":462}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:52 GMT +======= + - Tue, 06 Feb 2024 22:47:50 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 8d7db951-c065-4a19-8247-a7529e95ae9e Original-Request: - req_PQrLCih8fdsBIQ Request-Id: - req_PQrLCih8fdsBIQ +======= + - 39837d68-9043-479c-8aad-e73f34028fd3 + Original-Request: + - req_4pH75CXlnIGsYi + Request-Id: + - req_4pH75CXlnIGsYi +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '173.0' +======= + - '239.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzUKuuB1fWySn1Iff2ts2", +======= + "id": "pi_3OgxQgKuuB1fWySn2UNjJnxi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzUKuuB1fWySn1Iff2ts2_secret_gehOME1NvTLotCGRbxb2kW2aa", "confirmation_method": "automatic", "created": 1707323332, +======= + "client_secret": "pi_3OgxQgKuuB1fWySn2UNjJnxi_secret_mhaBy7fC6yqtKctDJFQ2tXwG9", + "confirmation_method": "automatic", + "created": 1707259670, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzUKuuB1fWySndOJPGZtz", +======= + "payment_method": "pm_1OgxQfKuuB1fWySn8CqIeljr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:52 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzUKuuB1fWySn1Iff2ts2/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:50 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQgKuuB1fWySn2UNjJnxi/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_PQrLCih8fdsBIQ","request_duration_ms":415}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_4pH75CXlnIGsYi","request_duration_ms":449}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:53 GMT +======= + - Tue, 06 Feb 2024 22:47:51 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - c1c4e9ee-aef2-4539-b62b-d69385a056d5 Original-Request: - req_5tGHatDWF3BsrG Request-Id: - req_5tGHatDWF3BsrG +======= + - a1e8a0ec-6719-42c3-9430-e379a1a21c4c + Original-Request: + - req_ciE04ZCluVC3Gg + Request-Id: + - req_ciE04ZCluVC3Gg +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '811.0' +======= + - '731.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzUKuuB1fWySn1Iff2ts2", +======= + "id": "pi_3OgxQgKuuB1fWySn2UNjJnxi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzUKuuB1fWySn1Iff2ts2_secret_gehOME1NvTLotCGRbxb2kW2aa", "confirmation_method": "automatic", "created": 1707323332, +======= + "client_secret": "pi_3OgxQgKuuB1fWySn2UNjJnxi_secret_mhaBy7fC6yqtKctDJFQ2tXwG9", + "confirmation_method": "automatic", + "created": 1707259670, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzUKuuB1fWySn1fWfA4Md", +======= + "latest_charge": "ch_3OgxQgKuuB1fWySn2buidufv", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzUKuuB1fWySndOJPGZtz", +======= + "payment_method": "pm_1OgxQfKuuB1fWySn8CqIeljr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:53 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzUKuuB1fWySn1Iff2ts2 +======= + recorded_at: Tue, 06 Feb 2024 22:47:51 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQgKuuB1fWySn2UNjJnxi +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_5tGHatDWF3BsrG","request_duration_ms":1041}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_ciE04ZCluVC3Gg","request_duration_ms":919}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:54 GMT +======= + - Tue, 06 Feb 2024 22:47:51 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_8ROZXoVAT8eykH +======= + - req_FT9EdLDsvCCHiX +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '83.99999999999999' +======= + - '79.99999999999999' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzUKuuB1fWySn1Iff2ts2", +======= + "id": "pi_3OgxQgKuuB1fWySn2UNjJnxi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzUKuuB1fWySn1Iff2ts2_secret_gehOME1NvTLotCGRbxb2kW2aa", "confirmation_method": "automatic", "created": 1707323332, +======= + "client_secret": "pi_3OgxQgKuuB1fWySn2UNjJnxi_secret_mhaBy7fC6yqtKctDJFQ2tXwG9", + "confirmation_method": "automatic", + "created": 1707259670, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzUKuuB1fWySn1fWfA4Md", +======= + "latest_charge": "ch_3OgxQgKuuB1fWySn2buidufv", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzUKuuB1fWySndOJPGZtz", +======= + "payment_method": "pm_1OgxQfKuuB1fWySn8CqIeljr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:54 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzUKuuB1fWySn1Iff2ts2/capture +======= + recorded_at: Tue, 06 Feb 2024 22:47:51 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQgKuuB1fWySn2UNjJnxi/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_8ROZXoVAT8eykH","request_duration_ms":313}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_FT9EdLDsvCCHiX","request_duration_ms":317}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:55 GMT +======= + - Tue, 06 Feb 2024 22:47:52 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - b3cd1b48-402e-4e3b-91ff-bcb91c524bd0 Original-Request: - req_43hHOCq49ls2F5 Request-Id: - req_43hHOCq49ls2F5 +======= + - 4b4edfbf-f5e1-4309-ac61-d5143c9ce3d8 + Original-Request: + - req_BdIokjEH0EuP6H + Request-Id: + - req_BdIokjEH0EuP6H +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '827.0' +======= + - '725.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzUKuuB1fWySn1Iff2ts2", +======= + "id": "pi_3OgxQgKuuB1fWySn2UNjJnxi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzUKuuB1fWySn1Iff2ts2_secret_gehOME1NvTLotCGRbxb2kW2aa", "confirmation_method": "automatic", "created": 1707323332, +======= + "client_secret": "pi_3OgxQgKuuB1fWySn2UNjJnxi_secret_mhaBy7fC6yqtKctDJFQ2tXwG9", + "confirmation_method": "automatic", + "created": 1707259670, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzUKuuB1fWySn1fWfA4Md", +======= + "latest_charge": "ch_3OgxQgKuuB1fWySn2buidufv", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzUKuuB1fWySndOJPGZtz", +======= + "payment_method": "pm_1OgxQfKuuB1fWySn8CqIeljr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:55 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzUKuuB1fWySn1Iff2ts2 +======= + recorded_at: Tue, 06 Feb 2024 22:47:52 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQgKuuB1fWySn2UNjJnxi +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_43hHOCq49ls2F5","request_duration_ms":1026}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_BdIokjEH0EuP6H","request_duration_ms":924}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:55 GMT +======= + - Tue, 06 Feb 2024 22:47:52 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_mbW4PmNi4Aledb +======= + - req_O6PggQJaLOMv38 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '68.0' +======= + - '62.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzUKuuB1fWySn1Iff2ts2", +======= + "id": "pi_3OgxQgKuuB1fWySn2UNjJnxi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzUKuuB1fWySn1Iff2ts2_secret_gehOME1NvTLotCGRbxb2kW2aa", "confirmation_method": "automatic", "created": 1707323332, +======= + "client_secret": "pi_3OgxQgKuuB1fWySn2UNjJnxi_secret_mhaBy7fC6yqtKctDJFQ2tXwG9", + "confirmation_method": "automatic", + "created": 1707259670, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzUKuuB1fWySn1fWfA4Md", +======= + "latest_charge": "ch_3OgxQgKuuB1fWySn2buidufv", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzUKuuB1fWySndOJPGZtz", +======= + "payment_method": "pm_1OgxQfKuuB1fWySn8CqIeljr", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:55 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:52 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover/returns_payment_intent_id_and_does_not_raise.yml index 5add238162..91387f8d81 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_FCMFZsMym2sbML","request_duration_ms":1}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_Srkds2mxev7gJq","request_duration_ms":1}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:49 GMT +======= + - Tue, 06 Feb 2024 22:47:47 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 665382cf-2832-4f20-85b3-ede3a7330ed2 Original-Request: - req_c9zuzQic0F4iVz Request-Id: - req_c9zuzQic0F4iVz +======= + - cb0923f7-6046-43a5-91cd-24950e6dfcd6 + Original-Request: + - req_bwsaY3Xe3YucXM + Request-Id: + - req_bwsaY3Xe3YucXM +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '240.0' +======= + - '226.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzRKuuB1fWySnJ0TUGCWC", +======= + "id": "pm_1OgxQdKuuB1fWySnbJS3IU4a", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323329, +======= + "created": 1707259667, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:50 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:47 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzRKuuB1fWySnJ0TUGCWC&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQdKuuB1fWySnbJS3IU4a&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_c9zuzQic0F4iVz","request_duration_ms":757}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_bwsaY3Xe3YucXM","request_duration_ms":488}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:50 GMT +======= + - Tue, 06 Feb 2024 22:47:48 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 5040440a-c0e4-4964-9f37-038d4e6a0b16 Original-Request: - req_6C6vGhTdTPSG3Z Request-Id: - req_6C6vGhTdTPSG3Z +======= + - ca03140e-c444-41ab-8c3f-b80a36c85ff4 + Original-Request: + - req_3uNhO438el51qC + Request-Id: + - req_3uNhO438el51qC +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '193.0' +======= + - '253.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzSKuuB1fWySn0Qdl5Gfc", +======= + "id": "pi_3OgxQeKuuB1fWySn0wIo282U", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzSKuuB1fWySn0Qdl5Gfc_secret_1zYPniLQSySjUERY4TOpVLjwB", "confirmation_method": "automatic", "created": 1707323330, +======= + "client_secret": "pi_3OgxQeKuuB1fWySn0wIo282U_secret_cC0arGyE0Ub6LxlnkDgDg1qC2", + "confirmation_method": "automatic", + "created": 1707259668, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzRKuuB1fWySnJ0TUGCWC", +======= + "payment_method": "pm_1OgxQdKuuB1fWySnbJS3IU4a", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:50 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzSKuuB1fWySn0Qdl5Gfc/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:48 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQeKuuB1fWySn0wIo282U/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_6C6vGhTdTPSG3Z","request_duration_ms":414}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_3uNhO438el51qC","request_duration_ms":449}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:51 GMT +======= + - Tue, 06 Feb 2024 22:47:49 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - d062fd54-85ad-467a-965b-1a26f0422a08 Original-Request: - req_Q5xn7l5OlJCWn2 Request-Id: - req_Q5xn7l5OlJCWn2 +======= + - 435959ce-a136-4c4e-88ed-66644605786d + Original-Request: + - req_hIMIU1ZjLbi9dt + Request-Id: + - req_hIMIU1ZjLbi9dt +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '701.0' +======= + - '734.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzSKuuB1fWySn0Qdl5Gfc", +======= + "id": "pi_3OgxQeKuuB1fWySn0wIo282U", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzSKuuB1fWySn0Qdl5Gfc_secret_1zYPniLQSySjUERY4TOpVLjwB", "confirmation_method": "automatic", "created": 1707323330, +======= + "client_secret": "pi_3OgxQeKuuB1fWySn0wIo282U_secret_cC0arGyE0Ub6LxlnkDgDg1qC2", + "confirmation_method": "automatic", + "created": 1707259668, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzSKuuB1fWySn0m4lA4Ga", +======= + "latest_charge": "ch_3OgxQeKuuB1fWySn0a8PkRbF", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzRKuuB1fWySnJ0TUGCWC", +======= + "payment_method": "pm_1OgxQdKuuB1fWySnbJS3IU4a", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:51 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:49 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover_debit_/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover_debit_/captures_the_payment.yml index ea849424eb..ffc0463752 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover_debit_/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover_debit_/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_BuuBHFufvSwrnv","request_duration_ms":1083}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_dxjuChNVcngBkk","request_duration_ms":900}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:59 GMT +======= + - Tue, 06 Feb 2024 22:47:55 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - ac74d215-9050-4bb8-9367-2eaca72a716d Original-Request: - req_8FcmKEKIBH0eN1 Request-Id: - req_8FcmKEKIBH0eN1 +======= + - ee949000-b6ba-40cc-8e80-1e83896c8cdd + Original-Request: + - req_CgtAh3WVdsE7W9 + Request-Id: + - req_CgtAh3WVdsE7W9 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '209.0' +======= + - '217.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzaKuuB1fWySnesjpGuJR", +======= + "id": "pm_1OgxQlKuuB1fWySnWRjkmYhy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323339, +======= + "created": 1707259675, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:59 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:55 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzaKuuB1fWySnesjpGuJR&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQlKuuB1fWySnWRjkmYhy&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_8FcmKEKIBH0eN1","request_duration_ms":437}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_CgtAh3WVdsE7W9","request_duration_ms":415}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:59 GMT +======= + - Tue, 06 Feb 2024 22:47:55 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 7479fb3a-31ac-4db1-baef-9616c0db88d7 Original-Request: - req_3yD05WlPAcoFPP Request-Id: - req_3yD05WlPAcoFPP +======= + - 01e1b83a-d370-435c-b3fe-f66087c69e75 + Original-Request: + - req_uTRHnPtDX39fyo + Request-Id: + - req_uTRHnPtDX39fyo +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '179.0' +======= + - '190.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzbKuuB1fWySn24JXS2fL", +======= + "id": "pi_3OgxQlKuuB1fWySn1fMiVhUN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzbKuuB1fWySn24JXS2fL_secret_p5zLhgDTJFiqVhZjrDsGhCGqI", "confirmation_method": "automatic", "created": 1707323339, +======= + "client_secret": "pi_3OgxQlKuuB1fWySn1fMiVhUN_secret_O9Qu1ywkjbzAyE1sK2hPGWmjx", + "confirmation_method": "automatic", + "created": 1707259675, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzaKuuB1fWySnesjpGuJR", +======= + "payment_method": "pm_1OgxQlKuuB1fWySnWRjkmYhy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:59 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzbKuuB1fWySn24JXS2fL/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:55 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQlKuuB1fWySn1fMiVhUN/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_3yD05WlPAcoFPP","request_duration_ms":411}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_uTRHnPtDX39fyo","request_duration_ms":396}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:00 GMT +======= + - Tue, 06 Feb 2024 22:47:56 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 94797e28-0f92-4179-b34d-3532469888d4 Original-Request: - req_clzw5l2AAmvETI Request-Id: - req_clzw5l2AAmvETI +======= + - 7d8224ff-6b17-47cf-a1d2-0f800fa72cbd + Original-Request: + - req_NaK45Z4Gz2BqIR + Request-Id: + - req_NaK45Z4Gz2BqIR +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '872.0' +======= + - '681.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzbKuuB1fWySn24JXS2fL", +======= + "id": "pi_3OgxQlKuuB1fWySn1fMiVhUN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzbKuuB1fWySn24JXS2fL_secret_p5zLhgDTJFiqVhZjrDsGhCGqI", "confirmation_method": "automatic", "created": 1707323339, +======= + "client_secret": "pi_3OgxQlKuuB1fWySn1fMiVhUN_secret_O9Qu1ywkjbzAyE1sK2hPGWmjx", + "confirmation_method": "automatic", + "created": 1707259675, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzbKuuB1fWySn2dSm02q0", +======= + "latest_charge": "ch_3OgxQlKuuB1fWySn1KmAfN34", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzaKuuB1fWySnesjpGuJR", +======= + "payment_method": "pm_1OgxQlKuuB1fWySnWRjkmYhy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:00 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzbKuuB1fWySn24JXS2fL +======= + recorded_at: Tue, 06 Feb 2024 22:47:56 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQlKuuB1fWySn1fMiVhUN +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_clzw5l2AAmvETI","request_duration_ms":1147}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_NaK45Z4Gz2BqIR","request_duration_ms":875}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:01 GMT +======= + - Tue, 06 Feb 2024 22:47:57 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_yy62YYOUDu18b5 +======= + - req_PCiTEMJRTJpZ5P +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '69.0' +======= + - '73.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzbKuuB1fWySn24JXS2fL", +======= + "id": "pi_3OgxQlKuuB1fWySn1fMiVhUN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzbKuuB1fWySn24JXS2fL_secret_p5zLhgDTJFiqVhZjrDsGhCGqI", "confirmation_method": "automatic", "created": 1707323339, +======= + "client_secret": "pi_3OgxQlKuuB1fWySn1fMiVhUN_secret_O9Qu1ywkjbzAyE1sK2hPGWmjx", + "confirmation_method": "automatic", + "created": 1707259675, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzbKuuB1fWySn2dSm02q0", +======= + "latest_charge": "ch_3OgxQlKuuB1fWySn1KmAfN34", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzaKuuB1fWySnesjpGuJR", +======= + "payment_method": "pm_1OgxQlKuuB1fWySnWRjkmYhy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:01 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzbKuuB1fWySn24JXS2fL/capture +======= + recorded_at: Tue, 06 Feb 2024 22:47:57 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQlKuuB1fWySn1fMiVhUN/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_yy62YYOUDu18b5","request_duration_ms":311}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_PCiTEMJRTJpZ5P","request_duration_ms":302}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:02 GMT +======= + - Tue, 06 Feb 2024 22:47:57 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 2f92fb8c-0ac3-4f6e-ac5b-038bdbf2dc7c Original-Request: - req_rC7ppGohdhKnTo Request-Id: - req_rC7ppGohdhKnTo +======= + - 62464761-4ce7-426e-a4f1-aa07a26f9af0 + Original-Request: + - req_uk8PU35V262Oua + Request-Id: + - req_uk8PU35V262Oua +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '752.0' +======= + - '688.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzbKuuB1fWySn24JXS2fL", +======= + "id": "pi_3OgxQlKuuB1fWySn1fMiVhUN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzbKuuB1fWySn24JXS2fL_secret_p5zLhgDTJFiqVhZjrDsGhCGqI", "confirmation_method": "automatic", "created": 1707323339, +======= + "client_secret": "pi_3OgxQlKuuB1fWySn1fMiVhUN_secret_O9Qu1ywkjbzAyE1sK2hPGWmjx", + "confirmation_method": "automatic", + "created": 1707259675, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzbKuuB1fWySn2dSm02q0", +======= + "latest_charge": "ch_3OgxQlKuuB1fWySn1KmAfN34", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzaKuuB1fWySnesjpGuJR", +======= + "payment_method": "pm_1OgxQlKuuB1fWySnWRjkmYhy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:02 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzbKuuB1fWySn24JXS2fL +======= + recorded_at: Tue, 06 Feb 2024 22:47:57 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQlKuuB1fWySn1fMiVhUN +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_rC7ppGohdhKnTo","request_duration_ms":1040}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_uk8PU35V262Oua","request_duration_ms":882}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:02 GMT +======= + - Tue, 06 Feb 2024 22:47:58 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_gxuTbRtvasI9K9 +======= + - req_V8XquIda1bwnoa +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '68.0' +======= + - '63.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzbKuuB1fWySn24JXS2fL", +======= + "id": "pi_3OgxQlKuuB1fWySn1fMiVhUN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzbKuuB1fWySn24JXS2fL_secret_p5zLhgDTJFiqVhZjrDsGhCGqI", "confirmation_method": "automatic", "created": 1707323339, +======= + "client_secret": "pi_3OgxQlKuuB1fWySn1fMiVhUN_secret_O9Qu1ywkjbzAyE1sK2hPGWmjx", + "confirmation_method": "automatic", + "created": 1707259675, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzbKuuB1fWySn2dSm02q0", +======= + "latest_charge": "ch_3OgxQlKuuB1fWySn1KmAfN34", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzaKuuB1fWySnesjpGuJR", +======= + "payment_method": "pm_1OgxQlKuuB1fWySnWRjkmYhy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:02 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:58 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover_debit_/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover_debit_/returns_payment_intent_id_and_does_not_raise.yml index 0ec22907e7..cde5facf08 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover_debit_/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Discover_debit_/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_mbW4PmNi4Aledb","request_duration_ms":1}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_O6PggQJaLOMv38","request_duration_ms":1}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:56 GMT +======= + - Tue, 06 Feb 2024 22:47:53 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 50d6905a-83d0-4e47-96a2-15c7b1b05a84 Original-Request: - req_ZtjcBbuE8MgREW Request-Id: - req_ZtjcBbuE8MgREW +======= + - a5bd0928-881d-4a40-9112-e61d90341a91 + Original-Request: + - req_4mP2EqT5AtV51b + Request-Id: + - req_4mP2EqT5AtV51b +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '247.0' +======= + - '217.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzYKuuB1fWySn79qCcl9K", +======= + "id": "pm_1OgxQjKuuB1fWySn3vlFK9g3", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323336, +======= + "created": 1707259673, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:56 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:53 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzYKuuB1fWySn79qCcl9K&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQjKuuB1fWySn3vlFK9g3&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_ZtjcBbuE8MgREW","request_duration_ms":613}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_4mP2EqT5AtV51b","request_duration_ms":468}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:57 GMT +======= + - Tue, 06 Feb 2024 22:47:54 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - f78f8381-d201-42b8-943d-9cc9d455dada Original-Request: - req_kukBDOZRmvcTbP Request-Id: - req_kukBDOZRmvcTbP +======= + - c1969209-d539-4d98-a8e6-68db487a5189 + Original-Request: + - req_UhLK6d32FlMBe9 + Request-Id: + - req_UhLK6d32FlMBe9 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '175.0' +======= + - '184.00000000000003' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzYKuuB1fWySn2S4zxCGn", +======= + "id": "pi_3OgxQjKuuB1fWySn0ZDKo7oK", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzYKuuB1fWySn2S4zxCGn_secret_TkFmeTRwrN7oFyS69SNj3KxSs", "confirmation_method": "automatic", "created": 1707323336, +======= + "client_secret": "pi_3OgxQjKuuB1fWySn0ZDKo7oK_secret_OyRc2bhudY1KScZN1LoZbS0yg", + "confirmation_method": "automatic", + "created": 1707259673, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzYKuuB1fWySn79qCcl9K", +======= + "payment_method": "pm_1OgxQjKuuB1fWySn3vlFK9g3", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:57 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzYKuuB1fWySn2S4zxCGn/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:53 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQjKuuB1fWySn0ZDKo7oK/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_kukBDOZRmvcTbP","request_duration_ms":372}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_UhLK6d32FlMBe9","request_duration_ms":393}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:58 GMT +======= + - Tue, 06 Feb 2024 22:47:54 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 2268269f-4e65-4071-9842-18e57f3b19a6 Original-Request: - req_BuuBHFufvSwrnv Request-Id: - req_BuuBHFufvSwrnv +======= + - 7df3d925-f574-40b5-922c-98a97aeb7397 + Original-Request: + - req_dxjuChNVcngBkk + Request-Id: + - req_dxjuChNVcngBkk +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '825.0' +======= + - '713.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzYKuuB1fWySn2S4zxCGn", +======= + "id": "pi_3OgxQjKuuB1fWySn0ZDKo7oK", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzYKuuB1fWySn2S4zxCGn_secret_TkFmeTRwrN7oFyS69SNj3KxSs", "confirmation_method": "automatic", "created": 1707323336, +======= + "client_secret": "pi_3OgxQjKuuB1fWySn0ZDKo7oK_secret_OyRc2bhudY1KScZN1LoZbS0yg", + "confirmation_method": "automatic", + "created": 1707259673, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzYKuuB1fWySn2Dawc8NE", +======= + "latest_charge": "ch_3OgxQjKuuB1fWySn0x1Aj01f", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzYKuuB1fWySn79qCcl9K", +======= + "payment_method": "pm_1OgxQjKuuB1fWySn3vlFK9g3", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:58 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:54 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_JCB/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_JCB/captures_the_payment.yml index 3caacfc8b2..7bb03a482c 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_JCB/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_JCB/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_bt6wGc9dPZ5azW","request_duration_ms":967}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_vH8aPxD2h5zBgZ","request_duration_ms":922}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:24 GMT +======= + - Tue, 06 Feb 2024 22:48:16 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - caf09ad9-d7e9-4529-ad59-71f087ea1a6f Original-Request: - req_AbHFScxysTLckm Request-Id: - req_AbHFScxysTLckm +======= + - 876f19a6-b189-43ef-a9fb-d28a4e7f1ea0 + Original-Request: + - req_ePaVlVGZBWicP3 + Request-Id: + - req_ePaVlVGZBWicP3 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '220.0' +======= + - '247.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE00KuuB1fWySn1uMLaYg7", +======= + "id": "pm_1OgxR5KuuB1fWySnj4HjLG4J", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323364, +======= + "created": 1707259696, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:24 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:16 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE00KuuB1fWySn1uMLaYg7&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxR5KuuB1fWySnj4HjLG4J&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_AbHFScxysTLckm","request_duration_ms":478}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_ePaVlVGZBWicP3","request_duration_ms":440}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:24 GMT +======= + - Tue, 06 Feb 2024 22:48:16 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 15193256-338b-4f23-bf0e-90985975c0e8 Original-Request: - req_qWt8mxZRuui0Uz Request-Id: - req_qWt8mxZRuui0Uz +======= + - 3ef07725-5800-4a94-b631-d3000aa69868 + Original-Request: + - req_37n1ZLAtrCHL6t + Request-Id: + - req_37n1ZLAtrCHL6t +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '188.0' +======= + - '166.99999999999997' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE00KuuB1fWySn0wazbJg0", +======= + "id": "pi_3OgxR6KuuB1fWySn1WRk3xOw", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE00KuuB1fWySn0wazbJg0_secret_DklzAebuRmjV894QtfhzRDuYN", "confirmation_method": "automatic", "created": 1707323364, +======= + "client_secret": "pi_3OgxR6KuuB1fWySn1WRk3xOw_secret_ruMspT6IrN3f03vVEOEF7Y9sx", + "confirmation_method": "automatic", + "created": 1707259696, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE00KuuB1fWySn1uMLaYg7", +======= + "payment_method": "pm_1OgxR5KuuB1fWySnj4HjLG4J", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:24 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE00KuuB1fWySn0wazbJg0/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:16 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR6KuuB1fWySn1WRk3xOw/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_qWt8mxZRuui0Uz","request_duration_ms":413}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_37n1ZLAtrCHL6t","request_duration_ms":360}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:25 GMT +======= + - Tue, 06 Feb 2024 22:48:17 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 012b9cdc-ca36-4953-b11e-92cb22cde471 Original-Request: - req_1jcE0NRPe0mnQX Request-Id: - req_1jcE0NRPe0mnQX +======= + - cd806086-7c43-4ec8-a9e1-eea431564cbd + Original-Request: + - req_XzajVa1l26VVCK + Request-Id: + - req_XzajVa1l26VVCK +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '862.0' +======= + - '830.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE00KuuB1fWySn0wazbJg0", +======= + "id": "pi_3OgxR6KuuB1fWySn1WRk3xOw", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE00KuuB1fWySn0wazbJg0_secret_DklzAebuRmjV894QtfhzRDuYN", "confirmation_method": "automatic", "created": 1707323364, +======= + "client_secret": "pi_3OgxR6KuuB1fWySn1WRk3xOw_secret_ruMspT6IrN3f03vVEOEF7Y9sx", + "confirmation_method": "automatic", + "created": 1707259696, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE00KuuB1fWySn0db55ODs", +======= + "latest_charge": "ch_3OgxR6KuuB1fWySn1lhulHFQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE00KuuB1fWySn1uMLaYg7", +======= + "payment_method": "pm_1OgxR5KuuB1fWySnj4HjLG4J", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:25 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhE00KuuB1fWySn0wazbJg0 +======= + recorded_at: Tue, 06 Feb 2024 22:48:17 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR6KuuB1fWySn1WRk3xOw +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_1jcE0NRPe0mnQX","request_duration_ms":1144}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_XzajVa1l26VVCK","request_duration_ms":1020}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:26 GMT +======= + - Tue, 06 Feb 2024 22:48:17 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_iuyWuIVIBqgm4G +======= + - req_DQLymHWqaAzPAS +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '80.00000000000001' +======= + - '71.00000000000001' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE00KuuB1fWySn0wazbJg0", +======= + "id": "pi_3OgxR6KuuB1fWySn1WRk3xOw", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE00KuuB1fWySn0wazbJg0_secret_DklzAebuRmjV894QtfhzRDuYN", "confirmation_method": "automatic", "created": 1707323364, +======= + "client_secret": "pi_3OgxR6KuuB1fWySn1WRk3xOw_secret_ruMspT6IrN3f03vVEOEF7Y9sx", + "confirmation_method": "automatic", + "created": 1707259696, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE00KuuB1fWySn0db55ODs", +======= + "latest_charge": "ch_3OgxR6KuuB1fWySn1lhulHFQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE00KuuB1fWySn1uMLaYg7", +======= + "payment_method": "pm_1OgxR5KuuB1fWySnj4HjLG4J", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:26 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE00KuuB1fWySn0wazbJg0/capture +======= + recorded_at: Tue, 06 Feb 2024 22:48:17 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR6KuuB1fWySn1WRk3xOw/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_iuyWuIVIBqgm4G","request_duration_ms":311}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_DQLymHWqaAzPAS","request_duration_ms":291}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:27 GMT +======= + - Tue, 06 Feb 2024 22:48:18 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 7ebdd882-e7ae-4114-87a6-7c41368dd98d Original-Request: - req_okZKtY0eL9vwPe Request-Id: - req_okZKtY0eL9vwPe +======= + - af37d7c9-860c-4ba0-a80f-e4aabf2625ba + Original-Request: + - req_KEVMPY8fkb8DX6 + Request-Id: + - req_KEVMPY8fkb8DX6 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '917.0' +======= + - '845.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE00KuuB1fWySn0wazbJg0", +======= + "id": "pi_3OgxR6KuuB1fWySn1WRk3xOw", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE00KuuB1fWySn0wazbJg0_secret_DklzAebuRmjV894QtfhzRDuYN", "confirmation_method": "automatic", "created": 1707323364, +======= + "client_secret": "pi_3OgxR6KuuB1fWySn1WRk3xOw_secret_ruMspT6IrN3f03vVEOEF7Y9sx", + "confirmation_method": "automatic", + "created": 1707259696, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE00KuuB1fWySn0db55ODs", +======= + "latest_charge": "ch_3OgxR6KuuB1fWySn1lhulHFQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE00KuuB1fWySn1uMLaYg7", +======= + "payment_method": "pm_1OgxR5KuuB1fWySnj4HjLG4J", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:27 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhE00KuuB1fWySn0wazbJg0 +======= + recorded_at: Tue, 06 Feb 2024 22:48:18 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR6KuuB1fWySn1WRk3xOw +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_okZKtY0eL9vwPe","request_duration_ms":1151}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_KEVMPY8fkb8DX6","request_duration_ms":1036}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:27 GMT +======= + - Tue, 06 Feb 2024 22:48:19 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_f1vOdQqfGNPXm5 +======= + - req_J8SoivbZT6Nbkf +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '78.0' +======= + - '64.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE00KuuB1fWySn0wazbJg0", +======= + "id": "pi_3OgxR6KuuB1fWySn1WRk3xOw", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE00KuuB1fWySn0wazbJg0_secret_DklzAebuRmjV894QtfhzRDuYN", "confirmation_method": "automatic", "created": 1707323364, +======= + "client_secret": "pi_3OgxR6KuuB1fWySn1WRk3xOw_secret_ruMspT6IrN3f03vVEOEF7Y9sx", + "confirmation_method": "automatic", + "created": 1707259696, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE00KuuB1fWySn0db55ODs", +======= + "latest_charge": "ch_3OgxR6KuuB1fWySn1lhulHFQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE00KuuB1fWySn1uMLaYg7", +======= + "payment_method": "pm_1OgxR5KuuB1fWySnj4HjLG4J", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:27 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:19 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_JCB/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_JCB/returns_payment_intent_id_and_does_not_raise.yml index b66e5152b3..b944926133 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_JCB/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_JCB/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_fmwq0gy007gqNk","request_duration_ms":415}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_6ZjstVKgLGLzyY","request_duration_ms":305}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:21 GMT +======= + - Tue, 06 Feb 2024 22:48:14 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - a13165c1-36a3-4781-bc33-4e11c1557ff3 Original-Request: - req_GUsmlA3WbhKcw2 Request-Id: - req_GUsmlA3WbhKcw2 +======= + - 19079a10-5def-4410-bb7b-af5c9aa200b3 + Original-Request: + - req_LfA8wdcxY6pRNX + Request-Id: + - req_LfA8wdcxY6pRNX +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '289.00000000000006' +======= + - '235.00000000000003' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzxKuuB1fWySntVaazuuG", +======= + "id": "pm_1OgxR4KuuB1fWySnUXx0W80r", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323361, +======= + "created": 1707259694, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:21 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:14 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzxKuuB1fWySntVaazuuG&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxR4KuuB1fWySnUXx0W80r&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_GUsmlA3WbhKcw2","request_duration_ms":463}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_LfA8wdcxY6pRNX","request_duration_ms":422}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:22 GMT +======= + - Tue, 06 Feb 2024 22:48:14 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 345ae288-50eb-47bd-99fd-f0f4afde2fc1 Original-Request: - req_VvzXLuKmdNyAHk Request-Id: - req_VvzXLuKmdNyAHk +======= + - 64fe18f4-03d2-489f-99a9-7e82d7ce3fd8 + Original-Request: + - req_amGCpSyF4aJvbc + Request-Id: + - req_amGCpSyF4aJvbc +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '177.0' +======= + - '254.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzyKuuB1fWySn2h6tkbnY", +======= + "id": "pi_3OgxR4KuuB1fWySn2lQRPQly", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzyKuuB1fWySn2h6tkbnY_secret_7SLLtbxYxgsph1sh7aGCB51Ku", "confirmation_method": "automatic", "created": 1707323362, +======= + "client_secret": "pi_3OgxR4KuuB1fWySn2lQRPQly_secret_5QCKBGplBTfJPb927h5UzELhf", + "confirmation_method": "automatic", + "created": 1707259694, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzxKuuB1fWySntVaazuuG", +======= + "payment_method": "pm_1OgxR4KuuB1fWySnUXx0W80r", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:22 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzyKuuB1fWySn2h6tkbnY/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:14 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR4KuuB1fWySn2lQRPQly/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_VvzXLuKmdNyAHk","request_duration_ms":383}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_amGCpSyF4aJvbc","request_duration_ms":449}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:23 GMT +======= + - Tue, 06 Feb 2024 22:48:15 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 149ecf25-a0a4-4bc6-8414-71e23f1536f2 Original-Request: - req_bt6wGc9dPZ5azW Request-Id: - req_bt6wGc9dPZ5azW +======= + - da24e352-cf84-443d-b0cf-b4ebcd0b1f14 + Original-Request: + - req_vH8aPxD2h5zBgZ + Request-Id: + - req_vH8aPxD2h5zBgZ +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '746.0' +======= + - '723.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzyKuuB1fWySn2h6tkbnY", +======= + "id": "pi_3OgxR4KuuB1fWySn2lQRPQly", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzyKuuB1fWySn2h6tkbnY_secret_7SLLtbxYxgsph1sh7aGCB51Ku", "confirmation_method": "automatic", "created": 1707323362, +======= + "client_secret": "pi_3OgxR4KuuB1fWySn2lQRPQly_secret_5QCKBGplBTfJPb927h5UzELhf", + "confirmation_method": "automatic", + "created": 1707259694, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzyKuuB1fWySn2sKhYGYx", +======= + "latest_charge": "ch_3OgxR4KuuB1fWySn2xVnag1O", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzxKuuB1fWySntVaazuuG", +======= + "payment_method": "pm_1OgxR4KuuB1fWySnUXx0W80r", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:23 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:15 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard/captures_the_payment.yml index 7fcc7413df..2bc8b46e96 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_f2AnHFLIt9LRMk","request_duration_ms":1108}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_PqtnWAJDkxRmpX","request_duration_ms":941}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:20 GMT +======= + - Tue, 06 Feb 2024 22:47:22 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - bc1428de-0954-4cc5-b585-6483e39cbb8d Original-Request: - req_r2ZcyBG3w7330M Request-Id: - req_r2ZcyBG3w7330M +======= + - 902d148c-010f-4f95-aa96-7764a82ce7a2 + Original-Request: + - req_eZY7NefyhfEhc7 + Request-Id: + - req_eZY7NefyhfEhc7 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '242.0' +======= + - '237.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDyxKuuB1fWySn8SeCKTrx", +======= + "id": "pm_1OgxQEKuuB1fWySnPsCJcecA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323299, +======= + "created": 1707259642, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:20 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:22 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDyxKuuB1fWySn8SeCKTrx&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQEKuuB1fWySnPsCJcecA&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_r2ZcyBG3w7330M","request_duration_ms":574}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_eZY7NefyhfEhc7","request_duration_ms":433}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:20 GMT +======= + - Tue, 06 Feb 2024 22:47:23 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - cd93dd57-d8a9-49c7-9d79-ea1af32d14f4 Original-Request: - req_9EGWxq7694jIkR Request-Id: - req_9EGWxq7694jIkR +======= + - 33719bc5-e57f-4f39-9f0d-12c7a3acd145 + Original-Request: + - req_a0zScaKZbLTNnU + Request-Id: + - req_a0zScaKZbLTNnU +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '177.0' +======= + - '196.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyyKuuB1fWySn0UMvuUVg", +======= + "id": "pi_3OgxQFKuuB1fWySn1O7mgwuQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyyKuuB1fWySn0UMvuUVg_secret_ClAQYyfuEZ32xxXO8ggVrGXbc", "confirmation_method": "automatic", "created": 1707323300, +======= + "client_secret": "pi_3OgxQFKuuB1fWySn1O7mgwuQ_secret_0rPEahDYIOVGhKBVh9g6q7Pyu", + "confirmation_method": "automatic", + "created": 1707259643, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyxKuuB1fWySn8SeCKTrx", +======= + "payment_method": "pm_1OgxQEKuuB1fWySnPsCJcecA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:20 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyyKuuB1fWySn0UMvuUVg/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:23 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQFKuuB1fWySn1O7mgwuQ/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_9EGWxq7694jIkR","request_duration_ms":410}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_a0zScaKZbLTNnU","request_duration_ms":388}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:21 GMT +======= + - Tue, 06 Feb 2024 22:47:24 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 011e3999-8ae4-464f-80e4-52423b1ea17b Original-Request: - req_6z6JFjqO2lOHNs Request-Id: - req_6z6JFjqO2lOHNs +======= + - 796de529-933b-4833-a8ab-3676488e2c9a + Original-Request: + - req_9mI5RK5CEuDAuO + Request-Id: + - req_9mI5RK5CEuDAuO +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '695.0' +======= + - '756.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyyKuuB1fWySn0UMvuUVg", +======= + "id": "pi_3OgxQFKuuB1fWySn1O7mgwuQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyyKuuB1fWySn0UMvuUVg_secret_ClAQYyfuEZ32xxXO8ggVrGXbc", "confirmation_method": "automatic", "created": 1707323300, +======= + "client_secret": "pi_3OgxQFKuuB1fWySn1O7mgwuQ_secret_0rPEahDYIOVGhKBVh9g6q7Pyu", + "confirmation_method": "automatic", + "created": 1707259643, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyyKuuB1fWySn0LxZ4Of8", +======= + "latest_charge": "ch_3OgxQFKuuB1fWySn1vqE8IWc", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyxKuuB1fWySn8SeCKTrx", +======= + "payment_method": "pm_1OgxQEKuuB1fWySnPsCJcecA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:21 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyyKuuB1fWySn0UMvuUVg +======= + recorded_at: Tue, 06 Feb 2024 22:47:24 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQFKuuB1fWySn1O7mgwuQ +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_6z6JFjqO2lOHNs","request_duration_ms":935}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_9mI5RK5CEuDAuO","request_duration_ms":965}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:21 GMT +======= + - Tue, 06 Feb 2024 22:47:24 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_yGoYEqzNtjnHiF +======= + - req_ePysg3W4K4XCGD +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '75.0' +======= + - '67.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyyKuuB1fWySn0UMvuUVg", +======= + "id": "pi_3OgxQFKuuB1fWySn1O7mgwuQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyyKuuB1fWySn0UMvuUVg_secret_ClAQYyfuEZ32xxXO8ggVrGXbc", "confirmation_method": "automatic", "created": 1707323300, +======= + "client_secret": "pi_3OgxQFKuuB1fWySn1O7mgwuQ_secret_0rPEahDYIOVGhKBVh9g6q7Pyu", + "confirmation_method": "automatic", + "created": 1707259643, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyyKuuB1fWySn0LxZ4Of8", +======= + "latest_charge": "ch_3OgxQFKuuB1fWySn1vqE8IWc", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyxKuuB1fWySn8SeCKTrx", +======= + "payment_method": "pm_1OgxQEKuuB1fWySnPsCJcecA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:21 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyyKuuB1fWySn0UMvuUVg/capture +======= + recorded_at: Tue, 06 Feb 2024 22:47:24 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQFKuuB1fWySn1O7mgwuQ/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_yGoYEqzNtjnHiF","request_duration_ms":415}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_ePysg3W4K4XCGD","request_duration_ms":292}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:22 GMT +======= + - Tue, 06 Feb 2024 22:47:25 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 3294387a-d75c-4657-a45f-443a838b4afc Original-Request: - req_gugIcLq8i6tJx2 Request-Id: - req_gugIcLq8i6tJx2 +======= + - 5e6b7cb0-77f7-49ec-9976-b616b02bddb9 + Original-Request: + - req_e8tnZOXlW349kz + Request-Id: + - req_e8tnZOXlW349kz +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '765.0' +======= + - '781.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyyKuuB1fWySn0UMvuUVg", +======= + "id": "pi_3OgxQFKuuB1fWySn1O7mgwuQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyyKuuB1fWySn0UMvuUVg_secret_ClAQYyfuEZ32xxXO8ggVrGXbc", "confirmation_method": "automatic", "created": 1707323300, +======= + "client_secret": "pi_3OgxQFKuuB1fWySn1O7mgwuQ_secret_0rPEahDYIOVGhKBVh9g6q7Pyu", + "confirmation_method": "automatic", + "created": 1707259643, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyyKuuB1fWySn0LxZ4Of8", +======= + "latest_charge": "ch_3OgxQFKuuB1fWySn1vqE8IWc", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyxKuuB1fWySn8SeCKTrx", +======= + "payment_method": "pm_1OgxQEKuuB1fWySnPsCJcecA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:22 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyyKuuB1fWySn0UMvuUVg +======= + recorded_at: Tue, 06 Feb 2024 22:47:25 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQFKuuB1fWySn1O7mgwuQ +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_gugIcLq8i6tJx2","request_duration_ms":1041}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_e8tnZOXlW349kz","request_duration_ms":985}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:23 GMT +======= + - Tue, 06 Feb 2024 22:47:25 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,7 +968,11 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_B7UdWRs1tcOjqt +======= + - req_gCb3WWv83R1mQX +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: @@ -731,7 +987,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyyKuuB1fWySn0UMvuUVg", +======= + "id": "pi_3OgxQFKuuB1fWySn1O7mgwuQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1005,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyyKuuB1fWySn0UMvuUVg_secret_ClAQYyfuEZ32xxXO8ggVrGXbc", "confirmation_method": "automatic", "created": 1707323300, +======= + "client_secret": "pi_3OgxQFKuuB1fWySn1O7mgwuQ_secret_0rPEahDYIOVGhKBVh9g6q7Pyu", + "confirmation_method": "automatic", + "created": 1707259643, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyyKuuB1fWySn0LxZ4Of8", +======= + "latest_charge": "ch_3OgxQFKuuB1fWySn1vqE8IWc", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyxKuuB1fWySn8SeCKTrx", +======= + "payment_method": "pm_1OgxQEKuuB1fWySnPsCJcecA", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1057,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:23 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:25 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard/returns_payment_intent_id_and_does_not_raise.yml index a7ca83f223..561381f2f3 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_RiwtAVsyAHuT41","request_duration_ms":414}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_wyXTqTGGgpf1i9","request_duration_ms":308}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:17 GMT +======= + - Tue, 06 Feb 2024 22:47:21 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - a153120e-5f9c-42aa-8156-efb451a70594 Original-Request: - req_qjDVXNc8uJpq4h Request-Id: - req_qjDVXNc8uJpq4h +======= + - a116203b-2c43-4b3b-a578-2cdcdd4aec5b + Original-Request: + - req_7T2VcxI9a2bWbW + Request-Id: + - req_7T2VcxI9a2bWbW +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '295.0' +======= + - '244.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDyvKuuB1fWySnZazVJb9r", +======= + "id": "pm_1OgxQCKuuB1fWySnDdaF8b54", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323297, +======= + "created": 1707259640, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:17 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:21 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDyvKuuB1fWySnZazVJb9r&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQCKuuB1fWySnDdaF8b54&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_qjDVXNc8uJpq4h","request_duration_ms":583}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_7T2VcxI9a2bWbW","request_duration_ms":442}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:18 GMT +======= + - Tue, 06 Feb 2024 22:47:21 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 187f2aa7-71f4-4048-8269-3edde3e98c61 Original-Request: - req_neTOqG1MFJfh4v Request-Id: - req_neTOqG1MFJfh4v +======= + - 027e16f1-0122-47f0-adc4-9d308a6737a0 + Original-Request: + - req_frXVzhC0KzXY7h + Request-Id: + - req_frXVzhC0KzXY7h +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '237.0' +======= + - '203.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyvKuuB1fWySn1UerkwLn", +======= + "id": "pi_3OgxQDKuuB1fWySn1HE9cc49", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyvKuuB1fWySn1UerkwLn_secret_rOWgQM5Heh55zFiiFiG3gIgId", "confirmation_method": "automatic", "created": 1707323297, +======= + "client_secret": "pi_3OgxQDKuuB1fWySn1HE9cc49_secret_0EDz0av6JvHQMF2xVnwtZ8KoF", + "confirmation_method": "automatic", + "created": 1707259641, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyvKuuB1fWySnZazVJb9r", +======= + "payment_method": "pm_1OgxQCKuuB1fWySnDdaF8b54", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:18 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyvKuuB1fWySn1UerkwLn/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:21 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQDKuuB1fWySn1HE9cc49/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_neTOqG1MFJfh4v","request_duration_ms":451}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_frXVzhC0KzXY7h","request_duration_ms":401}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:19 GMT +======= + - Tue, 06 Feb 2024 22:47:22 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 28931c08-b32d-4e4a-9e97-bd6cde82629f Original-Request: - req_f2AnHFLIt9LRMk Request-Id: - req_f2AnHFLIt9LRMk +======= + - c6eef628-1570-4558-8f72-870c697f42cc + Original-Request: + - req_PqtnWAJDkxRmpX + Request-Id: + - req_PqtnWAJDkxRmpX +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '846.0' +======= + - '748.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyvKuuB1fWySn1UerkwLn", +======= + "id": "pi_3OgxQDKuuB1fWySn1HE9cc49", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyvKuuB1fWySn1UerkwLn_secret_rOWgQM5Heh55zFiiFiG3gIgId", "confirmation_method": "automatic", "created": 1707323297, +======= + "client_secret": "pi_3OgxQDKuuB1fWySn1HE9cc49_secret_0EDz0av6JvHQMF2xVnwtZ8KoF", + "confirmation_method": "automatic", + "created": 1707259641, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyvKuuB1fWySn1jThkYTx", +======= + "latest_charge": "ch_3OgxQDKuuB1fWySn14RnxcPy", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyvKuuB1fWySnZazVJb9r", +======= + "payment_method": "pm_1OgxQCKuuB1fWySnDdaF8b54", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:19 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:22 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_2-series_/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_2-series_/captures_the_payment.yml index 82f162bb93..6a0f8837a0 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_2-series_/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_2-series_/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_36uJYE2PgAsjPp","request_duration_ms":1041}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_VcWaGgkdKu9jCr","request_duration_ms":970}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:26 GMT +======= + - Tue, 06 Feb 2024 22:47:28 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 7f8ec53a-a713-4592-8c70-0d3b58588a80 Original-Request: - req_gWd5PlUMRAD1Rs Request-Id: - req_gWd5PlUMRAD1Rs +======= + - f2ccd7db-e928-498e-bebc-f75fb51e4331 + Original-Request: + - req_XaSs9K05BxfSUj + Request-Id: + - req_XaSs9K05BxfSUj +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '271.99999999999994' +======= + - '230.99999999999997' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDz3KuuB1fWySn0SoN4Sph", +======= + "id": "pm_1OgxQKKuuB1fWySnOTRXcyj5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323306, +======= + "created": 1707259648, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:26 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:28 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDz3KuuB1fWySn0SoN4Sph&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQKKuuB1fWySnOTRXcyj5&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_gWd5PlUMRAD1Rs","request_duration_ms":686}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_XaSs9K05BxfSUj","request_duration_ms":433}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:26 GMT +======= + - Tue, 06 Feb 2024 22:47:28 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - '09745c64-5b5f-459a-a63c-6ae7782dd2b5' Original-Request: - req_sF0WOGpXSMJHUt Request-Id: - req_sF0WOGpXSMJHUt +======= + - de25f0ff-59ee-48f9-a66c-54688cd58171 + Original-Request: + - req_uHH1aRKhcxzQge + Request-Id: + - req_uHH1aRKhcxzQge +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '183.0' +======= + - '217.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDz4KuuB1fWySn07si2V67", +======= + "id": "pi_3OgxQKKuuB1fWySn2K7xorhe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDz4KuuB1fWySn07si2V67_secret_uRIjJ7VyquIbD2MdevE9dHM92", "confirmation_method": "automatic", "created": 1707323306, +======= + "client_secret": "pi_3OgxQKKuuB1fWySn2K7xorhe_secret_p0zR8LGUSrUE86Qaf6OeKx5yK", + "confirmation_method": "automatic", + "created": 1707259648, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDz3KuuB1fWySn0SoN4Sph", +======= + "payment_method": "pm_1OgxQKKuuB1fWySnOTRXcyj5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:26 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDz4KuuB1fWySn07si2V67/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:28 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQKKuuB1fWySn2K7xorhe/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_sF0WOGpXSMJHUt","request_duration_ms":414}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_uHH1aRKhcxzQge","request_duration_ms":410}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:27 GMT +======= + - Tue, 06 Feb 2024 22:47:29 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 581d346f-b9dd-4e21-8b60-ae8f9ac49f41 Original-Request: - req_w8QwdDmVO7mahu Request-Id: - req_w8QwdDmVO7mahu +======= + - 0a6cd846-c87e-4131-925b-97c6d16f67a6 + Original-Request: + - req_2izIIdW6kmGqVe + Request-Id: + - req_2izIIdW6kmGqVe +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '758.0' +======= + - '828.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDz4KuuB1fWySn07si2V67", +======= + "id": "pi_3OgxQKKuuB1fWySn2K7xorhe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDz4KuuB1fWySn07si2V67_secret_uRIjJ7VyquIbD2MdevE9dHM92", "confirmation_method": "automatic", "created": 1707323306, +======= + "client_secret": "pi_3OgxQKKuuB1fWySn2K7xorhe_secret_p0zR8LGUSrUE86Qaf6OeKx5yK", + "confirmation_method": "automatic", + "created": 1707259648, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDz4KuuB1fWySn093NpeDF", +======= + "latest_charge": "ch_3OgxQKKuuB1fWySn25oIUboI", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDz3KuuB1fWySn0SoN4Sph", +======= + "payment_method": "pm_1OgxQKKuuB1fWySnOTRXcyj5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:27 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDz4KuuB1fWySn07si2V67 +======= + recorded_at: Tue, 06 Feb 2024 22:47:29 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQKKuuB1fWySn2K7xorhe +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_w8QwdDmVO7mahu","request_duration_ms":958}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_2izIIdW6kmGqVe","request_duration_ms":1022}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:28 GMT +======= + - Tue, 06 Feb 2024 22:47:29 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_SPZ9wr1ssB5ulR +======= + - req_CC7k2h0JrdYiF9 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '71.00000000000001' +======= + - '59.00000000000001' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDz4KuuB1fWySn07si2V67", +======= + "id": "pi_3OgxQKKuuB1fWySn2K7xorhe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDz4KuuB1fWySn07si2V67_secret_uRIjJ7VyquIbD2MdevE9dHM92", "confirmation_method": "automatic", "created": 1707323306, +======= + "client_secret": "pi_3OgxQKKuuB1fWySn2K7xorhe_secret_p0zR8LGUSrUE86Qaf6OeKx5yK", + "confirmation_method": "automatic", + "created": 1707259648, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDz4KuuB1fWySn093NpeDF", +======= + "latest_charge": "ch_3OgxQKKuuB1fWySn25oIUboI", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDz3KuuB1fWySn0SoN4Sph", +======= + "payment_method": "pm_1OgxQKKuuB1fWySnOTRXcyj5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:28 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDz4KuuB1fWySn07si2V67/capture +======= + recorded_at: Tue, 06 Feb 2024 22:47:29 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQKKuuB1fWySn2K7xorhe/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_SPZ9wr1ssB5ulR","request_duration_ms":357}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_CC7k2h0JrdYiF9","request_duration_ms":271}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:29 GMT +======= + - Tue, 06 Feb 2024 22:47:31 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 71331d60-9315-4c30-afcb-2a088b5b2821 Original-Request: - req_g7DhqQWDvyO5gG Request-Id: - req_g7DhqQWDvyO5gG +======= + - 5a71365c-32f4-404f-8ed6-805302f8398f + Original-Request: + - req_3HchwNhU7RxptW + Request-Id: + - req_3HchwNhU7RxptW +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '864.0' +======= + - '1006.9999999999999' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDz4KuuB1fWySn07si2V67", +======= + "id": "pi_3OgxQKKuuB1fWySn2K7xorhe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDz4KuuB1fWySn07si2V67_secret_uRIjJ7VyquIbD2MdevE9dHM92", "confirmation_method": "automatic", "created": 1707323306, +======= + "client_secret": "pi_3OgxQKKuuB1fWySn2K7xorhe_secret_p0zR8LGUSrUE86Qaf6OeKx5yK", + "confirmation_method": "automatic", + "created": 1707259648, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDz4KuuB1fWySn093NpeDF", +======= + "latest_charge": "ch_3OgxQKKuuB1fWySn25oIUboI", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDz3KuuB1fWySn0SoN4Sph", +======= + "payment_method": "pm_1OgxQKKuuB1fWySnOTRXcyj5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:29 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDz4KuuB1fWySn07si2V67 +======= + recorded_at: Tue, 06 Feb 2024 22:47:31 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQKKuuB1fWySn2K7xorhe +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_g7DhqQWDvyO5gG","request_duration_ms":1077}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_3HchwNhU7RxptW","request_duration_ms":1198}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:29 GMT +======= + - Tue, 06 Feb 2024 22:47:31 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,7 +968,11 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_8JHOlF3fZbu0Wp +======= + - req_iRrEqr7IpJp4Nn +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: @@ -731,7 +987,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDz4KuuB1fWySn07si2V67", +======= + "id": "pi_3OgxQKKuuB1fWySn2K7xorhe", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1005,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDz4KuuB1fWySn07si2V67_secret_uRIjJ7VyquIbD2MdevE9dHM92", "confirmation_method": "automatic", "created": 1707323306, +======= + "client_secret": "pi_3OgxQKKuuB1fWySn2K7xorhe_secret_p0zR8LGUSrUE86Qaf6OeKx5yK", + "confirmation_method": "automatic", + "created": 1707259648, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDz4KuuB1fWySn093NpeDF", +======= + "latest_charge": "ch_3OgxQKKuuB1fWySn25oIUboI", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDz3KuuB1fWySn0SoN4Sph", +======= + "payment_method": "pm_1OgxQKKuuB1fWySnOTRXcyj5", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1057,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:29 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:31 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_2-series_/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_2-series_/returns_payment_intent_id_and_does_not_raise.yml index 90954bf6c8..76a7f06864 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_2-series_/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_2-series_/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_B7UdWRs1tcOjqt","request_duration_ms":308}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_gCb3WWv83R1mQX","request_duration_ms":283}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:23 GMT +======= + - Tue, 06 Feb 2024 22:47:26 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - af955dc4-e413-47d2-8f5c-ef455d229869 Original-Request: - req_flC8qGaaK2S1Fb Request-Id: - req_flC8qGaaK2S1Fb +======= + - d495c2e2-d766-49d9-8a3b-5a895932bd96 + Original-Request: + - req_ONVtvYl0lmZ3X9 + Request-Id: + - req_ONVtvYl0lmZ3X9 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '295.0' +======= + - '215.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDz1KuuB1fWySneS7zvHGW", +======= + "id": "pm_1OgxQIKuuB1fWySnvpYNES5Q", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323303, +======= + "created": 1707259646, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:23 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:26 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDz1KuuB1fWySneS7zvHGW&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQIKuuB1fWySnvpYNES5Q&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_flC8qGaaK2S1Fb","request_duration_ms":583}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_ONVtvYl0lmZ3X9","request_duration_ms":419}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:24 GMT +======= + - Tue, 06 Feb 2024 22:47:26 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 42b0b16c-01d4-4f2a-98c2-66f0c57aed71 Original-Request: - req_KAGcHdbHNRqUog Request-Id: - req_KAGcHdbHNRqUog +======= + - d195291e-905f-4223-afc6-e594ddc37151 + Original-Request: + - req_RaR7zjXcGbVBtx + Request-Id: + - req_RaR7zjXcGbVBtx +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '192.0' +======= + - '189.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDz2KuuB1fWySn18nVwGnJ", +======= + "id": "pi_3OgxQIKuuB1fWySn0yTbJNwW", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDz2KuuB1fWySn18nVwGnJ_secret_4X8FfZ6wQPuuY0TUq4C54AOdK", "confirmation_method": "automatic", "created": 1707323304, +======= + "client_secret": "pi_3OgxQIKuuB1fWySn0yTbJNwW_secret_OqN0PbZ0GwJY6l4F7C8TLKGwL", + "confirmation_method": "automatic", + "created": 1707259646, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDz1KuuB1fWySneS7zvHGW", +======= + "payment_method": "pm_1OgxQIKuuB1fWySnvpYNES5Q", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:24 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDz2KuuB1fWySn18nVwGnJ/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:26 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQIKuuB1fWySn0yTbJNwW/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_KAGcHdbHNRqUog","request_duration_ms":414}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_RaR7zjXcGbVBtx","request_duration_ms":397}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:25 GMT +======= + - Tue, 06 Feb 2024 22:47:27 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 39ff6c87-e5a5-4198-b0c8-453325c7a679 Original-Request: - req_36uJYE2PgAsjPp Request-Id: - req_36uJYE2PgAsjPp +======= + - e43117d7-1d9f-4236-8727-e2f55af61396 + Original-Request: + - req_VcWaGgkdKu9jCr + Request-Id: + - req_VcWaGgkdKu9jCr +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '800.0' +======= + - '768.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDz2KuuB1fWySn18nVwGnJ", +======= + "id": "pi_3OgxQIKuuB1fWySn0yTbJNwW", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDz2KuuB1fWySn18nVwGnJ_secret_4X8FfZ6wQPuuY0TUq4C54AOdK", "confirmation_method": "automatic", "created": 1707323304, +======= + "client_secret": "pi_3OgxQIKuuB1fWySn0yTbJNwW_secret_OqN0PbZ0GwJY6l4F7C8TLKGwL", + "confirmation_method": "automatic", + "created": 1707259646, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDz2KuuB1fWySn1fq3BuUC", +======= + "latest_charge": "ch_3OgxQIKuuB1fWySn0A2ZxLBP", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDz1KuuB1fWySneS7zvHGW", +======= + "payment_method": "pm_1OgxQIKuuB1fWySnvpYNES5Q", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:25 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:27 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_debit_/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_debit_/captures_the_payment.yml index 20e3d35d6e..92bb8f422f 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_debit_/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_debit_/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_TuzwY4DHoG4gDf","request_duration_ms":1042}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_PY4Nm5t5nzGsw0","request_duration_ms":989}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:32 GMT +======= + - Tue, 06 Feb 2024 22:47:33 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - cfd46c67-1ff4-4345-aa5b-5e7761029353 Original-Request: - req_R4pJ82XAqz4LJc Request-Id: - req_R4pJ82XAqz4LJc +======= + - b8a40387-a7e3-4a9c-ab0f-3a40516efffb + Original-Request: + - req_vF2lxdjP72TQ8d + Request-Id: + - req_vF2lxdjP72TQ8d +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '239.0' +======= + - '254.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzAKuuB1fWySnfeBvM0do", +======= + "id": "pm_1OgxQPKuuB1fWySnwlQwqdZm", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323312, +======= + "created": 1707259653, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:32 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:33 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzAKuuB1fWySnfeBvM0do&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQPKuuB1fWySnwlQwqdZm&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_R4pJ82XAqz4LJc","request_duration_ms":510}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_vF2lxdjP72TQ8d","request_duration_ms":464}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:32 GMT +======= + - Tue, 06 Feb 2024 22:47:34 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - e3608dce-0201-4253-9518-15bab7354777 Original-Request: - req_IlNRikEQ28QrLQ Request-Id: - req_IlNRikEQ28QrLQ +======= + - a777528a-de6e-4a35-9b78-fe0d8647504e + Original-Request: + - req_zidAe7QUMVq9Fp + Request-Id: + - req_zidAe7QUMVq9Fp +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '198.99999999999997' +======= + - '195.99999999999997' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzAKuuB1fWySn2TRDITRA", +======= + "id": "pi_3OgxQQKuuB1fWySn2INTIofV", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzAKuuB1fWySn2TRDITRA_secret_5CahMKwgcYetg7CXIWNOYTI6z", "confirmation_method": "automatic", "created": 1707323312, +======= + "client_secret": "pi_3OgxQQKuuB1fWySn2INTIofV_secret_P1AOmGa6ZfISj2SLe02t70rYz", + "confirmation_method": "automatic", + "created": 1707259654, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzAKuuB1fWySnfeBvM0do", +======= + "payment_method": "pm_1OgxQPKuuB1fWySnwlQwqdZm", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:33 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzAKuuB1fWySn2TRDITRA/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:34 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQQKuuB1fWySn2INTIofV/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_IlNRikEQ28QrLQ","request_duration_ms":520}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_zidAe7QUMVq9Fp","request_duration_ms":402}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:34 GMT +======= + - Tue, 06 Feb 2024 22:47:35 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - da79ebca-988c-44ca-8c90-629f3a2d6ccf Original-Request: - req_T9eblifWoadwLK Request-Id: - req_T9eblifWoadwLK +======= + - 98290ed6-ceb8-4abd-8495-1b901d21b79f + Original-Request: + - req_KWWnkod0Xawoqk + Request-Id: + - req_KWWnkod0Xawoqk +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '835.0' +======= + - '869.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzAKuuB1fWySn2TRDITRA", +======= + "id": "pi_3OgxQQKuuB1fWySn2INTIofV", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzAKuuB1fWySn2TRDITRA_secret_5CahMKwgcYetg7CXIWNOYTI6z", "confirmation_method": "automatic", "created": 1707323312, +======= + "client_secret": "pi_3OgxQQKuuB1fWySn2INTIofV_secret_P1AOmGa6ZfISj2SLe02t70rYz", + "confirmation_method": "automatic", + "created": 1707259654, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzAKuuB1fWySn2zjCNgo4", +======= + "latest_charge": "ch_3OgxQQKuuB1fWySn2Y8neVng", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzAKuuB1fWySnfeBvM0do", +======= + "payment_method": "pm_1OgxQPKuuB1fWySnwlQwqdZm", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:34 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzAKuuB1fWySn2TRDITRA +======= + recorded_at: Tue, 06 Feb 2024 22:47:35 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQQKuuB1fWySn2INTIofV +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_T9eblifWoadwLK","request_duration_ms":1146}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_KWWnkod0Xawoqk","request_duration_ms":1066}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:34 GMT +======= + - Tue, 06 Feb 2024 22:47:35 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_bgOMPyZRCmtpGC +======= + - req_ifZco2J6AF45ov +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '77.0' +======= + - '69.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzAKuuB1fWySn2TRDITRA", +======= + "id": "pi_3OgxQQKuuB1fWySn2INTIofV", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzAKuuB1fWySn2TRDITRA_secret_5CahMKwgcYetg7CXIWNOYTI6z", "confirmation_method": "automatic", "created": 1707323312, +======= + "client_secret": "pi_3OgxQQKuuB1fWySn2INTIofV_secret_P1AOmGa6ZfISj2SLe02t70rYz", + "confirmation_method": "automatic", + "created": 1707259654, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzAKuuB1fWySn2zjCNgo4", +======= + "latest_charge": "ch_3OgxQQKuuB1fWySn2Y8neVng", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzAKuuB1fWySnfeBvM0do", +======= + "payment_method": "pm_1OgxQPKuuB1fWySnwlQwqdZm", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:34 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzAKuuB1fWySn2TRDITRA/capture +======= + recorded_at: Tue, 06 Feb 2024 22:47:35 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQQKuuB1fWySn2INTIofV/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_bgOMPyZRCmtpGC","request_duration_ms":412}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_ifZco2J6AF45ov","request_duration_ms":293}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:35 GMT +======= + - Tue, 06 Feb 2024 22:47:36 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - ec1b1a12-da97-407e-888a-ad924a0b5ac4 Original-Request: - req_tfNuTwHSh4HDHJ Request-Id: - req_tfNuTwHSh4HDHJ +======= + - 2a528e94-5b60-4c8c-a31e-3b90be1c6a28 + Original-Request: + - req_eAKf15c9ea3fIs + Request-Id: + - req_eAKf15c9ea3fIs +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '797.0' +======= + - '727.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzAKuuB1fWySn2TRDITRA", +======= + "id": "pi_3OgxQQKuuB1fWySn2INTIofV", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzAKuuB1fWySn2TRDITRA_secret_5CahMKwgcYetg7CXIWNOYTI6z", "confirmation_method": "automatic", "created": 1707323312, +======= + "client_secret": "pi_3OgxQQKuuB1fWySn2INTIofV_secret_P1AOmGa6ZfISj2SLe02t70rYz", + "confirmation_method": "automatic", + "created": 1707259654, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzAKuuB1fWySn2zjCNgo4", +======= + "latest_charge": "ch_3OgxQQKuuB1fWySn2Y8neVng", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzAKuuB1fWySnfeBvM0do", +======= + "payment_method": "pm_1OgxQPKuuB1fWySnwlQwqdZm", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:35 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzAKuuB1fWySn2TRDITRA +======= + recorded_at: Tue, 06 Feb 2024 22:47:36 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQQKuuB1fWySn2INTIofV +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_tfNuTwHSh4HDHJ","request_duration_ms":1042}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_eAKf15c9ea3fIs","request_duration_ms":920}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:35 GMT +======= + - Tue, 06 Feb 2024 22:47:36 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_dvVN6Fzudqs4jd +======= + - req_SUas70Bd3xnRku +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '77.0' +======= + - '64.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzAKuuB1fWySn2TRDITRA", +======= + "id": "pi_3OgxQQKuuB1fWySn2INTIofV", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzAKuuB1fWySn2TRDITRA_secret_5CahMKwgcYetg7CXIWNOYTI6z", "confirmation_method": "automatic", "created": 1707323312, +======= + "client_secret": "pi_3OgxQQKuuB1fWySn2INTIofV_secret_P1AOmGa6ZfISj2SLe02t70rYz", + "confirmation_method": "automatic", + "created": 1707259654, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzAKuuB1fWySn2zjCNgo4", +======= + "latest_charge": "ch_3OgxQQKuuB1fWySn2Y8neVng", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzAKuuB1fWySnfeBvM0do", +======= + "payment_method": "pm_1OgxQPKuuB1fWySnwlQwqdZm", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:36 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:36 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_debit_/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_debit_/returns_payment_intent_id_and_does_not_raise.yml index 823a270296..b67c6b8c8a 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_debit_/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_debit_/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_8JHOlF3fZbu0Wp","request_duration_ms":293}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_iRrEqr7IpJp4Nn","request_duration_ms":284}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:30 GMT +======= + - Tue, 06 Feb 2024 22:47:31 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - a5358940-5a5e-41ae-a0b5-09441b86ea52 Original-Request: - req_8o2n0ApgIVSi9k Request-Id: - req_8o2n0ApgIVSi9k +======= + - 369e9e2e-08c3-4724-adb7-e4830a93a42c + Original-Request: + - req_RhtzlL3SKr2FbT + Request-Id: + - req_RhtzlL3SKr2FbT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '276.0' +======= + - '234.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDz7KuuB1fWySnPxzsChRe", +======= + "id": "pm_1OgxQNKuuB1fWySnGjDWXa1P", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323309, +======= + "created": 1707259651, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:30 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:31 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDz7KuuB1fWySnPxzsChRe&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQNKuuB1fWySnGjDWXa1P&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_8o2n0ApgIVSi9k","request_duration_ms":487}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_RhtzlL3SKr2FbT","request_duration_ms":437}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:30 GMT +======= + - Tue, 06 Feb 2024 22:47:32 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 466b90b8-1ccb-4018-9d5e-28b2f0376eeb Original-Request: - req_zdIbaygqa3H2Wd Request-Id: - req_zdIbaygqa3H2Wd +======= + - d045292c-9d53-45e0-bfee-75d7ee716ae5 + Original-Request: + - req_99lL9Qka25mtkh + Request-Id: + - req_99lL9Qka25mtkh +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '223.0' +======= + - '198.99999999999997' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDz8KuuB1fWySn0YwkuVn5", +======= + "id": "pi_3OgxQOKuuB1fWySn2NvABhU0", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDz8KuuB1fWySn0YwkuVn5_secret_ggBbD4A7uT1pP2Y68xDqgrTtq", "confirmation_method": "automatic", "created": 1707323310, +======= + "client_secret": "pi_3OgxQOKuuB1fWySn2NvABhU0_secret_ftGMIgkFOmqWYwNS2yCjpWgLr", + "confirmation_method": "automatic", + "created": 1707259652, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDz7KuuB1fWySnPxzsChRe", +======= + "payment_method": "pm_1OgxQNKuuB1fWySnGjDWXa1P", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:30 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDz8KuuB1fWySn0YwkuVn5/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:32 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQOKuuB1fWySn2NvABhU0/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_zdIbaygqa3H2Wd","request_duration_ms":528}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_99lL9Qka25mtkh","request_duration_ms":404}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:31 GMT +======= + - Tue, 06 Feb 2024 22:47:33 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - a957ea24-b85c-4b2d-8509-c5623d26216d Original-Request: - req_TuzwY4DHoG4gDf Request-Id: - req_TuzwY4DHoG4gDf +======= + - cd53c061-218b-48a0-a8ef-0ef0ff71ae69 + Original-Request: + - req_PY4Nm5t5nzGsw0 + Request-Id: + - req_PY4Nm5t5nzGsw0 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '835.0' +======= + - '787.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDz8KuuB1fWySn0YwkuVn5", +======= + "id": "pi_3OgxQOKuuB1fWySn2NvABhU0", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDz8KuuB1fWySn0YwkuVn5_secret_ggBbD4A7uT1pP2Y68xDqgrTtq", "confirmation_method": "automatic", "created": 1707323310, +======= + "client_secret": "pi_3OgxQOKuuB1fWySn2NvABhU0_secret_ftGMIgkFOmqWYwNS2yCjpWgLr", + "confirmation_method": "automatic", + "created": 1707259652, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDz8KuuB1fWySn0YPblsE9", +======= + "latest_charge": "ch_3OgxQOKuuB1fWySn2W1WbbYQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDz7KuuB1fWySnPxzsChRe", +======= + "payment_method": "pm_1OgxQNKuuB1fWySnGjDWXa1P", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:31 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:33 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_prepaid_/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_prepaid_/captures_the_payment.yml index e7344adcd9..729c02fe66 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_prepaid_/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_prepaid_/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_t6BaeQ1CS7kARD","request_duration_ms":1154}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_2Zy7UZlmfZBSst","request_duration_ms":907}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:39 GMT +======= + - Tue, 06 Feb 2024 22:47:39 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 66c85559-c0dc-43de-81a3-070e51be92bb Original-Request: - req_nWOLUKJvBT6VgU Request-Id: - req_nWOLUKJvBT6VgU +======= + - 60423079-0b65-43d2-ad83-45bfca5a1bb6 + Original-Request: + - req_wiNb9YmKLRmTUI + Request-Id: + - req_wiNb9YmKLRmTUI +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '269.0' +======= + - '227.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzGKuuB1fWySn27jIGLsV", +======= + "id": "pm_1OgxQVKuuB1fWySn4WW9eMZT", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323319, +======= + "created": 1707259659, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:39 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:39 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzGKuuB1fWySn27jIGLsV&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQVKuuB1fWySn4WW9eMZT&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_nWOLUKJvBT6VgU","request_duration_ms":549}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_wiNb9YmKLRmTUI","request_duration_ms":445}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:39 GMT +======= + - Tue, 06 Feb 2024 22:47:39 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 6ebf64e2-5072-4a71-b525-e1382bdb58d2 Original-Request: - req_KPEpoT2Xy4sIag Request-Id: - req_KPEpoT2Xy4sIag +======= + - 6e3a9274-dd23-447f-a9fd-ccc673991fdf + Original-Request: + - req_NfNTdnNjolZnrD + Request-Id: + - req_NfNTdnNjolZnrD +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '172.0' +======= + - '187.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzHKuuB1fWySn0NPW0DlB", +======= + "id": "pi_3OgxQVKuuB1fWySn0g44W6ra", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzHKuuB1fWySn0NPW0DlB_secret_5vaOJLFnLdYpFhGtBqBzmFSVn", "confirmation_method": "automatic", "created": 1707323319, +======= + "client_secret": "pi_3OgxQVKuuB1fWySn0g44W6ra_secret_dftQoUwKpxNDn7GqxWzwDL8Cc", + "confirmation_method": "automatic", + "created": 1707259659, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzGKuuB1fWySn27jIGLsV", +======= + "payment_method": "pm_1OgxQVKuuB1fWySn4WW9eMZT", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:39 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzHKuuB1fWySn0NPW0DlB/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:39 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQVKuuB1fWySn0g44W6ra/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_KPEpoT2Xy4sIag","request_duration_ms":413}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_NfNTdnNjolZnrD","request_duration_ms":382}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:40 GMT +======= + - Tue, 06 Feb 2024 22:47:40 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - c4c4c39a-f95d-4d71-b889-edec1bbb77aa Original-Request: - req_zBt42R4FqAc2Dc Request-Id: - req_zBt42R4FqAc2Dc +======= + - d09c5846-9c27-43ce-98e6-b2d3c5f6c8d0 + Original-Request: + - req_y4A7Eg14mpAqNl + Request-Id: + - req_y4A7Eg14mpAqNl +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '742.0' +======= + - '710.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzHKuuB1fWySn0NPW0DlB", +======= + "id": "pi_3OgxQVKuuB1fWySn0g44W6ra", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzHKuuB1fWySn0NPW0DlB_secret_5vaOJLFnLdYpFhGtBqBzmFSVn", "confirmation_method": "automatic", "created": 1707323319, +======= + "client_secret": "pi_3OgxQVKuuB1fWySn0g44W6ra_secret_dftQoUwKpxNDn7GqxWzwDL8Cc", + "confirmation_method": "automatic", + "created": 1707259659, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzHKuuB1fWySn0zAPGG73", +======= + "latest_charge": "ch_3OgxQVKuuB1fWySn0RGJ5vzG", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzGKuuB1fWySn27jIGLsV", +======= + "payment_method": "pm_1OgxQVKuuB1fWySn4WW9eMZT", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:40 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzHKuuB1fWySn0NPW0DlB +======= + recorded_at: Tue, 06 Feb 2024 22:47:40 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQVKuuB1fWySn0g44W6ra +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_zBt42R4FqAc2Dc","request_duration_ms":1042}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_y4A7Eg14mpAqNl","request_duration_ms":909}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:41 GMT +======= + - Tue, 06 Feb 2024 22:47:40 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_WmTyOw3MphdQfQ +======= + - req_UU6q6R5AJZnC5z +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '60.0' +======= + - '61.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzHKuuB1fWySn0NPW0DlB", +======= + "id": "pi_3OgxQVKuuB1fWySn0g44W6ra", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzHKuuB1fWySn0NPW0DlB_secret_5vaOJLFnLdYpFhGtBqBzmFSVn", "confirmation_method": "automatic", "created": 1707323319, +======= + "client_secret": "pi_3OgxQVKuuB1fWySn0g44W6ra_secret_dftQoUwKpxNDn7GqxWzwDL8Cc", + "confirmation_method": "automatic", + "created": 1707259659, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzHKuuB1fWySn0zAPGG73", +======= + "latest_charge": "ch_3OgxQVKuuB1fWySn0RGJ5vzG", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzGKuuB1fWySn27jIGLsV", +======= + "payment_method": "pm_1OgxQVKuuB1fWySn4WW9eMZT", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:41 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzHKuuB1fWySn0NPW0DlB/capture +======= + recorded_at: Tue, 06 Feb 2024 22:47:40 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQVKuuB1fWySn0g44W6ra/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_WmTyOw3MphdQfQ","request_duration_ms":309}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_UU6q6R5AJZnC5z","request_duration_ms":274}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:42 GMT +======= + - Tue, 06 Feb 2024 22:47:41 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - e4262f1e-bafb-45f7-96e7-c54daeb2523d Original-Request: - req_XGBiYN3vBby1V9 Request-Id: - req_XGBiYN3vBby1V9 +======= + - 8f021cc2-8f97-46a1-9381-bb82661dd5c2 + Original-Request: + - req_n3V5U3dd34ZLbd + Request-Id: + - req_n3V5U3dd34ZLbd +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '920.0' +======= + - '772.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzHKuuB1fWySn0NPW0DlB", +======= + "id": "pi_3OgxQVKuuB1fWySn0g44W6ra", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzHKuuB1fWySn0NPW0DlB_secret_5vaOJLFnLdYpFhGtBqBzmFSVn", "confirmation_method": "automatic", "created": 1707323319, +======= + "client_secret": "pi_3OgxQVKuuB1fWySn0g44W6ra_secret_dftQoUwKpxNDn7GqxWzwDL8Cc", + "confirmation_method": "automatic", + "created": 1707259659, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzHKuuB1fWySn0zAPGG73", +======= + "latest_charge": "ch_3OgxQVKuuB1fWySn0RGJ5vzG", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzGKuuB1fWySn27jIGLsV", +======= + "payment_method": "pm_1OgxQVKuuB1fWySn4WW9eMZT", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:42 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzHKuuB1fWySn0NPW0DlB +======= + recorded_at: Tue, 06 Feb 2024 22:47:41 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQVKuuB1fWySn0g44W6ra +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_XGBiYN3vBby1V9","request_duration_ms":1147}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_n3V5U3dd34ZLbd","request_duration_ms":965}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:42 GMT +======= + - Tue, 06 Feb 2024 22:47:42 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_K0nU8RZXAzMS41 +======= + - req_2aKyUUI2XeyhW4 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '65.0' +======= + - '64.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzHKuuB1fWySn0NPW0DlB", +======= + "id": "pi_3OgxQVKuuB1fWySn0g44W6ra", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzHKuuB1fWySn0NPW0DlB_secret_5vaOJLFnLdYpFhGtBqBzmFSVn", "confirmation_method": "automatic", "created": 1707323319, +======= + "client_secret": "pi_3OgxQVKuuB1fWySn0g44W6ra_secret_dftQoUwKpxNDn7GqxWzwDL8Cc", + "confirmation_method": "automatic", + "created": 1707259659, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzHKuuB1fWySn0zAPGG73", +======= + "latest_charge": "ch_3OgxQVKuuB1fWySn0RGJ5vzG", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzGKuuB1fWySn27jIGLsV", +======= + "payment_method": "pm_1OgxQVKuuB1fWySn4WW9eMZT", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:42 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:42 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_prepaid_/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_prepaid_/returns_payment_intent_id_and_does_not_raise.yml index b895b14622..5eadad1a49 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_prepaid_/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Mastercard_prepaid_/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_dvVN6Fzudqs4jd","request_duration_ms":413}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_SUas70Bd3xnRku","request_duration_ms":280}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:36 GMT +======= + - Tue, 06 Feb 2024 22:47:37 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - d1fdca8e-c99d-4250-85d7-c746307fb821 Original-Request: - req_0iaSxif8N4hTdu Request-Id: - req_0iaSxif8N4hTdu +======= + - b723195b-9a6e-4793-9e74-35ef2a856f60 + Original-Request: + - req_Fr1DggWRfnL2o4 + Request-Id: + - req_Fr1DggWRfnL2o4 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '282.0' +======= + - '212.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDzEKuuB1fWySnyMmkXZmF", +======= + "id": "pm_1OgxQTKuuB1fWySn6vQX5wFO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323316, +======= + "created": 1707259657, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:36 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:37 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDzEKuuB1fWySnyMmkXZmF&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQTKuuB1fWySn6vQX5wFO&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_0iaSxif8N4hTdu","request_duration_ms":567}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_Fr1DggWRfnL2o4","request_duration_ms":414}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:37 GMT +======= + - Tue, 06 Feb 2024 22:47:37 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - add21c63-0d70-425e-8b97-33a9d3e19653 Original-Request: - req_VuEhNtl3XWaJCF Request-Id: - req_VuEhNtl3XWaJCF +======= + - c52b4857-8f49-4781-a696-39870c2508ed + Original-Request: + - req_NPdBVOeNTNn74t + Request-Id: + - req_NPdBVOeNTNn74t +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '220.99999999999997' +======= + - '180.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzEKuuB1fWySn2OnXfCIf", +======= + "id": "pi_3OgxQTKuuB1fWySn0aneZwPs", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzEKuuB1fWySn2OnXfCIf_secret_yHhOOTNLYmE9iNFNfYbk3E3C5", "confirmation_method": "automatic", "created": 1707323316, +======= + "client_secret": "pi_3OgxQTKuuB1fWySn0aneZwPs_secret_9sWqmxdWbXRydS1jc0quAsk8K", + "confirmation_method": "automatic", + "created": 1707259657, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzEKuuB1fWySnyMmkXZmF", +======= + "payment_method": "pm_1OgxQTKuuB1fWySn6vQX5wFO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:37 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDzEKuuB1fWySn2OnXfCIf/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:37 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQTKuuB1fWySn0aneZwPs/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_VuEhNtl3XWaJCF","request_duration_ms":518}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_NPdBVOeNTNn74t","request_duration_ms":387}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:38 GMT +======= + - Tue, 06 Feb 2024 22:47:38 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - fe54b756-93de-4fc4-ab55-c25b1560c1b0 Original-Request: - req_t6BaeQ1CS7kARD Request-Id: - req_t6BaeQ1CS7kARD +======= + - d5cfe753-43d6-4890-8f39-edf52d0eb9af + Original-Request: + - req_2Zy7UZlmfZBSst + Request-Id: + - req_2Zy7UZlmfZBSst +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '848.0' +======= + - '723.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDzEKuuB1fWySn2OnXfCIf", +======= + "id": "pi_3OgxQTKuuB1fWySn0aneZwPs", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDzEKuuB1fWySn2OnXfCIf_secret_yHhOOTNLYmE9iNFNfYbk3E3C5", "confirmation_method": "automatic", "created": 1707323316, +======= + "client_secret": "pi_3OgxQTKuuB1fWySn0aneZwPs_secret_9sWqmxdWbXRydS1jc0quAsk8K", + "confirmation_method": "automatic", + "created": 1707259657, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDzEKuuB1fWySn2NNVz528", +======= + "latest_charge": "ch_3OgxQTKuuB1fWySn0v9bhPUi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDzEKuuB1fWySnyMmkXZmF", +======= + "payment_method": "pm_1OgxQTKuuB1fWySn6vQX5wFO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:38 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:38 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay/captures_the_payment.yml index 184db63d61..9999abbef5 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_zT8qxiUVe0GGZR","request_duration_ms":1150}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_F7U3LX6TKdPKkR","request_duration_ms":976}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:30 GMT +======= + - Tue, 06 Feb 2024 22:48:21 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - f25cd521-1185-4696-aba0-8c43f0e38c73 Original-Request: - req_adzGKYZ6QHSV17 Request-Id: - req_adzGKYZ6QHSV17 +======= + - 4ee5b072-6dbf-4131-8df2-0036881f6772 + Original-Request: + - req_ewXRLDjNxVeTD9 + Request-Id: + - req_ewXRLDjNxVeTD9 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '279.99999999999994' +======= + - '258.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE06KuuB1fWySn2N3UHhz0", +======= + "id": "pm_1OgxRBKuuB1fWySndSM5nLWB", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323370, +======= + "created": 1707259701, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:30 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:21 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE06KuuB1fWySn2N3UHhz0&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRBKuuB1fWySndSM5nLWB&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_adzGKYZ6QHSV17","request_duration_ms":531}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_ewXRLDjNxVeTD9","request_duration_ms":454}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:31 GMT +======= + - Tue, 06 Feb 2024 22:48:22 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - dbced517-2aa7-4569-ac0e-1db0a0479f3f Original-Request: - req_hg7ONm1qQhFHmy Request-Id: - req_hg7ONm1qQhFHmy +======= + - 7199fdbf-c660-4329-a178-2b3a882a7e1a + Original-Request: + - req_LFCWFT30Tmtnos + Request-Id: + - req_LFCWFT30Tmtnos +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '217.0' +======= + - '241.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE06KuuB1fWySn1IxNbxtY", +======= + "id": "pi_3OgxRBKuuB1fWySn1ZhNseOH", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE06KuuB1fWySn1IxNbxtY_secret_U0rqq3ta8Cmz6X3g5rHPsPjJ2", "confirmation_method": "automatic", "created": 1707323370, +======= + "client_secret": "pi_3OgxRBKuuB1fWySn1ZhNseOH_secret_UBJP6JRgU2SYeceaqHaeY8yK5", + "confirmation_method": "automatic", + "created": 1707259701, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE06KuuB1fWySn2N3UHhz0", +======= + "payment_method": "pm_1OgxRBKuuB1fWySndSM5nLWB", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:31 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE06KuuB1fWySn1IxNbxtY/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:22 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRBKuuB1fWySn1ZhNseOH/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_hg7ONm1qQhFHmy","request_duration_ms":515}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_LFCWFT30Tmtnos","request_duration_ms":436}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:32 GMT +======= + - Tue, 06 Feb 2024 22:48:22 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - ad505c63-004c-48ce-8623-c56bdc148de2 Original-Request: - req_Tte8SUNeSNV9ef Request-Id: - req_Tte8SUNeSNV9ef +======= + - b4f3defd-13fc-4239-8b64-15514ff97a4b + Original-Request: + - req_azevv45V3A4x1E + Request-Id: + - req_azevv45V3A4x1E +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '768.0' +======= + - '693.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE06KuuB1fWySn1IxNbxtY", +======= + "id": "pi_3OgxRBKuuB1fWySn1ZhNseOH", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE06KuuB1fWySn1IxNbxtY_secret_U0rqq3ta8Cmz6X3g5rHPsPjJ2", "confirmation_method": "automatic", "created": 1707323370, +======= + "client_secret": "pi_3OgxRBKuuB1fWySn1ZhNseOH_secret_UBJP6JRgU2SYeceaqHaeY8yK5", + "confirmation_method": "automatic", + "created": 1707259701, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE06KuuB1fWySn18V8hfqT", +======= + "latest_charge": "ch_3OgxRBKuuB1fWySn1Ie5E0cg", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE06KuuB1fWySn2N3UHhz0", +======= + "payment_method": "pm_1OgxRBKuuB1fWySndSM5nLWB", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:32 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhE06KuuB1fWySn1IxNbxtY +======= + recorded_at: Tue, 06 Feb 2024 22:48:22 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRBKuuB1fWySn1ZhNseOH +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Tte8SUNeSNV9ef","request_duration_ms":1044}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_azevv45V3A4x1E","request_duration_ms":890}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:32 GMT +======= + - Tue, 06 Feb 2024 22:48:23 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,7 +608,11 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_8XqQ23tO1ps71l +======= + - req_EG3vPQVuwsnYiK +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: @@ -469,7 +627,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE06KuuB1fWySn1IxNbxtY", +======= + "id": "pi_3OgxRBKuuB1fWySn1ZhNseOH", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +645,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE06KuuB1fWySn1IxNbxtY_secret_U0rqq3ta8Cmz6X3g5rHPsPjJ2", "confirmation_method": "automatic", "created": 1707323370, +======= + "client_secret": "pi_3OgxRBKuuB1fWySn1ZhNseOH_secret_UBJP6JRgU2SYeceaqHaeY8yK5", + "confirmation_method": "automatic", + "created": 1707259701, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE06KuuB1fWySn18V8hfqT", +======= + "latest_charge": "ch_3OgxRBKuuB1fWySn1Ie5E0cg", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE06KuuB1fWySn2N3UHhz0", +======= + "payment_method": "pm_1OgxRBKuuB1fWySndSM5nLWB", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +697,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:32 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE06KuuB1fWySn1IxNbxtY/capture +======= + recorded_at: Tue, 06 Feb 2024 22:48:23 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRBKuuB1fWySn1ZhNseOH/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +715,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_8XqQ23tO1ps71l","request_duration_ms":309}}' Stripe-Version: - '2023-10-16' @@ -544,6 +728,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_EG3vPQVuwsnYiK","request_duration_ms":283}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +749,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:33 GMT +======= + - Tue, 06 Feb 2024 22:48:24 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +779,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 52579878-d119-45b8-9f2c-3c065657bf70 Original-Request: - req_ECdwY5Y9bUGykg Request-Id: - req_ECdwY5Y9bUGykg +======= + - 6209a700-57ba-482f-af4d-377cd601e69d + Original-Request: + - req_gnq48j6zHAgd14 + Request-Id: + - req_gnq48j6zHAgd14 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +799,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '832.0' +======= + - '779.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +812,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE06KuuB1fWySn1IxNbxtY", +======= + "id": "pi_3OgxRBKuuB1fWySn1ZhNseOH", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +830,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE06KuuB1fWySn1IxNbxtY_secret_U0rqq3ta8Cmz6X3g5rHPsPjJ2", "confirmation_method": "automatic", "created": 1707323370, +======= + "client_secret": "pi_3OgxRBKuuB1fWySn1ZhNseOH_secret_UBJP6JRgU2SYeceaqHaeY8yK5", + "confirmation_method": "automatic", + "created": 1707259701, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE06KuuB1fWySn18V8hfqT", +======= + "latest_charge": "ch_3OgxRBKuuB1fWySn1Ie5E0cg", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE06KuuB1fWySn2N3UHhz0", +======= + "payment_method": "pm_1OgxRBKuuB1fWySndSM5nLWB", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +882,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:33 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhE06KuuB1fWySn1IxNbxtY +======= + recorded_at: Tue, 06 Feb 2024 22:48:24 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRBKuuB1fWySn1ZhNseOH +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +900,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_ECdwY5Y9bUGykg","request_duration_ms":1041}}' Stripe-Version: - '2023-10-16' @@ -678,6 +913,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_gnq48j6zHAgd14","request_duration_ms":967}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +934,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:33 GMT +======= + - Tue, 06 Feb 2024 22:48:24 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +964,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_D9s1zVDBsPPEOx +======= + - req_tgGFTMdRDWJ7aS +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '93.0' +======= + - '61.00000000000001' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +987,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE06KuuB1fWySn1IxNbxtY", +======= + "id": "pi_3OgxRBKuuB1fWySn1ZhNseOH", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1005,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE06KuuB1fWySn1IxNbxtY_secret_U0rqq3ta8Cmz6X3g5rHPsPjJ2", "confirmation_method": "automatic", "created": 1707323370, +======= + "client_secret": "pi_3OgxRBKuuB1fWySn1ZhNseOH_secret_UBJP6JRgU2SYeceaqHaeY8yK5", + "confirmation_method": "automatic", + "created": 1707259701, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE06KuuB1fWySn18V8hfqT", +======= + "latest_charge": "ch_3OgxRBKuuB1fWySn1Ie5E0cg", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE06KuuB1fWySn2N3UHhz0", +======= + "payment_method": "pm_1OgxRBKuuB1fWySndSM5nLWB", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1057,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:34 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:24 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay/returns_payment_intent_id_and_does_not_raise.yml index d9c1d8e734..4860ce1ce1 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_f1vOdQqfGNPXm5","request_duration_ms":310}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_J8SoivbZT6Nbkf","request_duration_ms":280}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:28 GMT +======= + - Tue, 06 Feb 2024 22:48:19 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 150b9f87-db0a-4020-af4a-6d8e3f70cd5e Original-Request: - req_2RDIAocgaF236m Request-Id: - req_2RDIAocgaF236m +======= + - b3638146-71a5-4789-bbdd-07dd7a2f047f + Original-Request: + - req_6KWzI3w6ZVBkv1 + Request-Id: + - req_6KWzI3w6ZVBkv1 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '265.0' +======= + - '202.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE03KuuB1fWySn5MdsfSYC", +======= + "id": "pm_1OgxR9KuuB1fWySn8k5Ws1pt", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323368, +======= + "created": 1707259699, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:28 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:19 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE03KuuB1fWySn5MdsfSYC&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxR9KuuB1fWySn8k5Ws1pt&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_2RDIAocgaF236m","request_duration_ms":573}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_6KWzI3w6ZVBkv1","request_duration_ms":395}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:28 GMT +======= + - Tue, 06 Feb 2024 22:48:20 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 06c31a99-35d3-4885-9239-8ca43a8ba96b Original-Request: - req_rPU02uigoVo1QI Request-Id: - req_rPU02uigoVo1QI +======= + - 6cdb3bf6-ccfa-4781-b1ac-097c1c0ef0a3 + Original-Request: + - req_GhELZKBcoJku1J + Request-Id: + - req_GhELZKBcoJku1J +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '189.0' +======= + - '202.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE04KuuB1fWySn03Dlaleq", +======= + "id": "pi_3OgxR9KuuB1fWySn2mQY1OXO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE04KuuB1fWySn03Dlaleq_secret_8PKjfal83t3WWZRhoItPWFfaZ", "confirmation_method": "automatic", "created": 1707323368, +======= + "client_secret": "pi_3OgxR9KuuB1fWySn2mQY1OXO_secret_vk3EsvjloUhk3FZuJfuRKxYvk", + "confirmation_method": "automatic", + "created": 1707259699, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE03KuuB1fWySn5MdsfSYC", +======= + "payment_method": "pm_1OgxR9KuuB1fWySn8k5Ws1pt", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:28 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE04KuuB1fWySn03Dlaleq/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:19 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxR9KuuB1fWySn2mQY1OXO/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_rPU02uigoVo1QI","request_duration_ms":417}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_GhELZKBcoJku1J","request_duration_ms":386}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:29 GMT +======= + - Tue, 06 Feb 2024 22:48:21 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 24c16cd3-4c45-4eea-8e38-39bf170fb7fa Original-Request: - req_zT8qxiUVe0GGZR Request-Id: - req_zT8qxiUVe0GGZR +======= + - 2704f76f-78d4-421d-b56b-f7b185b524ca + Original-Request: + - req_F7U3LX6TKdPKkR + Request-Id: + - req_F7U3LX6TKdPKkR +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '851.0' +======= + - '798.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE04KuuB1fWySn03Dlaleq", +======= + "id": "pi_3OgxR9KuuB1fWySn2mQY1OXO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE04KuuB1fWySn03Dlaleq_secret_8PKjfal83t3WWZRhoItPWFfaZ", "confirmation_method": "automatic", "created": 1707323368, +======= + "client_secret": "pi_3OgxR9KuuB1fWySn2mQY1OXO_secret_vk3EsvjloUhk3FZuJfuRKxYvk", + "confirmation_method": "automatic", + "created": 1707259699, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE04KuuB1fWySn0vZaprLf", +======= + "latest_charge": "ch_3OgxR9KuuB1fWySn2NISQAF9", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE03KuuB1fWySn5MdsfSYC", +======= + "payment_method": "pm_1OgxR9KuuB1fWySn8k5Ws1pt", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:29 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:20 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_19-digit_card_/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_19-digit_card_/captures_the_payment.yml index a3a1df5cb8..657ca38f70 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_19-digit_card_/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_19-digit_card_/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_5HPAS9CfEpe9YJ","request_duration_ms":1042}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_NID3jbpLcGXZls","request_duration_ms":849}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:37 GMT +======= + - Tue, 06 Feb 2024 22:48:30 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 2c962158-c4e5-4eee-b03e-1381b3d957e8 Original-Request: - req_daJa3ivpyYnf52 Request-Id: - req_daJa3ivpyYnf52 +======= + - 5c338743-0c31-455a-93c1-1b4175b9b0d1 + Original-Request: + - req_R4vzQ0MqrpSzbl + Request-Id: + - req_R4vzQ0MqrpSzbl +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '251.0' +======= + - '215.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0CKuuB1fWySn9ZLCd1kr", +======= + "id": "pm_1OgxRJKuuB1fWySnJ5imrIRO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323376, +======= + "created": 1707259710, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:37 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:30 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0CKuuB1fWySn9ZLCd1kr&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRJKuuB1fWySnJ5imrIRO&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_daJa3ivpyYnf52","request_duration_ms":502}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_R4vzQ0MqrpSzbl","request_duration_ms":420}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:37 GMT +======= + - Tue, 06 Feb 2024 22:48:30 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - a47139bc-e86f-4882-b190-4506b1ea3324 Original-Request: - req_hWn7aDoYatJVLC Request-Id: - req_hWn7aDoYatJVLC +======= + - 4b87554c-7877-4443-bfac-b944bab54fa2 + Original-Request: + - req_G8OTvgTqWPeg8k + Request-Id: + - req_G8OTvgTqWPeg8k +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '176.0' +======= + - '185.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0DKuuB1fWySn2rMWFSRS", +======= + "id": "pi_3OgxRKKuuB1fWySn05rXueun", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0DKuuB1fWySn2rMWFSRS_secret_XpUDZS1mC38qLNkbmcfGhVwwu", "confirmation_method": "automatic", "created": 1707323377, +======= + "client_secret": "pi_3OgxRKKuuB1fWySn05rXueun_secret_BbgACFYrwV3nw8eMoIl2SnKxO", + "confirmation_method": "automatic", + "created": 1707259710, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0CKuuB1fWySn9ZLCd1kr", +======= + "payment_method": "pm_1OgxRJKuuB1fWySnJ5imrIRO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:37 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0DKuuB1fWySn2rMWFSRS/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:30 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRKKuuB1fWySn05rXueun/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_hWn7aDoYatJVLC","request_duration_ms":415}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_G8OTvgTqWPeg8k","request_duration_ms":381}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:38 GMT +======= + - Tue, 06 Feb 2024 22:48:31 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 4e2399fe-c3f4-4ce4-940b-96c1a3d93494 Original-Request: - req_6doXRKgtQTP91a Request-Id: - req_6doXRKgtQTP91a +======= + - 3a445562-cb77-479e-89f1-0c837f5fa108 + Original-Request: + - req_wn3phtQtrxyde1 + Request-Id: + - req_wn3phtQtrxyde1 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '686.0' +======= + - '999.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0DKuuB1fWySn2rMWFSRS", +======= + "id": "pi_3OgxRKKuuB1fWySn05rXueun", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0DKuuB1fWySn2rMWFSRS_secret_XpUDZS1mC38qLNkbmcfGhVwwu", "confirmation_method": "automatic", "created": 1707323377, +======= + "client_secret": "pi_3OgxRKKuuB1fWySn05rXueun_secret_BbgACFYrwV3nw8eMoIl2SnKxO", + "confirmation_method": "automatic", + "created": 1707259710, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE0DKuuB1fWySn2GZE8gk4", +======= + "latest_charge": "ch_3OgxRKKuuB1fWySn0rDBpf0c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0CKuuB1fWySn9ZLCd1kr", +======= + "payment_method": "pm_1OgxRJKuuB1fWySnJ5imrIRO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:38 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0DKuuB1fWySn2rMWFSRS +======= + recorded_at: Tue, 06 Feb 2024 22:48:31 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRKKuuB1fWySn05rXueun +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_6doXRKgtQTP91a","request_duration_ms":937}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_wn3phtQtrxyde1","request_duration_ms":1194}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:38 GMT +======= + - Tue, 06 Feb 2024 22:48:32 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_cXfOVNMiNznkSW +======= + - req_0uZCvdMcZ9pdiT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '64.0' +======= + - '74.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0DKuuB1fWySn2rMWFSRS", +======= + "id": "pi_3OgxRKKuuB1fWySn05rXueun", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0DKuuB1fWySn2rMWFSRS_secret_XpUDZS1mC38qLNkbmcfGhVwwu", "confirmation_method": "automatic", "created": 1707323377, +======= + "client_secret": "pi_3OgxRKKuuB1fWySn05rXueun_secret_BbgACFYrwV3nw8eMoIl2SnKxO", + "confirmation_method": "automatic", + "created": 1707259710, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE0DKuuB1fWySn2GZE8gk4", +======= + "latest_charge": "ch_3OgxRKKuuB1fWySn0rDBpf0c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0CKuuB1fWySn9ZLCd1kr", +======= + "payment_method": "pm_1OgxRJKuuB1fWySnJ5imrIRO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:38 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0DKuuB1fWySn2rMWFSRS/capture +======= + recorded_at: Tue, 06 Feb 2024 22:48:32 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRKKuuB1fWySn05rXueun/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_cXfOVNMiNznkSW","request_duration_ms":309}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_0uZCvdMcZ9pdiT","request_duration_ms":298}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:39 GMT +======= + - Tue, 06 Feb 2024 22:48:33 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - e0d26946-b406-42ff-baa4-ae663b2e00ba Original-Request: - req_BZ7gVHNQ4uRnY8 Request-Id: - req_BZ7gVHNQ4uRnY8 +======= + - b389bbfb-0e54-45e8-8ead-c0b0f8812a42 + Original-Request: + - req_qNTHoyfzZMlHfl + Request-Id: + - req_qNTHoyfzZMlHfl +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '880.0' +======= + - '740.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0DKuuB1fWySn2rMWFSRS", +======= + "id": "pi_3OgxRKKuuB1fWySn05rXueun", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0DKuuB1fWySn2rMWFSRS_secret_XpUDZS1mC38qLNkbmcfGhVwwu", "confirmation_method": "automatic", "created": 1707323377, +======= + "client_secret": "pi_3OgxRKKuuB1fWySn05rXueun_secret_BbgACFYrwV3nw8eMoIl2SnKxO", + "confirmation_method": "automatic", + "created": 1707259710, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE0DKuuB1fWySn2GZE8gk4", +======= + "latest_charge": "ch_3OgxRKKuuB1fWySn0rDBpf0c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0CKuuB1fWySn9ZLCd1kr", +======= + "payment_method": "pm_1OgxRJKuuB1fWySnJ5imrIRO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:39 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0DKuuB1fWySn2rMWFSRS +======= + recorded_at: Tue, 06 Feb 2024 22:48:33 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRKKuuB1fWySn05rXueun +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_BZ7gVHNQ4uRnY8","request_duration_ms":1147}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_qNTHoyfzZMlHfl","request_duration_ms":939}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:40 GMT +======= + - Tue, 06 Feb 2024 22:48:33 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_4tX06iAWytFkY4 +======= + - req_gflMz8EgIXp42W +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '63.0' +======= + - '79.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0DKuuB1fWySn2rMWFSRS", +======= + "id": "pi_3OgxRKKuuB1fWySn05rXueun", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0DKuuB1fWySn2rMWFSRS_secret_XpUDZS1mC38qLNkbmcfGhVwwu", "confirmation_method": "automatic", "created": 1707323377, +======= + "client_secret": "pi_3OgxRKKuuB1fWySn05rXueun_secret_BbgACFYrwV3nw8eMoIl2SnKxO", + "confirmation_method": "automatic", + "created": 1707259710, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE0DKuuB1fWySn2GZE8gk4", +======= + "latest_charge": "ch_3OgxRKKuuB1fWySn0rDBpf0c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0CKuuB1fWySn9ZLCd1kr", +======= + "payment_method": "pm_1OgxRJKuuB1fWySnJ5imrIRO", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:40 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:33 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_19-digit_card_/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_19-digit_card_/returns_payment_intent_id_and_does_not_raise.yml index 77ab44fe8f..34278f252c 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_19-digit_card_/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_19-digit_card_/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_D9s1zVDBsPPEOx","request_duration_ms":415}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_Z458bzodULesLW","request_duration_ms":316}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:34 GMT +======= + - Tue, 06 Feb 2024 22:48:28 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 0f5b01bd-a6eb-46b1-9b80-b7a4d5889392 Original-Request: - req_2IFbsd0N22IkHL Request-Id: - req_2IFbsd0N22IkHL +======= + - d4931bf0-8e88-4fab-ad10-29b4c258b9f0 + Original-Request: + - req_iehpMxHmiBBypH + Request-Id: + - req_iehpMxHmiBBypH +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '299.0' +======= + - '237.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhE0AKuuB1fWySnT50iNtGf", +======= + "id": "pm_1OgxRIKuuB1fWySnHPucIgBN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323374, +======= + "created": 1707259708, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:34 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:28 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhE0AKuuB1fWySnT50iNtGf&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxRIKuuB1fWySnHPucIgBN&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_2IFbsd0N22IkHL","request_duration_ms":589}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_iehpMxHmiBBypH","request_duration_ms":433}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:35 GMT +======= + - Tue, 06 Feb 2024 22:48:28 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - a658d89e-5ca6-4885-a818-97e8b5f3e2b1 Original-Request: - req_xD1C4FBOfjidqo Request-Id: - req_xD1C4FBOfjidqo +======= + - c281333b-b48a-48c5-acbc-a5625b0c2445 + Original-Request: + - req_39kouXMgQ5NpKM + Request-Id: + - req_39kouXMgQ5NpKM +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '191.0' +======= + - '195.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0AKuuB1fWySn1JmWK75n", +======= + "id": "pi_3OgxRIKuuB1fWySn0hfZnRDW", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0AKuuB1fWySn1JmWK75n_secret_Wdn8Vwj1mC9ajTiJmpsCLe0WV", "confirmation_method": "automatic", "created": 1707323374, +======= + "client_secret": "pi_3OgxRIKuuB1fWySn0hfZnRDW_secret_mJZcPBlThNhcj90PLBle7f5Jn", + "confirmation_method": "automatic", + "created": 1707259708, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0AKuuB1fWySnT50iNtGf", +======= + "payment_method": "pm_1OgxRIKuuB1fWySnHPucIgBN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:35 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhE0AKuuB1fWySn1JmWK75n/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:48:28 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRIKuuB1fWySn0hfZnRDW/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_xD1C4FBOfjidqo","request_duration_ms":414}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_39kouXMgQ5NpKM","request_duration_ms":381}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:29:36 GMT +======= + - Tue, 06 Feb 2024 22:48:29 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 96f5f2df-9c52-46c3-a356-b9c5b110a289 Original-Request: - req_5HPAS9CfEpe9YJ Request-Id: - req_5HPAS9CfEpe9YJ +======= + - 5eeb5d6c-4a52-4254-9c5b-44b15faf4440 + Original-Request: + - req_NID3jbpLcGXZls + Request-Id: + - req_NID3jbpLcGXZls +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '839.0' +======= + - '657.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhE0AKuuB1fWySn1JmWK75n", +======= + "id": "pi_3OgxRIKuuB1fWySn0hfZnRDW", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhE0AKuuB1fWySn1JmWK75n_secret_Wdn8Vwj1mC9ajTiJmpsCLe0WV", "confirmation_method": "automatic", "created": 1707323374, +======= + "client_secret": "pi_3OgxRIKuuB1fWySn0hfZnRDW_secret_mJZcPBlThNhcj90PLBle7f5Jn", + "confirmation_method": "automatic", + "created": 1707259708, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhE0AKuuB1fWySn1tcvVqeg", +======= + "latest_charge": "ch_3OgxRIKuuB1fWySn0i0oA1HP", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhE0AKuuB1fWySnT50iNtGf", +======= + "payment_method": "pm_1OgxRIKuuB1fWySnHPucIgBN", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:29:36 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:48:29 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/captures_the_payment.yml new file mode 100644 index 0000000000..8011066ac5 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/captures_the_payment.yml @@ -0,0 +1,563 @@ +--- +http_interactions: +- request: + method: post + uri: https://api.stripe.com/v1/payment_methods + body: + encoding: UTF-8 + string: type=card&card[number]=6200000000000047&card[exp_month]=12&card[exp_year]=2025&card[cvc]=314 + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_8VYsDwdNHatS4a","request_duration_ms":640}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 06 Feb 2024 22:48:26 GMT + Content-Type: + - application/json + Content-Length: + - '938' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_methods; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 05227e30-b5e4-4d1c-8002-1b03d6ed87b7 + Original-Request: + - req_dAN1whoWuFD2Hx + Request-Id: + - req_dAN1whoWuFD2Hx + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '220.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pm_1OgxRGKuuB1fWySnn88ZCdip", + "object": "payment_method", + "billing_details": { + "address": { + "city": null, + "country": null, + "line1": null, + "line2": null, + "postal_code": null, + "state": null + }, + "email": null, + "name": null, + "phone": null + }, + "card": { + "brand": "unionpay", + "checks": { + "address_line1_check": null, + "address_postal_code_check": null, + "cvc_check": "unchecked" + }, + "country": "CN", + "exp_month": 12, + "exp_year": 2025, + "fingerprint": "Bk3yMwVTBMfdXTtb", + "funding": "debit", + "generated_from": null, + "last4": "0047", + "networks": { + "available": [ + "unionpay" + ], + "preferred": null + }, + "three_d_secure_usage": { + "supported": true + }, + "wallet": null + }, + "created": 1707259706, + "customer": null, + "livemode": false, + "metadata": {}, + "type": "card" + } + recorded_at: Tue, 06 Feb 2024 22:48:26 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents + body: + encoding: UTF-8 + string: amount=100¤cy=eur&payment_method=pm_1OgxRGKuuB1fWySnn88ZCdip&payment_method_types[0]=card&capture_method=manual + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_dAN1whoWuFD2Hx","request_duration_ms":415}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 06 Feb 2024 22:48:27 GMT + Content-Type: + - application/json + Content-Length: + - '1343' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 3f04a97b-1f6f-417b-af9f-f0772c90c7d0 + Original-Request: + - req_3YuTUAWF3ROA3J + Request-Id: + - req_3YuTUAWF3ROA3J + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '260.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OgxRGKuuB1fWySn1AUVj6od", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OgxRGKuuB1fWySn1AUVj6od_secret_ul8K0jIXWMj4DAoTLaMnXSrgM", + "confirmation_method": "automatic", + "created": 1707259706, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": null, + "on_behalf_of": null, + "payment_method": "pm_1OgxRGKuuB1fWySnn88ZCdip", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_confirmation", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Tue, 06 Feb 2024 22:48:27 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRGKuuB1fWySn1AUVj6od/confirm + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_3YuTUAWF3ROA3J","request_duration_ms":463}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 06 Feb 2024 22:48:27 GMT + Content-Type: + - application/json + Content-Length: + - '7578' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents%2F%3Aintent%2Fconfirm; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' + Idempotency-Key: + - 943f0a86-9983-40ab-9643-9275a6caaa86 + Original-Request: + - req_9tiWuS59A9zkeR + Request-Id: + - req_9tiWuS59A9zkeR + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '382.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OgxRGKuuB1fWySn1AUVj6od", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OgxRGKuuB1fWySn1AUVj6od_secret_ul8K0jIXWMj4DAoTLaMnXSrgM", + "confirmation_method": "automatic", + "created": 1707259706, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": { + "type": "use_stripe_sdk", + "use_stripe_sdk": { + "directory_server_encryption": { + "algorithm": "RSA", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIE5DCCA8ygAwIBAgIFRVOQdGYwDQYJKoZIhvcNAQELBQAwWDELMAkGA1UEBhMC\nQ04xMDAuBgNVBAoMJ0NoaW5hIEZpbmFuY2lhbCBDZXJ0aWZpY2F0aW9uIEF1dGhv\ncml0eTEXMBUGA1UEAwwOQ0ZDQSBBQ1MgT0NBMzEwHhcNMjIwNzA4MDc1NTQwWhcN\nMjUwNzA4MDc1NTQwWjCBkjELMAkGA1UEBhMCQ04xFzAVBgNVBAoMDkNGQ0EgQUNT\nIE9DQTMxMRMwEQYDVQQLDApDRkNBIE9DQTMxMRkwFwYDVQQLDBBPcmdhbml6YXRp\nb25hbC0xMTowOAYDVQQDDDFDRkNBQFVuaW9uUGF5IEludGVybmF0aW9uYWxATjkx\nMzEwMDAwMDU0NTU4NzhYNkAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC\nAQEAwuRlVZUwD6W730Te77RvLKf8fqY/bSVmw2OKZQcfLiH1VDoPFRes5Z2WmAhA\n2JnGnnZ+WYRjC4n+CvaKHPGhH4LRVLXBDjNbY7vjN9DWJnji5DTM/DLkCaggt481\n9mJz06oHIKOCgXUSIVVLWsOYjkot1kmU6ln5kQgROJ2WPmcu0Ks3FSdb/FRGINoF\nOw6c/LM+JxFNcLOaq5l9bd3ScRbzf/sZgpY2BZtEK/GCKaBCup/aLCxQiPd2YHg4\nDwGA6ntpFf/OUxaUqRbgsacoWkfYaQb6mJiInvpRulmQNJ7L/EVLhefs4aBSL30j\nPplG58GI48wfnnn7DGFECN1txQIDAQABo4IBeDCCAXQwbAYIKwYBBQUHAQEEYDBe\nMCgGCCsGAQUFBzABhhxodHRwOi8vb2NzcC5jZmNhLmNvbS5jbi9vY3NwMDIGCCsG\nAQUFBzAChiZodHRwOi8vY3JsLmNmY2EuY29tLmNuL29jYTMxL29jYTMxLmNlcjAf\nBgNVHSMEGDAWgBTitAnLzWGhc0p5f/GKgwvdtH6MHTAMBgNVHRMBAf8EAjAAMEgG\nA1UdIARBMD8wPQYIYIEchu8qAQQwMTAvBggrBgEFBQcCARYjaHR0cDovL3d3dy5j\nZmNhLmNvbS5jbi91cy91cy0xNC5odG0wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDov\nL2NybC5jZmNhLmNvbS5jbi9vY2EzMS9SU0EvY3JsMzY0NS5jcmwwDgYDVR0PAQH/\nBAQDAgbAMB0GA1UdDgQWBBRrdk+U/3RQ6UypCMhaDf6I9xfXEDAdBgNVHSUEFjAU\nBggrBgEFBQcDAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBABCH0cZGmphf\nzI9qa3afdIN0poPLP3krYnDkcjWgm18pxrnKtpP00VpyGDmsBv0YJnqpqoT1+x7h\nWFaT2Ks9CUulnAGYIjhIqKMJIgMN+IfiHCZ+XpUk/P941Jod0FxSKhe3uybx+WOR\nVml5umKApFlQzfzqHzs34CO7c+z2EfK7cpGiFY/dj+vXp1rdIYPyZmYzamUsi1oL\n5B0NHvVWm6jFWzU65IvM8RaWyDqsufYaQC/kxvaBwL6aHSsuwhfd4UdDHmegSmXD\n06GRIJk0s6HVSLB1n3yw+emFh7bQiWgskDmIiek653xJpu0LClaypFBJNzHTqCqH\n7x8zY3NIVeM=\n-----END CERTIFICATE-----\n", + "directory_server_id": "A000000333", + "root_certificate_authorities": [ + "-----BEGIN CERTIFICATE-----\nMIIE2TCCAsGgAwIBAgIQNKxHTPjyFWmPZvSg97mGvDANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5Mjcw\nMjExMjNaFw0zNTA5MjIwMjExMjNaMFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMM\nDkNGQ0EgQUNTIE9DQTMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\n7mY3rHQfCJCRB0HVK9taITB8ZEGtOVElUH4ou3kB0dOWbACf5pCI9MSMndqOZAlj\n/djcAfwJ8gtW0j8STzsIDe+uoFnyxXEIwu0wb5JoumYSdFVWssa6Fu8UnoUFLBXR\ny7lbYmxcQlBVAoXjoVZuVldNJz/pV7pvDtFDCmnCyzo1OmH09yrsSz4lSQrNAJOL\nyGD0OmGI/lJX36grEYKteey8mspVcnTFF7/rDXeVXCNvTy774iW70ByalW2xfR3e\nTr7XkXLTU9GE3JsbHxo5kf+jsfuPJM0qZFAEWHstFMDcSdGBy1VCyLWnH8xRPCmd\nM4EuyTfB3U30BI/ts46t1wIDAQABo4GhMIGeMB8GA1UdIwQYMBaAFBHheNM4IPrt\n69YjljCofbmZ21/3MA8GA1UdEwEB/wQFMAMBAf8wOwYDVR0fBDQwMjAwoC6gLIYq\naHR0cDovL2NybC5jZmNhLmNvbS5jbi9hY3NyY2EvUlNBL2NybDEuY3JsMA4GA1Ud\nDwEB/wQEAwIBBjAdBgNVHQ4EFgQU4rQJy81hoXNKeX/xioML3bR+jB0wDQYJKoZI\nhvcNAQELBQADggIBAD+MkwGqVdv4x49yWoZ/CuIIGMRmhs3zvCG9XezkiFQDBw2u\n/bVvkJB2nAg2ECYFbUUU+lDNK6xuooRD0fKDuRT37aH2Ydvwy8B1aus2VJA+FKAt\nyrgX/T103LC3K0CJW7z72op8P5H0lyob8QQfRXuhYvz8K3DENwej4LO9H6lAfZUK\n/QMqeB3fnz+YZCc84quRtY/lbNdlz9Qh5Lf73zq/oWOUIXAzYktmx/cS3KeL9t+c\nQ3EW/qiHaxouNo0ioS6bRby17OW4h+5M0v/WnVddl17EbFySVh0ffcjQfuznjYVr\nwwR1JARC5QSs6cmxF4fHByZftTGqjIiN5ZlD0xHVTx2y1WHGmInUDa562sSMIVCc\nUWminQb4kBLCHBLm4j7mVrNG0GukjMkdmhh+K5YjZkAfET07tgtr13u2/Dgi0BQw\nh5VDZom2CVbzodXSfcQbsFRJEKrmeaAzmuksc6nHCbdxvcgeFLKfo3L5gFjttbLn\ndJswtPmjQCTMheQBSbHN8TpeN+Fpzuf9Y9oV+vOwfnCmhejakoNOuOt1Pl66phTg\nX/EgW+c/iNiIRcNlEY7ujJUEiXeP1W3VQLcvI24mSQB/n4C3NJhik84AHaz4WIPQ\nWZJktegihU6LSsnpop7scR519fmNysRprjdmnmBSrXc5s2E6HF6FdpPVErcE\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIFlzCCA3+gAwIBAgIQQa7zz75EZFRPZPial/I5FzANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5MjMw\nMzI0MDhaFw0zNTA5MjgwMzI0MDhaMFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMM\nC0NGQ0EgQUNTIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2FvC\ndOW7TF1MjdaKZmyk+H98ySeklKrumik09l1j6X3n15ii+K2FI7R9YauQw344sOH9\nwkE+ow8O+gj3L7QwqrZFtORTsufXRZtsWl3P9PpXFSKu2RLS7HULMNk93R1lDuVU\nudwZt12AUZZa1Wxg47bXq415Z6Ws/CuEuKQodsrXpzGiqpPqcLkIRx7sE6y99Afy\nVS5A0e/8LpC5jTGep2ZlskgZxU5nA/rEM42sUBh/nT4lFFXkq7y+mQ1JLSEDRVXO\nzxXQIAEIxsmB5hALMe4TterMHvPMoJUPYsSbF5Zr2npGZI3MEomYqDbbZqT+kbOe\nraUQ/l1IYMXEwviPL5RBY2xbNyZzKlepsC5fHukAgf1PJUhJ/OEjUVz+2ysOyjeL\nT5p+Lk+u3WDmavrQNmLaFLGzG0tl86FVP6RZ+kzjUiZAMu3Cx0FgAmqf72mjMk4V\n7YsfhhZk42zBwTiN1zpnrSBeU7ZfTxsws9GTIta55AM0sqHrCN32vVOoEzy+hWHf\nzJ58aE9/2kK8eiEpFIhIUEYuU6q4LZOGqNNWccMtrC/ZwmblyU8+ZrFaXGKGzBxH\n1K+o6iL9vTYfsC4SsCfKbiMHoujj5ru1fcpRrppQUWPt9Nuxrlo3OwXpH1dAGc8/\nUEDtBPD/ONM57SVpCeHUJLZR7WpCPUG2d+R2AnMCAwEAAaNjMGEwHwYDVR0jBBgw\nFoAUEeF40zgg+u3r1iOWMKh9uZnbX/cwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B\nAf8EBAMCAQYwHQYDVR0OBBYEFBHheNM4IPrt69YjljCofbmZ21/3MA0GCSqGSIb3\nDQEBCwUAA4ICAQDECZu0YlzbcAXr9JWTEbEP0C65XskOYSNBFodAjjqGunUyxhyy\nQc/BUAen0ClEf1OeuWj9YivQXMg2TGg6qr91Pp+bLH51M/rVNAgPIevnqCGFDbF8\nGqlrNJnevZHNilJYXmCDA6eJY7nkzf/ECcMdtMLTxoa+BRgh/x9d9YELU1sIjUVg\n/V9t6KXACv1E4wMrhV30savEgKWqjtt2eJwz1tkN0qXIjah3Ey8zbtrqyI0tV/uR\nQWRGRIK1h4VunWEODOGb3HrQa2D4nraKXumCXWJtuO2g0U0ktxy4+s95zq/y53Ms\nTG+cYtUyDoCwMA0QBAVztVnee4qzTbSfzoiXAu57lQWcPNkFVl8DIPDyImpa0v4c\nUoJLV4wedYFKDNQvt7yaqqbuF15D2MJq7lsEe3yybUGp2GPbwqEuNrS56D8mqYhE\n51QZusdoP/bTYnz9kUI4HKAziLqwmdNyg8g3dQwU3AAx6tsz6ZoncqU0Jhwcx/TG\nQ+3uDTP50De44FfGsTCZXGBLnwuog9cT64TGkB5Upp7DHyeErzHghh4I+Yb1bzSX\nfGgRsAGUHDdi6zZZA4I/Cmmpz4yBNGwLclyvOrD9xR0BfoiTAFk2DxGeebU17pK/\nxFi1ldh2uDvTKMQxh3CWusRG5wBkNjA9jmajHHDY9OEIFhALNbPmAu8D0Q==\n-----END CERTIFICATE-----\n" + ] + }, + "directory_server_name": "unionpay", + "merchant": "acct_1FiqEsKuuB1fWySn", + "one_click_authn": null, + "server_transaction_id": "d2bd3526-7dc1-4ee9-af7c-05df33b2cbc0", + "three_d_secure_2_source": "payatt_3OgxRGKuuB1fWySn1nDS5W8J", + "three_ds_method_url": "", + "three_ds_optimizations": "kf", + "type": "stripe_3ds2_fingerprint" + } + }, + "on_behalf_of": null, + "payment_method": "pm_1OgxRGKuuB1fWySnn88ZCdip", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_action", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Tue, 06 Feb 2024 22:48:27 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRGKuuB1fWySn1AUVj6od + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_9tiWuS59A9zkeR","request_duration_ms":599}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 06 Feb 2024 22:48:27 GMT + Content-Type: + - application/json + Content-Length: + - '7578' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents%2F%3Aintent; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' + Request-Id: + - req_Z458bzodULesLW + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '76.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OgxRGKuuB1fWySn1AUVj6od", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OgxRGKuuB1fWySn1AUVj6od_secret_ul8K0jIXWMj4DAoTLaMnXSrgM", + "confirmation_method": "automatic", + "created": 1707259706, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": { + "type": "use_stripe_sdk", + "use_stripe_sdk": { + "directory_server_encryption": { + "algorithm": "RSA", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIE5DCCA8ygAwIBAgIFRVOQdGYwDQYJKoZIhvcNAQELBQAwWDELMAkGA1UEBhMC\nQ04xMDAuBgNVBAoMJ0NoaW5hIEZpbmFuY2lhbCBDZXJ0aWZpY2F0aW9uIEF1dGhv\ncml0eTEXMBUGA1UEAwwOQ0ZDQSBBQ1MgT0NBMzEwHhcNMjIwNzA4MDc1NTQwWhcN\nMjUwNzA4MDc1NTQwWjCBkjELMAkGA1UEBhMCQ04xFzAVBgNVBAoMDkNGQ0EgQUNT\nIE9DQTMxMRMwEQYDVQQLDApDRkNBIE9DQTMxMRkwFwYDVQQLDBBPcmdhbml6YXRp\nb25hbC0xMTowOAYDVQQDDDFDRkNBQFVuaW9uUGF5IEludGVybmF0aW9uYWxATjkx\nMzEwMDAwMDU0NTU4NzhYNkAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC\nAQEAwuRlVZUwD6W730Te77RvLKf8fqY/bSVmw2OKZQcfLiH1VDoPFRes5Z2WmAhA\n2JnGnnZ+WYRjC4n+CvaKHPGhH4LRVLXBDjNbY7vjN9DWJnji5DTM/DLkCaggt481\n9mJz06oHIKOCgXUSIVVLWsOYjkot1kmU6ln5kQgROJ2WPmcu0Ks3FSdb/FRGINoF\nOw6c/LM+JxFNcLOaq5l9bd3ScRbzf/sZgpY2BZtEK/GCKaBCup/aLCxQiPd2YHg4\nDwGA6ntpFf/OUxaUqRbgsacoWkfYaQb6mJiInvpRulmQNJ7L/EVLhefs4aBSL30j\nPplG58GI48wfnnn7DGFECN1txQIDAQABo4IBeDCCAXQwbAYIKwYBBQUHAQEEYDBe\nMCgGCCsGAQUFBzABhhxodHRwOi8vb2NzcC5jZmNhLmNvbS5jbi9vY3NwMDIGCCsG\nAQUFBzAChiZodHRwOi8vY3JsLmNmY2EuY29tLmNuL29jYTMxL29jYTMxLmNlcjAf\nBgNVHSMEGDAWgBTitAnLzWGhc0p5f/GKgwvdtH6MHTAMBgNVHRMBAf8EAjAAMEgG\nA1UdIARBMD8wPQYIYIEchu8qAQQwMTAvBggrBgEFBQcCARYjaHR0cDovL3d3dy5j\nZmNhLmNvbS5jbi91cy91cy0xNC5odG0wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDov\nL2NybC5jZmNhLmNvbS5jbi9vY2EzMS9SU0EvY3JsMzY0NS5jcmwwDgYDVR0PAQH/\nBAQDAgbAMB0GA1UdDgQWBBRrdk+U/3RQ6UypCMhaDf6I9xfXEDAdBgNVHSUEFjAU\nBggrBgEFBQcDAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBABCH0cZGmphf\nzI9qa3afdIN0poPLP3krYnDkcjWgm18pxrnKtpP00VpyGDmsBv0YJnqpqoT1+x7h\nWFaT2Ks9CUulnAGYIjhIqKMJIgMN+IfiHCZ+XpUk/P941Jod0FxSKhe3uybx+WOR\nVml5umKApFlQzfzqHzs34CO7c+z2EfK7cpGiFY/dj+vXp1rdIYPyZmYzamUsi1oL\n5B0NHvVWm6jFWzU65IvM8RaWyDqsufYaQC/kxvaBwL6aHSsuwhfd4UdDHmegSmXD\n06GRIJk0s6HVSLB1n3yw+emFh7bQiWgskDmIiek653xJpu0LClaypFBJNzHTqCqH\n7x8zY3NIVeM=\n-----END CERTIFICATE-----\n", + "directory_server_id": "A000000333", + "root_certificate_authorities": [ + "-----BEGIN CERTIFICATE-----\nMIIE2TCCAsGgAwIBAgIQNKxHTPjyFWmPZvSg97mGvDANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5Mjcw\nMjExMjNaFw0zNTA5MjIwMjExMjNaMFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMM\nDkNGQ0EgQUNTIE9DQTMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\n7mY3rHQfCJCRB0HVK9taITB8ZEGtOVElUH4ou3kB0dOWbACf5pCI9MSMndqOZAlj\n/djcAfwJ8gtW0j8STzsIDe+uoFnyxXEIwu0wb5JoumYSdFVWssa6Fu8UnoUFLBXR\ny7lbYmxcQlBVAoXjoVZuVldNJz/pV7pvDtFDCmnCyzo1OmH09yrsSz4lSQrNAJOL\nyGD0OmGI/lJX36grEYKteey8mspVcnTFF7/rDXeVXCNvTy774iW70ByalW2xfR3e\nTr7XkXLTU9GE3JsbHxo5kf+jsfuPJM0qZFAEWHstFMDcSdGBy1VCyLWnH8xRPCmd\nM4EuyTfB3U30BI/ts46t1wIDAQABo4GhMIGeMB8GA1UdIwQYMBaAFBHheNM4IPrt\n69YjljCofbmZ21/3MA8GA1UdEwEB/wQFMAMBAf8wOwYDVR0fBDQwMjAwoC6gLIYq\naHR0cDovL2NybC5jZmNhLmNvbS5jbi9hY3NyY2EvUlNBL2NybDEuY3JsMA4GA1Ud\nDwEB/wQEAwIBBjAdBgNVHQ4EFgQU4rQJy81hoXNKeX/xioML3bR+jB0wDQYJKoZI\nhvcNAQELBQADggIBAD+MkwGqVdv4x49yWoZ/CuIIGMRmhs3zvCG9XezkiFQDBw2u\n/bVvkJB2nAg2ECYFbUUU+lDNK6xuooRD0fKDuRT37aH2Ydvwy8B1aus2VJA+FKAt\nyrgX/T103LC3K0CJW7z72op8P5H0lyob8QQfRXuhYvz8K3DENwej4LO9H6lAfZUK\n/QMqeB3fnz+YZCc84quRtY/lbNdlz9Qh5Lf73zq/oWOUIXAzYktmx/cS3KeL9t+c\nQ3EW/qiHaxouNo0ioS6bRby17OW4h+5M0v/WnVddl17EbFySVh0ffcjQfuznjYVr\nwwR1JARC5QSs6cmxF4fHByZftTGqjIiN5ZlD0xHVTx2y1WHGmInUDa562sSMIVCc\nUWminQb4kBLCHBLm4j7mVrNG0GukjMkdmhh+K5YjZkAfET07tgtr13u2/Dgi0BQw\nh5VDZom2CVbzodXSfcQbsFRJEKrmeaAzmuksc6nHCbdxvcgeFLKfo3L5gFjttbLn\ndJswtPmjQCTMheQBSbHN8TpeN+Fpzuf9Y9oV+vOwfnCmhejakoNOuOt1Pl66phTg\nX/EgW+c/iNiIRcNlEY7ujJUEiXeP1W3VQLcvI24mSQB/n4C3NJhik84AHaz4WIPQ\nWZJktegihU6LSsnpop7scR519fmNysRprjdmnmBSrXc5s2E6HF6FdpPVErcE\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIFlzCCA3+gAwIBAgIQQa7zz75EZFRPZPial/I5FzANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5MjMw\nMzI0MDhaFw0zNTA5MjgwMzI0MDhaMFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMM\nC0NGQ0EgQUNTIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2FvC\ndOW7TF1MjdaKZmyk+H98ySeklKrumik09l1j6X3n15ii+K2FI7R9YauQw344sOH9\nwkE+ow8O+gj3L7QwqrZFtORTsufXRZtsWl3P9PpXFSKu2RLS7HULMNk93R1lDuVU\nudwZt12AUZZa1Wxg47bXq415Z6Ws/CuEuKQodsrXpzGiqpPqcLkIRx7sE6y99Afy\nVS5A0e/8LpC5jTGep2ZlskgZxU5nA/rEM42sUBh/nT4lFFXkq7y+mQ1JLSEDRVXO\nzxXQIAEIxsmB5hALMe4TterMHvPMoJUPYsSbF5Zr2npGZI3MEomYqDbbZqT+kbOe\nraUQ/l1IYMXEwviPL5RBY2xbNyZzKlepsC5fHukAgf1PJUhJ/OEjUVz+2ysOyjeL\nT5p+Lk+u3WDmavrQNmLaFLGzG0tl86FVP6RZ+kzjUiZAMu3Cx0FgAmqf72mjMk4V\n7YsfhhZk42zBwTiN1zpnrSBeU7ZfTxsws9GTIta55AM0sqHrCN32vVOoEzy+hWHf\nzJ58aE9/2kK8eiEpFIhIUEYuU6q4LZOGqNNWccMtrC/ZwmblyU8+ZrFaXGKGzBxH\n1K+o6iL9vTYfsC4SsCfKbiMHoujj5ru1fcpRrppQUWPt9Nuxrlo3OwXpH1dAGc8/\nUEDtBPD/ONM57SVpCeHUJLZR7WpCPUG2d+R2AnMCAwEAAaNjMGEwHwYDVR0jBBgw\nFoAUEeF40zgg+u3r1iOWMKh9uZnbX/cwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B\nAf8EBAMCAQYwHQYDVR0OBBYEFBHheNM4IPrt69YjljCofbmZ21/3MA0GCSqGSIb3\nDQEBCwUAA4ICAQDECZu0YlzbcAXr9JWTEbEP0C65XskOYSNBFodAjjqGunUyxhyy\nQc/BUAen0ClEf1OeuWj9YivQXMg2TGg6qr91Pp+bLH51M/rVNAgPIevnqCGFDbF8\nGqlrNJnevZHNilJYXmCDA6eJY7nkzf/ECcMdtMLTxoa+BRgh/x9d9YELU1sIjUVg\n/V9t6KXACv1E4wMrhV30savEgKWqjtt2eJwz1tkN0qXIjah3Ey8zbtrqyI0tV/uR\nQWRGRIK1h4VunWEODOGb3HrQa2D4nraKXumCXWJtuO2g0U0ktxy4+s95zq/y53Ms\nTG+cYtUyDoCwMA0QBAVztVnee4qzTbSfzoiXAu57lQWcPNkFVl8DIPDyImpa0v4c\nUoJLV4wedYFKDNQvt7yaqqbuF15D2MJq7lsEe3yybUGp2GPbwqEuNrS56D8mqYhE\n51QZusdoP/bTYnz9kUI4HKAziLqwmdNyg8g3dQwU3AAx6tsz6ZoncqU0Jhwcx/TG\nQ+3uDTP50De44FfGsTCZXGBLnwuog9cT64TGkB5Upp7DHyeErzHghh4I+Yb1bzSX\nfGgRsAGUHDdi6zZZA4I/Cmmpz4yBNGwLclyvOrD9xR0BfoiTAFk2DxGeebU17pK/\nxFi1ldh2uDvTKMQxh3CWusRG5wBkNjA9jmajHHDY9OEIFhALNbPmAu8D0Q==\n-----END CERTIFICATE-----\n" + ] + }, + "directory_server_name": "unionpay", + "merchant": "acct_1FiqEsKuuB1fWySn", + "one_click_authn": null, + "server_transaction_id": "d2bd3526-7dc1-4ee9-af7c-05df33b2cbc0", + "three_d_secure_2_source": "payatt_3OgxRGKuuB1fWySn1nDS5W8J", + "three_ds_method_url": "", + "three_ds_optimizations": "kf", + "type": "stripe_3ds2_fingerprint" + } + }, + "on_behalf_of": null, + "payment_method": "pm_1OgxRGKuuB1fWySnn88ZCdip", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_action", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Tue, 06 Feb 2024 22:48:27 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/returns_payment_intent_id_and_does_not_raise.yml new file mode 100644 index 0000000000..3b620bc201 --- /dev/null +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_UnionPay_debit_/returns_payment_intent_id_and_does_not_raise.yml @@ -0,0 +1,415 @@ +--- +http_interactions: +- request: + method: post + uri: https://api.stripe.com/v1/payment_methods + body: + encoding: UTF-8 + string: type=card&card[number]=6200000000000047&card[exp_month]=12&card[exp_year]=2025&card[cvc]=314 + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_tgGFTMdRDWJ7aS","request_duration_ms":271}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 06 Feb 2024 22:48:25 GMT + Content-Type: + - application/json + Content-Length: + - '938' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_methods; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - 6b75235c-d633-433c-9fb0-980610710101 + Original-Request: + - req_Mf8EP8rBIXyJLk + Request-Id: + - req_Mf8EP8rBIXyJLk + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '283.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pm_1OgxREKuuB1fWySniWxP5gLc", + "object": "payment_method", + "billing_details": { + "address": { + "city": null, + "country": null, + "line1": null, + "line2": null, + "postal_code": null, + "state": null + }, + "email": null, + "name": null, + "phone": null + }, + "card": { + "brand": "unionpay", + "checks": { + "address_line1_check": null, + "address_postal_code_check": null, + "cvc_check": "unchecked" + }, + "country": "CN", + "exp_month": 12, + "exp_year": 2025, + "fingerprint": "Bk3yMwVTBMfdXTtb", + "funding": "debit", + "generated_from": null, + "last4": "0047", + "networks": { + "available": [ + "unionpay" + ], + "preferred": null + }, + "three_d_secure_usage": { + "supported": true + }, + "wallet": null + }, + "created": 1707259704, + "customer": null, + "livemode": false, + "metadata": {}, + "type": "card" + } + recorded_at: Tue, 06 Feb 2024 22:48:24 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents + body: + encoding: UTF-8 + string: amount=100¤cy=eur&payment_method=pm_1OgxREKuuB1fWySniWxP5gLc&payment_method_types[0]=card&capture_method=manual + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_Mf8EP8rBIXyJLk","request_duration_ms":486}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 06 Feb 2024 22:48:25 GMT + Content-Type: + - application/json + Content-Length: + - '1343' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents; block-all-mixed-content; + default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; + img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' + Idempotency-Key: + - df4ac2d0-3ab9-4220-ae80-2417e848c342 + Original-Request: + - req_P4X5kSRZYHnR69 + Request-Id: + - req_P4X5kSRZYHnR69 + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '194.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OgxRFKuuB1fWySn0AhyVUgN", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OgxRFKuuB1fWySn0AhyVUgN_secret_VxdpXbRqQGKpAtLDwmwyG7kcQ", + "confirmation_method": "automatic", + "created": 1707259705, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": null, + "on_behalf_of": null, + "payment_method": "pm_1OgxREKuuB1fWySniWxP5gLc", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_confirmation", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Tue, 06 Feb 2024 22:48:25 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxRFKuuB1fWySn0AhyVUgN/confirm + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - Stripe/v1 RubyBindings/10.6.0 + Authorization: + - Bearer + Content-Type: + - application/x-www-form-urlencoded + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_P4X5kSRZYHnR69","request_duration_ms":402}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Tue, 06 Feb 2024 22:48:26 GMT + Content-Type: + - application/json + Content-Length: + - '7578' + Connection: + - keep-alive + Access-Control-Allow-Credentials: + - 'true' + Access-Control-Allow-Methods: + - GET,HEAD,PUT,PATCH,POST,DELETE + Access-Control-Allow-Origin: + - "*" + Access-Control-Expose-Headers: + - Request-Id, Stripe-Manage-Version, Stripe-Should-Retry, X-Stripe-External-Auth-Required, + X-Stripe-Privileged-Session-Required + Access-Control-Max-Age: + - '300' + Cache-Control: + - no-cache, no-store + Content-Security-Policy: + - report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents%2F%3Aintent%2Fconfirm; + block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action + 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; + style-src 'self' + Idempotency-Key: + - 902eb714-23ad-40be-bd71-e68d40fadc2b + Original-Request: + - req_8VYsDwdNHatS4a + Request-Id: + - req_8VYsDwdNHatS4a + Stripe-Should-Retry: + - 'false' + Stripe-Version: + - '2023-10-16' + Vary: + - Origin + X-Stripe-Non-Api-Overhead-Duration-Ms: + - '432.0' + X-Stripe-Routing-Context-Priority-Tier: + - api-testmode + Strict-Transport-Security: + - max-age=63072000; includeSubDomains; preload + body: + encoding: UTF-8 + string: |- + { + "id": "pi_3OgxRFKuuB1fWySn0AhyVUgN", + "object": "payment_intent", + "amount": 100, + "amount_capturable": 0, + "amount_details": { + "tip": {} + }, + "amount_received": 0, + "application": null, + "application_fee_amount": null, + "automatic_payment_methods": null, + "canceled_at": null, + "cancellation_reason": null, + "capture_method": "manual", + "client_secret": "pi_3OgxRFKuuB1fWySn0AhyVUgN_secret_VxdpXbRqQGKpAtLDwmwyG7kcQ", + "confirmation_method": "automatic", + "created": 1707259705, + "currency": "eur", + "customer": null, + "description": null, + "invoice": null, + "last_payment_error": null, + "latest_charge": null, + "livemode": false, + "metadata": {}, + "next_action": { + "type": "use_stripe_sdk", + "use_stripe_sdk": { + "directory_server_encryption": { + "algorithm": "RSA", + "certificate": "-----BEGIN CERTIFICATE-----\nMIIE5DCCA8ygAwIBAgIFRVOQdGYwDQYJKoZIhvcNAQELBQAwWDELMAkGA1UEBhMC\nQ04xMDAuBgNVBAoMJ0NoaW5hIEZpbmFuY2lhbCBDZXJ0aWZpY2F0aW9uIEF1dGhv\ncml0eTEXMBUGA1UEAwwOQ0ZDQSBBQ1MgT0NBMzEwHhcNMjIwNzA4MDc1NTQwWhcN\nMjUwNzA4MDc1NTQwWjCBkjELMAkGA1UEBhMCQ04xFzAVBgNVBAoMDkNGQ0EgQUNT\nIE9DQTMxMRMwEQYDVQQLDApDRkNBIE9DQTMxMRkwFwYDVQQLDBBPcmdhbml6YXRp\nb25hbC0xMTowOAYDVQQDDDFDRkNBQFVuaW9uUGF5IEludGVybmF0aW9uYWxATjkx\nMzEwMDAwMDU0NTU4NzhYNkAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC\nAQEAwuRlVZUwD6W730Te77RvLKf8fqY/bSVmw2OKZQcfLiH1VDoPFRes5Z2WmAhA\n2JnGnnZ+WYRjC4n+CvaKHPGhH4LRVLXBDjNbY7vjN9DWJnji5DTM/DLkCaggt481\n9mJz06oHIKOCgXUSIVVLWsOYjkot1kmU6ln5kQgROJ2WPmcu0Ks3FSdb/FRGINoF\nOw6c/LM+JxFNcLOaq5l9bd3ScRbzf/sZgpY2BZtEK/GCKaBCup/aLCxQiPd2YHg4\nDwGA6ntpFf/OUxaUqRbgsacoWkfYaQb6mJiInvpRulmQNJ7L/EVLhefs4aBSL30j\nPplG58GI48wfnnn7DGFECN1txQIDAQABo4IBeDCCAXQwbAYIKwYBBQUHAQEEYDBe\nMCgGCCsGAQUFBzABhhxodHRwOi8vb2NzcC5jZmNhLmNvbS5jbi9vY3NwMDIGCCsG\nAQUFBzAChiZodHRwOi8vY3JsLmNmY2EuY29tLmNuL29jYTMxL29jYTMxLmNlcjAf\nBgNVHSMEGDAWgBTitAnLzWGhc0p5f/GKgwvdtH6MHTAMBgNVHRMBAf8EAjAAMEgG\nA1UdIARBMD8wPQYIYIEchu8qAQQwMTAvBggrBgEFBQcCARYjaHR0cDovL3d3dy5j\nZmNhLmNvbS5jbi91cy91cy0xNC5odG0wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDov\nL2NybC5jZmNhLmNvbS5jbi9vY2EzMS9SU0EvY3JsMzY0NS5jcmwwDgYDVR0PAQH/\nBAQDAgbAMB0GA1UdDgQWBBRrdk+U/3RQ6UypCMhaDf6I9xfXEDAdBgNVHSUEFjAU\nBggrBgEFBQcDAgYIKwYBBQUHAwQwDQYJKoZIhvcNAQELBQADggEBABCH0cZGmphf\nzI9qa3afdIN0poPLP3krYnDkcjWgm18pxrnKtpP00VpyGDmsBv0YJnqpqoT1+x7h\nWFaT2Ks9CUulnAGYIjhIqKMJIgMN+IfiHCZ+XpUk/P941Jod0FxSKhe3uybx+WOR\nVml5umKApFlQzfzqHzs34CO7c+z2EfK7cpGiFY/dj+vXp1rdIYPyZmYzamUsi1oL\n5B0NHvVWm6jFWzU65IvM8RaWyDqsufYaQC/kxvaBwL6aHSsuwhfd4UdDHmegSmXD\n06GRIJk0s6HVSLB1n3yw+emFh7bQiWgskDmIiek653xJpu0LClaypFBJNzHTqCqH\n7x8zY3NIVeM=\n-----END CERTIFICATE-----\n", + "directory_server_id": "A000000333", + "root_certificate_authorities": [ + "-----BEGIN CERTIFICATE-----\nMIIE2TCCAsGgAwIBAgIQNKxHTPjyFWmPZvSg97mGvDANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5Mjcw\nMjExMjNaFw0zNTA5MjIwMjExMjNaMFgxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFzAVBgNVBAMM\nDkNGQ0EgQUNTIE9DQTMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\n7mY3rHQfCJCRB0HVK9taITB8ZEGtOVElUH4ou3kB0dOWbACf5pCI9MSMndqOZAlj\n/djcAfwJ8gtW0j8STzsIDe+uoFnyxXEIwu0wb5JoumYSdFVWssa6Fu8UnoUFLBXR\ny7lbYmxcQlBVAoXjoVZuVldNJz/pV7pvDtFDCmnCyzo1OmH09yrsSz4lSQrNAJOL\nyGD0OmGI/lJX36grEYKteey8mspVcnTFF7/rDXeVXCNvTy774iW70ByalW2xfR3e\nTr7XkXLTU9GE3JsbHxo5kf+jsfuPJM0qZFAEWHstFMDcSdGBy1VCyLWnH8xRPCmd\nM4EuyTfB3U30BI/ts46t1wIDAQABo4GhMIGeMB8GA1UdIwQYMBaAFBHheNM4IPrt\n69YjljCofbmZ21/3MA8GA1UdEwEB/wQFMAMBAf8wOwYDVR0fBDQwMjAwoC6gLIYq\naHR0cDovL2NybC5jZmNhLmNvbS5jbi9hY3NyY2EvUlNBL2NybDEuY3JsMA4GA1Ud\nDwEB/wQEAwIBBjAdBgNVHQ4EFgQU4rQJy81hoXNKeX/xioML3bR+jB0wDQYJKoZI\nhvcNAQELBQADggIBAD+MkwGqVdv4x49yWoZ/CuIIGMRmhs3zvCG9XezkiFQDBw2u\n/bVvkJB2nAg2ECYFbUUU+lDNK6xuooRD0fKDuRT37aH2Ydvwy8B1aus2VJA+FKAt\nyrgX/T103LC3K0CJW7z72op8P5H0lyob8QQfRXuhYvz8K3DENwej4LO9H6lAfZUK\n/QMqeB3fnz+YZCc84quRtY/lbNdlz9Qh5Lf73zq/oWOUIXAzYktmx/cS3KeL9t+c\nQ3EW/qiHaxouNo0ioS6bRby17OW4h+5M0v/WnVddl17EbFySVh0ffcjQfuznjYVr\nwwR1JARC5QSs6cmxF4fHByZftTGqjIiN5ZlD0xHVTx2y1WHGmInUDa562sSMIVCc\nUWminQb4kBLCHBLm4j7mVrNG0GukjMkdmhh+K5YjZkAfET07tgtr13u2/Dgi0BQw\nh5VDZom2CVbzodXSfcQbsFRJEKrmeaAzmuksc6nHCbdxvcgeFLKfo3L5gFjttbLn\ndJswtPmjQCTMheQBSbHN8TpeN+Fpzuf9Y9oV+vOwfnCmhejakoNOuOt1Pl66phTg\nX/EgW+c/iNiIRcNlEY7ujJUEiXeP1W3VQLcvI24mSQB/n4C3NJhik84AHaz4WIPQ\nWZJktegihU6LSsnpop7scR519fmNysRprjdmnmBSrXc5s2E6HF6FdpPVErcE\n-----END CERTIFICATE-----\n", + "-----BEGIN CERTIFICATE-----\nMIIFlzCCA3+gAwIBAgIQQa7zz75EZFRPZPial/I5FzANBgkqhkiG9w0BAQsFADBV\nMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmlj\nYXRpb24gQXV0aG9yaXR5MRQwEgYDVQQDDAtDRkNBIEFDUyBDQTAeFw0xNTA5MjMw\nMzI0MDhaFw0zNTA5MjgwMzI0MDhaMFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdD\naGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMM\nC0NGQ0EgQUNTIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2FvC\ndOW7TF1MjdaKZmyk+H98ySeklKrumik09l1j6X3n15ii+K2FI7R9YauQw344sOH9\nwkE+ow8O+gj3L7QwqrZFtORTsufXRZtsWl3P9PpXFSKu2RLS7HULMNk93R1lDuVU\nudwZt12AUZZa1Wxg47bXq415Z6Ws/CuEuKQodsrXpzGiqpPqcLkIRx7sE6y99Afy\nVS5A0e/8LpC5jTGep2ZlskgZxU5nA/rEM42sUBh/nT4lFFXkq7y+mQ1JLSEDRVXO\nzxXQIAEIxsmB5hALMe4TterMHvPMoJUPYsSbF5Zr2npGZI3MEomYqDbbZqT+kbOe\nraUQ/l1IYMXEwviPL5RBY2xbNyZzKlepsC5fHukAgf1PJUhJ/OEjUVz+2ysOyjeL\nT5p+Lk+u3WDmavrQNmLaFLGzG0tl86FVP6RZ+kzjUiZAMu3Cx0FgAmqf72mjMk4V\n7YsfhhZk42zBwTiN1zpnrSBeU7ZfTxsws9GTIta55AM0sqHrCN32vVOoEzy+hWHf\nzJ58aE9/2kK8eiEpFIhIUEYuU6q4LZOGqNNWccMtrC/ZwmblyU8+ZrFaXGKGzBxH\n1K+o6iL9vTYfsC4SsCfKbiMHoujj5ru1fcpRrppQUWPt9Nuxrlo3OwXpH1dAGc8/\nUEDtBPD/ONM57SVpCeHUJLZR7WpCPUG2d+R2AnMCAwEAAaNjMGEwHwYDVR0jBBgw\nFoAUEeF40zgg+u3r1iOWMKh9uZnbX/cwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B\nAf8EBAMCAQYwHQYDVR0OBBYEFBHheNM4IPrt69YjljCofbmZ21/3MA0GCSqGSIb3\nDQEBCwUAA4ICAQDECZu0YlzbcAXr9JWTEbEP0C65XskOYSNBFodAjjqGunUyxhyy\nQc/BUAen0ClEf1OeuWj9YivQXMg2TGg6qr91Pp+bLH51M/rVNAgPIevnqCGFDbF8\nGqlrNJnevZHNilJYXmCDA6eJY7nkzf/ECcMdtMLTxoa+BRgh/x9d9YELU1sIjUVg\n/V9t6KXACv1E4wMrhV30savEgKWqjtt2eJwz1tkN0qXIjah3Ey8zbtrqyI0tV/uR\nQWRGRIK1h4VunWEODOGb3HrQa2D4nraKXumCXWJtuO2g0U0ktxy4+s95zq/y53Ms\nTG+cYtUyDoCwMA0QBAVztVnee4qzTbSfzoiXAu57lQWcPNkFVl8DIPDyImpa0v4c\nUoJLV4wedYFKDNQvt7yaqqbuF15D2MJq7lsEe3yybUGp2GPbwqEuNrS56D8mqYhE\n51QZusdoP/bTYnz9kUI4HKAziLqwmdNyg8g3dQwU3AAx6tsz6ZoncqU0Jhwcx/TG\nQ+3uDTP50De44FfGsTCZXGBLnwuog9cT64TGkB5Upp7DHyeErzHghh4I+Yb1bzSX\nfGgRsAGUHDdi6zZZA4I/Cmmpz4yBNGwLclyvOrD9xR0BfoiTAFk2DxGeebU17pK/\nxFi1ldh2uDvTKMQxh3CWusRG5wBkNjA9jmajHHDY9OEIFhALNbPmAu8D0Q==\n-----END CERTIFICATE-----\n" + ] + }, + "directory_server_name": "unionpay", + "merchant": "acct_1FiqEsKuuB1fWySn", + "one_click_authn": null, + "server_transaction_id": "31668d27-33b0-4687-8227-3f349358d84b", + "three_d_secure_2_source": "payatt_3OgxRFKuuB1fWySn03MdD5C2", + "three_ds_method_url": "", + "three_ds_optimizations": "kf", + "type": "stripe_3ds2_fingerprint" + } + }, + "on_behalf_of": null, + "payment_method": "pm_1OgxREKuuB1fWySniWxP5gLc", + "payment_method_configuration_details": null, + "payment_method_options": { + "card": { + "installments": null, + "mandate_options": null, + "network": null, + "request_three_d_secure": "automatic" + } + }, + "payment_method_types": [ + "card" + ], + "processing": null, + "receipt_email": null, + "review": null, + "setup_future_usage": null, + "shipping": null, + "source": null, + "statement_descriptor": null, + "statement_descriptor_suffix": null, + "status": "requires_action", + "transfer_data": null, + "transfer_group": null + } + recorded_at: Tue, 06 Feb 2024 22:48:26 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa/captures_the_payment.yml index 86407b056d..e2a7b3c943 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_geQERGTewZE2m2","request_duration_ms":1041}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_yxzndSZBoXqxIa","request_duration_ms":940}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:07 GMT +======= + - Tue, 06 Feb 2024 22:47:12 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 0c327b00-1e6c-49e5-ac16-297b984f8cdf Original-Request: - req_8NVDvPUHStxFcy Request-Id: - req_8NVDvPUHStxFcy +======= + - c62de15e-a43d-4cbf-b094-4e9248cc2c07 + Original-Request: + - req_4reCmvAMRBKORN + Request-Id: + - req_4reCmvAMRBKORN +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '267.0' +======= + - '227.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDylKuuB1fWySn0nFspK4S", +======= + "id": "pm_1OgxQ4KuuB1fWySnQ7bLc47c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323287, +======= + "created": 1707259632, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:07 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:12 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDylKuuB1fWySn0nFspK4S&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQ4KuuB1fWySnQ7bLc47c&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_8NVDvPUHStxFcy","request_duration_ms":551}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_4reCmvAMRBKORN","request_duration_ms":422}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:07 GMT +======= + - Tue, 06 Feb 2024 22:47:12 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 57dcb46c-8bf5-4361-8261-9367878ecfb0 Original-Request: - req_LQZb7IJiap2GL7 Request-Id: - req_LQZb7IJiap2GL7 +======= + - 1fa60720-c0a6-4cf0-9c00-5f8e52be5fa6 + Original-Request: + - req_Q9NbpnHzXjMsla + Request-Id: + - req_Q9NbpnHzXjMsla +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '185.0' +======= + - '181.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDylKuuB1fWySn2TKn691w", +======= + "id": "pi_3OgxQ4KuuB1fWySn186oGFvu", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDylKuuB1fWySn2TKn691w_secret_MyTyjvLCkEvDLWT8z4LYZdxGc", "confirmation_method": "automatic", "created": 1707323287, +======= + "client_secret": "pi_3OgxQ4KuuB1fWySn186oGFvu_secret_IU25oalK6quZZxAfuxAZ3t9HD", + "confirmation_method": "automatic", + "created": 1707259632, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDylKuuB1fWySn0nFspK4S", +======= + "payment_method": "pm_1OgxQ4KuuB1fWySnQ7bLc47c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:07 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDylKuuB1fWySn2TKn691w/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:12 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ4KuuB1fWySn186oGFvu/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_LQZb7IJiap2GL7","request_duration_ms":408}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_Q9NbpnHzXjMsla","request_duration_ms":387}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:08 GMT +======= + - Tue, 06 Feb 2024 22:47:13 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 16b77c52-e686-4340-a455-7785894eda8c Original-Request: - req_R4MEM5lAkQfQ6e Request-Id: - req_R4MEM5lAkQfQ6e +======= + - 16d6c19b-3afd-4570-b777-0e1b796a1819 + Original-Request: + - req_fMzhGAshLSWFa1 + Request-Id: + - req_fMzhGAshLSWFa1 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '796.0' +======= + - '746.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDylKuuB1fWySn2TKn691w", +======= + "id": "pi_3OgxQ4KuuB1fWySn186oGFvu", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDylKuuB1fWySn2TKn691w_secret_MyTyjvLCkEvDLWT8z4LYZdxGc", "confirmation_method": "automatic", "created": 1707323287, +======= + "client_secret": "pi_3OgxQ4KuuB1fWySn186oGFvu_secret_IU25oalK6quZZxAfuxAZ3t9HD", + "confirmation_method": "automatic", + "created": 1707259632, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDylKuuB1fWySn21Bl2mfQ", +======= + "latest_charge": "ch_3OgxQ4KuuB1fWySn1YX0TVgi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDylKuuB1fWySn0nFspK4S", +======= + "payment_method": "pm_1OgxQ4KuuB1fWySnQ7bLc47c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:08 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDylKuuB1fWySn2TKn691w +======= + recorded_at: Tue, 06 Feb 2024 22:47:13 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ4KuuB1fWySn186oGFvu +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_R4MEM5lAkQfQ6e","request_duration_ms":1040}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_fMzhGAshLSWFa1","request_duration_ms":948}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:09 GMT +======= + - Tue, 06 Feb 2024 22:47:13 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_xzcIuPDOCBudvw +======= + - req_0NPxpqpOLlNXhm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '62.0' +======= + - '61.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDylKuuB1fWySn2TKn691w", +======= + "id": "pi_3OgxQ4KuuB1fWySn186oGFvu", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDylKuuB1fWySn2TKn691w_secret_MyTyjvLCkEvDLWT8z4LYZdxGc", "confirmation_method": "automatic", "created": 1707323287, +======= + "client_secret": "pi_3OgxQ4KuuB1fWySn186oGFvu_secret_IU25oalK6quZZxAfuxAZ3t9HD", + "confirmation_method": "automatic", + "created": 1707259632, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDylKuuB1fWySn21Bl2mfQ", +======= + "latest_charge": "ch_3OgxQ4KuuB1fWySn1YX0TVgi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDylKuuB1fWySn0nFspK4S", +======= + "payment_method": "pm_1OgxQ4KuuB1fWySnQ7bLc47c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:09 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDylKuuB1fWySn2TKn691w/capture +======= + recorded_at: Tue, 06 Feb 2024 22:47:13 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ4KuuB1fWySn186oGFvu/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_xzcIuPDOCBudvw","request_duration_ms":535}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_0NPxpqpOLlNXhm","request_duration_ms":283}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:10 GMT +======= + - Tue, 06 Feb 2024 22:47:14 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 45c47f19-0b4c-4dcc-b5f1-f84afd47fbb5 Original-Request: - req_sV8GY7giFod8d0 Request-Id: - req_sV8GY7giFod8d0 +======= + - cf69e7ba-6445-43dd-be00-83e22a16bf58 + Original-Request: + - req_3MWRHkpJDJrnkl + Request-Id: + - req_3MWRHkpJDJrnkl +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '845.0' +======= + - '755.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDylKuuB1fWySn2TKn691w", +======= + "id": "pi_3OgxQ4KuuB1fWySn186oGFvu", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDylKuuB1fWySn2TKn691w_secret_MyTyjvLCkEvDLWT8z4LYZdxGc", "confirmation_method": "automatic", "created": 1707323287, +======= + "client_secret": "pi_3OgxQ4KuuB1fWySn186oGFvu_secret_IU25oalK6quZZxAfuxAZ3t9HD", + "confirmation_method": "automatic", + "created": 1707259632, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDylKuuB1fWySn21Bl2mfQ", +======= + "latest_charge": "ch_3OgxQ4KuuB1fWySn1YX0TVgi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDylKuuB1fWySn0nFspK4S", +======= + "payment_method": "pm_1OgxQ4KuuB1fWySnQ7bLc47c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:10 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDylKuuB1fWySn2TKn691w +======= + recorded_at: Tue, 06 Feb 2024 22:47:14 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ4KuuB1fWySn186oGFvu +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_sV8GY7giFod8d0","request_duration_ms":1128}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_3MWRHkpJDJrnkl","request_duration_ms":937}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:10 GMT +======= + - Tue, 06 Feb 2024 22:47:15 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_V4R36T4WNcW1aF +======= + - req_bHboGUt0ABkv7e +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '78.0' +======= + - '69.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDylKuuB1fWySn2TKn691w", +======= + "id": "pi_3OgxQ4KuuB1fWySn186oGFvu", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDylKuuB1fWySn2TKn691w_secret_MyTyjvLCkEvDLWT8z4LYZdxGc", "confirmation_method": "automatic", "created": 1707323287, +======= + "client_secret": "pi_3OgxQ4KuuB1fWySn186oGFvu_secret_IU25oalK6quZZxAfuxAZ3t9HD", + "confirmation_method": "automatic", + "created": 1707259632, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDylKuuB1fWySn21Bl2mfQ", +======= + "latest_charge": "ch_3OgxQ4KuuB1fWySn1YX0TVgi", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDylKuuB1fWySn0nFspK4S", +======= + "payment_method": "pm_1OgxQ4KuuB1fWySnQ7bLc47c", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:10 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:15 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa/returns_payment_intent_id_and_does_not_raise.yml index ddf00cdbfb..657f01b3fe 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa/returns_payment_intent_id_and_does_not_raise.yml @@ -10,9 +10,10 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded +<<<<<<< HEAD Stripe-Version: - '2023-10-16' X-Stripe-Client-User-Agent: @@ -20,6 +21,16 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + X-Stripe-Client-Telemetry: + - '{"last_request_metrics":{"request_id":"req_fDFbUTMwDOn0fP","request_duration_ms":419}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -32,7 +43,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:04 GMT +======= + - Tue, 06 Feb 2024 22:47:10 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -57,11 +72,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - ae89a8f4-4716-4ab3-9e50-8ff4997f0e95 Original-Request: - req_QqV6fkcANvcJAm Request-Id: - req_QqV6fkcANvcJAm +======= + - c7043729-c216-48ec-bb3e-ebe3c6679a6a + Original-Request: + - req_CdlAajIeBbNwCl + Request-Id: + - req_CdlAajIeBbNwCl +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -69,7 +92,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '250.0' +======= + - '225.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -78,7 +105,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDyiKuuB1fWySn8zuPunKb", +======= + "id": "pm_1OgxQ1KuuB1fWySnBXijV9Z0", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -118,27 +149,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323284, +======= + "created": 1707259630, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:04 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:10 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDyiKuuB1fWySn8zuPunKb&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQ1KuuB1fWySnBXijV9Z0&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_QqV6fkcANvcJAm","request_duration_ms":729}}' Stripe-Version: - '2023-10-16' @@ -147,6 +191,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_CdlAajIeBbNwCl","request_duration_ms":418}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -159,7 +212,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:05 GMT +======= + - Tue, 06 Feb 2024 22:47:10 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -184,11 +241,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 357b92de-79b3-4302-b45e-99d8ec7bc3c0 Original-Request: - req_fskyPDlpQZei3z Request-Id: - req_fskyPDlpQZei3z +======= + - aa7aa0e6-70f9-4285-baeb-3e45792782ed + Original-Request: + - req_lfTVL97Jcyg5Db + Request-Id: + - req_lfTVL97Jcyg5Db +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -196,7 +261,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '230.99999999999997' +======= + - '168.99999999999997' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -205,7 +274,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyiKuuB1fWySn1mEbc3er", +======= + "id": "pi_3OgxQ2KuuB1fWySn2maonakQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -219,9 +292,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyiKuuB1fWySn1mEbc3er_secret_GL48p7eu3C7HbfVAgZx3GWDr0", "confirmation_method": "automatic", "created": 1707323284, +======= + "client_secret": "pi_3OgxQ2KuuB1fWySn2maonakQ_secret_QwbSroCMxecC8X1MZ2k9hSupH", + "confirmation_method": "automatic", + "created": 1707259630, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -232,7 +311,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyiKuuB1fWySn8zuPunKb", +======= + "payment_method": "pm_1OgxQ1KuuB1fWySnBXijV9Z0", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -257,10 +340,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:05 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyiKuuB1fWySn1mEbc3er/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:10 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ2KuuB1fWySn2maonakQ/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -268,10 +358,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_fskyPDlpQZei3z","request_duration_ms":624}}' Stripe-Version: - '2023-10-16' @@ -280,6 +371,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_lfTVL97Jcyg5Db","request_duration_ms":377}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -292,7 +392,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:06 GMT +======= + - Tue, 06 Feb 2024 22:47:11 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -318,11 +422,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 596165d3-0b49-4004-b646-b3ea4c8bdf2a Original-Request: - req_geQERGTewZE2m2 Request-Id: - req_geQERGTewZE2m2 +======= + - 2c80ae32-a9fe-453c-b5db-9cb232cd91dc + Original-Request: + - req_yxzndSZBoXqxIa + Request-Id: + - req_yxzndSZBoXqxIa +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -330,7 +442,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '795.0' +======= + - '749.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -339,7 +455,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyiKuuB1fWySn1mEbc3er", +======= + "id": "pi_3OgxQ2KuuB1fWySn2maonakQ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -353,20 +473,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyiKuuB1fWySn1mEbc3er_secret_GL48p7eu3C7HbfVAgZx3GWDr0", "confirmation_method": "automatic", "created": 1707323284, +======= + "client_secret": "pi_3OgxQ2KuuB1fWySn2maonakQ_secret_QwbSroCMxecC8X1MZ2k9hSupH", + "confirmation_method": "automatic", + "created": 1707259630, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyiKuuB1fWySn1pyK7dBL", +======= + "latest_charge": "ch_3OgxQ2KuuB1fWySn2WHnb1jp", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyiKuuB1fWySn8zuPunKb", +======= + "payment_method": "pm_1OgxQ1KuuB1fWySnBXijV9Z0", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -391,5 +525,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:06 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:11 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa_debit_/captures_the_payment.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa_debit_/captures_the_payment.yml index e1719ab67b..2992e8b32c 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa_debit_/captures_the_payment.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa_debit_/captures_the_payment.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_XRDpYjOyKtkW7x","request_duration_ms":936}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_1hlU4OvQRRk59m","request_duration_ms":1016}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:13 GMT +======= + - Tue, 06 Feb 2024 22:47:17 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 785f84d3-19b3-49ac-a56c-66f4927e68dd Original-Request: - req_eU1Kk7nUh4goGa Request-Id: - req_eU1Kk7nUh4goGa +======= + - da5df66e-9f64-499a-83e9-1fe6aa28fc4e + Original-Request: + - req_e3JFk3417kNsOi + Request-Id: + - req_e3JFk3417kNsOi +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '259.0' +======= + - '240.00000000000003' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDyrKuuB1fWySncwiUpDpR", +======= + "id": "pm_1OgxQ9KuuB1fWySnh4CGfQWk", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323293, +======= + "created": 1707259637, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:13 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:17 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDyrKuuB1fWySncwiUpDpR&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQ9KuuB1fWySnh4CGfQWk&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_eU1Kk7nUh4goGa","request_duration_ms":483}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_e3JFk3417kNsOi","request_duration_ms":473}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:14 GMT +======= + - Tue, 06 Feb 2024 22:47:18 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 556f6633-8232-4b50-9230-04888657c33b Original-Request: - req_h8DcNtfLkLkemS Request-Id: - req_h8DcNtfLkLkemS +======= + - 551c65d4-5caf-4067-9585-186fbf7cd21c + Original-Request: + - req_3l6XXhHtTbpIWC + Request-Id: + - req_3l6XXhHtTbpIWC +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '185.0' +======= + - '178.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyrKuuB1fWySn0HXukdYj", +======= + "id": "pi_3OgxQ9KuuB1fWySn0fcZS1La", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyrKuuB1fWySn0HXukdYj_secret_JBgxOvQNdLixjB1XFfCZVvmqt", "confirmation_method": "automatic", "created": 1707323293, +======= + "client_secret": "pi_3OgxQ9KuuB1fWySn0fcZS1La_secret_S60GK0HeS1MXai7HUw3x5gC1M", + "confirmation_method": "automatic", + "created": 1707259637, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyrKuuB1fWySncwiUpDpR", +======= + "payment_method": "pm_1OgxQ9KuuB1fWySnh4CGfQWk", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:14 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyrKuuB1fWySn0HXukdYj/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:18 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ9KuuB1fWySn0fcZS1La/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_h8DcNtfLkLkemS","request_duration_ms":414}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_3l6XXhHtTbpIWC","request_duration_ms":380}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:15 GMT +======= + - Tue, 06 Feb 2024 22:47:19 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 32c1eb1e-1b48-4928-abc6-7d051fa9eca5 Original-Request: - req_3UoR1yXcC3QYTX Request-Id: - req_3UoR1yXcC3QYTX +======= + - 065c9299-8439-44c5-8a69-8c6ab764095c + Original-Request: + - req_mOqPvlJtQfC83A + Request-Id: + - req_mOqPvlJtQfC83A +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '793.0' +======= + - '752.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyrKuuB1fWySn0HXukdYj", +======= + "id": "pi_3OgxQ9KuuB1fWySn0fcZS1La", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyrKuuB1fWySn0HXukdYj_secret_JBgxOvQNdLixjB1XFfCZVvmqt", "confirmation_method": "automatic", "created": 1707323293, +======= + "client_secret": "pi_3OgxQ9KuuB1fWySn0fcZS1La_secret_S60GK0HeS1MXai7HUw3x5gC1M", + "confirmation_method": "automatic", + "created": 1707259637, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyrKuuB1fWySn0TngRTSu", +======= + "latest_charge": "ch_3OgxQ9KuuB1fWySn0izX0DkL", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyrKuuB1fWySncwiUpDpR", +======= + "payment_method": "pm_1OgxQ9KuuB1fWySnh4CGfQWk", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,10 +526,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:15 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyrKuuB1fWySn0HXukdYj +======= + recorded_at: Tue, 06 Feb 2024 22:47:18 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ9KuuB1fWySn0fcZS1La +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -404,10 +544,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_3UoR1yXcC3QYTX","request_duration_ms":1041}}' Stripe-Version: - '2023-10-16' @@ -416,6 +557,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_mOqPvlJtQfC83A","request_duration_ms":938}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -428,7 +578,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:15 GMT +======= + - Tue, 06 Feb 2024 22:47:19 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -454,13 +608,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_JeLu7S2FCbcsLv +======= + - req_1qnJzkxVyG1JXw +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '91.0' +======= + - '65.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -469,7 +631,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyrKuuB1fWySn0HXukdYj", +======= + "id": "pi_3OgxQ9KuuB1fWySn0fcZS1La", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -483,20 +649,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyrKuuB1fWySn0HXukdYj_secret_JBgxOvQNdLixjB1XFfCZVvmqt", "confirmation_method": "automatic", "created": 1707323293, +======= + "client_secret": "pi_3OgxQ9KuuB1fWySn0fcZS1La_secret_S60GK0HeS1MXai7HUw3x5gC1M", + "confirmation_method": "automatic", + "created": 1707259637, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyrKuuB1fWySn0TngRTSu", +======= + "latest_charge": "ch_3OgxQ9KuuB1fWySn0izX0DkL", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyrKuuB1fWySncwiUpDpR", +======= + "payment_method": "pm_1OgxQ9KuuB1fWySnh4CGfQWk", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -521,10 +701,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:15 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyrKuuB1fWySn0HXukdYj/capture +======= + recorded_at: Tue, 06 Feb 2024 22:47:19 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ9KuuB1fWySn0fcZS1La/capture +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -532,10 +719,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_JeLu7S2FCbcsLv","request_duration_ms":414}}' Stripe-Version: - '2023-10-16' @@ -544,6 +732,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_1qnJzkxVyG1JXw","request_duration_ms":284}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -556,7 +753,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:16 GMT +======= + - Tue, 06 Feb 2024 22:47:20 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -582,11 +783,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - a6553929-841c-412e-9b41-a87bd721806b Original-Request: - req_ObZvBepcm2Xxca Request-Id: - req_ObZvBepcm2Xxca +======= + - e89f3d5d-37dd-4052-86eb-3a3b3b0ec5b7 + Original-Request: + - req_Svh8bk3AfFzUAr + Request-Id: + - req_Svh8bk3AfFzUAr +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -594,7 +803,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '803.0' +======= + - '779.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -603,7 +816,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyrKuuB1fWySn0HXukdYj", +======= + "id": "pi_3OgxQ9KuuB1fWySn0fcZS1La", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -617,20 +834,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyrKuuB1fWySn0HXukdYj_secret_JBgxOvQNdLixjB1XFfCZVvmqt", "confirmation_method": "automatic", "created": 1707323293, +======= + "client_secret": "pi_3OgxQ9KuuB1fWySn0fcZS1La_secret_S60GK0HeS1MXai7HUw3x5gC1M", + "confirmation_method": "automatic", + "created": 1707259637, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyrKuuB1fWySn0TngRTSu", +======= + "latest_charge": "ch_3OgxQ9KuuB1fWySn0izX0DkL", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyrKuuB1fWySncwiUpDpR", +======= + "payment_method": "pm_1OgxQ9KuuB1fWySnh4CGfQWk", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -655,10 +886,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:16 GMT - request: method: get uri: https://api.stripe.com/v1/payment_intents/pi_3OhDyrKuuB1fWySn0HXukdYj +======= + recorded_at: Tue, 06 Feb 2024 22:47:20 GMT +- request: + method: get + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ9KuuB1fWySn0fcZS1La +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -666,10 +904,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_ObZvBepcm2Xxca","request_duration_ms":1042}}' Stripe-Version: - '2023-10-16' @@ -678,6 +917,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_Svh8bk3AfFzUAr","request_duration_ms":979}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -690,7 +938,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:16 GMT +======= + - Tue, 06 Feb 2024 22:47:20 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -716,13 +968,21 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Request-Id: +<<<<<<< HEAD - req_RiwtAVsyAHuT41 +======= + - req_wyXTqTGGgpf1i9 +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Version: - '2023-10-16' Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '81.00000000000001' +======= + - '78.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -731,7 +991,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDyrKuuB1fWySn0HXukdYj", +======= + "id": "pi_3OgxQ9KuuB1fWySn0fcZS1La", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -745,20 +1009,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDyrKuuB1fWySn0HXukdYj_secret_JBgxOvQNdLixjB1XFfCZVvmqt", "confirmation_method": "automatic", "created": 1707323293, +======= + "client_secret": "pi_3OgxQ9KuuB1fWySn0fcZS1La_secret_S60GK0HeS1MXai7HUw3x5gC1M", + "confirmation_method": "automatic", + "created": 1707259637, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDyrKuuB1fWySn0TngRTSu", +======= + "latest_charge": "ch_3OgxQ9KuuB1fWySn0izX0DkL", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDyrKuuB1fWySncwiUpDpR", +======= + "payment_method": "pm_1OgxQ9KuuB1fWySnh4CGfQWk", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -783,5 +1061,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:17 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:20 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa_debit_/returns_payment_intent_id_and_does_not_raise.yml b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa_debit_/returns_payment_intent_id_and_does_not_raise.yml index bded4b64fa..947ee57f95 100644 --- a/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa_debit_/returns_payment_intent_id_and_does_not_raise.yml +++ b/spec/fixtures/vcr_cassettes/Stripe-v10.6.0/Stripe_PaymentIntentValidator/_call/when_payment_intent_is_valid/valid_non-3D_credit_cards_are_correctly_handled/behaves_like_payments_intents/from_Visa_debit_/returns_payment_intent_id_and_does_not_raise.yml @@ -10,10 +10,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_V4R36T4WNcW1aF","request_duration_ms":309}}' Stripe-Version: - '2023-10-16' @@ -22,6 +23,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_bHboGUt0ABkv7e","request_duration_ms":284}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -34,7 +44,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:11 GMT +======= + - Tue, 06 Feb 2024 22:47:15 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -59,11 +73,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - d86e0439-f0a4-468c-a1b8-ee3d2711f942 Original-Request: - req_Cn7jr6NcfbULSs Request-Id: - req_Cn7jr6NcfbULSs +======= + - b8e3fe92-dfa2-46c3-a750-7074d2d82bb9 + Original-Request: + - req_fhQmezoLpQHXKi + Request-Id: + - req_fhQmezoLpQHXKi +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -71,7 +93,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '261.0' +======= + - '264.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -80,7 +106,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pm_1OhDypKuuB1fWySngc5rc9qA", +======= + "id": "pm_1OgxQ7KuuB1fWySn1fwalL4D", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_method", "billing_details": { "address": { @@ -120,27 +150,40 @@ http_interactions: }, "wallet": null }, +<<<<<<< HEAD "created": 1707323291, +======= + "created": 1707259635, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "customer": null, "livemode": false, "metadata": {}, "type": "card" } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:11 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:15 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) - request: method: post uri: https://api.stripe.com/v1/payment_intents body: encoding: UTF-8 +<<<<<<< HEAD string: amount=100¤cy=eur&payment_method=pm_1OhDypKuuB1fWySngc5rc9qA&payment_method_types[0]=card&capture_method=manual +======= + string: amount=100¤cy=eur&payment_method=pm_1OgxQ7KuuB1fWySn1fwalL4D&payment_method_types[0]=card&capture_method=manual +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) headers: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_Cn7jr6NcfbULSs","request_duration_ms":483}}' Stripe-Version: - '2023-10-16' @@ -149,6 +192,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_fhQmezoLpQHXKi","request_duration_ms":458}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -161,7 +213,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:11 GMT +======= + - Tue, 06 Feb 2024 22:47:16 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -186,11 +242,19 @@ http_interactions: default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 365006c5-8216-4dd9-afa1-f358fd32e313 Original-Request: - req_jwEAcdZLzoYBd2 Request-Id: - req_jwEAcdZLzoYBd2 +======= + - f6a41178-3777-4a16-95eb-9fb8a2817809 + Original-Request: + - req_BG9v2unJ92Nxrj + Request-Id: + - req_BG9v2unJ92Nxrj +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -198,7 +262,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '228.99999999999997' +======= + - '177.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -207,7 +275,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDypKuuB1fWySn0CHzYOtg", +======= + "id": "pi_3OgxQ7KuuB1fWySn0h8cdkSZ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 0, @@ -221,9 +293,15 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDypKuuB1fWySn0CHzYOtg_secret_nBYUtgSZp1EIhrdhgB2Sh8Nxo", "confirmation_method": "automatic", "created": 1707323291, +======= + "client_secret": "pi_3OgxQ7KuuB1fWySn0h8cdkSZ_secret_Zh7PHKqtI2m9ISFO9H42rB3MG", + "confirmation_method": "automatic", + "created": 1707259635, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, @@ -234,7 +312,11 @@ http_interactions: "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDypKuuB1fWySngc5rc9qA", +======= + "payment_method": "pm_1OgxQ7KuuB1fWySn1fwalL4D", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -259,10 +341,17 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:11 GMT - request: method: post uri: https://api.stripe.com/v1/payment_intents/pi_3OhDypKuuB1fWySn0CHzYOtg/confirm +======= + recorded_at: Tue, 06 Feb 2024 22:47:16 GMT +- request: + method: post + uri: https://api.stripe.com/v1/payment_intents/pi_3OgxQ7KuuB1fWySn0h8cdkSZ/confirm +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) body: encoding: US-ASCII string: '' @@ -270,10 +359,11 @@ http_interactions: User-Agent: - Stripe/v1 RubyBindings/10.6.0 Authorization: - - Bearer + - Bearer Content-Type: - application/x-www-form-urlencoded X-Stripe-Client-Telemetry: +<<<<<<< HEAD - '{"last_request_metrics":{"request_id":"req_jwEAcdZLzoYBd2","request_duration_ms":519}}' Stripe-Version: - '2023-10-16' @@ -282,6 +372,15 @@ http_interactions: version 6.5.0-15-generic (buildd@bos03-amd64-040) (x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #15~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 12 18:54:30 UTC 2","hostname":"ff-LAT"}' +======= + - '{"last_request_metrics":{"request_id":"req_BG9v2unJ92Nxrj","request_duration_ms":376}}' + Stripe-Version: + - '2023-10-16' + X-Stripe-Client-User-Agent: + - '{"bindings_version":"10.6.0","lang":"ruby","lang_version":"3.1.4 p223 (2023-03-30)","platform":"x86_64-darwin19","engine":"ruby","publisher":"stripe","uname":"Darwin + MacBook-Pro.local 23.3.0 Darwin Kernel Version 23.3.0: Wed Dec 20 21:28:58 + PST 2023; root:xnu-10002.81.5~7/RELEASE_X86_64 x86_64","hostname":"MacBook-Pro.local"}' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -294,7 +393,11 @@ http_interactions: Server: - nginx Date: +<<<<<<< HEAD - Wed, 07 Feb 2024 16:28:12 GMT +======= + - Tue, 06 Feb 2024 22:47:17 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Content-Type: - application/json Content-Length: @@ -320,11 +423,19 @@ http_interactions: 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self' Idempotency-Key: +<<<<<<< HEAD - 57500a49-4e25-4856-8e04-3c0777fa2da5 Original-Request: - req_XRDpYjOyKtkW7x Request-Id: - req_XRDpYjOyKtkW7x +======= + - 6f2c8222-b985-4b44-9fcf-bf806c14e901 + Original-Request: + - req_1hlU4OvQRRk59m + Request-Id: + - req_1hlU4OvQRRk59m +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) Stripe-Should-Retry: - 'false' Stripe-Version: @@ -332,7 +443,11 @@ http_interactions: Vary: - Origin X-Stripe-Non-Api-Overhead-Duration-Ms: +<<<<<<< HEAD - '720.0' +======= + - '817.0' +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) X-Stripe-Routing-Context-Priority-Tier: - api-testmode Strict-Transport-Security: @@ -341,7 +456,11 @@ http_interactions: encoding: UTF-8 string: |- { +<<<<<<< HEAD "id": "pi_3OhDypKuuB1fWySn0CHzYOtg", +======= + "id": "pi_3OgxQ7KuuB1fWySn0h8cdkSZ", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "object": "payment_intent", "amount": 100, "amount_capturable": 100, @@ -355,20 +474,34 @@ http_interactions: "canceled_at": null, "cancellation_reason": null, "capture_method": "manual", +<<<<<<< HEAD "client_secret": "pi_3OhDypKuuB1fWySn0CHzYOtg_secret_nBYUtgSZp1EIhrdhgB2Sh8Nxo", "confirmation_method": "automatic", "created": 1707323291, +======= + "client_secret": "pi_3OgxQ7KuuB1fWySn0h8cdkSZ_secret_Zh7PHKqtI2m9ISFO9H42rB3MG", + "confirmation_method": "automatic", + "created": 1707259635, +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "currency": "eur", "customer": null, "description": null, "invoice": null, "last_payment_error": null, +<<<<<<< HEAD "latest_charge": "ch_3OhDypKuuB1fWySn0wcyBdED", +======= + "latest_charge": "ch_3OgxQ7KuuB1fWySn04pY6NBW", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "livemode": false, "metadata": {}, "next_action": null, "on_behalf_of": null, +<<<<<<< HEAD "payment_method": "pm_1OhDypKuuB1fWySngc5rc9qA", +======= + "payment_method": "pm_1OgxQ7KuuB1fWySn1fwalL4D", +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) "payment_method_configuration_details": null, "payment_method_options": { "card": { @@ -393,5 +526,9 @@ http_interactions: "transfer_data": null, "transfer_group": null } +<<<<<<< HEAD recorded_at: Wed, 07 Feb 2024 16:28:12 GMT +======= + recorded_at: Tue, 06 Feb 2024 22:47:17 GMT +>>>>>>> 97b18eeb8a (Filter out STRIPE_INSTANCE_SECRET_KEY from cassettes) recorded_with: VCR 6.2.0 diff --git a/spec/support/vcr_setup.rb b/spec/support/vcr_setup.rb index 572cee9927..a856eab5d7 100644 --- a/spec/support/vcr_setup.rb +++ b/spec/support/vcr_setup.rb @@ -11,10 +11,11 @@ VCR.configure do |config| # Filter sensitive environment variables %w[ - STRIPE_SECRET_TEST_API_KEY + STRIPE_INSTANCE_SECRET_KEY STRIPE_CUSTOMER STRIPE_ACCOUNT STRIPE_CLIENT_ID + STRIPE_ENDPOINT_SECRET ].each do |env_var| config.filter_sensitive_data("") { ENV.fetch(env_var, nil) } end