stripe 17.1.0.pre.alpha.2 → 17.1.0.pre.alpha.4
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/events/v2_money_management_transaction_created_event.rb +18 -1
- data/lib/stripe/object_types.rb +4 -0
- data/lib/stripe/params/billing/meter_create_params.rb +5 -1
- data/lib/stripe/params/billing/meter_event_summary_list_params.rb +8 -0
- data/lib/stripe/params/delegated_checkout/requested_session_confirm_params.rb +18 -0
- data/lib/stripe/params/delegated_checkout/requested_session_create_params.rb +244 -0
- data/lib/stripe/params/delegated_checkout/requested_session_expire_params.rb +15 -0
- data/lib/stripe/params/delegated_checkout/requested_session_retrieve_params.rb +15 -0
- data/lib/stripe/params/delegated_checkout/requested_session_update_params.rb +209 -0
- data/lib/stripe/params/identity/blocklist_entry_create_params.rb +29 -0
- data/lib/stripe/params/identity/blocklist_entry_disable_params.rb +15 -0
- data/lib/stripe/params/identity/blocklist_entry_list_params.rb +62 -0
- data/lib/stripe/params/identity/blocklist_entry_retrieve_params.rb +15 -0
- data/lib/stripe/params/identity/verification_report_list_params.rb +4 -0
- data/lib/stripe/params/v2/billing/collection_setting_create_params.rb +2 -2
- data/lib/stripe/params/v2/billing/collection_setting_update_params.rb +2 -2
- data/lib/stripe/params/v2/billing/pricing_plan_subscriptions/component_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/core/account_create_params.rb +33 -2
- data/lib/stripe/params/v2/core/account_list_params.rb +4 -1
- data/lib/stripe/params/v2/core/account_update_params.rb +33 -2
- data/lib/stripe/params/v2/core/event_list_params.rb +24 -1
- data/lib/stripe/params/v2/core/vault/gb_bank_account_list_params.rb +19 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_confirm_microdeposits_params.rb +22 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_list_params.rb +22 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_send_microdeposits_params.rb +12 -0
- data/lib/stripe/params/v2/money_management/financial_account_update_params.rb +20 -0
- data/lib/stripe/params/v2/test_helpers/money_management_recipient_verifications_params.rb +1 -0
- data/lib/stripe/params.rb +15 -0
- data/lib/stripe/resources/billing/meter.rb +2 -0
- data/lib/stripe/resources/billing/meter_event_summary.rb +2 -0
- data/lib/stripe/resources/delegated_checkout/requested_session.rb +323 -0
- data/lib/stripe/resources/identity/blocklist_entry.rb +116 -0
- data/lib/stripe/resources/identity/verification_report.rb +4 -0
- data/lib/stripe/resources/v2/billing/cadence.rb +2 -2
- data/lib/stripe/resources/v2/billing/collection_setting.rb +2 -2
- data/lib/stripe/resources/v2/billing/collection_setting_version.rb +2 -2
- data/lib/stripe/resources/v2/billing/pricing_plan_subscription_components.rb +49 -0
- data/lib/stripe/resources/v2/core/account.rb +57 -2
- data/lib/stripe/resources/v2/core/vault/us_bank_account.rb +35 -1
- data/lib/stripe/resources.rb +3 -0
- data/lib/stripe/services/delegated_checkout/requested_session_service.rb +63 -0
- data/lib/stripe/services/delegated_checkout_service.rb +13 -0
- data/lib/stripe/services/identity/blocklist_entry_service.rb +71 -0
- data/lib/stripe/services/identity_service.rb +2 -1
- data/lib/stripe/services/v1_services.rb +2 -1
- data/lib/stripe/services/v2/billing/pricing_plan_subscription_service.rb +8 -0
- data/lib/stripe/services/v2/billing/pricing_plan_subscriptions/component_service.rb +23 -0
- data/lib/stripe/services/v2/core/account_service.rb +1 -1
- data/lib/stripe/services/v2/core/vault/gb_bank_account_service.rb +11 -0
- data/lib/stripe/services/v2/core/vault/us_bank_account_service.rb +33 -0
- data/lib/stripe/services/v2/money_management/financial_account_service.rb +11 -0
- data/lib/stripe/services/v2/money_management/outbound_payment_service.rb +1 -1
- data/lib/stripe/services.rb +4 -0
- data/lib/stripe/version.rb +1 -1
- data/rbi/stripe.rbi +1897 -32
- metadata +24 -2
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: 17.1.0.pre.alpha.
|
|
4
|
+
version: 17.1.0.pre.alpha.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stripe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-10-
|
|
11
|
+
date: 2025-10-23 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.
|
|
@@ -512,6 +512,11 @@ files:
|
|
|
512
512
|
- lib/stripe/params/customer_tax_id_list_params.rb
|
|
513
513
|
- lib/stripe/params/customer_tax_id_retrieve_params.rb
|
|
514
514
|
- lib/stripe/params/customer_update_params.rb
|
|
515
|
+
- lib/stripe/params/delegated_checkout/requested_session_confirm_params.rb
|
|
516
|
+
- lib/stripe/params/delegated_checkout/requested_session_create_params.rb
|
|
517
|
+
- lib/stripe/params/delegated_checkout/requested_session_expire_params.rb
|
|
518
|
+
- lib/stripe/params/delegated_checkout/requested_session_retrieve_params.rb
|
|
519
|
+
- lib/stripe/params/delegated_checkout/requested_session_update_params.rb
|
|
515
520
|
- lib/stripe/params/dispute_close_params.rb
|
|
516
521
|
- lib/stripe/params/dispute_list_params.rb
|
|
517
522
|
- lib/stripe/params/dispute_retrieve_params.rb
|
|
@@ -562,6 +567,10 @@ files:
|
|
|
562
567
|
- lib/stripe/params/fx_quote_create_params.rb
|
|
563
568
|
- lib/stripe/params/fx_quote_list_params.rb
|
|
564
569
|
- lib/stripe/params/fx_quote_retrieve_params.rb
|
|
570
|
+
- lib/stripe/params/identity/blocklist_entry_create_params.rb
|
|
571
|
+
- lib/stripe/params/identity/blocklist_entry_disable_params.rb
|
|
572
|
+
- lib/stripe/params/identity/blocklist_entry_list_params.rb
|
|
573
|
+
- lib/stripe/params/identity/blocklist_entry_retrieve_params.rb
|
|
565
574
|
- lib/stripe/params/identity/verification_report_list_params.rb
|
|
566
575
|
- lib/stripe/params/identity/verification_report_retrieve_params.rb
|
|
567
576
|
- lib/stripe/params/identity/verification_session_cancel_params.rb
|
|
@@ -1060,6 +1069,7 @@ files:
|
|
|
1060
1069
|
- lib/stripe/params/v2/billing/pricing_plan_subscription_list_params.rb
|
|
1061
1070
|
- lib/stripe/params/v2/billing/pricing_plan_subscription_retrieve_params.rb
|
|
1062
1071
|
- lib/stripe/params/v2/billing/pricing_plan_subscription_update_params.rb
|
|
1072
|
+
- lib/stripe/params/v2/billing/pricing_plan_subscriptions/component_retrieve_params.rb
|
|
1063
1073
|
- lib/stripe/params/v2/billing/pricing_plan_update_params.rb
|
|
1064
1074
|
- lib/stripe/params/v2/billing/pricing_plans/component_create_params.rb
|
|
1065
1075
|
- lib/stripe/params/v2/billing/pricing_plans/component_delete_params.rb
|
|
@@ -1117,10 +1127,14 @@ files:
|
|
|
1117
1127
|
- lib/stripe/params/v2/core/vault/gb_bank_account_archive_params.rb
|
|
1118
1128
|
- lib/stripe/params/v2/core/vault/gb_bank_account_create_params.rb
|
|
1119
1129
|
- lib/stripe/params/v2/core/vault/gb_bank_account_initiate_confirmation_of_payee_params.rb
|
|
1130
|
+
- lib/stripe/params/v2/core/vault/gb_bank_account_list_params.rb
|
|
1120
1131
|
- lib/stripe/params/v2/core/vault/gb_bank_account_retrieve_params.rb
|
|
1121
1132
|
- lib/stripe/params/v2/core/vault/us_bank_account_archive_params.rb
|
|
1133
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_confirm_microdeposits_params.rb
|
|
1122
1134
|
- lib/stripe/params/v2/core/vault/us_bank_account_create_params.rb
|
|
1135
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_list_params.rb
|
|
1123
1136
|
- lib/stripe/params/v2/core/vault/us_bank_account_retrieve_params.rb
|
|
1137
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_send_microdeposits_params.rb
|
|
1124
1138
|
- lib/stripe/params/v2/core/vault/us_bank_account_update_params.rb
|
|
1125
1139
|
- lib/stripe/params/v2/money_management/adjustment_list_params.rb
|
|
1126
1140
|
- lib/stripe/params/v2/money_management/adjustment_retrieve_params.rb
|
|
@@ -1128,6 +1142,7 @@ files:
|
|
|
1128
1142
|
- lib/stripe/params/v2/money_management/financial_account_create_params.rb
|
|
1129
1143
|
- lib/stripe/params/v2/money_management/financial_account_list_params.rb
|
|
1130
1144
|
- lib/stripe/params/v2/money_management/financial_account_retrieve_params.rb
|
|
1145
|
+
- lib/stripe/params/v2/money_management/financial_account_update_params.rb
|
|
1131
1146
|
- lib/stripe/params/v2/money_management/financial_address_create_params.rb
|
|
1132
1147
|
- lib/stripe/params/v2/money_management/financial_address_list_params.rb
|
|
1133
1148
|
- lib/stripe/params/v2/money_management/financial_address_retrieve_params.rb
|
|
@@ -1234,6 +1249,7 @@ files:
|
|
|
1234
1249
|
- lib/stripe/resources/customer_balance_transaction.rb
|
|
1235
1250
|
- lib/stripe/resources/customer_cash_balance_transaction.rb
|
|
1236
1251
|
- lib/stripe/resources/customer_session.rb
|
|
1252
|
+
- lib/stripe/resources/delegated_checkout/requested_session.rb
|
|
1237
1253
|
- lib/stripe/resources/discount.rb
|
|
1238
1254
|
- lib/stripe/resources/dispute.rb
|
|
1239
1255
|
- lib/stripe/resources/entitlements/active_entitlement.rb
|
|
@@ -1254,6 +1270,7 @@ files:
|
|
|
1254
1270
|
- lib/stripe/resources/forwarding/request.rb
|
|
1255
1271
|
- lib/stripe/resources/funding_instructions.rb
|
|
1256
1272
|
- lib/stripe/resources/fx_quote.rb
|
|
1273
|
+
- lib/stripe/resources/identity/blocklist_entry.rb
|
|
1257
1274
|
- lib/stripe/resources/identity/verification_report.rb
|
|
1258
1275
|
- lib/stripe/resources/identity/verification_session.rb
|
|
1259
1276
|
- lib/stripe/resources/invoice.rb
|
|
@@ -1373,6 +1390,7 @@ files:
|
|
|
1373
1390
|
- lib/stripe/resources/v2/billing/pricing_plan.rb
|
|
1374
1391
|
- lib/stripe/resources/v2/billing/pricing_plan_component.rb
|
|
1375
1392
|
- lib/stripe/resources/v2/billing/pricing_plan_subscription.rb
|
|
1393
|
+
- lib/stripe/resources/v2/billing/pricing_plan_subscription_components.rb
|
|
1376
1394
|
- lib/stripe/resources/v2/billing/pricing_plan_version.rb
|
|
1377
1395
|
- lib/stripe/resources/v2/billing/profile.rb
|
|
1378
1396
|
- lib/stripe/resources/v2/billing/rate_card.rb
|
|
@@ -1469,6 +1487,8 @@ files:
|
|
|
1469
1487
|
- lib/stripe/services/customer_service.rb
|
|
1470
1488
|
- lib/stripe/services/customer_session_service.rb
|
|
1471
1489
|
- lib/stripe/services/customer_tax_id_service.rb
|
|
1490
|
+
- lib/stripe/services/delegated_checkout/requested_session_service.rb
|
|
1491
|
+
- lib/stripe/services/delegated_checkout_service.rb
|
|
1472
1492
|
- lib/stripe/services/dispute_service.rb
|
|
1473
1493
|
- lib/stripe/services/entitlements/active_entitlement_service.rb
|
|
1474
1494
|
- lib/stripe/services/entitlements/feature_service.rb
|
|
@@ -1489,6 +1509,7 @@ files:
|
|
|
1489
1509
|
- lib/stripe/services/forwarding/request_service.rb
|
|
1490
1510
|
- lib/stripe/services/forwarding_service.rb
|
|
1491
1511
|
- lib/stripe/services/fx_quote_service.rb
|
|
1512
|
+
- lib/stripe/services/identity/blocklist_entry_service.rb
|
|
1492
1513
|
- lib/stripe/services/identity/verification_report_service.rb
|
|
1493
1514
|
- lib/stripe/services/identity/verification_session_service.rb
|
|
1494
1515
|
- lib/stripe/services/identity_service.rb
|
|
@@ -1630,6 +1651,7 @@ files:
|
|
|
1630
1651
|
- lib/stripe/services/v2/billing/metered_item_service.rb
|
|
1631
1652
|
- lib/stripe/services/v2/billing/pricing_plan_service.rb
|
|
1632
1653
|
- lib/stripe/services/v2/billing/pricing_plan_subscription_service.rb
|
|
1654
|
+
- lib/stripe/services/v2/billing/pricing_plan_subscriptions/component_service.rb
|
|
1633
1655
|
- lib/stripe/services/v2/billing/pricing_plans/component_service.rb
|
|
1634
1656
|
- lib/stripe/services/v2/billing/pricing_plans/version_service.rb
|
|
1635
1657
|
- lib/stripe/services/v2/billing/profile_service.rb
|