stripe 9.4.0.pre.beta.1 → 9.4.0.pre.beta.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: acaa38ac9227b2bbeb35f775891aa433f592e386a6924e2279e2d7c00df88c58
4
- data.tar.gz: 4a799ee0da412a49465356ee68034bf01ec98974bbe6be89a9daad1f4617d237
3
+ metadata.gz: 52c3ade4e579d5105608cdbc8376206b4c49676e6666cba84682acb14c38f6fd
4
+ data.tar.gz: 24b2e7585eea630da22d59ca7ab8c56376e1fe120b2b7cd9235eff55a1ab536f
5
5
  SHA512:
6
- metadata.gz: f41d9e48617dc6b932cd4d65fb05e676a6b44232bd5b03bcdc6e7d1e05839ae216b94835d5209f39573f0dbff3b09c228ef600dd392ce46f0324ea1a34243df0
7
- data.tar.gz: 31803f0b63b9e2e6f3c574b58c7f35fcfe2894f40ece52d897c12a2ad2f4e18b72d2922c8a92a84a1c8a6479331b733c8320a6ea0524537310621c542507ed78
6
+ metadata.gz: a22eea0f783b1f98bd8b4ee5f39380e6dfb6f4d6c70607f53ec084a073e39d06d3cebe9f9553d9d6d85b4928475772d9470aeaaa2dd3fafa27e7cfb6ae213f68
7
+ data.tar.gz: 5128b0127936534755ca895220d97b62818776cca564ed5d560fbb781feba896c5803b3486b747eee77e195643a384d26b2c20a6b68ff5863d26e22bb8ffa74d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 9.4.0-beta.2 - 2023-09-21
4
+ * [#1273](https://github.com/stripe/stripe-ruby/pull/1273) Update generated code for beta
5
+
3
6
  ## 9.4.0-beta.1 - 2023-09-14
4
7
  * Updated stable APIs to the latest version
5
8
 
data/OPENAPI_VERSION CHANGED
@@ -1 +1 @@
1
- v532
1
+ v540
data/VERSION CHANGED
@@ -1 +1 @@
1
- 9.4.0-beta.1
1
+ 9.4.0-beta.2
@@ -4,6 +4,6 @@
4
4
  module Stripe
5
5
  module ApiVersion
6
6
  CURRENT = "2023-08-16"
7
- PREVIEW = "2023-08-11.preview-v2"
7
+ PREVIEW = "2023-09-15.preview-v2"
8
8
  end
9
9
  end
@@ -2,10 +2,10 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Stripe
5
- # This is an object representing a file hosted on Stripe's servers. The
6
- # file may have been uploaded by yourself using the [create file](https://stripe.com/docs/api#create_file)
7
- # request (for example, when uploading dispute evidence) or it may have
8
- # been created by Stripe (for example, the results of a [Sigma scheduled
5
+ # This object represents files hosted on Stripe's servers. You can upload
6
+ # files with the [create file](https://stripe.com/docs/api#create_file) request
7
+ # (for example, when uploading dispute evidence). Stripe also
8
+ # creates files independetly (for example, the results of a [Sigma scheduled
9
9
  # query](https://stripe.com/docs/api#scheduled_queries)).
10
10
  #
11
11
  # Related guide: [File upload guide](https://stripe.com/docs/file-upload)
@@ -3,7 +3,7 @@
3
3
 
4
4
  module Stripe
5
5
  # To share the contents of a `File` object with non-Stripe users, you can
6
- # create a `FileLink`. `FileLink`s contain a URL that can be used to
6
+ # create a `FileLink`. `FileLink`s contain a URL that you can use to
7
7
  # retrieve the contents of the file without authentication.
8
8
  class FileLink < APIResource
9
9
  extend Stripe::APIOperations::Create
@@ -7,7 +7,7 @@ module Stripe
7
7
  # A platform cannot access a Standard or Express account's persons after the account starts onboarding, such as after generating an account link for the account.
8
8
  # See the [Standard onboarding](https://stripe.com/docs/connect/standard-accounts) or [Express onboarding documentation](https://stripe.com/docs/connect/express-accounts) for information about platform prefilling and account onboarding steps.
9
9
  #
10
- # Related guide: [Handling identity verification with the API](https://stripe.com/docs/connect/identity-verification-api#person-information)
10
+ # Related guide: [Handling identity verification with the API](https://stripe.com/docs/connect/handling-api-verification#person-information)
11
11
  class Person < APIResource
12
12
  extend Stripe::APIOperations::List
13
13
  include Stripe::APIOperations::Save
@@ -2,10 +2,10 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module Stripe
5
- # You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers).
6
- # A customer's tax IDs are displayed on invoices and credit notes issued for the customer.
5
+ # You can add one or multiple tax IDs to a [customer](https://stripe.com/docs/api/customers) or account.
6
+ # Customer and account tax IDs get displayed on related invoices and credit notes.
7
7
  #
8
- # Related guide: [Customer tax identification numbers](https://stripe.com/docs/billing/taxes/tax-ids)
8
+ # 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)
9
9
  class TaxId < APIResource
10
10
  include Stripe::APIOperations::Delete
11
11
  extend Stripe::APIOperations::List
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "9.4.0-beta.1"
4
+ VERSION = "9.4.0-beta.2"
5
5
  end
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: 9.4.0.pre.beta.1
4
+ version: 9.4.0.pre.beta.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-15 00:00:00.000000000 Z
11
+ date: 2023-09-21 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.