diff --git a/corporate/lib/stripe.py b/corporate/lib/stripe.py index 501eea0b1f..24f5537ccd 100644 --- a/corporate/lib/stripe.py +++ b/corporate/lib/stripe.py @@ -277,7 +277,7 @@ def catch_stripe_errors(func: CallableT) -> CallableT: @catch_stripe_errors def stripe_get_customer(stripe_customer_id: str) -> stripe.Customer: - return stripe.Customer.retrieve(stripe_customer_id, expand=["default_source"]) + return stripe.Customer.retrieve(stripe_customer_id, expand=["default_source", "sources"]) @catch_stripe_errors @@ -337,7 +337,7 @@ def do_replace_payment_source( ) if pay_invoices: for stripe_invoice in stripe.Invoice.list( - billing="charge_automatically", customer=stripe_customer.id, status="open" + collection_method="charge_automatically", customer=stripe_customer.id, status="open" ): # The user will get either a receipt or a "failed payment" email, but the in-app # messaging could be clearer here (e.g. it could explicitly tell the user that there @@ -642,15 +642,15 @@ def process_initial_upgrade( ) if charge_automatically: - billing_method = "charge_automatically" + collection_method = "charge_automatically" days_until_due = None else: - billing_method = "send_invoice" + collection_method = "send_invoice" days_until_due = DEFAULT_INVOICE_DAYS_UNTIL_DUE stripe_invoice = stripe.Invoice.create( auto_advance=True, - billing=billing_method, + collection_method=collection_method, customer=customer.stripe_customer_id, days_until_due=days_until_due, statement_descriptor="Zulip Standard", @@ -795,14 +795,14 @@ def invoice_plan(plan: CustomerPlan, event_time: datetime) -> None: if invoice_item_created: if plan.charge_automatically: - billing_method = "charge_automatically" + collection_method = "charge_automatically" days_until_due = None else: - billing_method = "send_invoice" + collection_method = "send_invoice" days_until_due = DEFAULT_INVOICE_DAYS_UNTIL_DUE stripe_invoice = stripe.Invoice.create( auto_advance=True, - billing=billing_method, + collection_method=collection_method, customer=plan.customer.stripe_customer_id, days_until_due=days_until_due, statement_descriptor="Zulip Standard", diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.create.1.json index 273b484f2c..51636e7b37 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.create.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.create.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.create.2.json index 3c278054f6..9e78c20915 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.create.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Charge.list.1.json index 2a0c257612..c72832c640 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 2df0a47ee6..33d35851aa 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.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.create.1.json index 1e87c2923c..88d5c69190 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.create.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.create.1.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 17d0048113..3d384443cb 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.save.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.save.1.json index e15c65677b..cface3d923 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.save.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Customer.save.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.1.json index 73eba385be..d6bc3d9008 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.2.json index ad972d1b15..16494f1f45 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.3.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.3.json index ab63d5de42..f559909bc0 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.finalize_invoice.1.json index 64eb5442cc..22bbcb021a 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 3266fdddb1..d3ab38b2a5 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 fe307718af..181f0ab477 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.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.1.json index acdd6e51e8..70e650aca9 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.1.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 0fe097a566..7606155a4c 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.3.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.3.json index b4c3338228..fc65f55b00 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--Invoice.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.1.json index 4c81ac4cb9..e9ac575f0d 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.2.json index 047cc89ffd..2d5bb1c054 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.3.json index 03119d59cc..82f73b1ae6 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.4.json index 7274176f8b..15f0a8edc5 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.5.json index 7b09fad905..77dc7d535d 100644 Binary files a/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.5.json and b/corporate/tests/stripe_fixtures/attach_discount_to_realm--InvoiceItem.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Charge.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Charge.create.1.json index 850efd1f73..3114f2b613 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Charge.create.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Charge.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.create.1.json index 5828b5becf..88d5c69190 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.create.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Customer.create.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 15ba5b5698..3d384443cb 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 15ba5b5698..3d384443cb 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--Invoice.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.create.1.json index 84dc0f668d..85ba0a34b9 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--Invoice.finalize_invoice.1.json index e55446a8ba..ccbab49cdf 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--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.1.json index 99477bab14..f722b04075 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.2.json index d4270a431e..3f346515e5 100644 Binary files a/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/billing_page_permissions--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.create.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.create.1.json index 611715f7d6..276fd1f723 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.create.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.create.2.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.create.2.json index 20e83ef155..4cdc7ec73f 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.create.2.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.retrieve.1.json index 611715f7d6..16a7af69f0 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.retrieve.2.json index b764451133..c62944d868 100644 Binary files a/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/customer_has_credit_card_as_default_source--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.1.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.1.json index e4bc8ad667..f63271c60e 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.1.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.2.json index 853870a5d7..6ca54b638a 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.3.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.3.json index 367108a35b..0c1332d0ea 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.3.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.4.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.4.json index c9bdaaaf5d..1051e7c089 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.4.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.5.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.5.json index 9aaff7edb4..3f1ae85c50 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.5.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.6.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.6.json index 29b89b6b38..acfd679ee6 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.6.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.6.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.7.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.7.json index 0c4bdb0880..38fae9994b 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.7.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Customer.create.7.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.1.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.1.json index 6569af1bc0..ae1ec0d48c 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.2.json index 9ba45ea03e..501d74354a 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.3.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.3.json index ae312cf08c..b84bed282f 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.4.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.4.json index 18733c71fa..c04d682b1c 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.4.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.5.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.5.json index 51c05c49c2..eb462ce9db 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.5.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.6.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.6.json index 6f284ae74c..29639e13c9 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.6.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.6.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.7.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.7.json index 71b6464c11..d258cf50b1 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.7.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.7.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.8.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.8.json index 941ce43bac..a10b430768 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.8.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.create.8.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.1.json index e6eea7a955..fb22c30cfe 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.2.json index cce03c8422..d8d7d3d95c 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.3.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.3.json index 3fdac241d5..5b8b7b041f 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.3.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.3.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.4.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.4.json index e693a35516..e6ab3fec6a 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.4.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.4.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.5.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.5.json index 88b571e411..487a759fe6 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.5.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.5.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.6.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.6.json index 694c49d567..db680e9c6b 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.6.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.6.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.7.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.7.json index 3ada3577c4..db334ba810 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.7.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.7.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.8.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.8.json index 8403ebf933..93014d80da 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.8.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.finalize_invoice.8.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.2.json index 03f4866f22..921882725e 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.4.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.4.json index 3f40720465..dd3f830d77 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.4.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.5.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.5.json index f68fea6925..1d1d5443b1 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.5.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.5.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.6.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.6.json index 09a3caf621..5acf97e8cc 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.6.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.list.6.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.1.json index 84470f6a71..85369738aa 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.1.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.2.json index cb8978ebda..ed53f260f9 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--Invoice.pay.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.1.json index ef4997f285..ff63b3bfc0 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.2.json index 257bd73f25..b8e465e289 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.3.json index 7b2e8f8287..55df81f3db 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.4.json index dd99b2d461..9d82becfe2 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.5.json index e374cfcf26..9542efa345 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.5.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.6.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.6.json index ef92fc8fc6..a7b8d4c32b 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.6.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.6.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.7.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.7.json index 22628d77d2..77122d33f7 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.7.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.7.json differ diff --git a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.8.json b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.8.json index 1a6ad6a3c0..d37c9bcea0 100644 Binary files a/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.8.json and b/corporate/tests/stripe_fixtures/downgrade_small_realms_behind_on_payments_as_needed--InvoiceItem.create.8.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--Customer.create.1.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Customer.create.1.json index 27cdf2c0a8..730ed973b0 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--Customer.create.1.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.1.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.1.json index b3163203fa..6cf3eb01e2 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.2.json b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.create.2.json index e9f91d7634..2c7d1773a5 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 57cd336c5b..330d8fb241 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 422f5aa598..c93e2e5e60 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 561e7bc0ce..2d609e9ebc 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.1.json index 81ab7af590..9f60bb15ae 100644 Binary files a/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/fixed_price_plans--InvoiceItem.create.2.json index f9ae5a6866..47eac324e8 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.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.create.1.json index 48d96fefd7..c039b422a4 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.1.json index 2485749ffd..3c8c2ea0a0 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Customer.retrieve.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 2485749ffd..3c8c2ea0a0 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 2aee093b59..3c8c2ea0a0 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--Invoice.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.1.json index dcf2a013fc..af437c2a5f 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.2.json index c67576116a..373239ea1c 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.3.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.3.json index 636a1cb4dd..77c8cd4b55 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.finalize_invoice.1.json index 857c0a8b08..92f0358037 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 8575f0b461..e04a6bd8fd 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 1a4b0cb4ea..5770e26e91 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.3.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.3.json index 67b144d588..b94a420468 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Invoice.list.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 67b144d588..b94a420468 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 58547c136a..ee24773fed 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 fdee84eb0d..ee545e2f4b 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--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.1.json index f99447209e..4bcd7ddb1e 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.2.json index 04af1e14a4..bf33506395 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.3.json index 47ee85f59a..451eb3a718 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Token.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Token.create.1.json index 4edd6803f0..1d208a83a9 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Token.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_card--Token.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.create.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.create.1.json index 859f8d187d..51ee3ff976 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.create.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.retrieve.1.json index 859f8d187d..30370206ff 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.retrieve.2.json index 859f8d187d..30370206ff 100644 Binary files a/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/free_trial_upgrade_by_invoice--Customer.retrieve.2.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 d0c4723502..4535a89e76 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 47a832187d..9ccd8e5495 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 a722423d0e..c45c92e79b 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 28c295334f..bd56f48ae2 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 98ed046dee..3813de7d75 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 98ed046dee..3813de7d75 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 98ed046dee..3813de7d75 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 9a56d5fcbf..f2f15dab0f 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 f4d06581cb..2c6207a72d 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 3e27f6a83b..fcd766ca2e 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--Charge.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Charge.create.1.json index 850efd1f73..3114f2b613 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Charge.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--Charge.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Customer.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Customer.create.1.json index 5828b5becf..88d5c69190 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Customer.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.1.json index 8c98b79de3..46ffedbaae 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.2.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.2.json index db59d46dde..21fa5ade81 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.finalize_invoice.1.json index 4ffeb9c163..9ddaf8d9b2 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 46936509d1..448311ac24 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.1.json b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.list.1.json index 1d595cdb75..c3c27415e8 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.1.json index 99477bab14..f722b04075 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.2.json index b79216ebdc..9ed190192f 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.3.json index aef59ee762..3658be4b0b 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.4.json index aa928f1842..56f0e3dffd 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.5.json index b25f0440e6..63d5c13333 100644 Binary files a/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.5.json and b/corporate/tests/stripe_fixtures/invoice_plan--InvoiceItem.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Charge.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_source--Charge.create.1.json index 850efd1f73..3114f2b613 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Charge.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Charge.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.create.1.json index 5828b5becf..88d5c69190 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.1.json index 15ba5b5698..e5926664e4 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.2.json index 15ba5b5698..e5926664e4 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.3.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.3.json index 15ba5b5698..e5926664e4 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.3.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.4.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.4.json index 5392970803..0907250d59 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.4.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.4.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.5.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.5.json index 5392970803..0907250d59 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.5.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.5.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.6.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.6.json index 20e5035a5b..4d22405ef6 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.6.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.retrieve.6.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.1.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.1.json index 03f37a1c34..1465905217 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.1.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.2.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.2.json index 815301bdfa..a985aa0445 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.2.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.3.json b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.3.json index af72b95c5d..19028c05db 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.3.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Customer.save.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.create.1.json index 84dc0f668d..85ba0a34b9 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.create.2.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.create.2.json index 92be5ca0de..c8f2784982 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.finalize_invoice.1.json index e55446a8ba..bc44ce72db 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.finalize_invoice.2.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.finalize_invoice.2.json index fdf4e7473f..4ea76045c5 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.finalize_invoice.2.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.finalize_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.1.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.1.json index bbca7783eb..5065640a13 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.2.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.2.json index 52945aa1cb..ec3f6c264f 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.3.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.3.json index 52945aa1cb..ec3f6c264f 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.3.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.3.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.4.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.4.json index 159a049627..6d9fb11490 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.4.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.list.4.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.pay.1.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.pay.1.json index 6083899e29..c1639c89c6 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.pay.1.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.pay.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.pay.2.json b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.pay.2.json index 640992725d..a39e5205ff 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.pay.2.json and b/corporate/tests/stripe_fixtures/replace_payment_source--Invoice.pay.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.1.json index 99477bab14..f722b04075 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.2.json index d4270a431e..3f346515e5 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.3.json index 0707fe4c36..6812d3e0ce 100644 Binary files a/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/replace_payment_source--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Charge.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Charge.create.1.json index ec20193c31..cccdeed326 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Charge.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Charge.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.create.1.json index 1e87c2923c..88d5c69190 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Customer.create.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 17d0048113..3d384443cb 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--Invoice.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.1.json index e9e1cfb02c..73930ab9c6 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.2.json index b8feafbb7c..0923f62afa 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.3.json index c6b5486c58..456a0267ae 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.4.json index 50ee2d3145..4d5f137868 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.5.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.5.json index c0bfcaec06..971e5617a6 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.5.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.finalize_invoice.1.json index 453181d726..4608163565 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 9180702c2e..6f2442d53c 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 b7a42a7662..eed7cd4b15 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 432094cc1e..612cdb801b 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 a5d35eb489..e9aa908a1b 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.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.1.json index 0d1b946bd9..cfd1ee25d7 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--Invoice.list.1.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 52e883d852..4ef3e16fb4 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 9f949ec1c9..bc50ee5c03 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--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.1.json index 1704e35403..4ffd2a77d9 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.2.json index 7e972e9ed8..7c21fa3319 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.3.json index 85dfd73948..df781a6bf9 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.4.json index 4df7018f01..e984120548 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.5.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.5.json index b339b15670..6fcb44d187 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.5.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.5.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.6.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.6.json index be232f9485..a11e2a56ef 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.6.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.6.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.7.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.7.json index d9dc8e9060..41c8bd7b13 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.7.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_automatic_license_management--InvoiceItem.create.7.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Charge.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Charge.create.1.json index 047eb12da3..d104330f0e 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Charge.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Charge.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.create.1.json index 1e87c2923c..88d5c69190 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Customer.create.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 17d0048113..3d384443cb 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--Invoice.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.1.json index 1340fa41db..c2745002eb 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.2.json index 4ebf520a9a..f0a36f1670 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.3.json index 81e2f6dda8..5265de6b71 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.finalize_invoice.1.json index 2c353ac873..1dbe8402ec 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 02e6c38814..516f5667b9 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 ae889f9cd9..c8c0411483 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.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.1.json index f503026203..de545b70e3 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--Invoice.list.1.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 ad6f6b0365..88b4cc624e 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--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.1.json index 5c37350553..146cb93250 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.2.json index 131e4a3607..d3305507d6 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.3.json index 1fc7a4ff41..4ac8751ad4 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.4.json index 594d8b35ee..de41160cfe 100644 Binary files a/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/switch_from_monthly_plan_to_annual_plan_for_manual_license_management--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.create.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.create.1.json index 24c4bc8fe1..730ed973b0 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.create.1.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.retrieve.1.json index d3b72bc2df..a38ce33448 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.retrieve.2.json index 339c1869f6..b0368c52b1 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.1.json index 23cf5ddbb8..b33e97dafa 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.2.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.2.json index d942e8a039..0e4a8acb9e 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.3.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.3.json index b933e66478..358f3c401c 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.3.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.finalize_invoice.1.json index 13dd03b7f0..28d37b94b6 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 fc6cf87f23..0580ef77d3 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 ff8ec5a64e..20f641d9db 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 aca4b1dc89..ae5e402725 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 8cc6f81632..22b5e0f33d 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.1.json index 5be38cb892..a5e7f5fe0c 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.2.json index a944f0f957..ccca30b250 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.3.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.3.json index e28e66e42c..8c73b385ff 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.3.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.3.json differ diff --git a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.4.json b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.4.json index 0e06eeb114..d33163548c 100644 Binary files a/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.4.json and b/corporate/tests/stripe_fixtures/update_licenses_of_manual_plan_from_billing_page--InvoiceItem.create.4.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.create.1.json index abbe645d53..180168b461 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.list.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Charge.list.1.json index b3bbff411e..4c471240bc 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 4a09519f0d..236cba3ab0 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.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Customer.retrieve.1.json index a605a1b4ce..ebf57e16d5 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 a605a1b4ce..ebf57e16d5 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--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.create.1.json index 1a9ea58173..a3990fb986 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 9aa70f9a62..f85aa35cc6 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.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.list.1.json index e4d990c4fc..ac87099084 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card--InvoiceItem.create.1.json index 99477bab14..cf52be404d 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 b79216ebdc..c1f41cd06f 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_with_outdated_seat_count--Charge.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Charge.create.1.json index abbe645d53..180168b461 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Charge.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Charge.create.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 b3bbff411e..4c471240bc 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.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.create.1.json index 4a09519f0d..236cba3ab0 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Customer.create.1.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 d4674ad7ef..33f7ccbcf7 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 e1d40aab36..e4bf0da1f9 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.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.list.1.json index f10697d0a7..f791fad79c 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--InvoiceItem.create.1.json index 99477bab14..cf52be404d 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 803ae7d6b8..daddb9e677 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--Token.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Token.create.1.json index b3a57bdcca..6281ac65af 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Token.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_card_with_outdated_seat_count--Token.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.create.1.json index 923f3617b9..51ee3ff976 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.retrieve.1.json index ce47e7ae74..6ea816ef34 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Customer.retrieve.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 855d38b2ec..6ea816ef34 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--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.create.1.json index f734b8a8e4..4ff69f2513 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 389bfcf647..07c16f132e 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 93430fbba4..29b0ca6e5e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--Invoice.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_by_invoice--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_by_invoice--InvoiceItem.create.1.json index 81ab7af590..031df5bc51 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_by_invoice--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_by_invoice--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.create.1.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.create.1.json index e79aedfa05..650347743e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.create.2.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.create.2.json index 3a826bb223..e804e1f8fd 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.create.2.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.list.1.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.list.1.json index d11322e442..f4c2357daa 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.list.1.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.list.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.list.2.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.list.2.json index d5d988f3cb..f94d2e808f 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Charge.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.create.1.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.create.1.json index dea0366ab2..08de472be2 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.retrieve.1.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.retrieve.1.json index 5f121133f1..ea9d4a470e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.retrieve.1.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.retrieve.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.retrieve.2.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.retrieve.2.json index 5f121133f1..ea9d4a470e 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.retrieve.2.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.retrieve.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.save.1.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.save.1.json index 5828b5becf..88d5c69190 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.save.1.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Customer.save.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.create.1.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.create.1.json index 6f9b1d293c..9c8c17c5ed 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.finalize_invoice.1.json index dcb9810ba7..a04f73a460 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.finalize_invoice.1.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.finalize_invoice.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.list.2.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.list.2.json index b746fc51ca..aaa6d2eafd 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.list.2.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--Invoice.list.2.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--InvoiceItem.create.1.json index dbca4bb691..e7e8ac47f7 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--InvoiceItem.create.2.json index 803ae7d6b8..94f145f003 100644 Binary files a/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/upgrade_where_first_card_fails--InvoiceItem.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Customer.create.1.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Customer.create.1.json index 611715f7d6..276fd1f723 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Customer.create.1.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Customer.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Customer.create.2.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Customer.create.2.json index bedc055ea8..c3568a69d3 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Customer.create.2.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Customer.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.1.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.1.json index 53046e529a..50fa54e261 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.1.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.2.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.2.json index ec49e6137d..cc6fed629a 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.2.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.create.2.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.1.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.finalize_invoice.1.json index 7c614470bd..031ec95514 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 10597ed2e8..aee3bfc5c3 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 8e36bacac3..8e3e6a039e 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 3df53690c3..3df5bb58ec 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 d71df56bc8..f184b521ca 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 3f1f88fc08..e68d8846c6 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 2418f39693..4055609998 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 519abd4a2f..d08bc172ac 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.2.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--Invoice.void_invoice.2.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--InvoiceItem.create.1.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--InvoiceItem.create.1.json index 9a210d6002..2c843d7a5b 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--InvoiceItem.create.1.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--InvoiceItem.create.1.json differ diff --git a/corporate/tests/stripe_fixtures/void_all_open_invoices--InvoiceItem.create.2.json b/corporate/tests/stripe_fixtures/void_all_open_invoices--InvoiceItem.create.2.json index 5fdfdbe652..983ea58d3c 100644 Binary files a/corporate/tests/stripe_fixtures/void_all_open_invoices--InvoiceItem.create.2.json and b/corporate/tests/stripe_fixtures/void_all_open_invoices--InvoiceItem.create.2.json differ diff --git a/corporate/tests/test_stripe.py b/corporate/tests/test_stripe.py index 1989fd797e..3171ba523a 100644 --- a/corporate/tests/test_stripe.py +++ b/corporate/tests/test_stripe.py @@ -208,22 +208,26 @@ def normalize_fixture_data( ) -> None: # nocoverage # stripe ids are all of the form cus_D7OT2jf5YAtZQ2 id_lengths = [ + ("test", 12), ("cus", 14), - ("sub", 14), + ("prod", 14), + ("req", 14), ("si", 14), ("sli", 14), - ("req", 14), - ("tok", 24), - ("card", 24), - ("txn", 24), - ("ch", 24), - ("in", 24), - ("ii", 24), - ("test", 12), - ("src_client_secret", 24), - ("src", 24), - ("invst", 26), + ("sub", 14), ("acct", 16), + ("card", 24), + ("ch", 24), + ("ii", 24), + ("il", 24), + ("in", 24), + ("pi", 24), + ("price", 24), + ("src", 24), + ("src_client_secret", 24), + ("tok", 24), + ("txn", 24), + ("invst", 26), ("rcpt", 31), ] # We'll replace cus_D7OT2jf5YAtZQ2 with something like cus_NORMALIZED0001 @@ -559,7 +563,7 @@ class StripeTest(StripeTestCase): "amount_due": 0, "amount_paid": 0, "auto_advance": False, - "billing": "charge_automatically", + "collection_method": "charge_automatically", "charge": None, "status": "paid", "total": 0, @@ -711,7 +715,7 @@ class StripeTest(StripeTestCase): "amount_paid": 0, "attempt_count": 0, "auto_advance": True, - "billing": "send_invoice", + "collection_method": "send_invoice", "statement_descriptor": "Zulip Standard", "status": "open", "total": 8000 * 123, @@ -960,7 +964,6 @@ class StripeTest(StripeTestCase): "amount_paid": 0, "amount_remaining": 15 * 80 * 100, "auto_advance": True, - "billing": "charge_automatically", "collection_method": "charge_automatically", "customer_email": self.example_email("hamlet"), "discount": None, @@ -1002,7 +1005,6 @@ class StripeTest(StripeTestCase): invoice_params = { "amount_due": 5172, "auto_advance": True, - "billing": "charge_automatically", "collection_method": "charge_automatically", "customer_email": "hamlet@zulip.com", } @@ -1139,7 +1141,6 @@ class StripeTest(StripeTestCase): "amount_paid": 0, "amount_remaining": 123 * 80 * 100, "auto_advance": True, - "billing": "send_invoice", "collection_method": "send_invoice", "customer_email": self.example_email("hamlet"), "discount": None, @@ -1828,7 +1829,7 @@ class StripeTest(StripeTestCase): number_of_sources += 1 # Verify that we replaced the previous card, rather than adding a new one self.assertEqual(number_of_sources, 1) - # Ideally we'd also test that we don't pay invoices with billing=='send_invoice' + # Ideally we'd also test that we don't pay invoices with collection_method=='send_invoice' for stripe_invoice in stripe.Invoice.list(customer=stripe_customer_id): self.assertEqual(stripe_invoice.status, "paid") self.assertEqual( @@ -2443,7 +2444,7 @@ class StripeTest(StripeTestCase): "amount_paid": 0, "attempt_count": 0, "auto_advance": True, - "billing": "send_invoice", + "collection_method": "send_invoice", "statement_descriptor": "Zulip Standard", "status": "open", "total": (8000 * 150 + 8000 * 50), @@ -2493,7 +2494,7 @@ class StripeTest(StripeTestCase): "amount_paid": 0, "attempt_count": 0, "auto_advance": True, - "billing": "send_invoice", + "collection_method": "send_invoice", "statement_descriptor": "Zulip Standard", "status": "open", "total": 8000 * 120, @@ -2691,7 +2692,7 @@ class StripeTest(StripeTestCase): ) stripe_invoice = stripe.Invoice.create( auto_advance=True, - billing="send_invoice", + collection_method="send_invoice", customer=zulip_customer.stripe_customer_id, days_until_due=30, statement_descriptor="Zulip Standard", @@ -2709,7 +2710,7 @@ class StripeTest(StripeTestCase): ) stripe_invoice = stripe.Invoice.create( auto_advance=True, - billing="send_invoice", + collection_method="send_invoice", customer=lear_customer.stripe_customer_id, days_until_due=30, statement_descriptor="Zulip Standard", @@ -2748,7 +2749,7 @@ class StripeTest(StripeTestCase): ) invoice = stripe.Invoice.create( auto_advance=True, - billing="send_invoice", + collection_method="send_invoice", customer=customer.stripe_customer_id, days_until_due=DEFAULT_INVOICE_DAYS_UNTIL_DUE, statement_descriptor="Zulip Standard", @@ -3512,7 +3513,7 @@ class InvoiceTest(StripeTestCase): plan.save(update_fields=["fixed_price", "price_per_license"]) invoice_plan(plan, self.next_year) [invoice0, invoice1] = stripe.Invoice.list(customer=plan.customer.stripe_customer_id) - self.assertEqual(invoice0.billing, "send_invoice") + self.assertEqual(invoice0.collection_method, "send_invoice") [item] = invoice0.lines line_item_params = { "amount": 100, diff --git a/stubs/stripe/__init__.pyi b/stubs/stripe/__init__.pyi index cbf6b6700b..7ed8adc0fd 100644 --- a/stubs/stripe/__init__.pyi +++ b/stubs/stripe/__init__.pyi @@ -18,7 +18,7 @@ class Customer: sources: List[Union[Card, Source]] subscriptions: SubscriptionListObject coupon: str - account_balance: int + balance: int email: str description: str discount: Optional[Discount] @@ -44,7 +44,7 @@ class Invoice: id: str auto_advance: bool amount_due: int - billing: str + collection_method: str billing_reason: str default_source: Source due_date: int @@ -60,7 +60,7 @@ class Invoice: ) -> Invoice: ... @staticmethod def list( - billing: str = ..., + collection_method: str = ..., customer: str = ..., status: str = ..., limit: Optional[int] = ..., @@ -69,7 +69,7 @@ class Invoice: @staticmethod def create( auto_advance: bool = ..., - billing: str = ..., + collection_method: str = ..., customer: str = ..., days_until_due: Optional[int] = ..., statement_descriptor: str = ..., @@ -95,7 +95,7 @@ class Subscription: @staticmethod def create( customer: str = ..., - billing: str = ..., + collection_method: str = ..., days_until_due: Optional[int] = ..., items: List[Dict[str, Any]] = ..., prorate: bool = ...,