diff --git a/.rubocop.yml b/.rubocop.yml index fd4e94dc..3b9fefdb 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -76,7 +76,7 @@ Gemspec/DeprecatedAttributeAssignment: # new in 1.30 Gemspec/DevelopmentDependencies: # new in 1.44 Enabled: true Gemspec/RequireMFA: # new in 1.23 - Enabled: true + Enabled: false Layout/LineContinuationLeadingSpace: # new in 1.31 Enabled: true Layout/LineContinuationSpacing: # new in 1.31 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b7322ac..78b625b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ # Changelog +## 10.2.0 - 2023-11-30 +* [#1292](https://github.com/stripe/stripe-ruby/pull/1292) Update generated code + * Add support for new resources `Climate.Order`, `Climate.Product`, and `Climate.Supplier` + * Add support for `cancel`, `create`, `list`, `retrieve`, and `update` methods on resource `Order` + * Add support for `list` and `retrieve` methods on resources `Product` and `Supplier` +* [#1295](https://github.com/stripe/stripe-ruby/pull/1295) Upgrade rubocop +* [#1291](https://github.com/stripe/stripe-ruby/pull/1291) Update generated code + +* [#1290](https://github.com/stripe/stripe-ruby/pull/1290) Update generated code + +* [#1288](https://github.com/stripe/stripe-ruby/pull/1288) Update generated code + + ## 10.1.0 - 2023-11-02 * [#1286](https://github.com/stripe/stripe-ruby/pull/1286) Update generated code * Add support for new resource `Tax.Registration` diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index 189d7cac..c523b898 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v670 \ No newline at end of file +v682 \ No newline at end of file diff --git a/VERSION b/VERSION index 4149c39e..2bd6f7e3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -10.1.0 +10.2.0 diff --git a/lib/stripe/object_types.rb b/lib/stripe/object_types.rb index 5db40a14..9f6d0ed0 100644 --- a/lib/stripe/object_types.rb +++ b/lib/stripe/object_types.rb @@ -29,6 +29,9 @@ module Stripe CashBalance::OBJECT_NAME => CashBalance, Charge::OBJECT_NAME => Charge, Checkout::Session::OBJECT_NAME => Checkout::Session, + Climate::Order::OBJECT_NAME => Climate::Order, + Climate::Product::OBJECT_NAME => Climate::Product, + Climate::Supplier::OBJECT_NAME => Climate::Supplier, CountrySpec::OBJECT_NAME => CountrySpec, Coupon::OBJECT_NAME => Coupon, CreditNote::OBJECT_NAME => CreditNote, diff --git a/lib/stripe/resources.rb b/lib/stripe/resources.rb index 99e13547..acf63de6 100644 --- a/lib/stripe/resources.rb +++ b/lib/stripe/resources.rb @@ -18,6 +18,9 @@ require "stripe/resources/card" require "stripe/resources/cash_balance" require "stripe/resources/charge" require "stripe/resources/checkout/session" +require "stripe/resources/climate/order" +require "stripe/resources/climate/product" +require "stripe/resources/climate/supplier" require "stripe/resources/country_spec" require "stripe/resources/coupon" require "stripe/resources/credit_note" diff --git a/lib/stripe/resources/climate/order.rb b/lib/stripe/resources/climate/order.rb new file mode 100644 index 00000000..1e2b850e --- /dev/null +++ b/lib/stripe/resources/climate/order.rb @@ -0,0 +1,34 @@ +# File generated from our OpenAPI spec +# frozen_string_literal: true + +module Stripe + module Climate + # Orders represent your intent to purchase a particular Climate product. When you create an order, the + # payment is deducted from your merchant balance. + class Order < APIResource + extend Stripe::APIOperations::Create + extend Stripe::APIOperations::List + include Stripe::APIOperations::Save + + OBJECT_NAME = "climate.order" + + def cancel(params = {}, opts = {}) + request_stripe_object( + method: :post, + path: format("/v1/climate/orders/%s/cancel", { order: CGI.escape(self["id"]) }), + params: params, + opts: opts + ) + end + + def self.cancel(order, params = {}, opts = {}) + request_stripe_object( + method: :post, + path: format("/v1/climate/orders/%s/cancel", { order: CGI.escape(order) }), + params: params, + opts: opts + ) + end + end + end +end diff --git a/lib/stripe/resources/climate/product.rb b/lib/stripe/resources/climate/product.rb new file mode 100644 index 00000000..b6568d2f --- /dev/null +++ b/lib/stripe/resources/climate/product.rb @@ -0,0 +1,14 @@ +# File generated from our OpenAPI spec +# frozen_string_literal: true + +module Stripe + module Climate + # A Climate product represents a type of carbon removal unit available for reservation. + # You can retrieve it to see the current price and availability. + class Product < APIResource + extend Stripe::APIOperations::List + + OBJECT_NAME = "climate.product" + end + end +end diff --git a/lib/stripe/resources/climate/supplier.rb b/lib/stripe/resources/climate/supplier.rb new file mode 100644 index 00000000..49820c12 --- /dev/null +++ b/lib/stripe/resources/climate/supplier.rb @@ -0,0 +1,13 @@ +# File generated from our OpenAPI spec +# frozen_string_literal: true + +module Stripe + module Climate + # A supplier of carbon removal. + class Supplier < APIResource + extend Stripe::APIOperations::List + + OBJECT_NAME = "climate.supplier" + end + end +end diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 0d5c24af..84365cf7 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "10.1.0" + VERSION = "10.2.0" end diff --git a/stripe.gemspec b/stripe.gemspec index b627279a..d4f2f4a5 100644 --- a/stripe.gemspec +++ b/stripe.gemspec @@ -24,7 +24,7 @@ Gem::Specification.new do |s| "github_repo" => "ssh://github.com/stripe/stripe-ruby", "homepage_uri" => "https://stripe.com/docs/api?lang=ruby", "source_code_uri" => "https://github.com/stripe/stripe-ruby", - "rubygems_mfa_required" => "true", + "rubygems_mfa_required" => "false", } ignored = Regexp.union(