mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-07-30 00:01:17 -04:00
Compare commits
3 Commits
61ba9d6b51
...
a08ecee70f
Author | SHA1 | Date | |
---|---|---|---|
|
a08ecee70f | ||
|
36dc37db5e | ||
|
8875698b96 |
@ -1,4 +1,8 @@
|
||||
# Changelog
|
||||
## 10.5.0 - 2024-01-04
|
||||
* [#1306](https://github.com/stripe/stripe-ruby/pull/1306) Update generated code
|
||||
* Add support for `retrieve` method on resource `Tax.Registration`
|
||||
|
||||
## 10.4.0 - 2023-12-22
|
||||
* [#1303](https://github.com/stripe/stripe-ruby/pull/1303) Update generated code
|
||||
* Add support for new resource `FinancialConnections.Transaction`
|
||||
|
@ -1 +1 @@
|
||||
v742
|
||||
v753
|
@ -43,7 +43,7 @@ module Stripe
|
||||
end
|
||||
|
||||
def self.search(params = {}, opts = {})
|
||||
_search("/v1/charges/search", params, opts)
|
||||
request_stripe_object(method: :get, path: "/v1/charges/search", params: params, opts: opts)
|
||||
end
|
||||
|
||||
def self.search_auto_paging_each(params = {}, opts = {}, &blk)
|
||||
|
@ -114,7 +114,7 @@ module Stripe
|
||||
end
|
||||
|
||||
def self.search(params = {}, opts = {})
|
||||
_search("/v1/customers/search", params, opts)
|
||||
request_stripe_object(method: :get, path: "/v1/customers/search", params: params, opts: opts)
|
||||
end
|
||||
|
||||
def self.search_auto_paging_each(params = {}, opts = {}, &blk)
|
||||
|
@ -167,7 +167,7 @@ module Stripe
|
||||
end
|
||||
|
||||
def self.search(params = {}, opts = {})
|
||||
_search("/v1/invoices/search", params, opts)
|
||||
request_stripe_object(method: :get, path: "/v1/invoices/search", params: params, opts: opts)
|
||||
end
|
||||
|
||||
def self.search_auto_paging_each(params = {}, opts = {}, &blk)
|
||||
|
@ -248,7 +248,12 @@ module Stripe
|
||||
end
|
||||
|
||||
def self.search(params = {}, opts = {})
|
||||
_search("/v1/payment_intents/search", params, opts)
|
||||
request_stripe_object(
|
||||
method: :get,
|
||||
path: "/v1/payment_intents/search",
|
||||
params: params,
|
||||
opts: opts
|
||||
)
|
||||
end
|
||||
|
||||
def self.search_auto_paging_each(params = {}, opts = {}, &blk)
|
||||
|
@ -17,7 +17,7 @@ module Stripe
|
||||
OBJECT_NAME = "price"
|
||||
|
||||
def self.search(params = {}, opts = {})
|
||||
_search("/v1/prices/search", params, opts)
|
||||
request_stripe_object(method: :get, path: "/v1/prices/search", params: params, opts: opts)
|
||||
end
|
||||
|
||||
def self.search_auto_paging_each(params = {}, opts = {}, &blk)
|
||||
|
@ -20,7 +20,7 @@ module Stripe
|
||||
OBJECT_NAME = "product"
|
||||
|
||||
def self.search(params = {}, opts = {})
|
||||
_search("/v1/products/search", params, opts)
|
||||
request_stripe_object(method: :get, path: "/v1/products/search", params: params, opts: opts)
|
||||
end
|
||||
|
||||
def self.search_auto_paging_each(params = {}, opts = {}, &blk)
|
||||
|
@ -84,7 +84,12 @@ module Stripe
|
||||
save_nested_resource :source
|
||||
|
||||
def self.search(params = {}, opts = {})
|
||||
_search("/v1/subscriptions/search", params, opts)
|
||||
request_stripe_object(
|
||||
method: :get,
|
||||
path: "/v1/subscriptions/search",
|
||||
params: params,
|
||||
opts: opts
|
||||
)
|
||||
end
|
||||
|
||||
def self.search_auto_paging_each(params = {}, opts = {}, &blk)
|
||||
|
@ -1,5 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Stripe
|
||||
VERSION = "10.4.0"
|
||||
VERSION = "10.5.0"
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user