Compare commits

..

5 Commits

Author SHA1 Message Date
Richard Marmorstein
ddf79610d9 Fix formatting 2022-10-14 10:26:51 -07:00
Richard Marmorstein
edad946244 Codegen for openapi v202 2022-10-14 10:08:49 -07:00
Richard Marmorstein
e3785d5893 Reset version to 7.2.0-beta.4 2022-10-14 10:08:42 -07:00
Richard Marmorstein
2062e988eb Set version to 7.1.0 to simplify merge 2022-10-14 10:08:42 -07:00
Kamil Pajdzik
0bdc688516 Bump version to 7.2.0-beta.4 2022-10-07 08:48:11 -07:00
5 changed files with 9 additions and 6 deletions

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
## 7.2.0-beta.4 - 2022-10-07
* [#999](https://github.com/stripe/stripe-ruby/pull/999) DESCRIBE CHANGES HERE (try to use the same style, tense, etc. as the other entries)
## 7.2.0-beta.3 - 2022-09-26 ## 7.2.0-beta.3 - 2022-09-26
* [#1129](https://github.com/stripe/stripe-ruby/pull/1129) API Updates for beta branch * [#1129](https://github.com/stripe/stripe-ruby/pull/1129) API Updates for beta branch
* Updated stable APIs to the latest version * Updated stable APIs to the latest version

View File

@ -1 +1 @@
v196 v202

View File

@ -1 +1 @@
7.2.0-beta.3 7.2.0-beta.4

View File

@ -2,13 +2,13 @@
# frozen_string_literal: true # frozen_string_literal: true
module Stripe module Stripe
# An AccountSession allows a Connect platform to grant access to a connected account in Connect Embedded UIs. # An AccountSession allows a Connect platform to grant access to a connected account in Connect Elements.
# #
# We recommend that you create an AccountSession each time you need to display an embedded UI # We recommend that you create an AccountSession each time you need to display an embedded UI
# to your user. Do not save AccountSessions to your database as they expire relatively # to your user. Do not save AccountSessions to your database as they expire relatively
# quickly, and cannot be used more than once. # quickly, and cannot be used more than once.
# #
# Related guide: [Connect Embedded UIs](https://stripe.com/docs/connect/get-started-connect-elements). # Related guide: [Connect Elements](https://stripe.com/docs/connect/get-started-connect-elements).
class AccountSession < APIResource class AccountSession < APIResource
extend Stripe::APIOperations::Create extend Stripe::APIOperations::Create

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Stripe module Stripe
VERSION = "7.2.0-beta.3" VERSION = "7.2.0-beta.4"
end end