- +
- +
diff --git a/corporate/lib/stripe.py b/corporate/lib/stripe.py index ae20aa88de..2a7284c5ab 100644 --- a/corporate/lib/stripe.py +++ b/corporate/lib/stripe.py @@ -32,7 +32,6 @@ from corporate.models import ( CustomerPlanOffer, Invoice, LicenseLedger, - PaymentIntent, Session, SponsoredPlanTypes, ZulipSponsorshipRequest, @@ -529,14 +528,6 @@ class StripeCustomerData: metadata: Dict[str, Any] -@dataclass -class StripePaymentIntentData: - amount: int - description: str - plan_name: str - email: str - - @dataclass class UpgradeRequest: billing_modality: str @@ -567,7 +558,7 @@ class UpdatePlanRequest: @dataclass class EventStatusRequest: stripe_session_id: Optional[str] - stripe_payment_intent_id: Optional[str] + stripe_invoice_id: Optional[str] class SupportType(Enum): @@ -747,7 +738,7 @@ class BillingSession(ABC): pass @abstractmethod - def update_data_for_checkout_session_and_payment_intent( + def update_data_for_checkout_session_and_invoice_payment( self, metadata: Dict[str, Any] ) -> Dict[str, Any]: pass @@ -787,7 +778,7 @@ class BillingSession(ABC): return_url=f"{self.billing_session_url}/billing/", ).url - def get_data_for_stripe_payment_intent( + def generate_invoice_for_upgrade( self, customer: Customer, price_per_license: Optional[int], @@ -795,36 +786,77 @@ class BillingSession(ABC): licenses: int, plan_tier: int, billing_schedule: int, - email: str, - ) -> StripePaymentIntentData: - if hasattr(self, "support_session") and self.support_session: # nocoverage - raise BillingError( - "invalid support session", - "Support requests do not set any stripe billing information.", - ) - + charge_automatically: bool, + license_management: Optional[str] = None, + ) -> stripe.Invoice: plan_name = CustomerPlan.name_from_tier(plan_tier) assert price_per_license is None or fixed_price is None - if price_per_license is not None: - amount = price_per_license * licenses - description = f"Upgrade to {plan_name}, ${price_per_license/100} x {licenses}" + price_args: PriceArgs = {} + if fixed_price is None: + assert price_per_license is not None + price_args = { + "quantity": licenses, + "unit_amount": price_per_license, + } else: assert fixed_price is not None - amount = get_amount_due_fixed_price_plan(fixed_price, billing_schedule) - description = plan_name + amount_due = get_amount_due_fixed_price_plan(fixed_price, billing_schedule) + price_args = {"amount": amount_due} + + stripe.InvoiceItem.create( + currency="usd", + customer=customer.stripe_customer_id, + description=plan_name, + discountable=False, + **price_args, + ) if fixed_price is None and customer.flat_discounted_months > 0: num_months = 12 if billing_schedule == CustomerPlan.BILLING_SCHEDULE_ANNUAL else 1 flat_discounted_months = min(customer.flat_discounted_months, num_months) - amount -= customer.flat_discount * flat_discounted_months - description += f" - ${customer.flat_discount/100} x {flat_discounted_months}" + discount = customer.flat_discount * flat_discounted_months + customer.flat_discounted_months -= flat_discounted_months + customer.save(update_fields=["flat_discounted_months"]) - return StripePaymentIntentData( - amount=amount, - description=description, - plan_name=plan_name, - email=email, + stripe.InvoiceItem.create( + currency="usd", + customer=customer.stripe_customer_id, + description=f"${cents_to_dollar_string(customer.flat_discount)}/month new customer discount", + # Negative value to apply discount. + amount=(-1 * discount), + ) + + if charge_automatically: + collection_method = "charge_automatically" + days_until_due = None + else: + collection_method = "send_invoice" + days_until_due = DEFAULT_INVOICE_DAYS_UNTIL_DUE + + metadata = { + "plan_tier": plan_tier, + "billing_schedule": billing_schedule, + "licenses": licenses, + "license_management": license_management, + } + + if hasattr(self, "user"): + metadata["user_id"] = self.user.id + + # We only need to email customer about open invoice for manual billing. + # If automatic charge fails, we simply void the invoice. + # https://stripe.com/docs/invoicing/integration/automatic-advancement-collection + auto_advance = not charge_automatically + stripe_invoice = stripe.Invoice.create( + auto_advance=auto_advance, + collection_method=collection_method, + customer=customer.stripe_customer_id, + days_until_due=days_until_due, + statement_descriptor=plan_name, + metadata=metadata, ) + stripe.Invoice.finalize_invoice(stripe_invoice) + return stripe_invoice @abstractmethod def update_or_create_customer( @@ -1000,9 +1032,8 @@ class BillingSession(ABC): def update_or_create_stripe_customer(self, payment_method: Optional[str] = None) -> Customer: customer = self.get_customer() if customer is None or customer.stripe_customer_id is None: - # A stripe.PaymentMethod should be attached to a stripe.Customer via - # a stripe.SetupIntent or stripe.PaymentIntent. Here we just want to - # create a new stripe.Customer. + # A stripe.PaymentMethod should be attached to a stripe.Customer via replace_payment_method. + # Here we just want to create a new stripe.Customer. assert payment_method is None # We could do a better job of handling race conditions here, but if two # people try to upgrade at exactly the same time, the main bad thing that @@ -1013,22 +1044,13 @@ class BillingSession(ABC): self.replace_payment_method(customer.stripe_customer_id, payment_method, True) return customer - def create_stripe_payment_intent( + def create_stripe_invoice_and_charge( self, metadata: Dict[str, Any], ) -> str: # NOTE: This charges users immediately. customer = self.get_customer() assert customer is not None and customer.stripe_customer_id is not None - payment_intent_data = self.get_data_for_stripe_payment_intent( - customer, - metadata["price_per_license"], - metadata["fixed_price"], - metadata["licenses"], - metadata["plan_tier"], - metadata["billing_schedule"], - self.get_email(), - ) # Ensure customers have a default payment method set. stripe_customer = stripe_get_customer(customer.stripe_customer_id) if not stripe_customer_has_credit_card_as_default_payment_method(stripe_customer): @@ -1039,29 +1061,42 @@ class BillingSession(ABC): assert stripe_customer.invoice_settings is not None assert stripe_customer.invoice_settings.default_payment_method is not None + stripe_invoice = None try: - # Try to charge user immediately, and if that fails, we inform the user about the failure. - stripe_payment_intent = stripe.PaymentIntent.create( - amount=payment_intent_data.amount, - currency="usd", - customer=customer.stripe_customer_id, - description=payment_intent_data.description, - receipt_email=payment_intent_data.email, - confirm=True, - statement_descriptor=payment_intent_data.plan_name, - metadata=metadata, - off_session=True, - payment_method=stripe_customer.invoice_settings.default_payment_method, + stripe_invoice = self.generate_invoice_for_upgrade( + customer, + metadata["price_per_license"], + metadata["fixed_price"], + metadata["licenses"], + metadata["plan_tier"], + metadata["billing_schedule"], + charge_automatically=True, + license_management=metadata["license_management"], ) - except stripe.CardError as e: - raise StripeCardError("card error", e.user_message) + assert stripe_invoice.id is not None + invoice = Invoice.objects.create( + stripe_invoice_id=stripe_invoice.id, + customer=customer, + status=Invoice.SENT, + ) + # Stripe takes its sweet hour to charge customers after creating an invoice. + # Since we want to charge customers immediately, we charge them manually. + # Then poll for the status of the invoice to see if the payment succeeded. + stripe_invoice = stripe.Invoice.pay(stripe_invoice.id) + except Exception as e: + if stripe_invoice is not None: + assert stripe_invoice.id is not None + # Void invoice to avoid double charging if customer tries to upgrade again. + stripe.Invoice.void_invoice(stripe_invoice.id) + invoice.status = Invoice.VOID + invoice.save(update_fields=["status"]) + if isinstance(e, stripe.CardError): + raise StripeCardError("card error", e.user_message) + else: # nocoverage + raise e - PaymentIntent.objects.create( - customer=customer, - stripe_payment_intent_id=stripe_payment_intent.id, - status=PaymentIntent.get_status_integer_from_status_text(stripe_payment_intent.status), - ) - return stripe_payment_intent.id + assert stripe_invoice.id is not None + return stripe_invoice.id def create_card_update_session_for_upgrade( self, @@ -1392,7 +1427,7 @@ class BillingSession(ABC): f"No current plan for {self.billing_entity_display_name}." ) # nocoverage - def setup_upgrade_payment_intent_and_charge( + def generate_stripe_invoice_and_charge_immediately( self, plan_tier: int, seat_count: int, @@ -1423,11 +1458,10 @@ class BillingSession(ABC): general_metadata["price_per_license"] = price_per_license else: general_metadata["fixed_price"] = fixed_price_plan_offer.fixed_price - updated_metadata = self.update_data_for_checkout_session_and_payment_intent( + updated_metadata = self.update_data_for_checkout_session_and_invoice_payment( general_metadata ) - stripe_payment_intent_id = self.create_stripe_payment_intent(updated_metadata) - return stripe_payment_intent_id + return self.create_stripe_invoice_and_charge(updated_metadata) def ensure_current_plan_is_upgradable(self, customer: Customer, new_plan_tier: int) -> None: # Upgrade for customers with an existing plan is only supported for remote realm / server right now. @@ -1614,12 +1648,31 @@ class BillingSession(ABC): plan=plan, is_renewal=True, event_time=event_time, - licenses=billed_licenses, - licenses_at_next_renewal=billed_licenses, + licenses=licenses, + licenses_at_next_renewal=licenses, ) plan.invoiced_through = ledger_entry plan.save(update_fields=["invoiced_through"]) + # TODO: Do a check for max licenses for fixed price plans here after we add that. + if ( + stripe_invoice_paid + and billed_licenses != licenses + and not customer.exempt_from_license_number_check + and not fixed_price_plan_offer + ): + # Customer paid for less licenses than they have. + # We need to create a new ledger entry to track the additional licenses. + LicenseLedger.objects.create( + plan=plan, + is_renewal=False, + event_time=event_time, + licenses=billed_licenses, + licenses_at_next_renewal=billed_licenses, + ) + # Creates due today invoice for additional licenses. + self.invoice_plan(plan, event_time) + self.write_to_audit_log( event_type=AuditLogEventType.CUSTOMER_PLAN_CREATED, event_time=event_time, @@ -1630,60 +1683,15 @@ class BillingSession(ABC): free_trial or should_schedule_upgrade_for_legacy_remote_server ): assert plan is not None - price_args: PriceArgs = {} - if plan.fixed_price is None: - price_args = { - "quantity": billed_licenses, - "unit_amount": price_per_license, - } - else: - assert plan.fixed_price is not None - amount_due = get_amount_due_fixed_price_plan(plan.fixed_price, billing_schedule) - price_args = {"amount": amount_due} - assert customer.stripe_customer_id is not None - stripe.InvoiceItem.create( - currency="usd", - customer=customer.stripe_customer_id, - description=plan.name, - discountable=False, - period={ - "start": datetime_to_timestamp(billing_cycle_anchor), - "end": datetime_to_timestamp(period_end), - }, - **price_args, + self.generate_invoice_for_upgrade( + customer, + price_per_license=price_per_license, + fixed_price=plan.fixed_price, + licenses=billed_licenses, + plan_tier=plan.tier, + billing_schedule=billing_schedule, + charge_automatically=False, ) - - if plan.fixed_price is None and customer.flat_discounted_months > 0: - num_months = 12 if billing_schedule == CustomerPlan.BILLING_SCHEDULE_ANNUAL else 1 - flat_discounted_months = min(customer.flat_discounted_months, num_months) - discount = customer.flat_discount * flat_discounted_months - customer.flat_discounted_months -= flat_discounted_months - customer.save(update_fields=["flat_discounted_months"]) - - stripe.InvoiceItem.create( - currency="usd", - customer=customer.stripe_customer_id, - description=f"${cents_to_dollar_string(customer.flat_discount)}/month new customer discount", - # Negative value to apply discount. - amount=(-1 * discount), - ) - - if charge_automatically: - collection_method = "charge_automatically" - days_until_due = None - else: - collection_method = "send_invoice" - days_until_due = DEFAULT_INVOICE_DAYS_UNTIL_DUE - - stripe_invoice = stripe.Invoice.create( - auto_advance=True, - collection_method=collection_method, - customer=customer.stripe_customer_id, - days_until_due=days_until_due, - statement_descriptor=plan.name, - ) - stripe.Invoice.finalize_invoice(stripe_invoice) - if plan.status < CustomerPlan.LIVE_STATUS_THRESHOLD: # Tier and usage limit change will happen when plan becomes live. self.do_change_plan_type(tier=plan_tier) @@ -1761,7 +1769,7 @@ class BillingSession(ABC): ) data["organization_upgrade_successful"] = True else: - stripe_payment_intent_id = self.setup_upgrade_payment_intent_and_charge( + stripe_invoice_id = self.generate_stripe_invoice_and_charge_immediately( upgrade_request.tier, seat_count, licenses, @@ -1769,7 +1777,7 @@ class BillingSession(ABC): billing_schedule, billing_modality, ) - data["stripe_payment_intent_id"] = stripe_payment_intent_id + data["stripe_invoice_id"] = stripe_invoice_id return data def do_change_schedule_after_free_trial(self, plan: CustomerPlan, schedule: int) -> None: @@ -2827,18 +2835,18 @@ class BillingSession(ABC): raise JsonableError(_("Must be a billing administrator or an organization owner")) return {"session": session.to_dict()} - stripe_payment_intent_id = event_status_request.stripe_payment_intent_id - if stripe_payment_intent_id is not None: - payment_intent = PaymentIntent.objects.filter( - stripe_payment_intent_id=stripe_payment_intent_id, + stripe_invoice_id = event_status_request.stripe_invoice_id + if stripe_invoice_id is not None: + stripe_invoice = Invoice.objects.filter( + stripe_invoice_id=stripe_invoice_id, customer=customer, ).last() - if payment_intent is None: + if stripe_invoice is None: raise JsonableError(_("Payment intent not found")) - return {"payment_intent": payment_intent.to_dict()} + return {"stripe_invoice": stripe_invoice.to_dict()} - raise JsonableError(_("Pass stripe_session_id or stripe_payment_intent_id")) + raise JsonableError(_("Pass stripe_session_id or stripe_invoice_id")) def get_sponsorship_plan_name( self, customer: Optional[Customer], is_remotely_hosted: bool @@ -3378,7 +3386,7 @@ class RealmBillingSession(BillingSession): return realm_stripe_customer_data @override - def update_data_for_checkout_session_and_payment_intent( + def update_data_for_checkout_session_and_invoice_payment( self, metadata: Dict[str, Any] ) -> Dict[str, Any]: assert self.user is not None @@ -3771,7 +3779,7 @@ class RemoteRealmBillingSession(BillingSession): return realm_stripe_customer_data @override - def update_data_for_checkout_session_and_payment_intent( + def update_data_for_checkout_session_and_invoice_payment( self, metadata: Dict[str, Any] ) -> Dict[str, Any]: assert self.remote_billing_user is not None @@ -4194,7 +4202,7 @@ class RemoteServerBillingSession(BillingSession): return realm_stripe_customer_data @override - def update_data_for_checkout_session_and_payment_intent( + def update_data_for_checkout_session_and_invoice_payment( self, metadata: Dict[str, Any] ) -> Dict[str, Any]: assert self.remote_billing_user is not None diff --git a/corporate/lib/stripe_event_handler.py b/corporate/lib/stripe_event_handler.py index 104863c58b..7929fbc264 100644 --- a/corporate/lib/stripe_event_handler.py +++ b/corporate/lib/stripe_event_handler.py @@ -1,19 +1,19 @@ import logging -from typing import Any, Callable, Dict, Optional, Union +from typing import Any, Callable, Optional, Union import stripe from django.conf import settings from corporate.lib.stripe import ( + BILLING_SUPPORT_EMAIL, BillingError, - InvalidPlanUpgradeError, RealmBillingSession, RemoteRealmBillingSession, RemoteServerBillingSession, - UpgradeWithExistingPlanError, get_configured_fixed_price_plan_offer, ) -from corporate.models import Customer, CustomerPlan, Event, Invoice, PaymentIntent, Session +from corporate.models import Customer, CustomerPlan, Event, Invoice, Session +from zerver.lib.send_email import FromAddress, send_email from zerver.models.users import get_active_user_profile_by_id_in_realm billing_logger = logging.getLogger("corporate.stripe") @@ -21,9 +21,9 @@ billing_logger = logging.getLogger("corporate.stripe") def error_handler( func: Callable[[Any, Any], None], -) -> Callable[[Union[stripe.checkout.Session, stripe.PaymentIntent, stripe.Invoice], Event], None]: +) -> Callable[[Union[stripe.checkout.Session, stripe.Invoice], Event], None]: def wrapper( - stripe_object: Union[stripe.checkout.Session, stripe.PaymentIntent, stripe.Invoice], + stripe_object: Union[stripe.checkout.Session, stripe.Invoice], event: Event, ) -> None: event.status = Event.EVENT_HANDLER_STARTED @@ -32,7 +32,7 @@ def error_handler( try: func(stripe_object, event.content_object) except BillingError as e: - billing_logger.warning( + message = ( "BillingError in %s event handler: %s. stripe_object_id=%s, customer_id=%s metadata=%s", event.type, e.error_description, @@ -40,12 +40,23 @@ def error_handler( stripe_object.customer, stripe_object.metadata, ) + billing_logger.warning(message) event.status = Event.EVENT_HANDLER_FAILED event.handler_error = { "message": e.msg, "description": e.error_description, } event.save(update_fields=["status", "handler_error"]) + if type(stripe_object) == stripe.Invoice: + # For Invoice processing errors, send email to billing support. + send_email( + "zerver/emails/error_processing_invoice", + to_emails=[BILLING_SUPPORT_EMAIL], + from_address=FromAddress.tokenized_no_reply_address(), + context={ + "message": message, + }, + ) except Exception: billing_logger.exception( "Uncaught exception in %s event handler:", @@ -102,58 +113,6 @@ def handle_checkout_session_completed_event( billing_session.update_or_create_stripe_customer(payment_method) -@error_handler -def handle_payment_intent_succeeded_event( - stripe_payment_intent: stripe.PaymentIntent, payment_intent: PaymentIntent -) -> None: - payment_intent.status = PaymentIntent.SUCCEEDED - payment_intent.save() - metadata: Dict[str, Any] = stripe_payment_intent.metadata - - description = "" - charge: stripe.Charge - for charge in stripe_payment_intent.charges: # type: ignore[attr-defined] # https://stripe.com/docs/upgrades#2022-11-15 - assert charge.payment_method_details is not None - assert charge.payment_method_details.card is not None - description = f"Payment (Card ending in {charge.payment_method_details.card.last4})" - break - - stripe.InvoiceItem.create( - amount=stripe_payment_intent.amount * -1, - currency="usd", - customer=stripe_payment_intent.customer, - description=description, - discountable=False, - ) - billing_session = get_billing_session_for_stripe_webhook( - payment_intent.customer, metadata.get("user_id") - ) - plan_tier = int(metadata["plan_tier"]) - try: - billing_session.ensure_current_plan_is_upgradable(payment_intent.customer, plan_tier) - except (UpgradeWithExistingPlanError, InvalidPlanUpgradeError) as e: - stripe_invoice = stripe.Invoice.create( - auto_advance=True, - collection_method="charge_automatically", - customer=stripe_payment_intent.customer, - days_until_due=None, - statement_descriptor=CustomerPlan.name_from_tier(plan_tier).replace("Zulip ", "") - + " Credit", - ) - stripe.Invoice.finalize_invoice(stripe_invoice) - raise e - - billing_session.process_initial_upgrade( - plan_tier, - int(metadata["licenses"]), - metadata["license_management"] == "automatic", - int(metadata["billing_schedule"]), - True, - False, - billing_session.get_remote_server_legacy_plan(payment_intent.customer), - ) - - @error_handler def handle_invoice_paid_event(stripe_invoice: stripe.Invoice, invoice: Invoice) -> None: invoice.status = Invoice.PAID @@ -183,3 +142,35 @@ def handle_invoice_paid_event(stripe_invoice: stripe.Invoice, invoice: Invoice) remote_server_legacy_plan=remote_server_legacy_plan, stripe_invoice_paid=True, ) + elif stripe_invoice.collection_method == "charge_automatically": + metadata = stripe_invoice.metadata + assert metadata is not None + billing_session = get_billing_session_for_stripe_webhook(customer, metadata.get("user_id")) + remote_server_legacy_plan = billing_session.get_remote_server_legacy_plan(customer) + billing_schedule = int(metadata["billing_schedule"]) + plan_tier = int(metadata["plan_tier"]) + if configured_fixed_price_plan and customer.required_plan_tier == plan_tier: + assert customer.required_plan_tier is not None + billing_session.process_initial_upgrade( + plan_tier=customer.required_plan_tier, + # TODO: Currently licenses don't play any role for fixed price plan. + # We plan to introduce max_licenses allowed soon. + licenses=0, + automanage_licenses=True, + billing_schedule=billing_schedule, + charge_automatically=True, + free_trial=False, + remote_server_legacy_plan=remote_server_legacy_plan, + stripe_invoice_paid=True, + ) + else: + billing_session.process_initial_upgrade( + plan_tier, + int(metadata["licenses"]), + metadata["license_management"] == "automatic", + billing_schedule=billing_schedule, + charge_automatically=True, + free_trial=False, + remote_server_legacy_plan=remote_server_legacy_plan, + stripe_invoice_paid=True, + ) diff --git a/corporate/models.py b/corporate/models.py index 2ce8296c52..e6a1d40e42 100644 --- a/corporate/models.py +++ b/corporate/models.py @@ -113,7 +113,7 @@ class Event(models.Model): def get_last_associated_event_by_type( - content_object: Union["PaymentIntent", "Session"], event_type: str + content_object: Union["Invoice", "PaymentIntent", "Session"], event_type: str ) -> Optional[Event]: content_type = ContentType.objects.get_for_model(type(content_object)) return Event.objects.filter( @@ -168,7 +168,7 @@ class Session(models.Model): return get_last_associated_event_by_type(self, "checkout.session.completed") -class PaymentIntent(models.Model): +class PaymentIntent(models.Model): # nocoverage customer = models.ForeignKey(Customer, on_delete=CASCADE) stripe_payment_intent_id = models.CharField(max_length=255, unique=True) @@ -221,8 +221,32 @@ class Invoice(models.Model): SENT = 1 PAID = 2 + VOID = 3 status = models.SmallIntegerField() + def get_status_as_string(self) -> str: + return { + Invoice.SENT: "sent", + Invoice.PAID: "paid", + Invoice.VOID: "void", + }[self.status] + + def get_last_associated_event(self) -> Optional[Event]: + if self.status == Invoice.PAID: + event_type = "invoice.paid" + # TODO: Add test for this case. Not sure how to trigger naturally. + else: # nocoverage + return None # nocoverage + return get_last_associated_event_by_type(self, event_type) + + def to_dict(self) -> Dict[str, Any]: + stripe_invoice_dict: Dict[str, Any] = {} + stripe_invoice_dict["status"] = self.get_status_as_string() + event = self.get_last_associated_event() + if event is not None: + stripe_invoice_dict["event_handler"] = event.get_event_handler_details_as_dict() + return stripe_invoice_dict + class AbstractCustomerPlan(models.Model): # A customer can only have one ACTIVE / CONFIGURED plan, diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Charge.list.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Charge.list.1.json index 63cd55f660..b5f84e02a5 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Charge.list.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Charge.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.create.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.create.1.json index ccf2811909..593a07ed0c 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.create.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.modify.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.modify.1.json index b661a4447a..cb3389466e 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.1.json index 7d983c3289..d196ad5abd 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.2.json index 7d983c3289..d196ad5abd 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.3.json index 7d983c3289..d196ad5abd 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.4.json index 7d983c3289..d196ad5abd 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.1.json index f98e20b061..e797bbc284 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.2.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.2.json index 77fc986499..8d0be37d9d 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.2.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.3.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.3.json index c9a40fb7a2..33b829f854 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.3.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.4.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.4.json index 655245c5e7..205793a342 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.4.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.5.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.5.json index e22f209fe4..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.5.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.create.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.create.1.json index 67236a97f6..8f17e07eb3 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.finalize_invoice.1.json index e8403cdcff..b1e702b7a7 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.pay.1.json new file mode 100644 index 0000000000..185d5ea76b Binary files /dev/null and b/corporate/tests/stripe_fixtures/add_minimum_licenses--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--InvoiceItem.create.1.json index 08077c6ef9..9cd6c4eee1 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--InvoiceItem.create.2.json deleted file mode 100644 index 384b88cc57..0000000000 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--InvoiceItem.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--PaymentIntent.create.1.json deleted file mode 100644 index c78da8f35b..0000000000 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.create.1.json index e0e1e7d314..b00d258254 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.list.1.json index 37bfcaa3c1..7d879eba8d 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.retrieve.1.json index e0e1e7d314..b00d258254 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--checkout.Session.create.1.json index 8b10d7a52c..142202b2e3 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/add_minimum_licenses--checkout.Session.list.1.json index 066c66be49..8d845ca175 100644 Binary files a/corporate/tests/stripe_fixtures/add_minimum_licenses--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/add_minimum_licenses--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.1.json index 06c91ab35d..f220f28e5e 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.2.json index 0ee945b23c..92ccfa3853 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.modify.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.modify.1.json index 6b910823f6..fbb2a7b033 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.modify.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.modify.2.json index 6a1c943032..bc2c1cd6f4 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.modify.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.modify.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.1.json index b70f42c8a9..3743792e5f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.2.json index b70f42c8a9..3743792e5f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.3.json index b70f42c8a9..3743792e5f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.4.json index b70f42c8a9..3743792e5f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.5.json index 46f95b7b6f..a0e05b2f3f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.6.json index 46f95b7b6f..a0e05b2f3f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.7.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.7.json index 46f95b7b6f..a0e05b2f3f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.7.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.7.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.8.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.8.json index 46f95b7b6f..a0e05b2f3f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.8.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.retrieve.8.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.1.json index cb834039fd..ee76a0c053 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.10.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.10.json deleted file mode 100644 index 9d3a4754f4..0000000000 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.10.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.2.json index b7ad79bc59..1281afe49d 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.3.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.3.json index 0b18cb691e..96a48010a7 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.3.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.4.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.4.json index dbbd7405bb..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.4.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.5.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.5.json index 54be4600ac..3a6b122087 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.5.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.6.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.6.json index 6d922067af..4a5c900518 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.6.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.7.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.7.json index fd041e12e8..7142da8b73 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.7.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.7.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.8.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.8.json index e1a80b875f..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.8.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.8.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.9.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.9.json deleted file mode 100644 index caccd4ebe3..0000000000 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.9.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.1.json index 09620724c1..2475e0217a 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.2.json index 8944959187..2be70520de 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.3.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.3.json index 65e29abd68..fbc686b964 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.1.json index 69d9c44217..ee033f8aac 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.2.json index 2f95f8f8b9..ec5e59f1a7 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.3.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.3.json index 547566593b..f2d44c3049 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.3.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.3.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.2.json index ad86d8dbfb..373709bbcf 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.4.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.4.json index e3bcacd131..f0fd722a33 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.4.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.5.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.5.json index 315fa7a6ed..3aacb29efd 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.5.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.pay.1.json new file mode 100644 index 0000000000..3237280669 Binary files /dev/null and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.pay.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.pay.2.json new file mode 100644 index 0000000000..05bfaa8fed Binary files /dev/null and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.pay.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.1.json index 10c88c48bb..638ff36ce3 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.2.json index 4a6a4cb5bc..f29ee1d65d 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.3.json index 7d3ffeba86..a4c0703971 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.4.json deleted file mode 100644 index ea974ccc17..0000000000 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.4.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.5.json deleted file mode 100644 index 82873bbfb7..0000000000 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.1.json deleted file mode 100644 index 0ea8f1caa5..0000000000 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.2.json deleted file mode 100644 index 5450468115..0000000000 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.create.1.json index 4f6c4a1bb6..243cff60da 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.create.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.create.2.json index 2f857fa107..1759b4f58f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.create.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.list.1.json index 21ecd37dc6..4fa0a04712 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.list.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.list.2.json index bf3753b0b8..0bab47d851 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.list.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.retrieve.1.json index 4f6c4a1bb6..243cff60da 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.retrieve.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.retrieve.2.json index 2f857fa107..1759b4f58f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.retrieve.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--SetupIntent.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.create.1.json index 63b7434879..242a410512 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.create.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.create.2.json index 0a409362e5..93ea0a2a9d 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.create.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.list.1.json index b1ff7203a4..4427d1aca0 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.list.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.list.2.json index 73a4e72b0d..a84dca050f 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.list.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--checkout.Session.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.modify.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.modify.1.json index 85dba21d16..37cda2ac7d 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.1.json index 4fc2880008..a6279adec9 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.2.json index 4fc2880008..a6279adec9 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.3.json index 4fc2880008..a6279adec9 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.4.json index 4fc2880008..a6279adec9 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.5.json index a7b53c4664..0d0ee92713 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.6.json index a7b53c4664..0d0ee92713 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.1.json index 2e4ce1fa96..9dd1fceff4 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.2.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.2.json index bbc690a447..5b222391f8 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.2.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.3.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.3.json index dcd20d483b..a56510612f 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.3.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.4.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.4.json index 24ee0593ee..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.4.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.create.1.json index 371c6917f4..7eb8734faa 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.finalize_invoice.1.json index 5f98f5aee8..13be4cebeb 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.pay.1.json new file mode 100644 index 0000000000..5936577541 Binary files /dev/null and b/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.1.json index fcb1c3c2e9..23f69ee2e0 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.2.json deleted file mode 100644 index 11622f30a7..0000000000 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--PaymentIntent.create.1.json deleted file mode 100644 index 2e7e4f45bf..0000000000 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.create.1.json index 7472b3c870..4e150a58b0 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.list.1.json index 93f213ab9f..afd8097bba 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.retrieve.1.json index 7472b3c870..4e150a58b0 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--checkout.Session.create.1.json index ce297cb235..d50e5b2411 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--checkout.Session.list.1.json index 20ae2114ea..3250eb94e6 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.modify.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.modify.1.json index 010579572b..e32dbf3e03 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.1.json index 0653cd594e..c07575fc07 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.2.json index 0653cd594e..c07575fc07 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.3.json index 0653cd594e..c07575fc07 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Event.list.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Event.list.1.json index 9708d13f55..6b90fb8299 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Event.list.1.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.create.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.create.1.json new file mode 100644 index 0000000000..e93949f92f Binary files /dev/null and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.finalize_invoice.1.json new file mode 100644 index 0000000000..8461ba5df7 Binary files /dev/null and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.pay.1.json similarity index 56% rename from corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--PaymentIntent.create.1.json rename to corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.pay.1.json index 709a7fa732..aff2d7bd8c 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.void_invoice.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.void_invoice.1.json new file mode 100644 index 0000000000..534b9915cd Binary files /dev/null and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--Invoice.void_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--InvoiceItem.create.1.json similarity index 97% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--InvoiceItem.create.2.json rename to corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--InvoiceItem.create.1.json index 23f69ee2e0..bc61b7cee7 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.create.1.json index cb24e21f9d..7b5f9b8af1 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.list.1.json index 780a83d89b..6308c8f291 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.retrieve.1.json index cb24e21f9d..7b5f9b8af1 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--checkout.Session.create.1.json index 1eba28a223..33b7870273 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--checkout.Session.list.1.json index 16fca6590c..7b003812fb 100644 Binary files a/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.create.1.json b/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.create.1.json index b62a73ebeb..31117fbaa1 100644 Binary files a/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.finalize_invoice.1.json index 56af199132..b7fad32c2a 100644 Binary files a/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.list.1.json b/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.list.1.json index 0a5bd6c581..c1af436751 100644 Binary files a/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.1.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.1.json index 551b6ce0f7..dd9b0fd56f 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.2.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.2.json index e0e867938a..421bd90775 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.2.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.2.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.3.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.3.json index 8cf389ebb2..c88b572239 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.3.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.3.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.4.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.4.json index 6b21005c59..4c8f3494ac 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.4.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.4.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.5.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.5.json index 3d9bbef04f..d37b74b393 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.5.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.5.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.6.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.6.json index 4336bc7874..f9b8950808 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.6.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.6.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.7.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.7.json index 93dec92747..47265fd2ed 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.7.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.7.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.8.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.8.json index a00acea7c0..2d9705f53d 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.8.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.8.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.9.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.9.json index 063258d56e..d576c56003 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.9.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.modify.9.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.1.json index c55a163935..d785ea6d06 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.10.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.10.json index c242cee8f1..aa3f7b5415 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.10.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.10.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.11.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.11.json index b657bddbbc..aa97516dd5 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.11.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.11.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.12.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.12.json index b657bddbbc..aa97516dd5 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.12.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.12.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.13.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.13.json index 71ea95f9fe..dd920dfbb9 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.13.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.13.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.14.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.14.json index 71ea95f9fe..dd920dfbb9 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.14.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.14.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.15.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.15.json index 16264f08ae..7074cc600f 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.15.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.15.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.16.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.16.json index 16264f08ae..7074cc600f 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.16.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.16.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.17.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.17.json index d776fae3cc..1d3e1483c8 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.17.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.17.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.18.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.18.json index d776fae3cc..1d3e1483c8 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.18.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.18.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.2.json index c55a163935..d785ea6d06 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.3.json index dac3e06e61..9d043bd0ee 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.4.json index dac3e06e61..9d043bd0ee 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.5.json index 1500d34449..335710221a 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.6.json index 1500d34449..335710221a 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.7.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.7.json index 979fa297e3..49c6d333fa 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.7.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.7.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.8.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.8.json index 979fa297e3..49c6d333fa 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.8.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.8.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.9.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.9.json index c242cee8f1..aa3f7b5415 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.9.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--Customer.retrieve.9.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.1.json index 5820eb94c6..3aee0dfb9f 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.2.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.2.json index b02e308469..19589edcb5 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.2.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.3.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.3.json index 658b5dae3a..b35f03f398 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.3.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.4.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.4.json index 82f1b04bb7..c1e37c2f13 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.4.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.5.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.5.json index 5c427297a5..77b521d736 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.5.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.6.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.6.json index e5c353838f..198958f9ab 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.6.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.6.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.7.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.7.json index 17f5051814..6d511024be 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.7.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.7.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.8.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.8.json index bc6917ddf4..e16554e137 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.8.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.8.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.9.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.9.json index 32a57dccef..86c3dfcb28 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.9.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.create.9.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.1.json index 2ada3505d6..14abae16f0 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.2.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.2.json index 45ac77747e..a899083133 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.2.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.3.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.3.json index 2b7b3275f5..d3471e21c8 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.3.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.4.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.4.json index 2df17eb188..3c63119c3c 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.4.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.5.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.5.json index 348865e6c7..91c176f4ab 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.5.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.6.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.6.json index cd8557b2a8..f4bcdbec08 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.6.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.7.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.7.json index e49ca68009..e109164846 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.7.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.7.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.8.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.8.json index 86dc693795..3c9161edcc 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.8.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.8.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.9.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.9.json index d9ad42bfa5..4a2b3cea7f 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.9.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.list.9.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.1.json index 5820eb94c6..3aee0dfb9f 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.2.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.2.json index b02e308469..19589edcb5 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.2.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.3.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.3.json index 658b5dae3a..b35f03f398 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.3.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.4.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.4.json index 82f1b04bb7..c1e37c2f13 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.4.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.5.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.5.json index 5c427297a5..77b521d736 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.5.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.6.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.6.json index e5c353838f..198958f9ab 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.6.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.7.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.7.json index 17f5051814..6d511024be 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.7.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.7.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.8.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.8.json index bc6917ddf4..e16554e137 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.8.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.8.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.9.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.9.json index 32a57dccef..86c3dfcb28 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.9.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--SetupIntent.retrieve.9.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.1.json index f6aa0f5b61..80755ca357 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.2.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.2.json index 14d71e80f1..7fc0c958fd 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.2.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.3.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.3.json index 8aeeaabb6a..c0a86e90b0 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.3.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.4.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.4.json index d1c47a27f1..118c9561d4 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.4.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.5.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.5.json index 2151bb8ac6..c9f6319d4a 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.5.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.6.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.6.json index f02574b4d4..e73876187a 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.6.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.6.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.7.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.7.json index 6761955418..6dbb7a7ae1 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.7.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.7.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.8.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.8.json index f116375f0f..f8a2c44c72 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.8.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.8.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.9.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.9.json index fdee9aaee3..fa4d025b2d 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.9.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.create.9.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.1.json index b48121f324..cd8a34a894 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.2.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.2.json index b634d65b01..79120a26fb 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.2.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.3.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.3.json index 3961e73e01..a7dae7536d 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.3.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.4.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.4.json index 6114e9663f..00db4d40ab 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.4.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.5.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.5.json index 7b65b9ead1..cfe0f20815 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.5.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.6.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.6.json index 6b89e3c2ad..c6ecf57016 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.6.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.7.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.7.json index 5f4b606c45..4744c20eeb 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.7.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.7.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.8.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.8.json index 90a12c1f9e..0edf5aae0d 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.8.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.8.json differ diff --git a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.9.json b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.9.json index 39c5fe39b6..8ba6f825d2 100644 Binary files a/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.9.json and b/corporate/tests/stripe_fixtures/check_upgrade_parameters--checkout.Session.list.9.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.modify.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.modify.1.json index 061371872e..c11351a05b 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.2.json index 10ceca98bc..edd476869b 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.3.json index 10ceca98bc..edd476869b 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.4.json index 10ceca98bc..edd476869b 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.5.json index 10ceca98bc..edd476869b 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.6.json index 390ef02206..da750618c4 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.1.json index 6915eb87da..95323b4b59 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.2.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.2.json index 0dd096f512..d08d7253d0 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.2.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.3.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.3.json index e7eced0510..b100206592 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.3.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.4.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.4.json index 853d6885f4..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.4.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.5.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.5.json deleted file mode 100644 index b451ef2f58..0000000000 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.create.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.create.1.json index bf914816ea..3e9fcb203e 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.finalize_invoice.1.json index dc57da4391..48d19e9721 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.pay.1.json new file mode 100644 index 0000000000..1066bcac95 Binary files /dev/null and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--InvoiceItem.create.1.json index fcb1c3c2e9..23f69ee2e0 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--PaymentIntent.create.1.json deleted file mode 100644 index 5f24b93694..0000000000 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.create.1.json index f935a02191..bb1623d33b 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.list.1.json index e5c2790f52..56e95e23e5 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.retrieve.1.json index f935a02191..bb1623d33b 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--checkout.Session.create.1.json index 249e5154ea..606959b0e9 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--checkout.Session.list.1.json index d93358e01d..ee4141431d 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.5.json deleted file mode 100644 index e9acf0416e..0000000000 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.6.json deleted file mode 100644 index e9acf0416e..0000000000 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.2.json b/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.2.json deleted file mode 100644 index a25db417f6..0000000000 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.3.json b/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.3.json deleted file mode 100644 index 11c2c74e96..0000000000 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.4.json b/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.4.json deleted file mode 100644 index 9647d8490d..0000000000 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.4.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.5.json b/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.5.json deleted file mode 100644 index de2aa3f0f5..0000000000 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.6.json b/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.6.json deleted file mode 100644 index 1f45330625..0000000000 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/double_payment_for_upgrade--PaymentIntent.create.1.json deleted file mode 100644 index 593eda7c96..0000000000 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--PaymentIntent.create.2.json b/corporate/tests/stripe_fixtures/double_payment_for_upgrade--PaymentIntent.create.2.json deleted file mode 100644 index 2b2db87291..0000000000 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--PaymentIntent.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Event.list.1.json b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Event.list.1.json index db65bcd88f..242ca4c06c 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Event.list.1.json and b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.create.1.json b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.create.1.json index 12f7fe2ce3..248f573039 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.finalize_invoice.1.json index 4b64fa13a2..59f5d3d18b 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.list.1.json b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.list.1.json index 85b3bc21fb..5f20b18fd4 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.void_invoice.1.json b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.void_invoice.1.json index c4e14ca2fa..80e63de131 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.void_invoice.1.json and b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--Invoice.void_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--InvoiceItem.create.1.json index f9763e6d86..e1df3adcba 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/downgrade_realm_and_void_open_invoices--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.1.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.1.json index 994ef71bf8..49626a2fb0 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.2.json index 4f86e9f6cb..8d16968939 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.3.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.3.json index 52256ff98a..2efdd93c7c 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.4.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.4.json index ef70525997..f5acf530e4 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.4.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.5.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.5.json index 3cbbbb2b52..aa5d32391c 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.5.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.6.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.6.json index 3086c51378..f1a8c8c62f 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.6.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.6.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.7.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.7.json index bf068bf89d..0831397e6f 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.7.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.7.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.8.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.8.json index 8d14e2f373..2d9b7b2621 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.8.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.8.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.1.json index 77801956d8..d7f7986301 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.2.json index cfb7e499e6..96ab408a57 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.3.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.3.json index 739b6c2b5e..c383669b51 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.3.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.3.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.4.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.4.json index 3b3b2ce479..d1a29f8621 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.4.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.4.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.5.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.5.json index 2b8eaa0971..df170a2608 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.5.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.5.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.6.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.6.json index 6ba6b8cf52..0fdb605a86 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.6.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.6.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.7.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.7.json index bd84b5de3e..5b25ea66ae 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.7.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.7.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.8.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.8.json index 19f69f939a..f26c8230cf 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.8.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.8.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.10.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.10.json index 865c5427f2..dbcfa57263 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.10.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.10.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.12.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.12.json index fac5238946..2011a42942 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.12.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.12.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.13.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.13.json index b7e6c741ff..6d459870f2 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.13.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.13.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.14.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.14.json index 2fb7f84297..420715167a 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.14.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.14.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.15.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.15.json index 8e84ecb504..5b612900fe 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.15.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.15.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.2.json index 307eb86172..389a27baa9 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.3.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.3.json index 307eb86172..389a27baa9 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.6.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.6.json index 9cd39bb913..05f8941be5 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.6.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.7.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.7.json index 3c8e251f6e..6e4609d75f 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.7.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.7.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.8.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.8.json index 2f7be1a0be..6e4609d75f 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.8.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.8.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.1.json index 15289f1503..03b566ba93 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.1.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.2.json index 7466b5b20f..2d238fe928 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.1.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.1.json index 09f5cfcfe6..88971849f5 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.1.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.2.json index 7e4fc532e8..0ee6c9ba92 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.3.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.3.json index 055804492a..8468738adb 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.3.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.void_invoice.3.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--Event.list.1.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Event.list.1.json index 7b0f582052..aafc508c78 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--Event.list.1.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.1.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.1.json index 12f7fe2ce3..e521b31ff7 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.2.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.2.json index b1ce9383d7..df5451bdb8 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.finalize_invoice.1.json index 41187cc8d3..77de2a30cf 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.finalize_invoice.2.json index 2d6bdc8516..92ffeb62e5 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.list.1.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.list.1.json index 15467d9daa..7c29624cbf 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.1.json index f9763e6d86..b55832f0e2 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.2.json index 1ae1623514..728c7130b2 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.modify.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.modify.1.json index bea2c7b04e..00fd7aa441 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.2.json index 6dc501b6fb..1068accce3 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.3.json index 6dc501b6fb..1068accce3 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.4.json index 6dc501b6fb..1068accce3 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.5.json index 6dc501b6fb..1068accce3 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.6.json index 6dc501b6fb..1068accce3 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.7.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.7.json index cf6d835d56..cbfd2cf33b 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.7.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.7.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Event.list.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Event.list.1.json index 4ff226bdf4..f901bd8492 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Event.list.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Event.list.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Event.list.2.json index 6aa86a0d3a..0d2c263302 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Event.list.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.1.json index 59b13b0a2c..235772c51f 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.2.json index c222739bc2..4b6ebf1d83 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.3.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.3.json index 0d5295d5d2..e37ad8e4fe 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.1.json index 80c1e59c3e..fa708acd12 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.2.json index 3ab17d2a79..7b9e6aca6f 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.3.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.3.json index c22f29fe32..51cb2b274b 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.3.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.3.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.4.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.4.json index 081b21dcde..ad24964ed0 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.4.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.5.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.5.json index 99fa7d4a61..10a772ca42 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.5.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.6.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.6.json index f4ba883a06..390643e552 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.6.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.7.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.7.json index 4104fee505..9156def73f 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.7.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.7.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.1.json index 3e1ad97f06..697361235d 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.2.json index e31609ac96..d28b83c876 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.3.json index af94cd0fc3..2a108e06a4 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.create.1.json index d2ac9553db..cc6555390b 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.list.1.json index 60bafea795..3b48f77c51 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.retrieve.1.json index d2ac9553db..cc6555390b 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--checkout.Session.create.1.json index f86b368f7a..a22563c6c6 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--checkout.Session.list.1.json index d1cd2d5a7b..38f7c6e9a6 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Event.list.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Event.list.1.json index e21c6b0594..f0284e1b7d 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Event.list.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.create.1.json index 98f29fc3b5..b3519ad648 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.create.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.create.2.json index f1fb6398d8..9ba2473169 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.finalize_invoice.1.json index 23ac60195d..e90415b7bc 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.finalize_invoice.2.json index 74083859d7..a05e5fc788 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.2.json index 6834b75b71..32a904aba8 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.3.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.3.json index ad6ddde822..32a904aba8 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.4.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.4.json index 3355c77c06..32a904aba8 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.4.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.5.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.5.json index 9757d6dec8..828812013e 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.5.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Invoice.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--InvoiceItem.create.1.json index c39e2caf13..f5dc26cb19 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--InvoiceItem.create.2.json index bdc219dca6..28b1958667 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.modify.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.modify.1.json index 0da050302e..ebea5710b1 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.1.json index 2dea1126ff..ad86fea345 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.2.json index 2dea1126ff..ad86fea345 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.3.json index 2dea1126ff..ad86fea345 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.4.json index 2dea1126ff..ad86fea345 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.1.json index c54d1dbd37..6201c7eb44 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.2.json index 7d75ac966a..8f956255e6 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.3.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.3.json index a4196576fb..297b3f9641 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.3.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.4.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.4.json index a3dad38aca..19c430990f 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.4.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.5.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.5.json index c461417590..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.5.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.6.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.create.1.json index 465e21090c..f4f30938d0 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.finalize_invoice.1.json index cb7902819f..edfadb26f1 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.list.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.list.2.json index 105096b5f5..e39960ab72 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.pay.1.json new file mode 100644 index 0000000000..dbab7e99a1 Binary files /dev/null and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--InvoiceItem.create.1.json index fcb1c3c2e9..23f69ee2e0 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--InvoiceItem.create.2.json deleted file mode 100644 index 11622f30a7..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--InvoiceItem.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--PaymentIntent.create.1.json deleted file mode 100644 index 0db9f0bcc9..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.create.1.json index 42ba5327a9..1112c7d321 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.list.1.json index 8bce04eaef..8e7ff0dc87 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.retrieve.1.json index 42ba5327a9..1112c7d321 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--billing_portal.Configuration.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--billing_portal.Configuration.create.1.json index 1e5f4cf12d..c63c543d24 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--billing_portal.Configuration.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--billing_portal.Configuration.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--billing_portal.Session.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--billing_portal.Session.create.1.json index 788bcbc7e0..bb6982f1ef 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--billing_portal.Session.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--billing_portal.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--checkout.Session.create.1.json index 4dfb93427b..3a1786d399 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--checkout.Session.list.1.json index 9c7621661f..b315616142 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.create.1.json index f163efc1bc..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.modify.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.modify.1.json index a143863da7..21451035c9 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.1.json index 39c31864d2..53cb7442c9 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.2.json index 39c31864d2..53cb7442c9 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.3.json index 39c31864d2..53cb7442c9 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.4.json index 39c31864d2..53cb7442c9 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.1.json index aaa7abefa9..32fe7afef8 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.2.json index d99fff8db0..8d7df827b7 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.3.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.3.json index 8a632f9bb7..d2735fbd63 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.3.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.4.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.4.json index 8fa65c3930..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.4.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.5.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.5.json deleted file mode 100644 index dd57b445df..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.6.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.create.1.json index 8b2a89ee09..8f204802be 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.finalize_invoice.1.json index 4f93b78ee6..1c211cbf05 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.list.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.list.2.json index ea522785b7..e39960ab72 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.pay.1.json new file mode 100644 index 0000000000..e04d5da004 Binary files /dev/null and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.1.json index c351f1fdd5..a4c83d539a 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.2.json index f6b553cfa6..df3e1a6985 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.3.json deleted file mode 100644 index df3e1a6985..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--PaymentIntent.create.1.json deleted file mode 100644 index 4c9ca59326..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.create.1.json index 8eb238624b..0ff5f8e3c7 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.list.1.json index 6e2fff2bc7..450c823413 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.retrieve.1.json index 8eb238624b..0ff5f8e3c7 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--billing_portal.Configuration.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--billing_portal.Configuration.create.1.json index 86e650e983..60da1a8bcb 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--billing_portal.Configuration.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--billing_portal.Configuration.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--billing_portal.Session.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--billing_portal.Session.create.1.json index 0a0b1d7fb9..70207e91b6 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--billing_portal.Session.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--billing_portal.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--checkout.Session.create.1.json index 5543066deb..db30cdcfd5 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--checkout.Session.list.1.json index 1b3a0b4e6e..b3ec6dd925 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_realm--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.modify.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.modify.1.json index d7e5ae3962..a07b4b4c52 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.1.json index 489c272102..fc734d6763 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.2.json index 489c272102..fc734d6763 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.3.json index 489c272102..fc734d6763 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.4.json index 489c272102..fc734d6763 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.1.json index 5179fcb74e..b1eaaf29b4 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.2.json index 74f90e1a3c..2af3fbeccb 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.3.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.3.json index 4f1e748086..fc7c89df9c 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.3.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.4.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.4.json index bc9fecc002..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.4.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.5.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.5.json deleted file mode 100644 index 30e6aa0ad1..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.6.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.create.1.json index 8b2a89ee09..8f204802be 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.finalize_invoice.1.json index 3418d55f42..ded5c4ed68 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.list.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.list.2.json index 8ddfe7a796..e39960ab72 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.pay.1.json new file mode 100644 index 0000000000..7cf125a62c Binary files /dev/null and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.1.json index c351f1fdd5..a4c83d539a 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.2.json index f6b553cfa6..df3e1a6985 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.3.json deleted file mode 100644 index df3e1a6985..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--PaymentIntent.create.1.json deleted file mode 100644 index f5cf9d23b7..0000000000 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.create.1.json index 8fe644fea6..e45edbe45f 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.list.1.json index b474cb25d2..1f2bb5bbbe 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.retrieve.1.json index 8fe644fea6..e45edbe45f 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--billing_portal.Configuration.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--billing_portal.Configuration.create.1.json index d2186a83f9..18df8676d0 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--billing_portal.Configuration.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--billing_portal.Configuration.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--billing_portal.Session.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--billing_portal.Session.create.1.json index 02d648bfc2..d3df16e8b5 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--billing_portal.Session.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--billing_portal.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--checkout.Session.create.1.json index 6cb18ccb8a..62b3b346cf 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--checkout.Session.list.1.json index e3ffddeaa4..6c46bbb276 100644 Binary files a/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/get_past_invoices_session_url_for_remote_server--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.create.1.json index c356e43b60..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.modify.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.modify.1.json index e147115282..cf5264860d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.1.json index 2e2feec7c7..36cc773544 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.2.json index 2e2feec7c7..36cc773544 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.3.json index 2e2feec7c7..36cc773544 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.4.json index 2e2feec7c7..36cc773544 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.1.json index bf846c330a..3867818e5c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.2.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.2.json index ecd3baa43d..2b3b12cc74 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.2.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.3.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.3.json index e7fd98e0df..c0611cc2c4 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.3.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.4.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.4.json index 6d922067af..114fe9cd00 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.4.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.6.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.5.json similarity index 100% rename from corporate/tests/stripe_fixtures/add_minimum_licenses--Event.list.6.json rename to corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Event.list.5.json diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.create.1.json index 32088ec377..ce7570d59a 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.finalize_invoice.1.json index b5c676650e..e5f7f2fa7f 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.list.2.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.list.2.json index 0abe66f45c..8d4103749b 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.pay.1.json new file mode 100644 index 0000000000..1fce5271a0 Binary files /dev/null and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.1.json index 02afb0c5bf..c51e6b7239 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.2.json index 2b9b2e31b6..242630a631 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.3.json deleted file mode 100644 index 6dd0b9bba7..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--PaymentIntent.create.1.json deleted file mode 100644 index 99adf8661c..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.create.1.json index 0c778c2321..7fd8c89408 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.list.1.json index bc1fed01ab..2dc0ee9d43 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.retrieve.1.json index 0c778c2321..7fd8c89408 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--checkout.Session.create.1.json index c2c6b2aa31..ec72017a3a 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--checkout.Session.list.1.json index acd035d7d8..4aab3acb78 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_realm_upgrade--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.create.1.json index 05b326f8db..3d6b9bc66c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.modify.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.modify.1.json index fc54f8f801..a926c01aca 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.1.json index ad7b096a0f..84d5eea348 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.2.json index ad7b096a0f..84d5eea348 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.3.json index ad7b096a0f..84d5eea348 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.4.json index ad7b096a0f..84d5eea348 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.1.json index 9e933033df..2df9af0d76 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.2.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.2.json index a30985a4fe..8fbe40f379 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.2.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.3.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.3.json index 9477f1675f..ba8dd1931b 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.3.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.4.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.4.json index 3d46e7c9e0..dd6809bd6a 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.4.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.5.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.5.json index 36cc19d60e..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.5.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.6.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.create.1.json index de730d68ca..2ee818ce55 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.finalize_invoice.1.json index cf782642ed..a24f3a4c29 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.list.2.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.list.2.json index eeaeda09b8..bf571cbad8 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.pay.1.json new file mode 100644 index 0000000000..fa736cdbc7 Binary files /dev/null and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.1.json index d92f7dd1ce..12dc466795 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.2.json index fc528ef8a5..242630a631 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.3.json deleted file mode 100644 index 575b311045..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--PaymentIntent.create.1.json deleted file mode 100644 index 49edb78f38..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.create.1.json index ef19a1cf9f..724fe4b3cd 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.list.1.json index d7ca834a50..6f05001cc5 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.retrieve.1.json index ef19a1cf9f..724fe4b3cd 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--checkout.Session.create.1.json index f4caa1f07c..5f3553d26a 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--checkout.Session.list.1.json index 843a558b2e..205e1dce2f 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/invoice_initial_remote_server_upgrade--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.create.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.create.1.json similarity index 100% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.create.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.create.1.json diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.modify.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.modify.1.json similarity index 91% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.modify.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.modify.1.json index 6d74cea38a..6156c2b9d2 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.retrieve.1.json similarity index 94% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.retrieve.1.json index 6c3ac7d267..72e72b6cf6 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.retrieve.2.json similarity index 94% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.2.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.retrieve.2.json index 6c3ac7d267..72e72b6cf6 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.retrieve.3.json similarity index 94% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.3.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.retrieve.3.json index 6c3ac7d267..72e72b6cf6 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.1.json similarity index 89% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.1.json index e02071fcfe..bceaf8a5eb 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.1.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.2.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.2.json new file mode 100644 index 0000000000..50567cbf15 Binary files /dev/null and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.5.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.3.json similarity index 59% rename from corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.5.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.3.json index 9aa1d835d4..9e0633c515 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.5.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.13.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.4.json similarity index 100% rename from corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.13.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Event.list.4.json diff --git a/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.create.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.create.1.json new file mode 100644 index 0000000000..b3ec5b9961 Binary files /dev/null and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.finalize_invoice.1.json new file mode 100644 index 0000000000..b401e56808 Binary files /dev/null and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Invoice.list.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.list.1.json similarity index 100% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Invoice.list.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.list.1.json diff --git a/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.pay.1.json new file mode 100644 index 0000000000..a7bda890e5 Binary files /dev/null and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--InvoiceItem.create.1.json similarity index 93% rename from corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--InvoiceItem.create.2.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--InvoiceItem.create.1.json index 11622f30a7..c9255a8599 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--SetupIntent.create.1.json similarity index 74% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.create.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--SetupIntent.create.1.json index af85e80340..d71e123cd8 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--SetupIntent.list.1.json similarity index 87% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.list.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--SetupIntent.list.1.json index 711ab63f1c..4b6d95dfe7 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--SetupIntent.retrieve.1.json similarity index 74% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.retrieve.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--SetupIntent.retrieve.1.json index af85e80340..d71e123cd8 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--checkout.Session.create.1.json similarity index 81% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--checkout.Session.create.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--checkout.Session.create.1.json index 5ff6c6e695..f38054ad37 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--checkout.Session.list.1.json similarity index 88% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--checkout.Session.list.1.json rename to corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--checkout.Session.list.1.json index 4405ee963c..9254b9ff70 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/invoice_payment_succeeded_event_with_uncaught_exception--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Customer.modify.1.json index 287b98bb50..6d00bc246d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.1.json index c460a2742d..23e13e0efc 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.2.json index c460a2742d..23e13e0efc 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.3.json index c460a2742d..23e13e0efc 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.4.json index c460a2742d..23e13e0efc 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/invoice_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.1.json index 5217cbf4ec..c2efb8ab87 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.2.json index 23729c8f66..06e6b2835d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.2.json and b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.3.json b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.3.json index 31cb189d0b..75fe3370dd 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.3.json and b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.4.json b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.4.json index 31c17887ea..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.4.json and b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.6.json b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.1.json index ee4c6393e4..f4f30938d0 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.2.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.2.json index 4bbe33b6a1..c9bac2e7fd 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.1.json index f0c25828aa..2ec5ea1ba4 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.2.json index f1542daa3e..8df2c4d0a4 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.list.2.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.list.2.json index cb38c5b4d4..841129e2a7 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..b5b31b51cf Binary files /dev/null and b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.1.json index fcb1c3c2e9..23f69ee2e0 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.2.json index 11622f30a7..b387ea41d1 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.3.json index 631ea304da..2601d733e7 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.4.json index baae44446f..f81ed27821 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.5.json deleted file mode 100644 index 12c72dfa0a..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--PaymentIntent.create.1.json deleted file mode 100644 index 7b9105e1b0..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.create.1.json index 969ddf5e85..932889d46b 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.list.1.json index 38ed75b800..c81aea17f5 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.retrieve.1.json index 969ddf5e85..932889d46b 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--checkout.Session.create.1.json index 9b4a8b9e30..557d931fc7 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/invoice_plan--checkout.Session.list.1.json index 37af2994a4..731f76fbb3 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.create.1.json index eb66e356bb..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.modify.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.modify.1.json index 4f991d3aea..517839b63d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.1.json index 3190702788..013856ad7e 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.2.json index 3190702788..013856ad7e 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.3.json index 3190702788..013856ad7e 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.4.json index 3190702788..013856ad7e 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.1.json index a72ce23363..e46c6248d9 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.2.json index 3ef11d0f04..e72c42e197 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.3.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.3.json index 36125bb2a8..5fa62c27b4 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.3.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.4.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.4.json index 7fb767ed79..32f3923a81 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.4.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.create.1.json index f07b172fd3..ce7570d59a 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.create.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.create.2.json index 234942fd25..135265bce4 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.finalize_invoice.1.json index 4092062249..c1e94f0de2 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.finalize_invoice.2.json index 81c8458e9f..efd8ed633a 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.list.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.list.2.json index ff0cf012c8..d621362edf 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.pay.1.json similarity index 72% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Invoice.finalize_invoice.1.json rename to corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.pay.1.json index 288a25a124..7ad1528937 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.1.json index 041633b56c..c51e6b7239 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.2.json index 82e3bb8ef9..242630a631 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.3.json index 4ce7811522..792aded61f 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.4.json index c0d44abd08..bfc09bcfdc 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.5.json index 54f069ed03..73ff729fe6 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.5.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.6.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.6.json deleted file mode 100644 index fba6930087..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--InvoiceItem.create.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--PaymentIntent.create.1.json deleted file mode 100644 index 3df9a8424a..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.create.1.json index 5e3b563897..d50d57e6be 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.list.1.json index de6c2ec1f7..0e730a07dd 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.retrieve.1.json index 5e3b563897..d50d57e6be 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--checkout.Session.create.1.json index efca8c8739..140ed8221c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--checkout.Session.list.1.json index cbddb5ab82..b8369c5575 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.modify.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.modify.1.json index 95d1df7997..20833f66cd 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.1.json index 218883185d..54960ede6d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.2.json index 218883185d..54960ede6d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.3.json index 218883185d..54960ede6d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.4.json index 218883185d..54960ede6d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.1.json index 66d52d8f6f..a0ed3eb503 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.2.json index b1ca6658fe..4c47afbf35 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.3.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.3.json index 4adc442bb8..c42ced249d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.3.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.4.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.4.json index e00f952ed3..bc77a1298c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.4.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.create.1.json index d02d9463d1..2ee818ce55 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.create.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.create.2.json index c94c03c007..54c62ccd21 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.finalize_invoice.1.json index 755c5ec7e5..3001cc68dc 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.finalize_invoice.2.json index 9c3666f4c1..6e4017edc2 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.list.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.list.2.json index 1ab39a2032..ea2366f8cd 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.pay.1.json new file mode 100644 index 0000000000..3479f00b0e Binary files /dev/null and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.1.json index d320083b02..12dc466795 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.2.json index 40deb8de9c..242630a631 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.3.json index 4ce7811522..792aded61f 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.4.json index c0d44abd08..30a95619ad 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.5.json index 67e889dd03..73ff729fe6 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.5.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--PaymentIntent.create.1.json deleted file mode 100644 index b868828e97..0000000000 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.create.1.json index 134f71ff5a..ac773de1ac 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.list.1.json index 5e30f4acef..308c3853ca 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.retrieve.1.json index 134f71ff5a..ac773de1ac 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--checkout.Session.create.1.json index 374a2020b2..a80ed13105 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--checkout.Session.list.1.json index e8ce746bed..a017bfe760 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.create.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.create.1.json index d3ab7466e1..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.create.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.modify.1.json index 2eba77b785..531a20bda2 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.1.json index 4700d35b53..723e1470fe 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.2.json index 4700d35b53..723e1470fe 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.3.json index 4700d35b53..723e1470fe 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.4.json index 4700d35b53..723e1470fe 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.create.1.json index 1d1c0da36b..274d210913 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.finalize_invoice.1.json index e4d1a16019..0449240fe7 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.list.2.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.list.2.json index b744b45077..91617c7a92 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--InvoiceItem.create.1.json index b6f37a0d6b..5a66ec8d12 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--InvoiceItem.create.2.json index 7b0be491cd..df3e1a6985 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.create.1.json index 77b2d9ba28..4fde273e0c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.list.1.json index 2a3882a55c..9b86c74d3b 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.retrieve.1.json index 77b2d9ba28..4fde273e0c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--checkout.Session.create.1.json index 5bb73a2034..e7eb852eb4 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--checkout.Session.list.1.json index dce12681a3..9109248d42 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_realm_legacy_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.modify.1.json index af040d6ebf..c0383ee3d9 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.1.json index 9fa212c26a..5b2a67f4ed 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.2.json index 9fa212c26a..5b2a67f4ed 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.3.json index 9fa212c26a..5b2a67f4ed 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.4.json index 9fa212c26a..5b2a67f4ed 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Invoice.finalize_invoice.1.json index 20663d0de0..a08cc3132c 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Invoice.list.2.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Invoice.list.2.json index eb17232942..5ea0ab0598 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.create.1.json index 649eed8ec6..c37673fb0a 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.list.1.json index a26a4efb08..ee38213cde 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.retrieve.1.json index 649eed8ec6..c37673fb0a 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--checkout.Session.create.1.json index e9aca33bb8..7a595dcfd4 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--checkout.Session.list.1.json index eefe8c3b55..a56453b693 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/invoice_scheduled_upgrade_server_legacy_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.create.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.create.1.json index 2d5be59dcd..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.create.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.modify.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.modify.1.json index d8a6e4cc1b..0e5470f1aa 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.1.json index 6c4cbb0140..21ce37104a 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.2.json index 6c4cbb0140..21ce37104a 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.3.json index 6c4cbb0140..21ce37104a 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.4.json index 6c4cbb0140..21ce37104a 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.5.json index 920ef4f3eb..bd05ec0007 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.1.json index 878dd4cf6f..2987bbfb75 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.2.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.2.json index 1a23db83aa..a45b033790 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.2.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.3.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.3.json index 49f2408e18..ff45aab5ce 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.3.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.4.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.4.json index 514704e645..0f93576120 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.4.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.create.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.create.1.json index b8669a5c16..8f204802be 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.finalize_invoice.1.json index 735ac024ff..c1d2b488d8 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.pay.1.json similarity index 81% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Invoice.finalize_invoice.1.json rename to corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.pay.1.json index 63345df9dc..42ee92bbc8 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.1.json index c351f1fdd5..a4c83d539a 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.2.json index f6b553cfa6..df3e1a6985 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.3.json deleted file mode 100644 index 6053241978..0000000000 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--PaymentIntent.create.1.json deleted file mode 100644 index f339119071..0000000000 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.create.1.json index 2d44c876a7..4f95aa7807 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.list.1.json index 2f0dae694d..910579618b 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.retrieve.1.json index 2d44c876a7..4f95aa7807 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--checkout.Session.create.1.json index fb71160798..ab73ba1136 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--checkout.Session.list.1.json index fcdaa77678..370630390c 100644 Binary files a/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/migrate_customer_server_to_realms_and_upgrade--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.modify.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.modify.1.json index 828b03f680..e7ddbee88f 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.1.json index 33f1a5cc6c..fdbbbef0ce 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.2.json index 33f1a5cc6c..fdbbbef0ce 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.3.json index 33f1a5cc6c..fdbbbef0ce 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.4.json index 33f1a5cc6c..fdbbbef0ce 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.5.json index d2e9309f6a..7de6dd22a8 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.1.json index a78f73dbd7..a60fe821b4 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.2.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.2.json index 97a939c624..105ebc6432 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.2.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.3.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.3.json index 22039a294a..1a93c5b799 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.3.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.4.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.4.json index b5c6ad8c81..8dcef0e8d9 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.4.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.5.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.5.json index 3696578a0e..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.5.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.6.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.create.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.create.1.json index 5d072c4ee5..8f204802be 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.finalize_invoice.1.json index 6774868ae2..a05a0d7a0b 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.pay.1.json new file mode 100644 index 0000000000..d2ebe69a03 Binary files /dev/null and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.1.json index c351f1fdd5..a4c83d539a 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.2.json index f6b553cfa6..df3e1a6985 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.3.json deleted file mode 100644 index e23b26f397..0000000000 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--PaymentIntent.create.1.json deleted file mode 100644 index 797a278c88..0000000000 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.create.1.json index cac481c860..c7a98d66b6 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.list.1.json index 86512779df..41eca6ca79 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.retrieve.1.json index cac481c860..c7a98d66b6 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--checkout.Session.create.1.json index a2510cf57e..28937f353a 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/non_sponsorship_billing--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/non_sponsorship_billing--checkout.Session.list.1.json index 0fbad52a65..9983612e7a 100644 Binary files a/corporate/tests/stripe_fixtures/non_sponsorship_billing--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/non_sponsorship_billing--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.2.json b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.2.json deleted file mode 100644 index 74343e065f..0000000000 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.3.json b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.3.json deleted file mode 100644 index 8f39819b1a..0000000000 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.4.json b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.4.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.4.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--InvoiceItem.create.1.json deleted file mode 100644 index 457258b2d7..0000000000 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--InvoiceItem.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--PaymentIntent.create.1.json deleted file mode 100644 index 3f541cdc90..0000000000 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.1.json index 026931f3b8..c177285fb4 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.2.json index e90ad7608c..5a8e8b4f90 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.3.json index d13f506178..0d487954be 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.modify.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.1.json index 9a308d96c3..8767319f9d 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.2.json index 9a308d96c3..8767319f9d 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.3.json index 9a308d96c3..8767319f9d 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.4.json index 9a308d96c3..8767319f9d 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.5.json index 2f5bb714da..ffbc02334b 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.7.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.7.json index ccc3e6c24e..d6a03563af 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.7.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.7.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.1.json index e3498d940b..39abd1bf5b 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.2.json index d12b7a51fb..afe3766c70 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.3.json index e2d1f05b37..5789d82c36 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.4.json b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.4.json index 83d1a5de28..c5f13c1c68 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.4.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.5.json b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.5.json index 0f1d058f14..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.5.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.6.json b/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.create.1.json index ee4c6393e4..f4f30938d0 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.create.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.create.2.json index e427e4982c..c5e46554da 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.finalize_invoice.1.json index 1252f54516..303f639180 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.finalize_invoice.2.json index 73f7f698f8..2878cddcb0 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.2.json index 8996c2ec36..ed0b2cf455 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.3.json index 7dc0c80efe..6cf7d59213 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.4.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.4.json index 1bf84b072d..f169e4f2f4 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.4.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.1.json index 845b07b0de..28dea56bf6 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.2.json index cc4a8f634f..b4ecda4649 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.3.json new file mode 100644 index 0000000000..748e6ba1f4 Binary files /dev/null and b/corporate/tests/stripe_fixtures/replace_payment_method--Invoice.pay.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.1.json index fcb1c3c2e9..23f69ee2e0 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.2.json index 11622f30a7..d7197b5b9e 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.3.json deleted file mode 100644 index e749716c47..0000000000 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentIntent.create.1.json deleted file mode 100644 index a9fcb2aac0..0000000000 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.detach.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.detach.1.json index c7dcf72535..9c115248c5 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.detach.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.detach.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.detach.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.detach.2.json index bc868b0c3d..ebcc7b0659 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.detach.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.detach.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.list.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.list.1.json index 1a8b590201..60c4ae96e2 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.list.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.list.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.list.2.json index 6eab3d3513..6f68c969c4 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.list.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentMethod.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.1.json index 8d07abc7c2..2bad4a22cc 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.2.json index a48ed6219c..b3b35fe694 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.3.json index 9b9e3aef57..508e5bfeb5 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.4.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.4.json index 64a16a47e3..6385776cbe 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.4.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.1.json index 5cd9a27e42..e271d88257 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.2.json index f9d8333872..318cb3878e 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.3.json index 8a4db489b3..a9f0d2584d 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.4.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.4.json index 3d07c82da5..ce6fe5174a 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.4.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.1.json index 8d07abc7c2..2bad4a22cc 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.2.json index 9b9e3aef57..508e5bfeb5 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.3.json index 64a16a47e3..6385776cbe 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--SetupIntent.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.1.json index ea14f0a159..d0510ea326 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.2.json index c4bbadeb3c..ac8c6a8c61 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.3.json index df7f068862..cc89b4213c 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.4.json b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.4.json index 6e99501a04..6a10f115e8 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.4.json and b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.5.json b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.5.json index 10f1bb4c5c..0bedb17c9d 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.5.json and b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.1.json index ac1bb3bcef..6b78e3b711 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.2.json b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.2.json index edcc3b5554..dd5c285eb9 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.2.json and b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.3.json b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.3.json index e4d33a3cce..0c57e67185 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--checkout.Session.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.create.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.create.1.json index 98e3a50d5c..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.create.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.modify.1.json index 53d29e92a0..2ee953049d 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.1.json index f8aeb5a3c4..2d9317b2cb 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.2.json index f8aeb5a3c4..2d9317b2cb 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.3.json index f8aeb5a3c4..2d9317b2cb 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.4.json index f8aeb5a3c4..2d9317b2cb 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Invoice.create.1.json index 430f8e42e9..a8cd1350de 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Invoice.finalize_invoice.1.json index eeb0143aa6..2ac8fad2a8 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--InvoiceItem.create.1.json index 155c43aae0..20b4bcf572 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.create.1.json index 291e57c326..7ec73bc85b 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.list.1.json index 7733df5782..7bd339625b 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.retrieve.1.json index 291e57c326..7ec73bc85b 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.create.1.json index d3221b2dda..4f67420daf 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.list.1.json index 42fba28844..3743b0970f 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/schedule_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.modify.1.json index e4549a34cc..6981a75d2d 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.1.json index 83a435845f..6e207add4a 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.2.json index 83a435845f..6e207add4a 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.3.json index 83a435845f..6e207add4a 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.4.json index 83a435845f..6e207add4a 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Invoice.finalize_invoice.1.json index b2bb83b501..f5fbba0f4a 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.create.1.json index 5a37284417..bff05f8388 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.list.1.json index 27af8080ef..18d3babb98 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.retrieve.1.json index 5a37284417..bff05f8388 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.create.1.json index 092e6a3e22..a055c66bb5 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.list.1.json index dd8a7e5b46..be707decd8 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/schedule_server_legacy_plan_upgrade_to_fixed_price_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.modify.1.json index e40d967f17..5ba26ffcb0 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.1.json index 267e4bb71b..88574a3fe8 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.2.json index 267e4bb71b..88574a3fe8 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.3.json index 267e4bb71b..88574a3fe8 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.4.json index 267e4bb71b..88574a3fe8 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.5.json index 323de834d2..4415aaf7f7 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.1.json index 6237b500bf..15cd9643b0 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.2.json index 8e7babe454..050a8ee4b6 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.2.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.3.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.3.json index 4a73bcbfee..832c8f0d89 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.3.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.4.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.4.json index 31a6cebf51..bfafd52b12 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.4.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.create.1.json index 9b4d3b824a..4e5ce54f1b 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.create.2.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.create.2.json index 9d08efb7ea..666c7c8f8d 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.finalize_invoice.1.json index dc4434647a..0d738d3e0e 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.finalize_invoice.2.json index 34a47c3af6..520cf528c9 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..34626d07f9 Binary files /dev/null and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.1.json index a881a900d0..0ea29bcb19 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.2.json index 2f3abc4af2..df3e1a6985 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.3.json index df3e1a6985..6442415879 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.4.json deleted file mode 100644 index 31853fdbac..0000000000 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--InvoiceItem.create.4.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--PaymentIntent.create.1.json deleted file mode 100644 index 2e71955a27..0000000000 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.create.1.json index d8c5644b9f..00a3849657 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.list.1.json index 117fe79977..20ca6a51cc 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.retrieve.1.json index d8c5644b9f..00a3849657 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--checkout.Session.create.1.json index 785e302ca9..30fb066c20 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--checkout.Session.list.1.json index 2e4cd60ded..f9c94c99bb 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/schedule_server_upgrade_to_fixed_price_business_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.create.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.create.1.json index 20caf50630..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.create.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.modify.1.json index 7de126ac32..da10a5843e 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.1.json index c9f7c66083..1192e9d006 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.2.json index c9f7c66083..1192e9d006 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.3.json index c9f7c66083..1192e9d006 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.4.json index c9f7c66083..1192e9d006 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.5.json index 5b2f185d49..bc3c39d317 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.1.json index 6f39edc965..f06d999cd3 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.2.json index 4275a425b1..434f26dc59 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.2.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.3.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.3.json index 7d0e7bc4ee..2f5cccf8c1 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.3.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.4.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.4.json index 77103978f8..a07e6d838c 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.4.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.5.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.5.json index ec05147750..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.5.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.6.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.create.1.json index fca2a26990..58c6626e8d 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.create.2.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.create.2.json index bb39bd9dd8..666c7c8f8d 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.finalize_invoice.1.json index c8dacb2289..2782f68efc 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.finalize_invoice.2.json index e647a38b38..62dcf305f2 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..162c3673bf Binary files /dev/null and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.1.json index ea4a30e3dd..26f336dc6f 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.2.json index bca5d0cfdf..df3e1a6985 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.3.json index 23dc6bbb3f..6442415879 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.4.json deleted file mode 100644 index 1767445d0e..0000000000 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--InvoiceItem.create.4.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--PaymentIntent.create.1.json deleted file mode 100644 index a3b73a44f0..0000000000 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.create.1.json index bb1f5334af..7322b4eefe 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.list.1.json index 48459231b5..7c5cd8065f 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.retrieve.1.json index bb1f5334af..7322b4eefe 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--checkout.Session.create.1.json index 0f5123de80..3d81ab26e4 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--checkout.Session.list.1.json index 92770da9b5..a1009d1086 100644 Binary files a/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/schedule_upgrade_to_fixed_price_annual_business_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.modify.1.json index ad61a50005..6e9246ff35 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.1.json index 9172aacdee..ae95911774 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.2.json index 9172aacdee..ae95911774 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.3.json index 9172aacdee..ae95911774 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.4.json index 9172aacdee..ae95911774 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.1.json index c396392780..714670a73c 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.2.json index 2984f0d76e..597a2033ff 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.2.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.3.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.3.json index 75269287fb..54eb1e3972 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.3.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.4.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.4.json index ee14653f78..d0d730e29d 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.4.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.5.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.5.json index 7366e527d8..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.5.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.6.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.create.1.json index ee4c6393e4..f4f30938d0 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.finalize_invoice.1.json index 78fd6c344d..ea2bdd7274 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..c99196d7a0 Binary files /dev/null and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--InvoiceItem.create.1.json index fcb1c3c2e9..23f69ee2e0 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--InvoiceItem.create.2.json deleted file mode 100644 index 11622f30a7..0000000000 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--InvoiceItem.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--PaymentIntent.create.1.json deleted file mode 100644 index 6c74dcabc3..0000000000 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.create.1.json index e6093abe4a..fb196ae0a2 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.list.1.json index e86f1ff111..bddb4a9992 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.retrieve.1.json index e6093abe4a..fb196ae0a2 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--checkout.Session.create.1.json index 3e5de934d1..6fb8797f9c 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--checkout.Session.list.1.json index 23d83bcc49..43a85b8e47 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.modify.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.modify.1.json index 104d9961de..d8dfbf0ab4 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.1.json index 3c67cad2d6..402d340a9b 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.2.json index 3c67cad2d6..402d340a9b 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.3.json index 3c67cad2d6..402d340a9b 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.4.json index 3c67cad2d6..402d340a9b 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.5.json index f67f81dba4..95620c751e 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.6.json index c6cb82988d..b8c77c1d7b 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.1.json index 22d03d26f5..4574c3856d 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.2.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.2.json index c4e8042cba..01da63ba0b 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.2.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.3.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.3.json index f5a736a639..b5fdc14874 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.3.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.4.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.4.json index adae2168ef..9297923303 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.4.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.5.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.5.json index 7213f6b609..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.5.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.6.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.1.json index ee4c6393e4..f4f30938d0 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.2.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.2.json index 196b4cf17c..0bcf70b87c 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.3.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.3.json index 94e3f9651b..7c7187bf49 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json index a44c1b29dc..9522e24807 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.2.json index d43f3dfa5c..cc5794abb9 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.3.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.3.json index 9d7d81233c..1c2ec5fdc0 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.3.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.finalize_invoice.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.list.2.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.list.2.json index 03a29ca342..f46f869c11 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.list.3.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.list.3.json index 22502c2678..a412b31025 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.pay.1.json new file mode 100644 index 0000000000..288bcdba2f Binary files /dev/null and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.1.json index fcb1c3c2e9..23f69ee2e0 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.2.json index 11622f30a7..eb11fae66f 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.3.json index 088916fb64..5a426cf722 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.4.json index 6f22f40045..f1048ebd03 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.5.json deleted file mode 100644 index 05b0e1fc5f..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--InvoiceItem.create.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--PaymentIntent.create.1.json deleted file mode 100644 index 4b0d6dc443..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.create.1.json index 94b630546c..02aa794dc9 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.list.1.json index 003da69c4b..5ea6ddbe53 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.retrieve.1.json index 94b630546c..02aa794dc9 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--checkout.Session.create.1.json index e9c24980ec..032252c63f 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--checkout.Session.list.1.json index 80f7ea1a05..389284aee6 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.modify.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.modify.1.json index 4218f508ce..642e3f111d 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.1.json index 27cd964b13..4d4862e550 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.2.json index 27cd964b13..4d4862e550 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.3.json index 27cd964b13..4d4862e550 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.4.json index 27cd964b13..4d4862e550 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.5.json index 22b3e93c23..763fd9f09e 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.1.json index 8829385f1a..0c27339767 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.2.json index 0a2b271bef..a9daff7a54 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.3.json index 42c868a32e..ec3880cc9c 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.4.json index 372087391a..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.5.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.5.json deleted file mode 100644 index 5253233b56..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.6.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.1.json index b3047826e0..7d3a76cd31 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.2.json index 376ccdc497..a64f3a4948 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.3.json index 86cc91a2ec..1c53c281d2 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.4.json index 26bac675f3..e7ca750b86 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.5.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.5.json index 37f8fd4ef2..448fdf70cc 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.5.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json index 0e184f49c5..382bad3295 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.2.json index 96cbe50314..8bdccaa6bf 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.3.json index 02642c9f20..a8db2bbcfe 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.4.json index 09577d8338..f3069c0f76 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.5.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.5.json index b94adf6db6..ceb124971b 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.5.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.2.json index 7ab0362abe..52caa34ec3 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.3.json index 651a7f7242..f9c88495b9 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.4.json index f31b769eee..b9db3ebb12 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.pay.1.json new file mode 100644 index 0000000000..feb18ff03a Binary files /dev/null and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.1.json index 1a1f9f3c9b..7f3f128553 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.2.json index 04860ce0d0..35ac173f15 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.3.json index 5353eb1c48..17543c3063 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.4.json index efbf754461..f03f13c2f4 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.5.json index b9cabb4f7b..3f7a0cd3b7 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.5.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.6.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.6.json index 9313650388..43a062f599 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.6.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.6.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.7.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.7.json deleted file mode 100644 index 78b3ff4779..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.7.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--PaymentIntent.create.1.json deleted file mode 100644 index 614ec24db8..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.create.1.json index ef0bf19276..423c159862 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.list.1.json index a93acf2a8f..9dc21ff3b2 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.retrieve.1.json index ef0bf19276..423c159862 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--checkout.Session.create.1.json index 5b75824ade..5ac2c1a643 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--checkout.Session.list.1.json index 7174984841..59189598f0 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.modify.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.modify.1.json index 706b990b12..31925185bc 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.1.json index 9f299d62f2..7c829173ed 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.2.json index 9f299d62f2..7c829173ed 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.3.json index 9f299d62f2..7c829173ed 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.4.json index 9f299d62f2..7c829173ed 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.5.json index 37c25102a2..e6e9a2cf31 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.1.json index 2193582b79..24ee07bc39 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.2.json index e6788dfecb..bbf2a696ea 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.3.json index c57ceab9bf..b961280310 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.4.json index 93150b7ca0..46398c466e 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.5.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.5.json index 89101e01b7..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.5.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.6.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.1.json index ad59ae6939..af54c2f023 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.2.json index 1897e7efdf..14733849f1 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.3.json index 1e88005772..f450b9decd 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.1.json index 5c0c5061f5..3828d1dccd 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.2.json index facd97ee09..1c34a4c35b 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.3.json index 65e4a75201..1cd119e9b9 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.2.json index 10739db743..51facda505 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.3.json index 391b9e213b..598216afd3 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.pay.1.json new file mode 100644 index 0000000000..4b9ac3167e Binary files /dev/null and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.1.json index bb17bb5a3a..5703d1a989 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.2.json index e1fd50c811..51e16ac9ad 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.3.json index 2c96f1ade1..0162b46c3c 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.4.json deleted file mode 100644 index 182ce6452b..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.4.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--PaymentIntent.create.1.json deleted file mode 100644 index 74d5f9bba6..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.create.1.json index 29117a788f..194de38c04 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.list.1.json index b1410ad44f..ab876c6d38 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.retrieve.1.json index 29117a788f..194de38c04 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--checkout.Session.create.1.json index ae6e851a75..f90f0bcfe7 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--checkout.Session.list.1.json index 8aed35c7b1..afa5abe3da 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.modify.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.modify.1.json index 4f49f07cf4..e3ae6f0898 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.1.json index 68841ba196..26f8a57855 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.2.json index 68841ba196..26f8a57855 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.3.json index 68841ba196..26f8a57855 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.4.json index 68841ba196..26f8a57855 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Event.list.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Event.list.1.json index 334fa59a43..2bb1cb8a9a 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Event.list.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.create.1.json index fc567bfef9..9d51c7f424 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.list.1.json index 08b168f3ef..979c2716bf 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.retrieve.1.json index fc567bfef9..9d51c7f424 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--checkout.Session.create.1.json index cbc023a757..bcba690775 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--checkout.Session.list.1.json index 4070cbd501..6b1144edde 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.modify.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.modify.1.json index 5b20e2e6a1..a489949c49 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.1.json index 5536bd92b5..cc0fe7cda5 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.2.json index 5536bd92b5..cc0fe7cda5 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.3.json index 5536bd92b5..cc0fe7cda5 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.4.json index 5536bd92b5..cc0fe7cda5 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Event.list.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Event.list.1.json index a083c4a5ff..ace4412ed5 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Event.list.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.create.1.json index 3ab25d0f29..0e0c84a4be 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.list.1.json index 67d91db7fc..dc32c8f9c8 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.retrieve.1.json index 3ab25d0f29..0e0c84a4be 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--checkout.Session.create.1.json index 5c8ba5108b..d27e9c2f03 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--checkout.Session.list.1.json index af61852cf8..42dc522353 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_monthly_to_annual--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.create_balance_transaction.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.create_balance_transaction.1.json index e5191185d1..135806c651 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.create_balance_transaction.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.create_balance_transaction.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.modify.1.json index fd52f8f21c..abac620131 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.1.json index 0b0b618317..41753df900 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.2.json index 0b0b618317..41753df900 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.3.json index 0b0b618317..41753df900 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.4.json index 0b0b618317..41753df900 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.1.json index 0b57f2a59c..e4409ef92d 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.2.json index 03743f3e94..1eb789c561 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.2.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.3.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.3.json index a1c6cf4aef..32f72681fd 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.3.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.4.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.4.json index 2b1c3f54f4..af627f5ea5 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.4.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.5.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.5.json index 1b4c9343b9..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.5.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.6.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.create.1.json index ee4c6393e4..f4f30938d0 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.create.2.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.create.2.json index cd727470a5..85a412cef6 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.finalize_invoice.1.json index 3661658b7c..3bc563f994 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.finalize_invoice.2.json index c9d7bacedd..8d87a072c8 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..0fff955c05 Binary files /dev/null and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.1.json index fcb1c3c2e9..23f69ee2e0 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.2.json index 11622f30a7..86040a2be6 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.3.json deleted file mode 100644 index 72bca2597b..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--PaymentIntent.create.1.json deleted file mode 100644 index 3a8de6d962..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.create.1.json index 39ab08dae1..55b4b01268 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.list.1.json index 2fbb501477..8508232468 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.retrieve.1.json index 39ab08dae1..55b4b01268 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--checkout.Session.create.1.json index 6d2d7378b1..e28a25e314 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--checkout.Session.list.1.json index ea5a45e23a..bf4dd2067a 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Event.list.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Event.list.1.json index b9914edb1b..c1e071b02e 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Event.list.1.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.1.json index 6034aaca27..30c937cdf4 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.2.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.2.json index 2c38ac6e0c..c4deffa52a 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.3.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.3.json index 4d6a212db1..8354b78ece 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.1.json index c322684258..6fe079e212 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.2.json index f377bf3f3f..7b72b2976d 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.3.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.3.json index 807f5daed7..c979c95558 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.3.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.3.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.1.json index d734f2b1cc..1dda07e3a7 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.2.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.2.json index af8713682d..ffef0758b8 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.1.json index 716e196a09..7fa43e68d3 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.list.1.json index e24efe39ea..df9c7e0bbd 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.modify.1.json index 8f7c9c760a..111ce6076b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.2.json index b455a08209..accc1add5e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.3.json index b455a08209..accc1add5e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.4.json index b455a08209..accc1add5e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.5.json index b455a08209..accc1add5e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.6.json index 1849b2f706..2115a5796e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.1.json index 06106c3af5..6b7057b4c6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.2.json index ea1c6b51dc..c2cd5e5181 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.3.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.3.json index 86790f9169..dacc6ca5a7 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.3.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.4.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.4.json index 730ea84ad0..c158d8a751 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.4.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.5.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.5.json index e68b626cad..89d100070c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.5.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.6.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.6.json index d8e1ebe83c..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.6.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.7.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.7.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.7.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.create.1.json index 4547a18957..5f3fb65945 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.finalize_invoice.1.json index bdef6fa6a5..7537179963 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.list.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.list.2.json index eee31d97d2..290e8f6922 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.pay.1.json new file mode 100644 index 0000000000..8956e41ecb Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.1.json index bede9f6dd3..38644b98ed 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.2.json deleted file mode 100644 index 8b88c2ae42..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--PaymentIntent.create.1.json deleted file mode 100644 index b3269b274b..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.create.1.json index 10357c719a..b96a61a4a4 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.list.1.json index 5632ef61ba..4444072284 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.retrieve.1.json index 10357c719a..b96a61a4a4 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--checkout.Session.create.1.json index b4dedb1c43..2b885164e4 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--checkout.Session.list.1.json index 67c4d06e54..7b3864352f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Charge.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Charge.list.1.json index c1fc17baf0..6002ffb9c9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Charge.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Charge.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.modify.1.json index e77e829d99..9ac82718eb 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.retrieve.1.json index c28f3d83d1..d0a69e96b7 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.retrieve.2.json index c28f3d83d1..d0a69e96b7 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.1.json index 0f1aef8b6d..8fa1174ba6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.2.json index 8d0c1e44e9..4f1b19dab3 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.3.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.3.json index 4d493fd47c..fdef7b05b0 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.3.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.4.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.4.json index 136a6eb672..84b8f5a733 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.4.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.5.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.5.json index 6d922067af..b3903f75bf 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.5.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.6.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.6.json similarity index 100% rename from corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.6.json rename to corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Event.list.6.json diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.create.1.json index 8cc023a496..967bc8263c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.create.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.create.2.json new file mode 100644 index 0000000000..b05da25231 Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.finalize_invoice.1.json index 67f58d3fb6..31eeff854a 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.finalize_invoice.2.json new file mode 100644 index 0000000000..faad9edbc4 Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.list.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.list.2.json index 9912627cb7..ae1a8a3c95 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.pay.1.json new file mode 100644 index 0000000000..09f5dbe505 Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.1.json index ce279a5b2e..38644b98ed 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.2.json index a35ac2e368..7c886428d3 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--PaymentIntent.create.1.json deleted file mode 100644 index 5040e0909d..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.create.1.json index 8ef14d9d39..e989c8352b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.list.1.json index dc2e01354e..aea2e47f07 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.retrieve.1.json index 8ef14d9d39..e989c8352b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--checkout.Session.create.1.json index dd1447e9ab..ec0c7e06c0 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--checkout.Session.list.1.json index dd021b1661..74db5f6001 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Event.list.1.json index 8e14168f40..b92e7079c8 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.create.1.json index e9a11ac501..2195e64ec5 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.finalize_invoice.1.json index 85a3b029ec..a6965d915b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.list.1.json index 9a745bff35..f8fbea545a 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_invoice--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--InvoiceItem.create.1.json index b444e7291c..203b3b0ffb 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.modify.1.json index 937476bea2..64d36d5083 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.1.json index 1b2fa2b4e5..533b0161ad 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.2.json index 1b2fa2b4e5..533b0161ad 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.3.json index 1b2fa2b4e5..533b0161ad 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.4.json index 1b2fa2b4e5..533b0161ad 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.5.json index 1b2fa2b4e5..533b0161ad 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.6.json index 1b2fa2b4e5..533b0161ad 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.create.1.json index ee193c8508..97d44a3a64 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.list.1.json index 0e8cdc74dc..a39ce0daf6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.retrieve.1.json index ee193c8508..97d44a3a64 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--checkout.Session.create.1.json index 3ade166d1a..9bfe08bd84 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--checkout.Session.list.1.json index b9a56f5470..8ff03cd21e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_legacy_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_legacy_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.modify.1.json index f1410dae30..31a466faf5 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.1.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.10.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.10.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.10.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.10.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.11.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.11.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.11.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.11.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.12.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.12.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.12.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.12.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.13.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.13.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.13.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.13.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.14.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.14.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.14.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.14.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.15.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.15.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.15.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.15.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.16.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.16.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.16.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.16.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.17.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.17.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.17.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.17.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.18.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.18.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.18.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.18.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.19.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.19.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.19.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.19.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.2.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.20.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.20.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.20.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.20.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.21.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.21.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.21.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.21.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.22.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.22.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.22.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.22.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.23.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.23.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.23.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.23.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.24.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.24.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.24.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.24.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.25.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.25.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.25.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.25.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.26.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.26.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.26.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.26.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.27.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.27.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.27.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.27.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.28.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.28.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.28.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.28.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.3.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.4.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.5.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.6.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.7.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.7.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.7.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.7.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.8.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.8.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.8.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.8.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.9.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.9.json index 555c718f26..e33dd631d6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.9.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.retrieve.9.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.create.1.json index 87f723d1eb..9c3f531d6f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.list.1.json index b15a9b612e..779bb08c1b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.retrieve.1.json index 87f723d1eb..9c3f531d6f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--checkout.Session.create.1.json index c62200cff9..40fdd60c95 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_license_counts--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--checkout.Session.list.1.json index 62c8c85813..7ef4eef0d0 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_license_counts--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_license_counts--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.modify.1.json index ab151a0ad4..a0e09ce5f3 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.1.json index 6cf8dcf030..dce6ecfa8e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.2.json index 6cf8dcf030..3c3a9a9406 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.3.json index 6cf8dcf030..3c3a9a9406 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.4.json index 6cf8dcf030..3c3a9a9406 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.5.json deleted file mode 100644 index ccc2da91ff..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.1.json index 946e067e4f..c686291ffc 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.2.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.2.json index 300377e041..00a180add3 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.3.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.3.json index 5da4c643db..5aaa388e97 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.3.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.4.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.4.json index c68fecf7b2..696e81e8ec 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.4.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.5.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.5.json index 75cc325834..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.5.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.6.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.6.json index d8d8d1973a..e1add1796a 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.6.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.7.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.7.json index 6d922067af..bf29d1865b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.7.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.7.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.5.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.8.json similarity index 66% rename from corporate/tests/stripe_fixtures/invoice_plan--Event.list.5.json rename to corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.8.json index 2677f589a6..f0349b646d 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.5.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.8.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.6.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.9.json similarity index 100% rename from corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.6.json rename to corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Event.list.9.json diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.create.1.json index dba53250fa..f4f30938d0 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.create.2.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.create.2.json index ce1300f428..c61c02b20f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.finalize_invoice.1.json index 53b077f8d6..1baa7639ee 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.finalize_invoice.2.json index bef25dbfb3..2dda50b91c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.list.2.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.list.2.json index 55252d4777..e4fd86277c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.pay.1.json new file mode 100644 index 0000000000..c806331fd6 Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.pay.2.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.pay.2.json new file mode 100644 index 0000000000..1a06a2344c Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.pay.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.1.json index fcb1c3c2e9..23f69ee2e0 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.2.json index 23f69ee2e0..75b3e157f4 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.3.json deleted file mode 100644 index 8341dfcd4f..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.1.json deleted file mode 100644 index 044e8536ee..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.2.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.2.json deleted file mode 100644 index 387faa7f5a..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.list.1.json deleted file mode 100644 index ddc4ad787e..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.list.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.create.1.json index ea6b80c0f9..a98870b07f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.list.1.json index 0a3f81f7e4..c2c3864436 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.retrieve.1.json index ea6b80c0f9..a98870b07f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--checkout.Session.create.1.json index 256b33c678..e39e9ee302 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--checkout.Session.list.1.json index 8468484da3..168f40302a 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.create.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.create.1.json similarity index 85% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.create.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.create.1.json index a5a64c5447..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.modify.1.json similarity index 78% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.modify.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.modify.1.json index b2ee3ebb2a..ad6165e69f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.1.json similarity index 89% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.1.json index 4396554c44..9d06cdab1b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.2.json similarity index 89% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.2.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.2.json index 4396554c44..9d06cdab1b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.3.json similarity index 89% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.3.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.3.json index 4396554c44..9d06cdab1b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.4.json similarity index 89% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.4.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.4.json index 4396554c44..9d06cdab1b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.5.json similarity index 89% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.5.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.5.json index b4d2618bef..2c9e0ddccc 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.6.json similarity index 89% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.6.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.6.json index b4d2618bef..2c9e0ddccc 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.1.json similarity index 81% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.1.json index bc0bb766df..f9f3977911 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.10.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.2.json similarity index 57% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.10.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.2.json index 03e454f817..35e0d523c0 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.10.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.11.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.3.json similarity index 78% rename from corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.11.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.3.json index d24330fec6..53a20ddf23 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.11.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.8.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.4.json similarity index 80% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.8.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.4.json index 0a18f0320a..68a716b11d 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.8.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.11.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.5.json similarity index 100% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.11.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Event.list.5.json diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.create.1.json similarity index 84% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Invoice.create.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.create.1.json index dba53250fa..ce7570d59a 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.finalize_invoice.1.json new file mode 100644 index 0000000000..7cf3c9251b Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Invoice.list.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.list.1.json similarity index 100% rename from corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Invoice.list.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.list.1.json diff --git a/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..42757482d8 Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--InvoiceItem.create.1.json similarity index 95% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--InvoiceItem.create.2.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--InvoiceItem.create.1.json index 82e3bb8ef9..c51e6b7239 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--InvoiceItem.create.2.json similarity index 94% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--InvoiceItem.create.3.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--InvoiceItem.create.2.json index a29feb75ef..242630a631 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--SetupIntent.create.1.json similarity index 74% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--SetupIntent.create.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--SetupIntent.create.1.json index d624072b60..a0c4c78eab 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--SetupIntent.list.1.json similarity index 87% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--SetupIntent.list.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--SetupIntent.list.1.json index 0edaf32ffa..72c080926e 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--SetupIntent.retrieve.1.json similarity index 74% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--SetupIntent.retrieve.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--SetupIntent.retrieve.1.json index d624072b60..a0c4c78eab 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--checkout.Session.create.1.json similarity index 76% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--checkout.Session.create.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--checkout.Session.create.1.json index 8960c5ec4b..e0c91052b3 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--checkout.Session.list.1.json similarity index 78% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--checkout.Session.list.1.json rename to corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--checkout.Session.list.1.json index 2e6736d9ce..7efe18ce95 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_remote_realm_user_to_monthly_basic_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.modify.1.json index 0e55ebbb84..8e156ee6b3 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.1.json index 270abf5c33..c7cf8cdc6b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.2.json index 270abf5c33..c7cf8cdc6b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.3.json index 270abf5c33..c7cf8cdc6b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.4.json index 270abf5c33..c7cf8cdc6b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.5.json index 0812ff9aa1..6681e0ec40 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.1.json index 7ffbf48c8d..9f0d6b0a7d 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.2.json index e2804c896a..6c8bec00e1 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.3.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.3.json index 02dfd4f368..ac737d51d1 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.3.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.4.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.4.json index a03458711c..ec58653336 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.4.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.5.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.5.json index 837f8fa82b..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.5.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.6.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.create.1.json index 301ea5d191..bcd5034bba 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.finalize_invoice.1.json index 5c00aa7654..130b3ffa07 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..d0de5c2b04 Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--InvoiceItem.create.1.json index 77d7a01b10..26d0241c66 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--InvoiceItem.create.2.json deleted file mode 100644 index dfcce42da7..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--InvoiceItem.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--PaymentIntent.create.1.json deleted file mode 100644 index d2b02d0ab8..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.create.1.json index 5bdf14e719..1fecd43a97 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.list.1.json index c55126304a..0ec7aa303f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.retrieve.1.json index 5bdf14e719..1fecd43a97 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--checkout.Session.create.1.json index 3d20f79e16..66211903ff 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--checkout.Session.list.1.json index 9bc02a4ec4..a3ceebf3f8 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_to_fixed_price_monthly_basic_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.create.1.json similarity index 78% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.create.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.create.1.json index 593a07ed0c..3d6b9bc66c 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.modify.1.json similarity index 71% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.modify.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.modify.1.json index 10f849e190..a7dfddd25e 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.1.json similarity index 86% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.1.json index e9acf0416e..dcbc9962eb 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.2.json similarity index 86% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.2.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.2.json index e9acf0416e..dcbc9962eb 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.3.json similarity index 86% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.3.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.3.json index e9acf0416e..dcbc9962eb 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.4.json similarity index 86% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.4.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.4.json index e9acf0416e..dcbc9962eb 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.5.json new file mode 100644 index 0000000000..947ec11e2a Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.6.json new file mode 100644 index 0000000000..947ec11e2a Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.1.json similarity index 78% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.1.json index 5d6640e1b6..12225a5472 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.2.json new file mode 100644 index 0000000000..7fedff667b Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.12.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.3.json similarity index 76% rename from corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.12.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.3.json index 1ffa86db91..57db24c756 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.12.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.7.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.4.json similarity index 80% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.7.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.4.json index 2527add5d5..9f3203bf51 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.7.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.9.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.5.json similarity index 100% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--Event.list.9.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Event.list.5.json diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.create.1.json similarity index 73% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Invoice.create.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.create.1.json index 2b0ad2bb0e..2ee818ce55 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.finalize_invoice.1.json new file mode 100644 index 0000000000..a70c429b12 Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Invoice.list.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.list.1.json similarity index 100% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Invoice.list.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.list.1.json diff --git a/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..8955b35465 Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--InvoiceItem.create.1.json similarity index 81% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--InvoiceItem.create.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--InvoiceItem.create.1.json index fcb1c3c2e9..12dc466795 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.6.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--InvoiceItem.create.2.json similarity index 89% rename from corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.6.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--InvoiceItem.create.2.json index fba6930087..242630a631 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plans_as_needed_server--InvoiceItem.create.6.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--SetupIntent.create.1.json similarity index 74% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--SetupIntent.create.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--SetupIntent.create.1.json index 7854fd6e2d..1e7712cfaf 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--SetupIntent.list.1.json similarity index 87% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--SetupIntent.list.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--SetupIntent.list.1.json index 42b1947922..27a5c9bb56 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--SetupIntent.retrieve.1.json similarity index 74% rename from corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--SetupIntent.retrieve.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--SetupIntent.retrieve.1.json index 7854fd6e2d..1e7712cfaf 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--checkout.Session.create.1.json similarity index 65% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--checkout.Session.create.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--checkout.Session.create.1.json index 851e9f0244..0ad160066c 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--checkout.Session.list.1.json similarity index 68% rename from corporate/tests/stripe_fixtures/double_payment_for_upgrade--checkout.Session.list.1.json rename to corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--checkout.Session.list.1.json index b18f0e6b45..471ae037a4 100644 Binary files a/corporate/tests/stripe_fixtures/double_payment_for_upgrade--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_server_user_to_monthly_basic_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.create.1.json index 77a2471e08..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.modify.1.json index 0739827503..5aa523fdeb 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.1.json index 3f74a873ed..5fbeed3925 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.2.json index 3f74a873ed..5fbeed3925 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.3.json index 3f74a873ed..5fbeed3925 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.4.json index 3f74a873ed..5fbeed3925 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.5.json index 3f74a873ed..5fbeed3925 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.6.json index 3f74a873ed..5fbeed3925 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Event.list.1.json index eff54fca4f..4882d41323 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.create.1.json index 2219ab370d..f98a01a62b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.list.1.json index be47c72ce5..f29c3bdbed 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.retrieve.1.json index 2219ab370d..f98a01a62b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--checkout.Session.create.1.json index 94180f723e..a9736b14de 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--checkout.Session.list.1.json index 1f2d6213a3..8b22cc7879 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.modify.1.json index 248e076e8d..cc51aecce4 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.1.json index fa89ed6f98..2542098df9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.2.json index fa89ed6f98..2542098df9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.3.json index fa89ed6f98..2542098df9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.4.json index fa89ed6f98..2542098df9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.5.json index fa89ed6f98..2542098df9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.6.json index fa89ed6f98..2542098df9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Event.list.1.json index f7dc7fd644..9c59531fbf 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.create.1.json index 3b2628ef9a..52598ccc96 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.list.1.json index 6d5bfa596a..bf98c6a9f8 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.retrieve.1.json index 3b2628ef9a..52598ccc96 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--checkout.Session.create.1.json index 8bb27ab45a..56ed8dab13 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--checkout.Session.list.1.json index 11f2f3dc18..f8389a2c07 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_basic_plan_free_trial_remote_server--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.create.1.json index a5a64c5447..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.modify.1.json index 768598b513..d6058f7e81 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.1.json index 2deed286cd..79d6eace21 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.2.json index 2deed286cd..79d6eace21 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.3.json index 2deed286cd..79d6eace21 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.4.json index 2deed286cd..79d6eace21 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.5.json index daa0843dc2..a692a71d58 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.6.json index daa0843dc2..a692a71d58 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.1.json index 50f0bb123a..7bb75de854 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.2.json index 7610e06a81..73e6fcd654 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.3.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.3.json index 512968a3df..4696d422ef 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.3.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.4.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.4.json index a509e3f719..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.4.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.5.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.5.json deleted file mode 100644 index abd0df7af8..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.6.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.create.1.json index 5d072c4ee5..8f204802be 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.finalize_invoice.1.json index 84b5302fda..13b205146e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..8b112f72a1 Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.1.json index c351f1fdd5..a4c83d539a 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.2.json index f6b553cfa6..df3e1a6985 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.3.json deleted file mode 100644 index e23b26f397..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--InvoiceItem.create.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--PaymentIntent.create.1.json deleted file mode 100644 index 5b6cc46085..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.create.1.json index a67bd95a00..158401350c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.list.1.json index 5933eba6ed..ecb119289c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.retrieve.1.json index a67bd95a00..158401350c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--checkout.Session.create.1.json index 22f3d590e9..2f07ecd6de 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--checkout.Session.list.1.json index 3f8069fcfb..096f2d5987 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_business_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.create.1.json index 78fb2619a3..dfd157db5c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.modify.1.json index 48560f5c95..0099a49a34 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.1.json index 8eefde4314..06d03ff3f9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.2.json index 8eefde4314..06d03ff3f9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.3.json index 8eefde4314..06d03ff3f9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.4.json index 8eefde4314..06d03ff3f9 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.5.json index dff44c604b..2c1a1d9df0 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.1.json index a48ade20fe..f33ca41df8 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.2.json index 43173dcefc..a545ebb58f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.3.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.3.json index c73839ce49..500b936755 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.3.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.4.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.4.json index 38ffc0b3fc..807ef9a4dc 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.4.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Event.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.create.1.json index fcfc52784f..a7cd7f6149 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.finalize_invoice.1.json index 116b1e150b..0c5f26d44c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.pay.1.json new file mode 100644 index 0000000000..0c899b920a Binary files /dev/null and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--InvoiceItem.create.1.json index dad6b2fed4..26d0241c66 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--InvoiceItem.create.2.json deleted file mode 100644 index 3b2daca519..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--InvoiceItem.create.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--PaymentIntent.create.1.json deleted file mode 100644 index b726dd7a23..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.create.1.json index dbdef947e8..bfa86122c5 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.list.1.json index 5126ede35f..6f776fde8d 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.retrieve.1.json index dbdef947e8..bfa86122c5 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--checkout.Session.create.1.json index aa6cb68fd4..023caf9d75 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--checkout.Session.list.1.json index cc6902a500..b9039dd3dd 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_user_to_fixed_price_monthly_basic_plan--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.2.json b/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.2.json deleted file mode 100644 index 7e5d292700..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.2.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.3.json b/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.3.json deleted file mode 100644 index b83e5557ec..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.3.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.4.json b/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.4.json deleted file mode 100644 index 2818c9da6e..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.4.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.5.json b/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.5.json deleted file mode 100644 index 0e2d5d68ad..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.5.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.6.json b/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--Event.list.6.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--InvoiceItem.create.1.json deleted file mode 100644 index 041633b56c..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--InvoiceItem.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--PaymentIntent.create.1.json deleted file mode 100644 index eb09be48ad..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_user_to_monthly_basic_plan--PaymentIntent.create.1.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.modify.1.json index 4a7b567b36..88fe84060f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.modify.1.json and b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.modify.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.retrieve.1.json index aa25c5e4ed..41c0e43876 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.retrieve.2.json index aa25c5e4ed..41c0e43876 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.create.1.json index 64b46bba73..70d20e6a33 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.list.1.json b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.list.1.json index 1f7ef76f48..2a43f60a11 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.retrieve.1.json index 64b46bba73..70d20e6a33 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--SetupIntent.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--checkout.Session.create.1.json b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--checkout.Session.create.1.json index 13924e259d..b25baece44 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--checkout.Session.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--checkout.Session.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--checkout.Session.list.1.json b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--checkout.Session.list.1.json index b5d67cfb7b..dfa206fe51 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--checkout.Session.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.1.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.1.json index 26ed1f92e8..d6fb84a005 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.2.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.2.json index 5833a615e4..81ac901216 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.1.json index 57cad08e76..41882a34db 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.2.json index 13c66d8c57..34363521db 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.1.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.1.json index 267a45598a..5880616850 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.3.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.3.json index 381dedafde..42bd4e243b 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.4.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.4.json index 406755564c..7b998bdc5e 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.4.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.6.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.6.json index cd7103be32..357544a85d 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.6.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.1.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.1.json index 664056eb9a..4432bed906 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.1.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.2.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.2.json index 7b97f38856..2270c03ac6 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.2.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.2.json differ diff --git a/corporate/tests/test_stripe.py b/corporate/tests/test_stripe.py index 765ae85d51..f06774cc0a 100644 --- a/corporate/tests/test_stripe.py +++ b/corporate/tests/test_stripe.py @@ -86,7 +86,6 @@ from corporate.models import ( Event, Invoice, LicenseLedger, - PaymentIntent, ZulipSponsorshipRequest, get_current_plan_by_customer, get_current_plan_by_realm, @@ -169,6 +168,12 @@ def generate_and_save_stripe_fixture( with open(fixture_path, "w") as f: assert e.headers is not None error_dict = {**vars(e), "headers": dict(e.headers)} + # Add http_body to the error_dict, since it's not included in the vars(e) output. + # It should be same as e.json_body, but we include it since stripe expects it. + if e.http_body is None: + assert e.json_body is not None + # Convert e.json_body to be a JSON string, since that's what stripe expects. + error_dict["http_body"] = json.dumps(e.json_body) f.write( json.dumps(error_dict, indent=2, separators=(",", ": "), sort_keys=True) + "\n" ) @@ -320,10 +325,6 @@ MOCKED_STRIPE_FUNCTION_NAMES = [ "Invoice.void_invoice", "InvoiceItem.create", "InvoiceItem.list", - "PaymentIntent.confirm", - "PaymentIntent.create", - "PaymentIntent.list", - "PaymentIntent.retrieve", "PaymentMethod.attach", "PaymentMethod.create", "PaymentMethod.detach", @@ -478,19 +479,19 @@ class StripeTestCase(ZulipTestCase): response_dict = self.assert_json_success(json_response) self.assertEqual(response_dict["session"], expected_details) - def assert_details_of_valid_payment_intent_from_event_status_endpoint( + def assert_details_of_valid_invoice_payment_from_event_status_endpoint( self, - stripe_payment_intent_id: str, + stripe_invoice_id: str, expected_details: Dict[str, Any], ) -> None: json_response = self.client_billing_get( "/billing/event/status", { - "stripe_payment_intent_id": stripe_payment_intent_id, + "stripe_invoice_id": stripe_invoice_id, }, ) response_dict = self.assert_json_success(json_response) - self.assertEqual(response_dict["payment_intent"], expected_details) + self.assertEqual(response_dict["stripe_invoice"], expected_details) def trigger_stripe_checkout_session_completed_webhook( self, @@ -635,19 +636,20 @@ class StripeTestCase(ZulipTestCase): # upgrade for legacy remote servers. return upgrade_json_response - last_stripe_payment_intent = PaymentIntent.objects.last() - assert last_stripe_payment_intent is not None + last_sent_invoice = Invoice.objects.last() + assert last_sent_invoice is not None response_dict = self.assert_json_success(upgrade_json_response) self.assertEqual( - response_dict["stripe_payment_intent_id"], - last_stripe_payment_intent.stripe_payment_intent_id, + response_dict["stripe_invoice_id"], + last_sent_invoice.stripe_invoice_id, ) - # Verify that the payment was successful. - self.assert_details_of_valid_payment_intent_from_event_status_endpoint( - last_stripe_payment_intent.stripe_payment_intent_id, - {"status": "succeeded"}, + # Verify that the Invoice was sent. + # Invoice is only marked as paid in our db after we receive `invoice.paid` event. + self.assert_details_of_valid_invoice_payment_from_event_status_endpoint( + last_sent_invoice.stripe_invoice_id, + {"status": "sent"}, ) # Upgrade the organization. @@ -828,10 +830,7 @@ class StripeTest(StripeTestCase): # Check Charges in Stripe [charge] = iter(stripe.Charge.list(customer=stripe_customer.id)) self.assertEqual(charge.amount, 8000 * self.seat_count) - # TODO: fix Decimal - self.assertEqual( - charge.description, f"Upgrade to Zulip Cloud Standard, $80.0 x {self.seat_count}" - ) + self.assertEqual(charge.description, "Payment for Invoice") self.assertEqual(charge.receipt_email, user.delivery_email) self.assertEqual(charge.statement_descriptor, "Zulip Cloud Standard") # Check Invoices in Stripe @@ -839,26 +838,22 @@ class StripeTest(StripeTestCase): self.assertIsNotNone(invoice.status_transitions.finalized_at) invoice_params = { # auto_advance is False because the invoice has been paid - "amount_due": 0, - "amount_paid": 0, + "amount_due": 48000, + "amount_paid": 48000, "auto_advance": False, "collection_method": "charge_automatically", - "charge": None, "status": "paid", - "total": 0, + "total": 48000, } + self.assertIsNotNone(invoice.charge) for key, value in invoice_params.items(): self.assertEqual(invoice.get(key), value) # Check Line Items on Stripe Invoice - [item0, item1] = iter(invoice.lines) + [item0] = iter(invoice.lines) line_item_params = { "amount": 8000 * self.seat_count, "description": "Zulip Cloud Standard", "discountable": False, - "period": { - "end": datetime_to_timestamp(self.next_year), - "start": datetime_to_timestamp(self.now), - }, # There's no unit_amount on Line Items, probably because it doesn't show up on the # user-facing invoice. We could pull the Invoice Item instead and test unit_amount there, # but testing the amount and quantity seems sufficient. @@ -868,16 +863,6 @@ class StripeTest(StripeTestCase): } for key, value in line_item_params.items(): self.assertEqual(item0.get(key), value) - line_item_params = { - "amount": -8000 * self.seat_count, - "description": "Payment (Card ending in 4242)", - "discountable": False, - "plan": None, - "proration": False, - "quantity": 1, - } - for key, value in line_item_params.items(): - self.assertEqual(item1.get(key), value) # Check that we correctly populated Customer, CustomerPlan, and LicenseLedger in Zulip customer = Customer.objects.get(stripe_customer_id=stripe_customer.id, realm=user.realm) @@ -1016,10 +1001,6 @@ class StripeTest(StripeTestCase): "amount": 8000 * 123, "description": "Zulip Cloud Standard", "discountable": False, - "period": { - "end": datetime_to_timestamp(self.next_year), - "start": datetime_to_timestamp(self.now), - }, "plan": None, "proration": False, "quantity": 123, @@ -1123,7 +1104,7 @@ class StripeTest(StripeTestCase): stripe_customer = self.add_card_and_upgrade(user) - self.assertEqual(PaymentIntent.objects.count(), 0) + self.assertEqual(Invoice.objects.count(), 0) self.assertEqual(stripe_customer.description, "zulip (Zulip Dev)") self.assertEqual(stripe_customer.discount, None) self.assertEqual(stripe_customer.email, user.delivery_email) @@ -1499,13 +1480,19 @@ class StripeTest(StripeTestCase): [charge] = iter(stripe.Charge.list(customer=stripe_customer_id)) self.assertEqual(8000 * self.seat_count, charge.amount) # Check that the invoice has a credit for the old amount and a charge for the new one - [stripe_invoice] = iter(stripe.Invoice.list(customer=stripe_customer_id)) + [additional_license_invoice, upgrade_invoice] = iter( + stripe.Invoice.list(customer=stripe_customer_id) + ) self.assertEqual( - [8000 * new_seat_count, -8000 * self.seat_count], - [item.amount for item in stripe_invoice.lines], + [8000 * self.seat_count], + [item.amount for item in upgrade_invoice.lines], + ) + self.assertEqual( + [8000 * (new_seat_count - self.seat_count)], + [item.amount for item in additional_license_invoice.lines], ) # Check LicenseLedger has the new amount - ledger_entry = LicenseLedger.objects.first() + ledger_entry = LicenseLedger.objects.last() assert ledger_entry is not None self.assertEqual(ledger_entry.licenses, new_seat_count) self.assertEqual(ledger_entry.licenses_at_next_renewal, new_seat_count) @@ -1526,6 +1513,7 @@ class StripeTest(StripeTestCase): self.login_user(hamlet) hamlet_upgrade_page_response = self.client_get("/upgrade/") self.add_card_to_customer_for_upgrade() + [stripe_event_before_upgrade] = iter(stripe.Event.list(limit=1)) self.client_billing_post( "/billing/upgrade", { @@ -1538,23 +1526,24 @@ class StripeTest(StripeTestCase): "license_management": "automatic", }, ) - # Hamlet already paid to upgrade the org but we haven't received a success event for it yet. - [hamlet_payment_success_event] = iter( - stripe.Event.list(type="payment_intent.succeeded", limit=1) - ) - [hamlet_payment_intent] = iter(stripe.PaymentIntent.list(limit=1)) + + # Get the last generated invoice for Hamlet + customer = get_customer_by_realm(get_realm("zulip")) + assert customer is not None + [hamlet_invoice] = iter(stripe.Invoice.list(customer=customer.stripe_customer_id)) self.login_user(othello) # Othello completed the upgrade while we were waiting on success payment event for Hamlet. self.upgrade() with self.assertLogs("corporate.stripe", "WARNING"): - self.send_stripe_webhook_event(hamlet_payment_success_event) + self.send_stripe_webhook_events(stripe_event_before_upgrade) - self.assert_details_of_valid_payment_intent_from_event_status_endpoint( - hamlet_payment_intent.id, + assert hamlet_invoice.id is not None + self.assert_details_of_valid_invoice_payment_from_event_status_endpoint( + hamlet_invoice.id, { - "status": "succeeded", + "status": "paid", "event_handler": { "status": "failed", "error": { @@ -1564,14 +1553,17 @@ class StripeTest(StripeTestCase): }, }, ) - charged_amount = self.seat_count * 8000 - customer = get_customer_by_realm(get_realm("zulip")) - assert customer is not None - assert customer.stripe_customer_id is not None - [invoice, _] = iter(stripe.Invoice.list(customer=customer.stripe_customer_id)) - self.assertEqual(invoice.total, -1 * charged_amount) - stripe_customer = stripe.Customer.retrieve(customer.stripe_customer_id) - self.assertEqual(stripe_customer.balance, -1 * charged_amount) + + # Check that we informed the support team about the failure. + from django.core.mail import outbox + + self.assert_length(outbox, 1) + + for message in outbox: + self.assert_length(message.to, 1) + self.assertEqual(message.to[0], "sales@zulip.com") + self.assertEqual(message.subject, "Error processing paid customer invoice") + self.assertEqual(self.email_envelope_from(message), settings.NOREPLY_EMAIL_ADDRESS) def test_upgrade_race_condition_during_invoice_upgrade(self) -> None: hamlet = self.example_user("hamlet") @@ -1704,8 +1696,8 @@ class StripeTest(StripeTestCase): upgrade_params["licenses"] = licenses with patch("corporate.lib.stripe.BillingSession.process_initial_upgrade"): with patch( - "corporate.lib.stripe.BillingSession.create_stripe_payment_intent", - return_value="fake_payment_intent_id", + "corporate.lib.stripe.BillingSession.create_stripe_invoice_and_charge", + return_value="fake_stripe_invoice_id", ): response = self.upgrade( invoice=invoice, talk_to_stripe=False, del_args=del_args, **upgrade_params @@ -1759,7 +1751,7 @@ class StripeTest(StripeTestCase): self.login_user(hamlet) self.add_card_to_customer_for_upgrade() with patch( - "corporate.lib.stripe.BillingSession.create_stripe_payment_intent", + "corporate.lib.stripe.BillingSession.create_stripe_invoice_and_charge", side_effect=Exception, ), self.assertLogs("corporate.stripe", "WARNING") as m: response = self.upgrade(talk_to_stripe=False) @@ -1773,7 +1765,7 @@ class StripeTest(StripeTestCase): ) @mock_stripe(tested_timestamp_fields=["created"]) - def test_payment_intent_succeeded_event_with_uncaught_exception(self, *mock_args: Any) -> None: + def test_invoice_payment_succeeded_event_with_uncaught_exception(self, *mock_args: Any) -> None: hamlet = self.example_user("hamlet") self.login_user(hamlet) self.add_card_to_customer_for_upgrade() @@ -1785,15 +1777,15 @@ class StripeTest(StripeTestCase): response_dict = self.assert_json_success(response) - self.assert_details_of_valid_payment_intent_from_event_status_endpoint( - response_dict["stripe_payment_intent_id"], + self.assert_details_of_valid_invoice_payment_from_event_status_endpoint( + response_dict["stripe_invoice_id"], { - "status": "succeeded", + "status": "paid", "event_handler": { "status": "failed", "error": { "message": "Something went wrong. Please contact desdemona+admin@zulip.com.", - "description": "uncaught exception in payment_intent.succeeded event handler", + "description": "uncaught exception in invoice.paid event handler", }, }, }, @@ -4139,19 +4131,19 @@ class StripeWebhookEndpointTest(ZulipTestCase): self.assertEqual(result.status_code, 200) m.assert_not_called() - def test_stripe_webhook_for_payment_intent_events(self) -> None: + def test_stripe_webhook_for_invoice_payment_events(self) -> None: customer = Customer.objects.create(realm=get_realm("zulip")) stripe_event_id = "stripe_event_id" - stripe_payment_intent_id = "stripe_payment_intent_id" + stripe_invoice_id = "stripe_invoice_id" valid_session_event_data = { "id": stripe_event_id, - "type": "payment_intent.succeeded", + "type": "invoice.paid", "api_version": STRIPE_API_VERSION, - "data": {"object": {"object": "payment_intent", "id": stripe_payment_intent_id}}, + "data": {"object": {"object": "invoice", "id": stripe_invoice_id}}, } - with patch("corporate.views.webhook.handle_payment_intent_succeeded_event") as m: + with patch("corporate.views.webhook.handle_invoice_paid_event") as m: result = self.client_post( "/stripe/webhook/", valid_session_event_data, @@ -4161,14 +4153,14 @@ class StripeWebhookEndpointTest(ZulipTestCase): self.assertEqual(result.status_code, 200) m.assert_not_called() - PaymentIntent.objects.create( - stripe_payment_intent_id=stripe_payment_intent_id, + Invoice.objects.create( + stripe_invoice_id=stripe_invoice_id, customer=customer, - status=PaymentIntent.REQUIRES_PAYMENT_METHOD, + status=Invoice.SENT, ) self.assert_length(Event.objects.filter(stripe_event_id=stripe_event_id), 0) - with patch("corporate.views.webhook.handle_payment_intent_succeeded_event") as m: + with patch("corporate.views.webhook.handle_invoice_paid_event") as m: result = self.client_post( "/stripe/webhook/", valid_session_event_data, @@ -4179,7 +4171,7 @@ class StripeWebhookEndpointTest(ZulipTestCase): strip_event = stripe.Event.construct_from(valid_session_event_data, stripe.api_key) m.assert_called_once_with(strip_event.data.object, event) - with patch("corporate.views.webhook.handle_payment_intent_succeeded_event") as m: + with patch("corporate.views.webhook.handle_invoice_paid_event") as m: result = self.client_post( "/stripe/webhook/", valid_session_event_data, @@ -4254,16 +4246,14 @@ class EventStatusTest(StripeTestCase): self.assert_json_error_contains(response, "Session not found") response = self.client_get( - "/json/billing/event/status", {"stripe_payment_intent_id": "invalid_payment_intent_id"} + "/json/billing/event/status", {"stripe_invoice_id": "invalid_invoice_id"} ) self.assert_json_error_contains(response, "Payment intent not found") response = self.client_get( "/json/billing/event/status", ) - self.assert_json_error_contains( - response, "Pass stripe_session_id or stripe_payment_intent_id" - ) + self.assert_json_error_contains(response, "Pass stripe_session_id or stripe_invoice_id") def test_event_status_page(self) -> None: self.login_user(self.example_user("polonius")) @@ -4274,13 +4264,11 @@ class EventStatusTest(StripeTestCase): ) self.assert_in_success_response([f'data-stripe-session-id="{stripe_session_id}"'], response) - stripe_payment_intent_id = "pi_1JGLpnA4KHR4JzRvUfkF9Tn7" + stripe_invoice_id = "pi_1JGLpnA4KHR4JzRvUfkF9Tn7" response = self.client_get( - "/billing/event_status/", {"stripe_payment_intent_id": stripe_payment_intent_id} - ) - self.assert_in_success_response( - [f'data-stripe-payment-intent-id="{stripe_payment_intent_id}"'], response + "/billing/event_status/", {"stripe_invoice_id": stripe_invoice_id} ) + self.assert_in_success_response([f'data-stripe-invoice-id="{stripe_invoice_id}"'], response) class RequiresBillingAccessTest(StripeTestCase): @@ -5411,7 +5399,7 @@ class TestSupportBillingHelpers(StripeTestCase): assert stripe_customer_id is not None [invoice] = iter(stripe.Invoice.list(customer=stripe_customer_id)) self.assertEqual( - [1200 * self.seat_count, -1200 * self.seat_count], + [1200 * self.seat_count], [item.amount for item in invoice.lines], ) # Check CustomerPlan reflects the discount @@ -5432,7 +5420,7 @@ class TestSupportBillingHelpers(StripeTestCase): assert stripe_customer_id is not None [invoice, _] = iter(stripe.Invoice.list(customer=stripe_customer_id)) self.assertEqual( - [6000 * self.seat_count, -6000 * self.seat_count], + [6000 * self.seat_count], [item.amount for item in invoice.lines], ) plan = CustomerPlan.objects.get(price_per_license=6000, discount=Decimal(25)) @@ -6069,7 +6057,7 @@ class TestRemoteRealmBillingFlow(StripeTestCase, RemoteRealmBillingTestCase): tier=CustomerPlan.TIER_SELF_HOSTED_BASIC, schedule="monthly" ) - self.assertEqual(PaymentIntent.objects.count(), 0) + self.assertEqual(Invoice.objects.count(), 0) customer = Customer.objects.get(stripe_customer_id=stripe_customer.id) plan = CustomerPlan.objects.get(customer=customer) LicenseLedger.objects.get(plan=plan) @@ -6146,7 +6134,7 @@ class TestRemoteRealmBillingFlow(StripeTestCase, RemoteRealmBillingTestCase): @responses.activate @mock_stripe() - def test_upgrade_user_to_monthly_basic_plan(self, *mocks: Mock) -> None: + def test_upgrade_remote_realm_user_to_monthly_basic_plan(self, *mocks: Mock) -> None: self.login("hamlet") hamlet = self.example_user("hamlet") @@ -6950,7 +6938,7 @@ class TestRemoteRealmBillingFlow(StripeTestCase, RemoteRealmBillingTestCase): [invoice0] = iter(stripe.Invoice.list(customer=stripe_customer.id)) - [invoice_item0, invoice_item1, invoice_item2] = iter(invoice0.lines) + [invoice_item0, invoice_item1] = iter(invoice0.lines) invoice_item_params = { "amount": -2000, "description": "$20.00/month new customer discount", @@ -6967,14 +6955,6 @@ class TestRemoteRealmBillingFlow(StripeTestCase, RemoteRealmBillingTestCase): for key, value in invoice_item_params.items(): self.assertEqual(invoice_item1[key], value) - invoice_item_params = { - "amount": -1 * (realm_user_count * 3.5 * 100 - 2000), - "description": "Payment (Card ending in 4242)", - "quantity": 1, - } - for key, value in invoice_item_params.items(): - self.assertEqual(invoice_item2[key], value) - @responses.activate @mock_stripe() def test_invoice_plans_as_needed(self, *mocks: Mock) -> None: @@ -7130,15 +7110,12 @@ class TestRemoteRealmBillingFlow(StripeTestCase, RemoteRealmBillingTestCase): self.billing_session.min_licenses_for_plan(CustomerPlan.TIER_SELF_HOSTED_BUSINESS), ) - with mock.patch("stripe.Invoice.create") as invoice_create, time_machine.travel( - end_date, tick=False - ): + with time_machine.travel(end_date, tick=False): send_server_data_to_push_bouncer(consider_usage_statistics=False) invoice_plans_as_needed() # 'invoice_plan()' is called with both legacy & new plan, but # invoice is created only for new plan. The legacy plan only goes # through the end of cycle updates. - invoice_create.assert_called_once() realm_legacy_plan.refresh_from_db() new_plan.refresh_from_db() @@ -7572,7 +7549,7 @@ class TestRemoteServerBillingFlow(StripeTestCase, RemoteServerTestCase): stripe_customer = self.add_card_and_upgrade( tier=CustomerPlan.TIER_SELF_HOSTED_BASIC, schedule="monthly" ) - self.assertEqual(PaymentIntent.objects.count(), 0) + self.assertEqual(Invoice.objects.count(), 0) customer = Customer.objects.get(stripe_customer_id=stripe_customer.id) plan = CustomerPlan.objects.get(customer=customer) @@ -7650,7 +7627,7 @@ class TestRemoteServerBillingFlow(StripeTestCase, RemoteServerTestCase): @responses.activate @mock_stripe() - def test_upgrade_user_to_monthly_basic_plan(self, *mocks: Mock) -> None: + def test_upgrade_server_user_to_monthly_basic_plan(self, *mocks: Mock) -> None: self.login("hamlet") hamlet = self.example_user("hamlet") @@ -8233,7 +8210,7 @@ class TestRemoteServerBillingFlow(StripeTestCase, RemoteServerTestCase): [invoice0] = iter(stripe.Invoice.list(customer=stripe_customer.id)) - [invoice_item0, invoice_item1, invoice_item2] = iter(invoice0.lines) + [invoice_item0, invoice_item1] = iter(invoice0.lines) invoice_item_params = { "amount": -2000, "description": "$20.00/month new customer discount", @@ -8250,13 +8227,8 @@ class TestRemoteServerBillingFlow(StripeTestCase, RemoteServerTestCase): for key, value in invoice_item_params.items(): self.assertEqual(invoice_item1[key], value) - invoice_item_params = { - "amount": -1 * (server_user_count * 3.5 * 100 - 2000), - "description": "Payment (Card ending in 4242)", - "quantity": 1, - } - for key, value in invoice_item_params.items(): - self.assertEqual(invoice_item2[key], value) + self.assertEqual(invoice0.total, server_user_count * 3.5 * 100 - 2000) + self.assertEqual(invoice0.status, "paid") @responses.activate @mock_stripe() @@ -8448,15 +8420,12 @@ class TestRemoteServerBillingFlow(StripeTestCase, RemoteServerTestCase): ) licenses = max(min_licenses, server_user_count) - with mock.patch("stripe.Invoice.create") as invoice_create, time_machine.travel( - end_date, tick=False - ): + with time_machine.travel(end_date, tick=False): send_server_data_to_push_bouncer(consider_usage_statistics=False) invoice_plans_as_needed() # 'invoice_plan()' is called with both legacy & new plan, but # invoice is created only for new plan. The legacy plan only # goes through the end of cycle updates. - invoice_create.assert_called_once() legacy_plan.refresh_from_db() new_plan.refresh_from_db() diff --git a/corporate/views/event_status.py b/corporate/views/event_status.py index b0fe77315e..70c87470e4 100644 --- a/corporate/views/event_status.py +++ b/corporate/views/event_status.py @@ -30,10 +30,10 @@ def event_status( user: UserProfile, *, stripe_session_id: Optional[str] = None, - stripe_payment_intent_id: Optional[str] = None, + stripe_invoice_id: Optional[str] = None, ) -> HttpResponse: event_status_request = EventStatusRequest( - stripe_session_id=stripe_session_id, stripe_payment_intent_id=stripe_payment_intent_id + stripe_session_id=stripe_session_id, stripe_invoice_id=stripe_invoice_id ) billing_session = RealmBillingSession(user) data = billing_session.get_event_status(event_status_request) @@ -47,10 +47,10 @@ def remote_realm_event_status( billing_session: RemoteRealmBillingSession, *, stripe_session_id: Optional[str] = None, - stripe_payment_intent_id: Optional[str] = None, + stripe_invoice_id: Optional[str] = None, ) -> HttpResponse: event_status_request = EventStatusRequest( - stripe_session_id=stripe_session_id, stripe_payment_intent_id=stripe_payment_intent_id + stripe_session_id=stripe_session_id, stripe_invoice_id=stripe_invoice_id ) data = billing_session.get_event_status(event_status_request) return json_success(request, data) @@ -63,10 +63,10 @@ def remote_server_event_status( billing_session: RemoteServerBillingSession, *, stripe_session_id: Optional[str] = None, - stripe_payment_intent_id: Optional[str] = None, + stripe_invoice_id: Optional[str] = None, ) -> HttpResponse: # nocoverage event_status_request = EventStatusRequest( - stripe_session_id=stripe_session_id, stripe_payment_intent_id=stripe_payment_intent_id + stripe_session_id=stripe_session_id, stripe_invoice_id=stripe_invoice_id ) data = billing_session.get_event_status(event_status_request) return json_success(request, data) @@ -78,11 +78,11 @@ def event_status_page( request: HttpRequest, *, stripe_session_id: str = "", - stripe_payment_intent_id: str = "", + stripe_invoice_id: str = "", ) -> HttpResponse: context = { "stripe_session_id": stripe_session_id, - "stripe_payment_intent_id": stripe_payment_intent_id, + "stripe_invoice_id": stripe_invoice_id, "billing_base_url": "", } return render(request, "corporate/billing/event_status.html", context=context) @@ -96,11 +96,11 @@ def remote_realm_event_status_page( realm_uuid: str = "", server_uuid: str = "", stripe_session_id: str = "", - stripe_payment_intent_id: str = "", + stripe_invoice_id: str = "", ) -> HttpResponse: # nocoverage context = { "stripe_session_id": stripe_session_id, - "stripe_payment_intent_id": stripe_payment_intent_id, + "stripe_invoice_id": stripe_invoice_id, "billing_base_url": f"/realm/{realm_uuid}", } return render(request, "corporate/billing/event_status.html", context=context) @@ -114,11 +114,11 @@ def remote_server_event_status_page( realm_uuid: str = "", server_uuid: str = "", stripe_session_id: str = "", - stripe_payment_intent_id: str = "", + stripe_invoice_id: str = "", ) -> HttpResponse: # nocoverage context = { "stripe_session_id": stripe_session_id, - "stripe_payment_intent_id": stripe_payment_intent_id, + "stripe_invoice_id": stripe_invoice_id, "billing_base_url": f"/server/{server_uuid}", } return render(request, "corporate/billing/event_status.html", context=context) diff --git a/corporate/views/webhook.py b/corporate/views/webhook.py index 2987f3a572..28b6dd1b46 100644 --- a/corporate/views/webhook.py +++ b/corporate/views/webhook.py @@ -11,9 +11,8 @@ from corporate.lib.stripe import STRIPE_API_VERSION from corporate.lib.stripe_event_handler import ( handle_checkout_session_completed_event, handle_invoice_paid_event, - handle_payment_intent_succeeded_event, ) -from corporate.models import Event, Invoice, PaymentIntent, Session +from corporate.models import Event, Invoice, Session from zproject.config import get_secret billing_logger = logging.getLogger("corporate.stripe") @@ -50,7 +49,6 @@ def stripe_webhook(request: HttpRequest) -> HttpResponse: if stripe_event.type not in [ "checkout.session.completed", - "payment_intent.succeeded", "invoice.paid", ]: return HttpResponse(status=200) @@ -71,21 +69,6 @@ def stripe_webhook(request: HttpRequest) -> HttpResponse: event.object_id = session.id event.save() handle_checkout_session_completed_event(stripe_session, event) - elif stripe_event.type == "payment_intent.succeeded": - stripe_payment_intent = stripe_event.data.object - assert isinstance(stripe_payment_intent, stripe.PaymentIntent) - try: - payment_intent = PaymentIntent.objects.get( - stripe_payment_intent_id=stripe_payment_intent.id - ) - except PaymentIntent.DoesNotExist: - # PaymentIntent that was not manually created from the billing system. - # Could be an Invoice getting paid which is not an event we are interested in. - return HttpResponse(status=200) - event.content_type = ContentType.objects.get_for_model(PaymentIntent) - event.object_id = payment_intent.id - event.save() - handle_payment_intent_succeeded_event(stripe_payment_intent, event) elif stripe_event.type == "invoice.paid": stripe_invoice = stripe_event.data.object assert isinstance(stripe_invoice, stripe.Invoice) diff --git a/templates/corporate/billing/event_status.html b/templates/corporate/billing/event_status.html index 28ade3a096..b4244c4010 100644 --- a/templates/corporate/billing/event_status.html +++ b/templates/corporate/billing/event_status.html @@ -18,7 +18,7 @@