stripe 18.2.0.pre.alpha.1 → 18.2.0.pre.alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/stripe/api_requestor.rb +1 -1
- data/lib/stripe/object_types.rb +1 -0
- data/lib/stripe/params/checkout/session_create_params.rb +4 -1
- data/lib/stripe/params/checkout/session_update_params.rb +4 -1
- data/lib/stripe/params/invoice_add_lines_params.rb +4 -1
- data/lib/stripe/params/invoice_create_preview_params.rb +2 -2
- data/lib/stripe/params/invoice_line_item_update_params.rb +4 -1
- data/lib/stripe/params/invoice_update_lines_params.rb +4 -1
- data/lib/stripe/params/payment_link_create_params.rb +4 -1
- data/lib/stripe/params/plan_create_params.rb +16 -1
- data/lib/stripe/params/price_create_params.rb +16 -1
- data/lib/stripe/params/product_create_params.rb +4 -1
- data/lib/stripe/params/product_update_params.rb +4 -1
- data/lib/stripe/params/quote_create_params.rb +3 -3
- data/lib/stripe/params/quote_update_params.rb +3 -3
- data/lib/stripe/params/shared_payment/{granted_token_update_params.rb → granted_token_revoke_params.rb} +1 -1
- data/lib/stripe/params/subscription_pause_params.rb +33 -0
- data/lib/stripe/params/subscription_schedule_amend_params.rb +1 -1
- data/lib/stripe/params/subscription_schedule_create_params.rb +2 -2
- data/lib/stripe/params/subscription_schedule_update_params.rb +2 -2
- data/lib/stripe/params/tax/calculation_create_params.rb +5 -1
- data/lib/stripe/params/tax/location_create_params.rb +54 -0
- data/lib/stripe/params/tax/location_list_params.rb +27 -0
- data/lib/stripe/params/tax/location_retrieve_params.rb +15 -0
- data/lib/stripe/params/test_helpers/shared_payment/{granted_token_update_params.rb → granted_token_revoke_params.rb} +1 -1
- data/lib/stripe/params.rb +6 -2
- data/lib/stripe/resources/invoice.rb +2 -0
- data/lib/stripe/resources/plan.rb +2 -0
- data/lib/stripe/resources/price.rb +2 -0
- data/lib/stripe/resources/quote.rb +2 -2
- data/lib/stripe/resources/quote_line.rb +1 -1
- data/lib/stripe/resources/quote_preview_invoice.rb +2 -0
- data/lib/stripe/resources/shared_payment/granted_token.rb +2 -2
- data/lib/stripe/resources/subscription.rb +20 -0
- data/lib/stripe/resources/tax/calculation_line_item.rb +2 -0
- data/lib/stripe/resources/tax/location.rb +72 -0
- data/lib/stripe/resources/tax/registration.rb +128 -0
- data/lib/stripe/resources/tax_code.rb +15 -1
- data/lib/stripe/resources.rb +1 -0
- data/lib/stripe/services/subscription_service.rb +11 -0
- data/lib/stripe/services/tax/location_service.rb +45 -0
- data/lib/stripe/services/tax_service.rb +2 -1
- data/lib/stripe/services/test_helpers/shared_payment/granted_token_service.rb +1 -1
- data/lib/stripe/services.rb +1 -0
- data/lib/stripe/util.rb +9 -3
- data/lib/stripe/version.rb +1 -1
- data/rbi/stripe.rbi +604 -67
- metadata +10 -4
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stripe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 18.2.0.pre.alpha.
|
|
4
|
+
version: 18.2.0.pre.alpha.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stripe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Stripe is the easiest way to accept payments online. See https://stripe.com
|
|
14
14
|
for details.
|
|
@@ -671,7 +671,7 @@ files:
|
|
|
671
671
|
- lib/stripe/params/setup_intent_verify_microdeposits_params.rb
|
|
672
672
|
- lib/stripe/params/shared_payment/granted_token_create_params.rb
|
|
673
673
|
- lib/stripe/params/shared_payment/granted_token_retrieve_params.rb
|
|
674
|
-
- lib/stripe/params/shared_payment/
|
|
674
|
+
- lib/stripe/params/shared_payment/granted_token_revoke_params.rb
|
|
675
675
|
- lib/stripe/params/shipping_rate_create_params.rb
|
|
676
676
|
- lib/stripe/params/shipping_rate_list_params.rb
|
|
677
677
|
- lib/stripe/params/shipping_rate_retrieve_params.rb
|
|
@@ -695,6 +695,7 @@ files:
|
|
|
695
695
|
- lib/stripe/params/subscription_item_update_params.rb
|
|
696
696
|
- lib/stripe/params/subscription_list_params.rb
|
|
697
697
|
- lib/stripe/params/subscription_migrate_params.rb
|
|
698
|
+
- lib/stripe/params/subscription_pause_params.rb
|
|
698
699
|
- lib/stripe/params/subscription_resume_params.rb
|
|
699
700
|
- lib/stripe/params/subscription_retrieve_params.rb
|
|
700
701
|
- lib/stripe/params/subscription_schedule_amend_params.rb
|
|
@@ -714,6 +715,9 @@ files:
|
|
|
714
715
|
- lib/stripe/params/tax/form_list_params.rb
|
|
715
716
|
- lib/stripe/params/tax/form_pdf_params.rb
|
|
716
717
|
- lib/stripe/params/tax/form_retrieve_params.rb
|
|
718
|
+
- lib/stripe/params/tax/location_create_params.rb
|
|
719
|
+
- lib/stripe/params/tax/location_list_params.rb
|
|
720
|
+
- lib/stripe/params/tax/location_retrieve_params.rb
|
|
717
721
|
- lib/stripe/params/tax/registration_create_params.rb
|
|
718
722
|
- lib/stripe/params/tax/registration_list_params.rb
|
|
719
723
|
- lib/stripe/params/tax/registration_retrieve_params.rb
|
|
@@ -788,7 +792,7 @@ files:
|
|
|
788
792
|
- lib/stripe/params/test_helpers/issuing/transaction_refund_params.rb
|
|
789
793
|
- lib/stripe/params/test_helpers/refund_expire_params.rb
|
|
790
794
|
- lib/stripe/params/test_helpers/shared_payment/granted_token_create_params.rb
|
|
791
|
-
- lib/stripe/params/test_helpers/shared_payment/
|
|
795
|
+
- lib/stripe/params/test_helpers/shared_payment/granted_token_revoke_params.rb
|
|
792
796
|
- lib/stripe/params/test_helpers/terminal/reader_present_payment_method_params.rb
|
|
793
797
|
- lib/stripe/params/test_helpers/terminal/reader_succeed_input_collection_params.rb
|
|
794
798
|
- lib/stripe/params/test_helpers/terminal/reader_timeout_input_collection_params.rb
|
|
@@ -1229,6 +1233,7 @@ files:
|
|
|
1229
1233
|
- lib/stripe/resources/tax/calculation.rb
|
|
1230
1234
|
- lib/stripe/resources/tax/calculation_line_item.rb
|
|
1231
1235
|
- lib/stripe/resources/tax/form.rb
|
|
1236
|
+
- lib/stripe/resources/tax/location.rb
|
|
1232
1237
|
- lib/stripe/resources/tax/registration.rb
|
|
1233
1238
|
- lib/stripe/resources/tax/settings.rb
|
|
1234
1239
|
- lib/stripe/resources/tax/transaction.rb
|
|
@@ -1486,6 +1491,7 @@ files:
|
|
|
1486
1491
|
- lib/stripe/services/tax/calculation_line_item_service.rb
|
|
1487
1492
|
- lib/stripe/services/tax/calculation_service.rb
|
|
1488
1493
|
- lib/stripe/services/tax/form_service.rb
|
|
1494
|
+
- lib/stripe/services/tax/location_service.rb
|
|
1489
1495
|
- lib/stripe/services/tax/registration_service.rb
|
|
1490
1496
|
- lib/stripe/services/tax/settings_service.rb
|
|
1491
1497
|
- lib/stripe/services/tax/transaction_line_item_service.rb
|