stripe 5.43.0 → 5.44.0

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: b9a53a5c91bca32fad7bf4d30c6d3ad682025e9dbfa49194f9287699b4ddc985
4
- data.tar.gz: c45fea791b7f752d632934c53f2733ac66979d8ad169b42557daf23e00c23154
3
+ metadata.gz: 00ec1a11bdbe04229b1d1649fb6734fb7708ac33cc67794f04b77a3fc5944952
4
+ data.tar.gz: ea006443a2f57c24b67b3effbcc693a3ae1ed6a688ebe0dc18cf9f014fda0847
5
5
  SHA512:
6
- metadata.gz: 1cde2b2558c66f2fb4ce6f9eedc0d29219510a4b4a546f080e2f91945ec17b74975533db641c2cbfde697c71cd1ab865da46d1dedfaeb19142630f08f8e17c88
7
- data.tar.gz: 9d5eb1160fb1ef369ff3913a73a722490832d5ee265a08cbf14762a7f1c9aabdc3b3129728115b1b78cd6949fb38777ffa0c9a7ef63f48a9f98a05100492d384
6
+ metadata.gz: 8cddde45a7100e9e2c7803b752218af71d16208b90d808df79aac161c0a115bc952127c971d492f72496b9d13df8e25351748e78b65cfef1ce5ec4cb0b0d4296
7
+ data.tar.gz: 7c6a3a82748389de1a1b4088219d56d7564145718d1e4beaac53be90e56899669dc50a72613023c0409b0f70d49f6f75c7ad712d10e8a65de39b25e22ceba961
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 5.44.0 - 2022-02-16
4
+ * [#1032](https://github.com/stripe/stripe-ruby/pull/1032) API Updates
5
+ * Add support for `verify_microdeposits` method on resources `PaymentIntent` and `SetupIntent`
6
+
7
+
3
8
  ## 5.43.0 - 2022-01-20
4
9
  * [#1031](https://github.com/stripe/stripe-ruby/pull/1031) API Updates
5
10
  * Add support for new resource `PaymentLink`
data/VERSION CHANGED
@@ -1 +1 @@
1
- 5.43.0
1
+ 5.44.0
@@ -12,6 +12,7 @@ module Stripe
12
12
  custom_method :cancel, http_verb: :post
13
13
  custom_method :capture, http_verb: :post
14
14
  custom_method :confirm, http_verb: :post
15
+ custom_method :verify_microdeposits, http_verb: :post
15
16
 
16
17
  def cancel(params = {}, opts = {})
17
18
  request_stripe_object(
@@ -39,5 +40,14 @@ module Stripe
39
40
  opts: opts
40
41
  )
41
42
  end
43
+
44
+ def verify_microdeposits(params = {}, opts = {})
45
+ request_stripe_object(
46
+ method: :post,
47
+ path: resource_url + "/verify_microdeposits",
48
+ params: params,
49
+ opts: opts
50
+ )
51
+ end
42
52
  end
43
53
  end
@@ -11,6 +11,7 @@ module Stripe
11
11
 
12
12
  custom_method :cancel, http_verb: :post
13
13
  custom_method :confirm, http_verb: :post
14
+ custom_method :verify_microdeposits, http_verb: :post
14
15
 
15
16
  def cancel(params = {}, opts = {})
16
17
  request_stripe_object(
@@ -29,5 +30,14 @@ module Stripe
29
30
  opts: opts
30
31
  )
31
32
  end
33
+
34
+ def verify_microdeposits(params = {}, opts = {})
35
+ request_stripe_object(
36
+ method: :post,
37
+ path: resource_url + "/verify_microdeposits",
38
+ params: params,
39
+ opts: opts
40
+ )
41
+ end
32
42
  end
33
43
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "5.43.0"
4
+ VERSION = "5.44.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.43.0
4
+ version: 5.44.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-20 00:00:00.000000000 Z
11
+ date: 2022-02-16 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.