Compare commits

..

6 Commits

Author SHA1 Message Date
Stripe OpenAPI
2e533be04d Update generated code for v533 2023-09-15 22:25:24 +00:00
Stripe OpenAPI
e058a85fe7 Merge upstream and update generated code for v532 2023-09-15 17:26:55 +00:00
Richard Marmorstein
6bf2eaf832 Bump version to 9.4.0-beta.1 2023-09-14 18:10:39 -07:00
stripe-openapi[bot]
fb6f536d00
Merge pull request #1270 from stripe/latest-codegen-beta
Update generated code for beta
2023-09-14 18:05:24 -07:00
Richard Marmorstein
aad1a320c5 Bump version to 9.3.0 2023-09-14 17:55:35 -07:00
stripe-openapi[bot]
0f0d604ca8
Update generated code (#1272)
* Update generated code for v527

* Update generated code for v530

* Update generated code for v531

* Update generated code for v532

---------

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
2023-09-14 17:49:24 -07:00
6 changed files with 18 additions and 7 deletions

View File

@ -1,5 +1,16 @@
# Changelog
## 9.4.0-beta.1 - 2023-09-14
* Updated stable APIs to the latest version
## 9.3.0 - 2023-09-14
* [#1272](https://github.com/stripe/stripe-ruby/pull/1272) Update generated code
* Add support for new resource `PaymentMethodConfiguration`
* Add support for `create`, `list`, `retrieve`, and `update` methods on resource `PaymentMethodConfiguration`
* [#1271](https://github.com/stripe/stripe-ruby/pull/1271) Update generated code
* Add support for `capture`, `create`, `expire`, `increment`, and `reverse` test helper methods on resource `Issuing.Authorization`
* Add support for `create_force_capture`, `create_unlinked_refund`, and `refund` test helper methods on resource `Issuing.Transaction`
## 9.3.0-beta.1 - 2023-09-07
* [#1269](https://github.com/stripe/stripe-ruby/pull/1269) Update generated code for beta
* Release specs are identical.

View File

@ -1 +1 @@
v532
v533

View File

@ -1 +1 @@
9.3.0-beta.1
9.4.0-beta.1

View File

@ -4,6 +4,6 @@
module Stripe
module ApiVersion
CURRENT = "2023-08-16"
PREVIEW = "2023-08-11.preview-v2"
PREVIEW = "2023-09-15.preview-v2"
end
end

View File

@ -2,10 +2,10 @@
# frozen_string_literal: true
module Stripe
# You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers).
# A customer's tax IDs are displayed on invoices and credit notes issued for the customer.
# You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers) or account.
# Customer and account tax IDs get displayed on related invoices and credit notes.
#
# Related guide: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids)
# Related guides: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids), [Account tax IDs](https://stripe.com/docs/invoicing/connect#account-tax-ids)
class TaxId < APIResource
include Stripe::APIOperations::Delete
extend Stripe::APIOperations::List

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Stripe
VERSION = "9.3.0-beta.1"
VERSION = "9.4.0-beta.1"
end