diff --git a/corporate/lib/stripe.py b/corporate/lib/stripe.py index 24830610c1..c4f52a0e87 100644 --- a/corporate/lib/stripe.py +++ b/corporate/lib/stripe.py @@ -500,6 +500,7 @@ class UpgradeRequest: salt: str license_management: Optional[str] licenses: Optional[int] + tier: int @dataclass @@ -677,11 +678,29 @@ class BillingSession(ABC): ) -> Dict[str, Any]: pass - @abstractmethod def get_data_for_stripe_payment_intent( - self, price_per_license: int, licenses: int + self, + price_per_license: int, + licenses: int, + plan_tier: int, + email: str, ) -> StripePaymentIntentData: - pass + if hasattr(self, "support_session") and self.support_session: # nocoverage + raise BillingError( + "invalid support session", + "Support requests do not set any stripe billing information.", + ) + + amount = price_per_license * licenses + + plan_name = CustomerPlan.name_from_tier(plan_tier) + description = f"Upgrade to {plan_name}, ${price_per_license/100} x {licenses}" + return StripePaymentIntentData( + amount=amount, + description=description, + plan_name=plan_name, + email=email, + ) @abstractmethod def update_or_create_customer( @@ -807,7 +826,9 @@ class BillingSession(ABC): # 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(price_per_license, licenses) + payment_intent_data = self.get_data_for_stripe_payment_intent( + price_per_license, licenses, metadata["plan_tier"], 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): @@ -979,6 +1000,7 @@ class BillingSession(ABC): "price_per_license": price_per_license, "seat_count": seat_count, "type": "upgrade", + "plan_tier": plan_tier, } updated_metadata = self.update_data_for_checkout_session_and_payment_intent( general_metadata @@ -1138,7 +1160,7 @@ class BillingSession(ABC): # Directly upgrade free trial orgs or invoice payment orgs to standard plan. if free_trial or not charge_automatically: self.process_initial_upgrade( - CustomerPlan.TIER_CLOUD_STANDARD, + upgrade_request.tier, licenses, automanage_licenses, billing_schedule, @@ -1148,7 +1170,7 @@ class BillingSession(ABC): data["organization_upgrade_successful"] = True else: stripe_payment_intent_id = self.setup_upgrade_payment_intent_and_charge( - CustomerPlan.TIER_CLOUD_STANDARD, + upgrade_request.tier, seat_count, licenses, license_management, @@ -1480,6 +1502,7 @@ class BillingSession(ABC): "price_per_license": price_per_license, "is_sponsorship_pending": customer.sponsorship_pending, "discount_percent": format_discount_percentage(customer.default_discount), + "is_self_hosted_billing": not isinstance(self, RealmBillingSession), } return context @@ -2216,26 +2239,6 @@ class RealmBillingSession(BillingSession): ) return updated_metadata - @override - def get_data_for_stripe_payment_intent( - self, price_per_license: int, licenses: int - ) -> StripePaymentIntentData: - # Support requests do not set any stripe billing information. - assert self.support_session is False - assert self.user is not None - amount = price_per_license * licenses - - # TODO: Don't hardcode plan name; it should be looked up for - # the tier. - description = f"Upgrade to Zulip Cloud Standard, ${price_per_license/100} x {licenses}" - plan_name = "Zulip Cloud Standard" - return StripePaymentIntentData( - amount=amount, - description=description, - plan_name=plan_name, - email=self.get_email(), - ) - @override def update_or_create_customer( self, stripe_customer_id: Optional[str] = None, *, defaults: Optional[Dict[str, Any]] = None @@ -2532,23 +2535,6 @@ class RemoteRealmBillingSession(BillingSession): # nocoverage ) return updated_metadata - @override - def get_data_for_stripe_payment_intent( - self, price_per_license: int, licenses: int - ) -> StripePaymentIntentData: - # Support requests do not set any stripe billing information. - assert self.support_session is False - amount = price_per_license * licenses - # TODO: Don't hardcode plan names. - description = f"Upgrade to Zulip X Standard, ${price_per_license/100} x {licenses}" - plan_name = "Zulip X Standard" - return StripePaymentIntentData( - amount=amount, - description=description, - plan_name=plan_name, - email=self.get_email(), - ) - @override def update_or_create_customer( self, stripe_customer_id: Optional[str] = None, *, defaults: Optional[Dict[str, Any]] = None @@ -2569,22 +2555,18 @@ class RemoteRealmBillingSession(BillingSession): # nocoverage @override def do_change_plan_type(self, *, tier: Optional[int], is_sponsored: bool = False) -> None: - # TODO: Create actual plan types. - - # This function needs to translate between the different - # formats of CustomerPlan.tier and Realm.plan_type. if is_sponsored: plan_type = RemoteRealm.PLAN_TYPE_COMMUNITY - elif tier == CustomerPlan.TIER_CLOUD_STANDARD: + elif tier == CustomerPlan.TIER_SELF_HOSTED_BUSINESS: plan_type = RemoteRealm.PLAN_TYPE_BUSINESS elif ( - tier == CustomerPlan.TIER_CLOUD_PLUS + tier == CustomerPlan.TIER_SELF_HOSTED_PLUS ): # nocoverage # Plus plan doesn't use this code path yet. plan_type = RemoteRealm.PLAN_TYPE_ENTERPRISE else: raise AssertionError("Unexpected tier") - # TODO: Audit logging. + # TODO: Audit logging and set usage limits. self.remote_realm.plan_type = plan_type self.remote_realm.save(update_fields=["plan_type"]) @@ -2817,22 +2799,6 @@ class RemoteServerBillingSession(BillingSession): # nocoverage ) return updated_metadata - @override - def get_data_for_stripe_payment_intent( - self, price_per_license: int, licenses: int - ) -> StripePaymentIntentData: - # Support requests do not set any stripe billing information. - assert self.support_session is False - amount = price_per_license * licenses - description = f"Upgrade to Zulip X Standard, ${price_per_license/100} x {licenses}" - plan_name = "Zulip X Standard" - return StripePaymentIntentData( - amount=amount, - description=description, - plan_name=plan_name, - email=self.get_email(), - ) - @override def update_or_create_customer( self, stripe_customer_id: Optional[str] = None, *, defaults: Optional[Dict[str, Any]] = None @@ -2859,16 +2825,16 @@ class RemoteServerBillingSession(BillingSession): # nocoverage # formats of CustomerPlan.tier and RealmZulipServer.plan_type. if is_sponsored: plan_type = RemoteZulipServer.PLAN_TYPE_COMMUNITY - elif tier == CustomerPlan.TIER_CLOUD_STANDARD: + elif tier == CustomerPlan.TIER_SELF_HOSTED_BUSINESS: plan_type = RemoteZulipServer.PLAN_TYPE_BUSINESS elif ( - tier == CustomerPlan.TIER_CLOUD_PLUS + tier == CustomerPlan.TIER_SELF_HOSTED_PLUS ): # nocoverage # Plus plan doesn't use this code path yet. plan_type = RemoteZulipServer.PLAN_TYPE_ENTERPRISE else: raise AssertionError("Unexpected tier") - # TODO: Audit logging. + # TODO: Audit logging and set usage limits. self.remote_server.plan_type = plan_type self.remote_server.save(update_fields=["plan_type"]) diff --git a/corporate/lib/stripe_event_handler.py b/corporate/lib/stripe_event_handler.py index 1b842dfb48..ceb571a8fa 100644 --- a/corporate/lib/stripe_event_handler.py +++ b/corporate/lib/stripe_event_handler.py @@ -123,6 +123,7 @@ def handle_payment_intent_succeeded_event( description=description, discountable=False, ) + plan_tier = int(metadata["plan_tier"]) try: ensure_customer_does_not_have_active_plan(payment_intent.customer) except UpgradeWithExistingPlanError as e: @@ -131,7 +132,8 @@ def handle_payment_intent_succeeded_event( collection_method="charge_automatically", customer=stripe_payment_intent.customer, days_until_due=None, - statement_descriptor="Cloud Standard Credit", + statement_descriptor=CustomerPlan.name_from_tier(plan_tier).replace("Zulip ", "") + + " Credit", ) stripe.Invoice.finalize_invoice(stripe_invoice) raise e @@ -140,7 +142,7 @@ def handle_payment_intent_succeeded_event( payment_intent.customer, metadata.get("user_id") ) billing_session.process_initial_upgrade( - CustomerPlan.TIER_CLOUD_STANDARD, + plan_tier, int(metadata["licenses"]), metadata["license_management"] == "automatic", int(metadata["billing_schedule"]), 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 fb205392b3..0613849f31 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 dfc0f1c22f..9b4fa8a6cc 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 6e30116083..2ffc40b504 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 47132fea92..c7456f095d 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 a024a2c67c..cccc580c9f 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 a024a2c67c..cccc580c9f 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 a024a2c67c..cccc580c9f 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 a024a2c67c..cccc580c9f 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 6c7e9d9f07..19caa257e4 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 6c7e9d9f07..19caa257e4 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 6c7e9d9f07..19caa257e4 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 6c7e9d9f07..19caa257e4 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 ff44f98e8c..2c44353ca2 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.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.2.json index d760a7842d..ed44efa0d2 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 af7822ba08..53dbf5d12f 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 d1d17e0090..1c2bcec12d 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.6.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.6.json index 5981e00250..565c7fb799 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 782571f470..290791cd52 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 58edcca0eb..e92b51ece6 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 index 4226f3c9ff..759c41c1c2 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.9.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Event.list.9.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 9ac3cd7000..aa3ce0514c 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 0cd950158c..3d93af6dcb 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 3232d93491..9853627a71 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 a7ad652901..8250bd6fce 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 79b29747a9..fecef2542e 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 4921950c25..ec86c1b0ac 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.1.json index 484575cd6f..b52338ebb5 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.1.json 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 index ca06fc243e..09e726309a 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--PaymentIntent.create.2.json 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 0968dbf618..a478623c3e 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 1cf9dff22f..3f925f6b96 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 91ef3e1d6a..0e519dd187 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 2f1ebb4d93..6f58346970 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 0968dbf618..a478623c3e 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 1cf9dff22f..3f925f6b96 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 322f1f0019..bec2277979 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 ead1834547..1db3e270ad 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 c94ad3428c..b793c7b9ba 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 a0a45bb98e..d34bcb59e7 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 ece47c50a8..78c4a3da27 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 bd73e65441..b121ce6e87 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 bd73e65441..b121ce6e87 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 bd73e65441..b121ce6e87 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 bd73e65441..b121ce6e87 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 d1d7f649fc..d0ccb61973 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 d1d7f649fc..d0ccb61973 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 b7dd6387d0..8adfcbc0a6 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 7b54abe124..9f2024fa12 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 a7efa647a7..41b90ad87e 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 1a55720456..55e34d1c69 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--Event.list.5.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.5.json index db20626163..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.5.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.6.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.6.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Event.list.6.json and /dev/null 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 564590ffb0..1d137d60ad 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--PaymentIntent.create.1.json index a51480c1ca..fb3dfaa454 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--PaymentIntent.create.1.json 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 0aef74f192..54ddd47505 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 88ed96dd22..3039550678 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 0aef74f192..54ddd47505 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 c5cfbb349a..f1439ee456 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 e8154b1c4c..1c40d1e1ca 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 de2802faa4..08c75aad74 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 b0e27e7b8a..54413c2ed1 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 b0e27e7b8a..54413c2ed1 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 b0e27e7b8a..54413c2ed1 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 970aa21bca..2cdd892b63 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/card_attached_to_customer_but_payment_fails--PaymentIntent.create.1.json index fd9dcadf5e..5d75120341 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--PaymentIntent.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 01a363b7eb..d69377526c 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 4b6837bbbb..d100573002 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 01a363b7eb..d69377526c 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 162ff3e749..65c489d465 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 e39c4eed5f..68a686095b 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 018781b959..b62a73ebeb 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 c496fa4780..098046cb5a 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 9ffc0b76a9..9c155380dd 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/change_plan_tier_from_standard_to_plus--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--InvoiceItem.create.1.json index 71d7befb71..386176bf86 100644 Binary files a/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/change_plan_tier_from_standard_to_plus--InvoiceItem.create.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 fdd3b5ea4e..ac855f1dcd 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 1f6c85cc1f..a46defe883 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 358f0955b8..7e64cfc1f0 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 65fff3c298..a3e5554817 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 7b85d7ec12..4b4e08ef34 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 226e87a03e..8961fe57f0 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 a4a3b41dc2..45ab534664 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 44f6cd02fa..5b699ad6bc 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 11311644a4..c3da3baa93 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 724570b362..f84b9e864a 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 2ab6be270c..59dc04407d 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 312e3679ea..fbb3909ca3 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 312e3679ea..fbb3909ca3 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 89d71fb171..fb8c5088b8 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 89d71fb171..fb8c5088b8 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 eceb3eafd2..148830dde0 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 eceb3eafd2..148830dde0 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 c9dcb4b43a..41c07ee5aa 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 c9dcb4b43a..41c07ee5aa 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 724570b362..f84b9e864a 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 cc5eb5b0dd..a9eb2b3115 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 cc5eb5b0dd..a9eb2b3115 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 ecac7681bf..4337bc504f 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 ecac7681bf..4337bc504f 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 c5ab03db21..a818202faa 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 c5ab03db21..a818202faa 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 2ab6be270c..59dc04407d 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 20586b9444..a9bf455aac 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 6b056d0b3b..84bedfe0ac 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 4c06c1f52c..31f749d045 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 8543cbfd3c..4e3c375d39 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 6ea487f077..f7a89218b9 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 1b2ec91d69..53a5b60ced 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 da9a11c508..dc89ae1cd1 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 c68ed0c8b3..07bea50a41 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 22b5ac30be..0fad11f0fd 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 99616feb1e..5d5270e3c5 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 25f982a226..ab7943c170 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 487172452b..d962955fac 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 be171bde25..3fae5bd04d 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 5130e1bbb6..66aab9dba7 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 7a429b812d..cfa775af47 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 003a0cd348..84b8f20d1d 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 1767aa1528..940d1ec6ea 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 96fb486fea..138b4c8f34 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 20586b9444..a9bf455aac 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 6b056d0b3b..84bedfe0ac 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 4c06c1f52c..31f749d045 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 8543cbfd3c..4e3c375d39 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 6ea487f077..f7a89218b9 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 1b2ec91d69..53a5b60ced 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 da9a11c508..dc89ae1cd1 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 c68ed0c8b3..07bea50a41 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 22b5ac30be..0fad11f0fd 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 1c0abf32f8..80ccb8b3b9 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 6889e1f648..287fc9a067 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 c2c1a0edbf..827e2b27f2 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 3745d39f5f..5c3e7ce82c 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 84112cdd60..7ab72647b8 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 5d1bdde162..8b8fad7be7 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 52d8e29171..f3e931829c 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 948eaa35d6..7fa95ae1b5 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 1ebd8b1efc..a3158092cd 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 08ebedd2c8..ca9d10a8a0 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 608eba889c..e9c6a29197 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 dd484e9357..bd897dd933 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 b98ca749cd..3e5064dca9 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 f9188f36c5..4fcdd052ab 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 20fd878ed1..89dfc82f3a 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 834d4906cc..1ebbb32ae3 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 372f6abe1f..226a6c3345 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 d2a7116628..960b6635b2 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 39c35a15ad..ae408bfb7a 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 75c6c4af6c..014bb2d221 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 75c6c4af6c..014bb2d221 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 75c6c4af6c..014bb2d221 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 75c6c4af6c..014bb2d221 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 74bd0b9a57..6ee77cb0e3 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 4414bd295a..36b5768d63 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 41ed2e0d36..208f880bf4 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 8bff647b0e..5488f305e7 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 1b373caeb8..f5a2ca6913 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 index 529b0e6191..e6f526cea8 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.5.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--Event.list.5.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 138a31000a..3630d80bf3 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--PaymentIntent.create.1.json index 1f4c48d069..3933fe0f77 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_payment_method--PaymentIntent.create.1.json 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 82f66f8a43..9172056ad9 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 5790c01dbb..e7750432e9 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 82f66f8a43..9172056ad9 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 08d024d43e..1fdeed88ce 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 48b8e64f31..ccfc8970a8 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/fixed_price_plans--Event.list.1.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Event.list.1.json index 923bb85e6e..19dace7f4c 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.2.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.2.json index b1ce9383d7..93aabbe472 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 49ee76cadd..51f315c4a4 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 cfeb099ec3..34440d9e5d 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 c3887e6f03..40ad50b5b7 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.2.json b/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.2.json index 1ae1623514..50b93cb301 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 201b5654d8..6fe329adf0 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 d8add9769b..d0cc6f95e6 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 d8add9769b..d0cc6f95e6 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 d8add9769b..d0cc6f95e6 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 d8add9769b..d0cc6f95e6 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 d8add9769b..d0cc6f95e6 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 d8add9769b..09228beb67 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--Customer.retrieve.8.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.8.json deleted file mode 100644 index 1533b749e3..0000000000 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.8.json and /dev/null 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 15d833029c..f1fdca1249 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 86ae83a39b..4305b8b2ad 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.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.1.json index 4828b8e9dc..8af17d38e7 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 9670d07f71..99a17e76ad 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 be05bd5975..0cb5e2bdb1 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 3b531a004e..8374bf0ba0 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 3b531a004e..a6036de99e 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 b02ea3a084..744c5dd537 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 51de7df7e0..7613fa737b 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--SetupIntent.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--SetupIntent.create.1.json index 252871e3d1..752be0b78a 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 192f1e4813..587e6ee4c9 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 252871e3d1..752be0b78a 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 d3f7268e61..d4a4dfbcfc 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 fcab5caab4..2179f0fa28 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 84cda8a96d..065ca5ac23 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 80917be323..98f29fc3b5 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 96923ae25e..f1fb6398d8 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 6865f52430..5e3e6fe754 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 07e6e87765..c9c12c9467 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 f1f3159c14..0e713576ad 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 cae408c666..fb8ac3b63b 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 cae408c666..fb8ac3b63b 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 45c557091e..8110e4bea4 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 b4df18a3bd..c39e2caf13 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 8fd4f18a50..bdc219dca6 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/invoice_plan--Customer.modify.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Customer.modify.1.json index aeacc8d238..7d7a34e3c9 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 cb31cbe294..39f986787a 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 cb31cbe294..39f986787a 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 cb31cbe294..39f986787a 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 cb31cbe294..39f986787a 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 786398e402..f96e5bf033 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 d32b1cb27e..01f99171c7 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 758bd71bf3..77cfb679f6 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 102095f194..3459256743 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.5.json b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.5.json index 04f35681d9..08a5719236 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Event.list.5.json and b/corporate/tests/stripe_fixtures/invoice_plan--Event.list.5.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 748b879b5f..73d14124ea 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 c46cfaebea..b410aa2b25 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 ed4a96db01..6799056111 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--PaymentIntent.create.1.json index 81d872c008..50eb22f9df 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--PaymentIntent.create.1.json 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 ac4e6e1324..4fdc75659b 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 c0cda14445..bbc296570f 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 ac4e6e1324..4fdc75659b 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 e513e40253..cb37dda3dc 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 5f1362e169..865c937cf6 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/payment_intent_succeeded_event_with_uncaught_exception--Customer.modify.1.json b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Customer.modify.1.json index 0b74b3df83..0dd8ee0aeb 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/payment_intent_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/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.1.json index 854846f86c..4117b4b0c6 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/payment_intent_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/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.2.json index 854846f86c..4117b4b0c6 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/payment_intent_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/payment_intent_succeeded_event_with_uncaught_exception--Customer.retrieve.3.json index 854846f86c..4117b4b0c6 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/payment_intent_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/payment_intent_succeeded_event_with_uncaught_exception--Event.list.1.json index 3f436f6a5b..07e23ff90d 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/payment_intent_succeeded_event_with_uncaught_exception--Event.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 index 636e1ba040..ac38ce955b 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.2.json and b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.2.json 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 index 2017482014..0f6a914e1c 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.3.json and b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--Event.list.3.json 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 index 457258b2d7..c940075b41 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--InvoiceItem.create.1.json 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 index 03efb6a194..5a232ad332 100644 Binary files a/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/payment_intent_succeeded_event_with_uncaught_exception--PaymentIntent.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/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.create.1.json index 5ac68a5816..b17507cd78 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/payment_intent_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/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.list.1.json index ec19efeb6b..dcb8e844eb 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/payment_intent_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/payment_intent_succeeded_event_with_uncaught_exception--SetupIntent.retrieve.1.json index 5ac68a5816..b17507cd78 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/payment_intent_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/payment_intent_succeeded_event_with_uncaught_exception--checkout.Session.create.1.json index 01e32f0d20..2db7849656 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/payment_intent_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/payment_intent_succeeded_event_with_uncaught_exception--checkout.Session.list.1.json index 9ba3700e4d..e921bae0c4 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/payment_intent_succeeded_event_with_uncaught_exception--checkout.Session.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.create.1.json index a6a0e57b1f..593a07ed0c 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.create.1.json 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 46b295948f..268c00bd10 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 9a12988462..972964c399 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 ff38dcd93e..aa5d461b7d 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 29e41a002f..df51268c2c 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 29e41a002f..df51268c2c 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 29e41a002f..df51268c2c 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 29e41a002f..df51268c2c 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 986141e2c5..54a4f29c20 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.6.json b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.6.json index 532f104bd7..0bbf5bf0b0 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/replace_payment_method--Customer.retrieve.6.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 5ffe805ddc..16c48357dd 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 fe1c00c652..904ffb37ed 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 19d701fa59..be9a9a1ee2 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 44d1ce198c..66804fc724 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 1938dc1d84..efdef60997 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 77d9b9c882..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 4c3462bf10..ee4c6393e4 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 badfda7788..e427e4982c 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 dc6a2d5bf3..b02df24f32 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 4ff9e584db..5f778686ed 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 757a52e7fc..1da7765fb5 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 09d8219af0..6ba6260085 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 cfb08d6f4c..5436ae4b67 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 2390771cda..5209a494a2 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 8c4ab38d50..de4e951526 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--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.1.json index 4c723cd3b7..fcb1c3c2e9 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 dbadd56360..11622f30a7 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 index dc9cffe1d0..e749716c47 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/replace_payment_method--InvoiceItem.create.3.json 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 index 54a695efa4..65f3f1e6bb 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_method--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_method--PaymentIntent.create.1.json 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 84ef1693c9..1c8beb1299 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 998924a41c..9186f182d1 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 d534287a18..c78d3b4944 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 0f0d4f6811..41e3bc1b12 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 4372784548..d5898444b1 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 fa319ff7dd..f646bea902 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 6df8e24430..1f9c5383f1 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 ebcaa1a81b..be12ca8b98 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 277ab7dc64..8ab0bbd11d 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 7b484f341b..a5a10c9ea7 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 6660a3090e..d81fae6908 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 2d829e0beb..7327ef15c4 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 4372784548..d5898444b1 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 6df8e24430..1f9c5383f1 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 ebcaa1a81b..be12ca8b98 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 a963c6f4cb..0495f4f66f 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 feac0a45f7..7c944bc9d2 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 470865b5c9..aaf389abb6 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 3018572cc8..9abde5e589 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 2e76f44bcd..7b7f271349 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 f6d29b6158..dc19da282b 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 b1dc0b80af..9722f9e42d 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 b950c6f6c2..3f10bd9311 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/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 51a59d68c2..f6c64322de 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 da2cbf7d0d..06eeafa2e8 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 da2cbf7d0d..06eeafa2e8 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 da2cbf7d0d..06eeafa2e8 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 da2cbf7d0d..06eeafa2e8 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 0bb139259f..3fcdd6ebbb 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 00f5b51748..38d91e33dd 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 2415bd302a..6b8defb8b2 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 54d0901f08..913f43c8ec 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 8faea92f18..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.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--Invoice.finalize_invoice.1.json index 308f2806d6..9bd3eddb5b 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--PaymentIntent.create.1.json index 7516002a94..8deac67b2f 100644 Binary files a/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/sponsorship_access_for_realms_on_paid_plan--PaymentIntent.create.1.json 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 57bf26dc2a..6c157a6257 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 3a065e77f4..ffcadb98df 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 57bf26dc2a..6c157a6257 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 b739c0a6ac..737d4fc2f7 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 48d27c1950..05ae18a94f 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 70e18e4ded..bc0be9fbb5 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 049143480b..0f3d96442e 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 049143480b..0f3d96442e 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 049143480b..0f3d96442e 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 049143480b..0f3d96442e 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 f4095e98b0..5cbc1afb1e 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 36d640d850..f3902855a1 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 76b84b37c1..1e4b280b70 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 69fb066ade..070383114a 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 5ff0e56721..df133f186c 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 d3131822f9..e44257520b 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 90c385a604..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.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 dc4a8a0795..1c590153d1 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 549b7eadc5..4bc90800b4 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 64f45b1228..eaaa4ca2dc 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 3809582ab0..62ec228f52 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 5bfe08a9e0..c1613f4164 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--PaymentIntent.create.1.json index aadf902f01..56b0f5ffa3 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_annual_plan_to_monthly_plan_for_automatic_license_management--PaymentIntent.create.1.json 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 04376403a9..22e695ff65 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 9bb3dfa0ce..eb799108b7 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 04376403a9..22e695ff65 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 f9ff0972f7..03b878e918 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 49eef5d590..9fba4cae6c 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 51c976d53c..fe487f1352 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 c626eafd76..3de25ea30f 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 c626eafd76..3de25ea30f 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 c626eafd76..3de25ea30f 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 c626eafd76..3de25ea30f 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 be0b9e5a1b..e334a069b6 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 61e190daec..8c9a749fce 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 25b317fc44..abb79dcb15 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 fb439a592e..f736324793 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 4c0c678ab8..33e9460665 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 index 9de43cde45..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.5.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Event.list.5.json 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.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 49469de571..1af446f4f1 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 c2481b0139..f9460505ca 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 7fd5a12881..b312239fd2 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 eb657d3fdc..77268d2c17 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 5e3110fc04..ad63237438 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 3be98777aa..a67f1f1cdf 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 8ab3c4cff7..8020bbee06 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 7460d3d0ef..20cec2f3b5 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--PaymentIntent.create.1.json index 303a52b44d..eac8424b61 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--PaymentIntent.create.1.json 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 da82fa59f6..c4eecc28f5 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 39007be80f..8adeed9871 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 da82fa59f6..c4eecc28f5 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 14f15ce774..87955a048b 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 e8425245f6..018cf10085 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 50232bf422..569e9f6a20 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 02afbbfed6..8a045b0865 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 02afbbfed6..8a045b0865 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 02afbbfed6..8a045b0865 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 02afbbfed6..8a045b0865 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 6841c024df..c573628926 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 9f626e49fc..4d879c75e6 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 b27747d4a0..a2e84c81e2 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 43d233de90..db4aa041db 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 c659c09d1d..802319966c 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 6eb2a0d776..eae398073a 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--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 d5c733bfed..cde1031d9a 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 c4a7b00002..634888bbe8 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 65b6a5d20b..fa96b8e19f 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 b8e67baca0..c30bf66b73 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 471b3b1ed9..139a8ec424 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--PaymentIntent.create.1.json index d80c6d9826..78928d511e 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--PaymentIntent.create.1.json 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 ac1da13b16..b7aaafd4e4 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 3d3ba2d48b..3d76ceb4fa 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 ac1da13b16..b7aaafd4e4 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 1618457327..68dcd4b22d 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 4c44b8c798..3536da39de 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.create.1.json b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.create.1.json index e6bfc068d2..593a07ed0c 100644 Binary files a/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.create.1.json and b/corporate/tests/stripe_fixtures/switch_now_free_trial_from_annual_to_monthly--Customer.create.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 f506b12496..8c1342d1f3 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 da4fd36213..d64856a92f 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 da4fd36213..d64856a92f 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 da4fd36213..d64856a92f 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 da4fd36213..d64856a92f 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 2f0d7c7ef2..7c095ec25a 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 6caff42c11..51a9048d76 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 c8b8146b34..608a0801ad 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 6caff42c11..51a9048d76 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 d977a670ff..71e84d239b 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 80924c51f9..0dfee7fd16 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 ed6c986db1..e25e2a8db8 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 dd3c063386..c8788ff1dd 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 dd3c063386..c8788ff1dd 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 dd3c063386..c8788ff1dd 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 dd3c063386..c8788ff1dd 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 ea63ba1bb6..e14d86bcb7 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 9df6d27ac0..e6d8420cfb 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 1dd7684452..723e6b20a8 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 9df6d27ac0..e6d8420cfb 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 edfd3178ae..19b51ecceb 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 2be3f3f1e5..cf4eec5c78 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 3e518b3376..a170756639 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 5f99feb771..cca7445085 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 f436712fbd..5172ba263e 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 f436712fbd..5172ba263e 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 f436712fbd..5172ba263e 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 f436712fbd..5172ba263e 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 d1459afec5..d76731c464 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 690c69811a..11787be472 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 64207362b2..fc9ea800b9 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 10674cdf3b..1654ee1078 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 92bafcfaa1..a8f1db24c5 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 index 353abe9b85..6d922067af 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.6.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.7.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.7.json deleted file mode 100644 index adc35e9a41..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.7.json and /dev/null differ diff --git a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.8.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.8.json deleted file mode 100644 index 6d922067af..0000000000 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--Event.list.8.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..1bf16d47d4 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 a8b483910d..d22e7363ed 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 1fef87cfc0..e1b1458d7e 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 45e6665898..e4b3d81163 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--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.1.json index fcb1c3c2e9..03abf6a85e 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..7be7e3518c 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 index 5b9f96e06e..2c2ab690ac 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--InvoiceItem.create.3.json 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 index 06083e646b..ac3df87485 100644 Binary files a/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/switch_realm_from_standard_to_plus_plan--PaymentIntent.create.1.json 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 fe85b57a67..d7fe9bd949 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 1e562bacfa..3e77475be7 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 fe85b57a67..d7fe9bd949 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 91331fe43d..028b98f0a2 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 58057b3884..23eb0cdef8 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 36b87a61dd..395854cc1b 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.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.1.json index 3182346c3b..9ffb7430cf 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 5ff6edff1d..e74001a265 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 36c406e837..234bf78d92 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 bd81274ffd..1d90608ff5 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 bd683cc610..ccc9c4639b 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/upgrade_by_card--Charge.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.list.1.json index 82c7ec03c6..e3168bf773 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.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.create.1.json index eeda7c3359..58419ce2b6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.create.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 73ee53fcb9..3098de8108 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.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.1.json index eeda7c3359..58419ce2b6 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.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 abb1939a79..1252292d60 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 abb1939a79..1252292d60 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 abb1939a79..1252292d60 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 abb1939a79..1252292d60 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 a2ac8bd301..7464bc70a0 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 32b216808f..e8a7873c24 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 1068a32d5f..a4c04f311f 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 41649fec5b..254009fca3 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 5cc887ad9e..4f82146c0b 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 ded973e147..9576994f28 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 6bab819dba..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--Event.list.8.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.8.json deleted file mode 100644 index fc6ffcf358..0000000000 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Event.list.8.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 5da09df62b..c961813fc4 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 b5ce54f84c..f176d6ad5c 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 7099e78fab..73a6672691 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--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.1.json index d318c439b2..00d5ac23bf 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 index 3520269a0f..4cb5093d5e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.2.json 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 index 7c0c415a78..ef20dea284 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--PaymentIntent.create.1.json 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 dfed1bdf66..4d375b5bb4 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 556c67c6f7..28753d4fff 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 dfed1bdf66..4d375b5bb4 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 4c3621eb2e..8c8add9a08 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 7a40abdc75..90668edf2f 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 c86c0db624..2dcc08683a 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 666a80341f..1221a3ce51 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 7d7fa15689..544b418972 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 7d7fa15689..544b418972 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 fa0a0ccca8..5d0a295b35 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 edddeb4a74..0379ff7efb 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 c9f96b0eb4..08f3933c79 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 a8d0f05f07..358c363af9 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--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.create.1.json index 8cc023a496..7c81472b6a 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.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.finalize_invoice.1.json index 29fd551e4b..a29d7f0b7e 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.list.2.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.list.2.json index 19608f311f..3a738a1658 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--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.1.json index ce279a5b2e..5bcd160b6e 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..1cc7e357e2 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 index 385c6c0596..a70b5293be 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--PaymentIntent.create.1.json 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 9b429269d1..b79615658d 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 1d36f30c6d..49da401ad9 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 9b429269d1..b79615658d 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 6561cd0bd2..60fc406900 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 e3e56b6a59..1f15827403 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--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.retrieve.2.json index cfc8347665..4bd8d49629 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.retrieve.2.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 671a950ee8..00b9933670 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 0dda043ce9..e9a11ac501 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 cddfff9d1c..45452fb60e 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 59fd565192..4256c19419 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_license_counts--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_license_counts--Customer.modify.1.json index d430a3566a..46d44c9c78 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 f70d019dc9..6505696f6d 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 cb51a4a200..75387361a6 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 36a004a44b..2edbbc331b 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 cb51a4a200..75387361a6 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 880511c18e..244fdbf7a9 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 738235a509..1582ac4335 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 384cf83ba1..0d726a959b 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 9ca4654411..37cadfb1b6 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 9ca4654411..37cadfb1b6 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 9ca4654411..37cadfb1b6 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 9ca4654411..37cadfb1b6 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 index f10061bf83..17524008fc 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Customer.retrieve.5.json 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 48c312ec28..49111c4784 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 36ffaccdb5..7fad698250 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 6fbde2f7d9..a4a5ced53d 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 fac4ce6917..aade1a83ff 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 4df711f156..9e2764e680 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 906a397ae1..205f46c739 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--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--Invoice.finalize_invoice.1.json index 245ace018a..229e1b1c5e 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 55bbc34181..cb11f2bed0 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 91dcb08df8..7925c413a9 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--PaymentIntent.create.1.json b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.1.json index 1965a61070..4f08cd9f7b 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.1.json 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 index 6743e97072..ca24ab1953 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.2.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.create.2.json 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 index 29015bda6a..2cdeaf4ac4 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_race_condition_during_card_upgrade--PaymentIntent.list.1.json 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 20e841d0de..bca48c641b 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 71656412c4..c2e58cd349 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 20e841d0de..bca48c641b 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 44d4ccc3d2..fd40af2852 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 b71bf15796..e77b0b34fc 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_with_uncaught_exception--Customer.modify.1.json b/corporate/tests/stripe_fixtures/upgrade_with_uncaught_exception--Customer.modify.1.json index a3713782d2..e7c1969855 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 05b62296b9..0e4adf231d 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 05b62296b9..0e4adf231d 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 fd5d244c9d..35661b65b5 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 8943bd9049..eb9123cfe6 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 fd5d244c9d..35661b65b5 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 85b51f7943..6227f706f1 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 6ac139acd9..ef928af066 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.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.1.json index ab79c9d247..9838aab6eb 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 fb2b8e50e3..077fe41436 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 a0a44a8486..e099c9e228 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 2c7cc7e340..a74ff0d452 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 2be6bb2990..ae61c64d9d 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 1ddb2834ad..e0f255bc46 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 701e62d6eb..68a0d6bc7b 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 b2a9f76728..d81722e50a 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/views/upgrade.py b/corporate/views/upgrade.py index 1c5ec12507..917f96724e 100644 --- a/corporate/views/upgrade.py +++ b/corporate/views/upgrade.py @@ -54,6 +54,8 @@ def upgrade( salt=salt, license_management=license_management, licenses=licenses, + # TODO: tier should be a passed parameter. + tier=CustomerPlan.TIER_CLOUD_STANDARD, ) billing_session = RealmBillingSession(user) data = billing_session.do_upgrade(upgrade_request) @@ -101,6 +103,8 @@ def remote_realm_upgrade( salt=salt, license_management=license_management, licenses=licenses, + # TODO: tier should be a passed parameter. + tier=CustomerPlan.TIER_SELF_HOSTED_BUSINESS, ) data = billing_session.do_upgrade(upgrade_request) return json_success(request, data) @@ -146,6 +150,8 @@ def remote_server_upgrade( salt=salt, license_management=license_management, licenses=licenses, + # TODO: tier should be a passed parameter. + tier=CustomerPlan.TIER_SELF_HOSTED_BUSINESS, ) data = billing_session.do_upgrade(upgrade_request) return json_success(request, data) diff --git a/templates/corporate/billing.html b/templates/corporate/billing.html index 67a44093b5..8a3c9465b3 100644 --- a/templates/corporate/billing.html +++ b/templates/corporate/billing.html @@ -11,14 +11,23 @@ {% if admin_access and has_active_plan %} {% if is_sponsorship_pending %}
- This organization has requested sponsorship for a Zulip Cloud Standard plan. Contact Zulip support with any questions or updates. + This organization has requested sponsorship for a {{ plan_name }} plan. Contact Zulip support with any questions or updates.
{% endif %} {% if success_message %} -
{{ success_message }}
+
+ {{ success_message.replace("PLAN_NAME", plan_name) }} +
{% endif %}
-

Zulip Cloud billing for {{ org_name }}

+

+ Zulip + {% if is_self_hosted_billing %} + {% else %} + Cloud + {% endif %} + billing for {{ org_name }} +

diff --git a/web/src/billing/helpers.ts b/web/src/billing/helpers.ts index ab336c7fdb..5b6c3206ff 100644 --- a/web/src/billing/helpers.ts +++ b/web/src/billing/helpers.ts @@ -157,7 +157,7 @@ export function redirect_to_billing_with_successful_upgrade(billing_base_url: st window.location.replace( billing_base_url + "/billing/?success_message=" + - encodeURIComponent("Your organization has been upgraded to Zulip Cloud Standard."), + encodeURIComponent("Your organization has been upgraded to PLAN_NAME."), ); }