stripe 5.33.0 → 5.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7bc72681f7c824d84325e741042d894fdc4e1cd643f7f991093632d0c209c2d9
4
- data.tar.gz: acc3cc72ea8198b17e0f9863ddd92101d38997427fa3ceda29c487ccfb0ab2c2
3
+ metadata.gz: bc39a48fe4d3cca6e57eb21851bf619e07addfbf5e4451d7c2669580c63ee18c
4
+ data.tar.gz: 74bd79d861284ffc4e53d34402db13c91742db91d66e522b56b6cd5b287ab4ed
5
5
  SHA512:
6
- metadata.gz: e9e7441d87f5be510eb5bd3a6c814074b9a23819343a37958e94c7a477ef8bac66ca164fa47fa84c3ece5baaa19afd18abbaecc94fb354453b00c0ad9e430d24
7
- data.tar.gz: e606a7a81ee1cf74a6e804ad98332c91ee14c8675a8b65b4632e237097c886aa8ca879c1ff1091a47f790fd927f33cc2e73497caea7934d15d8e65ec4fd3a1a1
6
+ metadata.gz: 973a5efa1c8988bd88dc6b58862e0b5559367162fe982d35d575583706d7ebf868d5330eba0e4e00e4139d70afd297b9826c4059e4f418fc503cebf086c7f0a2
7
+ data.tar.gz: f0b14e6f6b69642f26635adef651bfdfb07c3f2cc1b66e11dbeb86518ae79e7e60ec9561293f4b83fb15bb6c8d01da12222605766bb664bc06a710ac9cfe3d6f
data/CHANGELOG.md CHANGED
@@ -1,8 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.34.0 - 2021-06-04
4
+ * [#981](https://github.com/stripe/stripe-ruby/pull/981) API Updates
5
+ * Add support for `TaxCode` API.
6
+
3
7
  ## 5.33.0 - 2021-05-19
4
- * [#979](https://github.com/stripe/stripe-ruby/pull/979) API Updates
5
- * [#975](https://github.com/stripe/stripe-ruby/pull/975) Add Truffleruby head to CI
8
+ * [#979](https://github.com/stripe/stripe-ruby/pull/979) Add support for the Identify VerificationSession and VerificationReport APIs
6
9
 
7
10
  ## 5.32.1 - 2021-04-05
8
11
  * Correct use of regexp `match` in gemspec for old versions of Ruby
data/VERSION CHANGED
@@ -1 +1 @@
1
- 5.33.0
1
+ 5.34.0
@@ -84,6 +84,7 @@ module Stripe
84
84
  Subscription::OBJECT_NAME => Subscription,
85
85
  SubscriptionItem::OBJECT_NAME => SubscriptionItem,
86
86
  SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule,
87
+ TaxCode::OBJECT_NAME => TaxCode,
87
88
  TaxId::OBJECT_NAME => TaxId,
88
89
  TaxRate::OBJECT_NAME => TaxRate,
89
90
  Terminal::ConnectionToken::OBJECT_NAME => Terminal::ConnectionToken,
@@ -73,6 +73,7 @@ require "stripe/resources/source_transaction"
73
73
  require "stripe/resources/subscription"
74
74
  require "stripe/resources/subscription_item"
75
75
  require "stripe/resources/subscription_schedule"
76
+ require "stripe/resources/tax_code"
76
77
  require "stripe/resources/tax_id"
77
78
  require "stripe/resources/tax_rate"
78
79
  require "stripe/resources/terminal/connection_token"
@@ -0,0 +1,10 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class TaxCode < APIResource
6
+ extend Stripe::APIOperations::List
7
+
8
+ OBJECT_NAME = "tax_code"
9
+ end
10
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "5.33.0"
4
+ VERSION = "5.34.0"
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: 5.33.0
4
+ version: 5.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-19 00:00:00.000000000 Z
11
+ date: 2021-06-04 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.
@@ -119,6 +119,7 @@ files:
119
119
  - lib/stripe/resources/subscription.rb
120
120
  - lib/stripe/resources/subscription_item.rb
121
121
  - lib/stripe/resources/subscription_schedule.rb
122
+ - lib/stripe/resources/tax_code.rb
122
123
  - lib/stripe/resources/tax_id.rb
123
124
  - lib/stripe/resources/tax_rate.rb
124
125
  - lib/stripe/resources/terminal/connection_token.rb