Compare commits

..

3 Commits

Author SHA1 Message Date
Stripe OpenAPI
14113d6ba7 Update generated code for v769 2024-01-19 01:18:41 +00:00
Pavel Krymets
a685a13a67 Bump version to 10.6.0 2024-01-12 10:12:09 -08:00
stripe-openapi[bot]
bc03829f1d
Update generated code (#1310)
* Update generated code for v753

* Update generated code for v755

* Update generated code for v755

---------

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
Co-authored-by: pakrym-stripe <99349468+pakrym-stripe@users.noreply.github.com>
2024-01-12 16:34:38 +00:00
5 changed files with 10 additions and 6 deletions

View File

@ -1,4 +1,9 @@
# Changelog
## 10.6.0 - 2024-01-12
* [#1310](https://github.com/stripe/stripe-ruby/pull/1310) Update generated code
* Add support for new resource `CustomerSession`
* Add support for `create` method on resource `CustomerSession`
## 10.5.0 - 2024-01-04
* [#1306](https://github.com/stripe/stripe-ruby/pull/1306) Update generated code
* Add support for `retrieve` method on resource `Tax.Registration`

View File

@ -1 +1 @@
v755
v769

View File

@ -1 +1 @@
10.5.0
10.6.0

View File

@ -7,9 +7,8 @@ module Stripe
# enabled to make live charges or receive payouts.
#
# For Custom accounts, the properties below are always returned. For other accounts, some properties are returned until that
# account has started to go through Connect Onboarding. Once you create an [Account Link](https://stripe.com/docs/api/account_links)
# for a Standard or Express account, some parameters are no longer returned. These are marked as **Custom Only** or **Custom and Express**
# below. Learn about the differences [between accounts](https://stripe.com/docs/connect/accounts).
# account has started to go through Connect Onboarding. Once you create an [Account Link](https://stripe.com/docs/api/account_links) or [Account Session](https://stripe.com/docs/api/account_sessions),
# some properties are only returned for Custom accounts. Learn about the differences [between accounts](https://stripe.com/docs/connect/accounts).
class Account < APIResource
extend Gem::Deprecate
extend Stripe::APIOperations::Create

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Stripe
VERSION = "10.5.0"
VERSION = "10.6.0"
end