stripe 5.43.0 → 5.44.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/stripe/resources/payment_intent.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +10 -0
- data/lib/stripe/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00ec1a11bdbe04229b1d1649fb6734fb7708ac33cc67794f04b77a3fc5944952
|
|
4
|
+
data.tar.gz: ea006443a2f57c24b67b3effbcc693a3ae1ed6a688ebe0dc18cf9f014fda0847
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
data/lib/stripe/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|