Skip to content

Commit acf32cd

Browse files
Bump version to 22.1.0-alpha.3
1 parent 6666cdc commit acf32cd

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## 22.1.0-alpha.3 - 2026-04-15
4+
* [#2686](https://github.com/stripe/stripe-node/pull/2686) Update generated code for private-preview
5+
* Add support for `latest_version` on `V2.Billing.LicenseFee`, `V2.Billing.PricingPlan`, and `V2.Billing.RateCard`
6+
* Add support for `service_interval_count` and `service_interval` on `V2.Billing.LicenseFee` and `V2.Billing.RateCard`
7+
* [#2682](https://github.com/stripe/stripe-node/pull/2682) Update generated code for private-preview
8+
* Add support for new resources `V2.Core.WorkflowRun` and `V2.Core.Workflow`
9+
* Add support for `report_authorized` method on resource `PaymentAttemptRecord`
10+
* Add support for `list` and `retrieve` methods on resource `V2.Core.WorkflowRun`
11+
* Add support for `invoke`, `list`, and `retrieve` methods on resource `V2.Core.Workflow`
12+
* Add support for `next_action` and `status` on `SharedPayment.IssuedToken`
13+
* ⚠️ Remove support for `network_id` on `SharedPayment.IssuedToken.seller_details`
14+
* Add support for `bills` on `AccountSession.components`
15+
* Add support for `settlement_currencies` on `BalanceSettingUpdateParams.payments` and `BalanceSettings.payments`
16+
* Add support for `default_settlement_currency` on `BalanceSettings.payments`
17+
* Add support for `account_funding` on `Charge.payment_method_details.card`
18+
* Add support for `automatic_surcharge` on `Checkout.SessionCreateParams`, `Checkout.Session`, `PaymentLinkCreateParams`, and `PaymentLink`
19+
* Add support for `bizum` on `Checkout.Session.payment_method_options` and `Checkout.SessionCreateParams.payment_method_options`
20+
* Add support for `surcharge_cost` on `Checkout.Session`
21+
* Add support for `amount_surcharge` on `Checkout.Session.total_details`
22+
* Add support for `shared_payment_granted_token` on `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_data`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
23+
* Add support for new value `email` on enums `Identity.VerificationReportListParams.type`, `Identity.VerificationSessionCreateParams.type`, and `Identity.VerificationSessionUpdateParams.type`
24+
* Add support for `details` on `Identity.VerificationReport.email`
25+
* ⚠️ Add support for new value `email` on enums `Identity.VerificationReport.type` and `Identity.VerificationSession.type`
26+
* Add support for `confirm` on `Identity.VerificationSessionCreateParams` and `Identity.VerificationSessionUpdateParams`
27+
* Add support for `subscription` on `InvoiceItem.parent.schedule_details`
28+
* ⚠️ Remove support for `shared_payment_granted_token` on `PaymentIntentConfirmParams` and `PaymentIntentCreateParams`
29+
* Add support for `money_services` on `PaymentIntent.payment_details`
30+
* ⚠️ Remove support for `external_reference` on `Plan`
31+
* Change `SharedPayment.GrantedToken.payment_method_details.billing_details` to be required
32+
333
## 22.1.0-alpha.2 - 2026-04-08
434
* [#2657](https://github.com/stripe/stripe-node/pull/2657) Update generated code for private-preview
535
* Add support for `payment_record` on `ApplicationFee.fee_source`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.1.0-alpha.2
1+
22.1.0-alpha.3

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stripe",
3-
"version": "22.1.0-alpha.2",
3+
"version": "22.1.0-alpha.3",
44
"description": "Stripe API wrapper",
55
"keywords": [
66
"stripe",

src/stripe.core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@ const defaultRequestSenderFactory: RequestSenderFactory = (stripe) =>
10781078
new RequestSender(stripe, StripeResource.MAX_BUFFERED_REQUEST_METRICS);
10791079

10801080
export class Stripe {
1081-
static PACKAGE_VERSION = '22.1.0-alpha.2';
1081+
static PACKAGE_VERSION = '22.1.0-alpha.3';
10821082
static API_VERSION: typeof ApiVersion = ApiVersion;
10831083
static aiAgent =
10841084
typeof process !== 'undefined' && process.env

src/stripe.esm.node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ const defaultRequestSenderFactory: RequestSenderFactory = (stripe) =>
10791079
new RequestSender(stripe, StripeResource.MAX_BUFFERED_REQUEST_METRICS);
10801080

10811081
export class Stripe {
1082-
static PACKAGE_VERSION = '22.1.0-alpha.2';
1082+
static PACKAGE_VERSION = '22.1.0-alpha.3';
10831083
static API_VERSION: typeof ApiVersion = ApiVersion;
10841084
static aiAgent =
10851085
typeof process !== 'undefined' && process.env

0 commit comments

Comments
 (0)