stripe 5.47.0 → 5.48.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 +4 -0
- data/VERSION +1 -1
- data/lib/stripe/resources/terminal/reader.rb +60 -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: 9a6917084338966ae208572554d5520cda85b854b6a6d73aac0b37fe6aff6271
|
|
4
|
+
data.tar.gz: 9ce0d94220e31287bcd84da00199d1d3cb3a6be125cf2548ddcac87c64bbc2fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f0925e465d0e32fc68e167cfa61959d307e3a9f12f245620c55ca3c59c8851a2a057b1b0845cd39b27d496391f44b9592cd7548494716e4420badfa6a3b351f
|
|
7
|
+
data.tar.gz: 52512c8409a883c68ef90a7d92732424487d3b2be029cc3bafa043911fa887b25a79d3b2fb243dbe7fe191beec95974696ffcb528eb0c6104d93019a0ceb92c2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.48.0 - 2022-03-30
|
|
4
|
+
* [#1041](https://github.com/stripe/stripe-ruby/pull/1041) API Updates
|
|
5
|
+
* Add support for `cancel_action`, `process_payment_intent`, `process_setup_intent`, and `set_reader_display` methods on resource `Terminal.Reader`
|
|
6
|
+
|
|
3
7
|
## 5.47.0 - 2022-03-29
|
|
4
8
|
* [#1040](https://github.com/stripe/stripe-ruby/pull/1040) API Updates
|
|
5
9
|
* Add support for Search API
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.
|
|
1
|
+
5.48.0
|
|
@@ -10,6 +10,66 @@ module Stripe
|
|
|
10
10
|
include Stripe::APIOperations::Save
|
|
11
11
|
|
|
12
12
|
OBJECT_NAME = "terminal.reader"
|
|
13
|
+
|
|
14
|
+
custom_method :cancel_action, http_verb: :post
|
|
15
|
+
custom_method :process_payment_intent, http_verb: :post
|
|
16
|
+
custom_method :process_setup_intent, http_verb: :post
|
|
17
|
+
custom_method :set_reader_display, http_verb: :post
|
|
18
|
+
|
|
19
|
+
def cancel_action(params = {}, opts = {})
|
|
20
|
+
request_stripe_object(
|
|
21
|
+
method: :post,
|
|
22
|
+
path: resource_url + "/cancel_action",
|
|
23
|
+
params: params,
|
|
24
|
+
opts: opts
|
|
25
|
+
)
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def process_payment_intent(params = {}, opts = {})
|
|
29
|
+
request_stripe_object(
|
|
30
|
+
method: :post,
|
|
31
|
+
path: resource_url + "/process_payment_intent",
|
|
32
|
+
params: params,
|
|
33
|
+
opts: opts
|
|
34
|
+
)
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def process_setup_intent(params = {}, opts = {})
|
|
38
|
+
request_stripe_object(
|
|
39
|
+
method: :post,
|
|
40
|
+
path: resource_url + "/process_setup_intent",
|
|
41
|
+
params: params,
|
|
42
|
+
opts: opts
|
|
43
|
+
)
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def set_reader_display(params = {}, opts = {})
|
|
47
|
+
request_stripe_object(
|
|
48
|
+
method: :post,
|
|
49
|
+
path: resource_url + "/set_reader_display",
|
|
50
|
+
params: params,
|
|
51
|
+
opts: opts
|
|
52
|
+
)
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
def test_helpers
|
|
56
|
+
TestHelpers.new(self)
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
class TestHelpers < APIResourceTestHelpers
|
|
60
|
+
RESOURCE_CLASS = Reader
|
|
61
|
+
|
|
62
|
+
custom_method :present_payment_method, http_verb: :post
|
|
63
|
+
|
|
64
|
+
def present_payment_method(params = {}, opts = {})
|
|
65
|
+
@resource.request_stripe_object(
|
|
66
|
+
method: :post,
|
|
67
|
+
path: resource_url + "/present_payment_method",
|
|
68
|
+
params: params,
|
|
69
|
+
opts: opts
|
|
70
|
+
)
|
|
71
|
+
end
|
|
72
|
+
end
|
|
13
73
|
end
|
|
14
74
|
end
|
|
15
75
|
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.48.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-03-
|
|
11
|
+
date: 2022-03-30 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.
|