stripe 10.2.0.pre.beta.1 → 10.2.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 +51 -239
- data/Gemfile +5 -2
- data/OPENAPI_VERSION +1 -1
- data/README.md +0 -11
- data/Rakefile +7 -5
- data/VERSION +1 -1
- data/bin/stripe-console +1 -1
- data/lib/stripe/api_operations/request.rb +3 -7
- data/lib/stripe/api_operations/save.rb +5 -7
- data/lib/stripe/api_resource_test_helpers.rb +2 -2
- data/lib/stripe/api_version.rb +0 -1
- data/lib/stripe/connection_manager.rb +4 -6
- data/lib/stripe/errors.rb +3 -11
- data/lib/stripe/instrumentation.rb +5 -21
- data/lib/stripe/multipart_encoder.rb +7 -7
- data/lib/stripe/oauth.rb +6 -6
- data/lib/stripe/object_types.rb +3 -21
- data/lib/stripe/resources/account.rb +6 -10
- data/lib/stripe/resources/alipay_account.rb +1 -1
- data/lib/stripe/resources/application_fee_refund.rb +1 -1
- data/lib/stripe/resources/bank_account.rb +2 -2
- data/lib/stripe/resources/capability.rb +1 -1
- data/lib/stripe/resources/climate/order.rb +34 -0
- data/lib/stripe/resources/climate/product.rb +14 -0
- data/lib/stripe/resources/climate/supplier.rb +13 -0
- data/lib/stripe/resources/event.rb +2 -2
- data/lib/stripe/resources/file.rb +2 -4
- data/lib/stripe/resources/financial_connections/account.rb +0 -39
- data/lib/stripe/resources/invoice.rb +0 -21
- data/lib/stripe/resources/quote.rb +0 -94
- data/lib/stripe/resources/reversal.rb +1 -1
- data/lib/stripe/resources/subscription_schedule.rb +0 -18
- data/lib/stripe/resources/tax_id.rb +1 -1
- data/lib/stripe/resources/terminal/reader.rb +0 -54
- data/lib/stripe/resources.rb +3 -20
- data/lib/stripe/stripe_client.rb +51 -102
- data/lib/stripe/stripe_configuration.rb +13 -31
- data/lib/stripe/stripe_object.rb +15 -18
- data/lib/stripe/stripe_response.rb +1 -3
- data/lib/stripe/util.rb +11 -20
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +0 -46
- data/stripe.gemspec +3 -2
- metadata +8 -25
- data/lib/stripe/request_signing_authenticator.rb +0 -83
- data/lib/stripe/resources/account_notice.rb +0 -14
- data/lib/stripe/resources/capital/financing_offer.rb +0 -32
- data/lib/stripe/resources/capital/financing_summary.rb +0 -12
- data/lib/stripe/resources/capital/financing_transaction.rb +0 -13
- data/lib/stripe/resources/confirmation_token.rb +0 -11
- data/lib/stripe/resources/customer_session.rb +0 -12
- data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +0 -13
- data/lib/stripe/resources/financial_connections/transaction.rb +0 -13
- data/lib/stripe/resources/gift_cards/card.rb +0 -25
- data/lib/stripe/resources/gift_cards/transaction.rb +0 -56
- data/lib/stripe/resources/invoice_payment.rb +0 -11
- data/lib/stripe/resources/issuing/credit_underwriting_record.rb +0 -69
- data/lib/stripe/resources/issuing/personalization_design.rb +0 -77
- data/lib/stripe/resources/issuing/physical_bundle.rb +0 -13
- data/lib/stripe/resources/margin.rb +0 -14
- data/lib/stripe/resources/order.rb +0 -89
- data/lib/stripe/resources/quote_phase.rb +0 -29
- data/lib/stripe/resources/quote_preview_invoice.rb +0 -42
- data/lib/stripe/resources/quote_preview_subscription_schedule.rb +0 -10
- data/lib/stripe/resources/tax/form.rb +0 -39
@@ -41,9 +41,7 @@ module Stripe
|
|
41
41
|
|
42
42
|
def [](name)
|
43
43
|
values = @hash[name.downcase]
|
44
|
-
if values && values.count > 1
|
45
|
-
warn("Duplicate header values for `#{name}`; returning only first")
|
46
|
-
end
|
44
|
+
warn("Duplicate header values for `#{name}`; returning only first") if values && values.count > 1
|
47
45
|
values ? values.first : nil
|
48
46
|
end
|
49
47
|
end
|
data/lib/stripe/util.rb
CHANGED
@@ -7,7 +7,6 @@ module Stripe
|
|
7
7
|
# Options that a user is allowed to specify.
|
8
8
|
OPTS_USER_SPECIFIED = Set[
|
9
9
|
:api_key,
|
10
|
-
:authenticator,
|
11
10
|
:idempotency_key,
|
12
11
|
:stripe_account,
|
13
12
|
:stripe_version
|
@@ -80,8 +79,8 @@ module Stripe
|
|
80
79
|
"id should be a string representing the ID of an API resource"
|
81
80
|
end
|
82
81
|
|
83
|
-
url = "#{target.resource_url}/"\
|
84
|
-
"#{CGI.escape(id)}/"\
|
82
|
+
url = "#{target.resource_url}/" \
|
83
|
+
"#{CGI.escape(id)}/" \
|
85
84
|
"#{CGI.escape(http_path)}"
|
86
85
|
|
87
86
|
resp, opts = resource.execute_resource_request(
|
@@ -140,9 +139,7 @@ module Stripe
|
|
140
139
|
|
141
140
|
# set filters so that we can fetch the same limit, expansions, and
|
142
141
|
# predicates when accessing the next and previous pages
|
143
|
-
if obj && (obj.is_a?(SearchResultObject) || obj.is_a?(ListObject))
|
144
|
-
obj.filters = params.dup
|
145
|
-
end
|
142
|
+
obj.filters = params.dup if obj && (obj.is_a?(SearchResultObject) || obj.is_a?(ListObject))
|
146
143
|
|
147
144
|
obj
|
148
145
|
else
|
@@ -154,7 +151,7 @@ module Stripe
|
|
154
151
|
config = data.delete(:config) || Stripe.config
|
155
152
|
logger = config.logger || Stripe.logger
|
156
153
|
if !logger.nil? ||
|
157
|
-
!config.log_level.nil? && config.log_level <= Stripe::LEVEL_ERROR
|
154
|
+
(!config.log_level.nil? && config.log_level <= Stripe::LEVEL_ERROR)
|
158
155
|
log_internal(message, data, color: :cyan, level: Stripe::LEVEL_ERROR,
|
159
156
|
logger: Stripe.logger, out: $stderr)
|
160
157
|
end
|
@@ -164,7 +161,7 @@ module Stripe
|
|
164
161
|
config = data.delete(:config) || Stripe.config
|
165
162
|
logger = config.logger || Stripe.logger
|
166
163
|
if !logger.nil? ||
|
167
|
-
!config.log_level.nil? && config.log_level <= Stripe::LEVEL_INFO
|
164
|
+
(!config.log_level.nil? && config.log_level <= Stripe::LEVEL_INFO)
|
168
165
|
log_internal(message, data, color: :cyan, level: Stripe::LEVEL_INFO,
|
169
166
|
logger: Stripe.logger, out: $stdout)
|
170
167
|
end
|
@@ -174,7 +171,7 @@ module Stripe
|
|
174
171
|
config = data.delete(:config) || Stripe.config
|
175
172
|
logger = config.logger || Stripe.logger
|
176
173
|
if !logger.nil? ||
|
177
|
-
!config.log_level.nil? && config.log_level <= Stripe::LEVEL_DEBUG
|
174
|
+
(!config.log_level.nil? && config.log_level <= Stripe::LEVEL_DEBUG)
|
178
175
|
log_internal(message, data, color: :blue, level: Stripe::LEVEL_DEBUG,
|
179
176
|
logger: Stripe.logger, out: $stdout)
|
180
177
|
end
|
@@ -186,10 +183,10 @@ module Stripe
|
|
186
183
|
new_hash = {}
|
187
184
|
object.each do |key, value|
|
188
185
|
key = (begin
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
186
|
+
key.to_sym
|
187
|
+
rescue StandardError
|
188
|
+
key
|
189
|
+
end) || key
|
193
190
|
new_hash[key] = symbolize_names(value)
|
194
191
|
end
|
195
192
|
new_hash
|
@@ -282,13 +279,7 @@ module Stripe
|
|
282
279
|
when String
|
283
280
|
{ api_key: opts }
|
284
281
|
when Hash
|
285
|
-
|
286
|
-
# no need to check the api_key per request.
|
287
|
-
if !(opts.key?(:client) &&
|
288
|
-
opts.fetch(:client).config.authenticator) &&
|
289
|
-
opts.key?(:api_key)
|
290
|
-
check_api_key!(opts.fetch(:api_key))
|
291
|
-
end
|
282
|
+
check_api_key!(opts.fetch(:api_key)) if opts.key?(:api_key)
|
292
283
|
# Explicitly use dup here instead of clone to avoid preserving freeze
|
293
284
|
# state on input params.
|
294
285
|
opts.dup
|
data/lib/stripe/version.rb
CHANGED
data/lib/stripe.rb
CHANGED
@@ -13,7 +13,6 @@ require "set"
|
|
13
13
|
require "socket"
|
14
14
|
require "uri"
|
15
15
|
require "forwardable"
|
16
|
-
require "base64"
|
17
16
|
|
18
17
|
# Version
|
19
18
|
require "stripe/api_version"
|
@@ -45,7 +44,6 @@ require "stripe/api_resource_test_helpers"
|
|
45
44
|
require "stripe/singleton_api_resource"
|
46
45
|
require "stripe/webhook"
|
47
46
|
require "stripe/stripe_configuration"
|
48
|
-
require "stripe/request_signing_authenticator"
|
49
47
|
|
50
48
|
# Named API resources
|
51
49
|
require "stripe/resources"
|
@@ -72,7 +70,6 @@ module Stripe
|
|
72
70
|
|
73
71
|
# User configurable options
|
74
72
|
def_delegators :@config, :api_key, :api_key=
|
75
|
-
def_delegators :@config, :authenticator, :authenticator=
|
76
73
|
def_delegators :@config, :api_version, :api_version=
|
77
74
|
def_delegators :@config, :stripe_account, :stripe_account=
|
78
75
|
def_delegators :@config, :api_base, :api_base=
|
@@ -119,49 +116,6 @@ module Stripe
|
|
119
116
|
version: version,
|
120
117
|
}
|
121
118
|
end
|
122
|
-
|
123
|
-
class Preview
|
124
|
-
def self._get_default_opts(opts)
|
125
|
-
{ api_mode: :preview }.merge(opts)
|
126
|
-
end
|
127
|
-
|
128
|
-
def self.get(url, opts = {})
|
129
|
-
Stripe.raw_request(:get, url, {}, _get_default_opts(opts))
|
130
|
-
end
|
131
|
-
|
132
|
-
def self.post(url, params = {}, opts = {})
|
133
|
-
Stripe.raw_request(:post, url, params, _get_default_opts(opts))
|
134
|
-
end
|
135
|
-
|
136
|
-
def self.delete(url, opts = {})
|
137
|
-
Stripe.raw_request(:delete, url, {}, _get_default_opts(opts))
|
138
|
-
end
|
139
|
-
end
|
140
|
-
|
141
|
-
class RawRequest
|
142
|
-
include Stripe::APIOperations::Request
|
143
|
-
|
144
|
-
def initialize
|
145
|
-
@opts = {}
|
146
|
-
end
|
147
|
-
|
148
|
-
def execute(method, url, params = {}, opts = {})
|
149
|
-
resp, = execute_resource_request(method, url, params, opts)
|
150
|
-
|
151
|
-
resp
|
152
|
-
end
|
153
|
-
end
|
154
|
-
|
155
|
-
# Sends a request to Stripe REST API
|
156
|
-
def self.raw_request(method, url, params = {}, opts = {})
|
157
|
-
req = RawRequest.new
|
158
|
-
req.execute(method, url, params, opts)
|
159
|
-
end
|
160
|
-
|
161
|
-
def self.deserialize(data)
|
162
|
-
data = JSON.parse(data) if data.is_a?(String)
|
163
|
-
Util.convert_to_stripe_object(data, {})
|
164
|
-
end
|
165
119
|
end
|
166
120
|
|
167
121
|
Stripe.log_level = ENV["STRIPE_LOG"] unless ENV["STRIPE_LOG"].nil?
|
data/stripe.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
$LOAD_PATH.unshift(
|
3
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib"))
|
4
4
|
|
5
5
|
require "stripe/version"
|
6
6
|
|
@@ -24,6 +24,7 @@ Gem::Specification.new do |s|
|
|
24
24
|
"github_repo" => "ssh://github.com/stripe/stripe-ruby",
|
25
25
|
"homepage_uri" => "https://stripe.com/docs/api?lang=ruby",
|
26
26
|
"source_code_uri" => "https://github.com/stripe/stripe-ruby",
|
27
|
+
"rubygems_mfa_required" => "false",
|
27
28
|
}
|
28
29
|
|
29
30
|
ignored = Regexp.union(
|
@@ -36,6 +37,6 @@ Gem::Specification.new do |s|
|
|
36
37
|
)
|
37
38
|
s.files = `git ls-files`.split("\n").reject { |f| ignored.match(f) }
|
38
39
|
s.executables = `git ls-files -- bin/*`.split("\n")
|
39
|
-
.map { |f|
|
40
|
+
.map { |f| File.basename(f) }
|
40
41
|
s.require_paths = ["lib"]
|
41
42
|
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: 10.2.0
|
4
|
+
version: 10.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-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.
|
@@ -50,11 +50,9 @@ files:
|
|
50
50
|
- lib/stripe/multipart_encoder.rb
|
51
51
|
- lib/stripe/oauth.rb
|
52
52
|
- lib/stripe/object_types.rb
|
53
|
-
- lib/stripe/request_signing_authenticator.rb
|
54
53
|
- lib/stripe/resources.rb
|
55
54
|
- lib/stripe/resources/account.rb
|
56
55
|
- lib/stripe/resources/account_link.rb
|
57
|
-
- lib/stripe/resources/account_notice.rb
|
58
56
|
- lib/stripe/resources/account_session.rb
|
59
57
|
- lib/stripe/resources/alipay_account.rb
|
60
58
|
- lib/stripe/resources/apple_pay_domain.rb
|
@@ -67,14 +65,13 @@ files:
|
|
67
65
|
- lib/stripe/resources/billing_portal/configuration.rb
|
68
66
|
- lib/stripe/resources/billing_portal/session.rb
|
69
67
|
- lib/stripe/resources/capability.rb
|
70
|
-
- lib/stripe/resources/capital/financing_offer.rb
|
71
|
-
- lib/stripe/resources/capital/financing_summary.rb
|
72
|
-
- lib/stripe/resources/capital/financing_transaction.rb
|
73
68
|
- lib/stripe/resources/card.rb
|
74
69
|
- lib/stripe/resources/cash_balance.rb
|
75
70
|
- lib/stripe/resources/charge.rb
|
76
71
|
- lib/stripe/resources/checkout/session.rb
|
77
|
-
- lib/stripe/resources/
|
72
|
+
- lib/stripe/resources/climate/order.rb
|
73
|
+
- lib/stripe/resources/climate/product.rb
|
74
|
+
- lib/stripe/resources/climate/supplier.rb
|
78
75
|
- lib/stripe/resources/country_spec.rb
|
79
76
|
- lib/stripe/resources/coupon.rb
|
80
77
|
- lib/stripe/resources/credit_note.rb
|
@@ -82,7 +79,6 @@ files:
|
|
82
79
|
- lib/stripe/resources/customer.rb
|
83
80
|
- lib/stripe/resources/customer_balance_transaction.rb
|
84
81
|
- lib/stripe/resources/customer_cash_balance_transaction.rb
|
85
|
-
- lib/stripe/resources/customer_session.rb
|
86
82
|
- lib/stripe/resources/discount.rb
|
87
83
|
- lib/stripe/resources/dispute.rb
|
88
84
|
- lib/stripe/resources/ephemeral_key.rb
|
@@ -91,34 +87,24 @@ files:
|
|
91
87
|
- lib/stripe/resources/file.rb
|
92
88
|
- lib/stripe/resources/file_link.rb
|
93
89
|
- lib/stripe/resources/financial_connections/account.rb
|
94
|
-
- lib/stripe/resources/financial_connections/account_inferred_balance.rb
|
95
90
|
- lib/stripe/resources/financial_connections/account_owner.rb
|
96
91
|
- lib/stripe/resources/financial_connections/account_ownership.rb
|
97
92
|
- lib/stripe/resources/financial_connections/session.rb
|
98
|
-
- lib/stripe/resources/financial_connections/transaction.rb
|
99
93
|
- lib/stripe/resources/funding_instructions.rb
|
100
|
-
- lib/stripe/resources/gift_cards/card.rb
|
101
|
-
- lib/stripe/resources/gift_cards/transaction.rb
|
102
94
|
- lib/stripe/resources/identity/verification_report.rb
|
103
95
|
- lib/stripe/resources/identity/verification_session.rb
|
104
96
|
- lib/stripe/resources/invoice.rb
|
105
97
|
- lib/stripe/resources/invoice_item.rb
|
106
98
|
- lib/stripe/resources/invoice_line_item.rb
|
107
|
-
- lib/stripe/resources/invoice_payment.rb
|
108
99
|
- lib/stripe/resources/issuing/authorization.rb
|
109
100
|
- lib/stripe/resources/issuing/card.rb
|
110
101
|
- lib/stripe/resources/issuing/cardholder.rb
|
111
|
-
- lib/stripe/resources/issuing/credit_underwriting_record.rb
|
112
102
|
- lib/stripe/resources/issuing/dispute.rb
|
113
|
-
- lib/stripe/resources/issuing/personalization_design.rb
|
114
|
-
- lib/stripe/resources/issuing/physical_bundle.rb
|
115
103
|
- lib/stripe/resources/issuing/token.rb
|
116
104
|
- lib/stripe/resources/issuing/transaction.rb
|
117
105
|
- lib/stripe/resources/line_item.rb
|
118
106
|
- lib/stripe/resources/login_link.rb
|
119
107
|
- lib/stripe/resources/mandate.rb
|
120
|
-
- lib/stripe/resources/margin.rb
|
121
|
-
- lib/stripe/resources/order.rb
|
122
108
|
- lib/stripe/resources/payment_intent.rb
|
123
109
|
- lib/stripe/resources/payment_link.rb
|
124
110
|
- lib/stripe/resources/payment_method.rb
|
@@ -131,9 +117,6 @@ files:
|
|
131
117
|
- lib/stripe/resources/product.rb
|
132
118
|
- lib/stripe/resources/promotion_code.rb
|
133
119
|
- lib/stripe/resources/quote.rb
|
134
|
-
- lib/stripe/resources/quote_phase.rb
|
135
|
-
- lib/stripe/resources/quote_preview_invoice.rb
|
136
|
-
- lib/stripe/resources/quote_preview_subscription_schedule.rb
|
137
120
|
- lib/stripe/resources/radar/early_fraud_warning.rb
|
138
121
|
- lib/stripe/resources/radar/value_list.rb
|
139
122
|
- lib/stripe/resources/radar/value_list_item.rb
|
@@ -154,7 +137,6 @@ files:
|
|
154
137
|
- lib/stripe/resources/subscription_schedule.rb
|
155
138
|
- lib/stripe/resources/tax/calculation.rb
|
156
139
|
- lib/stripe/resources/tax/calculation_line_item.rb
|
157
|
-
- lib/stripe/resources/tax/form.rb
|
158
140
|
- lib/stripe/resources/tax/registration.rb
|
159
141
|
- lib/stripe/resources/tax/settings.rb
|
160
142
|
- lib/stripe/resources/tax/transaction.rb
|
@@ -204,6 +186,7 @@ metadata:
|
|
204
186
|
github_repo: ssh://github.com/stripe/stripe-ruby
|
205
187
|
homepage_uri: https://stripe.com/docs/api?lang=ruby
|
206
188
|
source_code_uri: https://github.com/stripe/stripe-ruby
|
189
|
+
rubygems_mfa_required: 'false'
|
207
190
|
post_install_message:
|
208
191
|
rdoc_options: []
|
209
192
|
require_paths:
|
@@ -215,9 +198,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
215
198
|
version: 2.3.0
|
216
199
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
217
200
|
requirements:
|
218
|
-
- - "
|
201
|
+
- - ">="
|
219
202
|
- !ruby/object:Gem::Version
|
220
|
-
version:
|
203
|
+
version: '0'
|
221
204
|
requirements: []
|
222
205
|
rubygems_version: 3.3.26
|
223
206
|
signing_key:
|
@@ -1,83 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class RequestSigningAuthenticator
|
5
|
-
AUTHORIZATION_HEADER_NAME = "Authorization"
|
6
|
-
CONTENT_TYPE_HEADER_NAME = "Content-Type"
|
7
|
-
STRIPE_CONTEXT_HEADER_NAME = "Stripe-Context"
|
8
|
-
STRIPE_ACCOUNT_HEADER_NAME = "Stripe-Account"
|
9
|
-
CONTENT_DIGEST_HEADER_NAME = "Content-Digest"
|
10
|
-
SIGNATURE_INPUT_HEADER_NAME = "Signature-Input"
|
11
|
-
SIGNATURE_HEADER_NAME = "Signature"
|
12
|
-
|
13
|
-
attr_reader :auth_token, :sign_lambda
|
14
|
-
|
15
|
-
def initialize(auth_token, sign_lambda)
|
16
|
-
unless auth_token.is_a?(String)
|
17
|
-
raise ArgumentError, "auth_token must be a string"
|
18
|
-
end
|
19
|
-
unless sign_lambda.is_a?(Proc)
|
20
|
-
raise ArgumentError, "sign_lambda must be a lambda"
|
21
|
-
end
|
22
|
-
|
23
|
-
@auth_token = auth_token
|
24
|
-
@sign_lambda = sign_lambda
|
25
|
-
end
|
26
|
-
|
27
|
-
def authenticate(method, headers, body)
|
28
|
-
covered_headers = [CONTENT_TYPE_HEADER_NAME,
|
29
|
-
CONTENT_DIGEST_HEADER_NAME,
|
30
|
-
STRIPE_CONTEXT_HEADER_NAME,
|
31
|
-
STRIPE_ACCOUNT_HEADER_NAME,
|
32
|
-
AUTHORIZATION_HEADER_NAME,]
|
33
|
-
|
34
|
-
headers[AUTHORIZATION_HEADER_NAME] = "STRIPE-V2-SIG #{auth_token}"
|
35
|
-
|
36
|
-
if method == :get
|
37
|
-
covered_headers -= [CONTENT_TYPE_HEADER_NAME,
|
38
|
-
CONTENT_DIGEST_HEADER_NAME,]
|
39
|
-
else
|
40
|
-
content = body || ""
|
41
|
-
headers[CONTENT_DIGEST_HEADER_NAME] =
|
42
|
-
%(sha-256=:#{content_digest(content)}:)
|
43
|
-
end
|
44
|
-
|
45
|
-
covered_headers_formatted = covered_headers
|
46
|
-
.map { |string| %("#{string.downcase}") }
|
47
|
-
.join(" ")
|
48
|
-
|
49
|
-
signature_input = "(#{covered_headers_formatted});created=#{created_time}"
|
50
|
-
|
51
|
-
inputs = covered_headers
|
52
|
-
.map { |header| %("#{header.downcase}": #{headers[header]}) }
|
53
|
-
.join("\n")
|
54
|
-
|
55
|
-
signature_base = %(#{inputs}\n"@signature-params": #{signature_input})
|
56
|
-
.encode(Encoding::UTF_8)
|
57
|
-
|
58
|
-
headers[SIGNATURE_INPUT_HEADER_NAME] = "sig1=#{signature_input}"
|
59
|
-
|
60
|
-
headers[SIGNATURE_HEADER_NAME] =
|
61
|
-
"sig1=:#{encoded_signature(signature_base)}:"
|
62
|
-
end
|
63
|
-
|
64
|
-
private def sign(signature_base)
|
65
|
-
@sign_lambda.call(signature_base)
|
66
|
-
end
|
67
|
-
|
68
|
-
private def encoded_signature(signature_base)
|
69
|
-
Base64.strict_encode64(sign(signature_base))
|
70
|
-
rescue StandardError
|
71
|
-
raise AuthenticationError, "Encountered '#{e.message} (#{e.class})' "\
|
72
|
-
"when calculating request signature."
|
73
|
-
end
|
74
|
-
|
75
|
-
private def content_digest(content)
|
76
|
-
Base64.strict_encode64(OpenSSL::Digest.new("SHA256").digest(content))
|
77
|
-
end
|
78
|
-
|
79
|
-
private def created_time
|
80
|
-
Time.now.to_i
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
# A notice to a Connected account. Notice can be sent by Stripe on your behalf or you can opt to send the notices yourself.
|
6
|
-
#
|
7
|
-
# See the [guide to send notices](https://stripe.com/docs/issuing/compliance-us/issuing-regulated-customer-notices) to your connected accounts.
|
8
|
-
class AccountNotice < APIResource
|
9
|
-
extend Stripe::APIOperations::List
|
10
|
-
include Stripe::APIOperations::Save
|
11
|
-
|
12
|
-
OBJECT_NAME = "account_notice"
|
13
|
-
end
|
14
|
-
end
|
@@ -1,32 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module Capital
|
6
|
-
# This is an object representing an offer of financing from
|
7
|
-
# Stripe Capital to a Connect subaccount.
|
8
|
-
class FinancingOffer < APIResource
|
9
|
-
extend Stripe::APIOperations::List
|
10
|
-
|
11
|
-
OBJECT_NAME = "capital.financing_offer"
|
12
|
-
|
13
|
-
def mark_delivered(params = {}, opts = {})
|
14
|
-
request_stripe_object(
|
15
|
-
method: :post,
|
16
|
-
path: format("/v1/capital/financing_offers/%<financing_offer>s/mark_delivered", { financing_offer: CGI.escape(self["id"]) }),
|
17
|
-
params: params,
|
18
|
-
opts: opts
|
19
|
-
)
|
20
|
-
end
|
21
|
-
|
22
|
-
def self.mark_delivered(financing_offer, params = {}, opts = {})
|
23
|
-
request_stripe_object(
|
24
|
-
method: :post,
|
25
|
-
path: format("/v1/capital/financing_offers/%<financing_offer>s/mark_delivered", { financing_offer: CGI.escape(financing_offer) }),
|
26
|
-
params: params,
|
27
|
-
opts: opts
|
28
|
-
)
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module Capital
|
6
|
-
# A financing object describes an account's current financing state. Used by Connect
|
7
|
-
# platforms to read the state of Capital offered to their connected accounts.
|
8
|
-
class FinancingSummary < SingletonAPIResource
|
9
|
-
OBJECT_NAME = "capital.financing_summary"
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module Capital
|
6
|
-
# This is an object representing the details of a transaction on a Capital financing object.
|
7
|
-
class FinancingTransaction < APIResource
|
8
|
-
extend Stripe::APIOperations::List
|
9
|
-
|
10
|
-
OBJECT_NAME = "capital.financing_transaction"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,11 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
# ConfirmationTokens help transport client side data collected by Stripe JS over
|
6
|
-
# to your server for confirming a PaymentIntent or SetupIntent. If the confirmation
|
7
|
-
# is successful, values present on the ConfirmationToken are written onto the Intent.
|
8
|
-
class ConfirmationToken < APIResource
|
9
|
-
OBJECT_NAME = "confirmation_token"
|
10
|
-
end
|
11
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
# A customer session allows you to grant client access to Stripe's frontend SDKs (like StripeJs)
|
6
|
-
# control over a customer.
|
7
|
-
class CustomerSession < APIResource
|
8
|
-
extend Stripe::APIOperations::Create
|
9
|
-
|
10
|
-
OBJECT_NAME = "customer_session"
|
11
|
-
end
|
12
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module FinancialConnections
|
6
|
-
# A historical balance for the account on a particular day. It may be sourced from a balance snapshot provided by a financial institution, or inferred using transactions data.
|
7
|
-
class AccountInferredBalance < APIResource
|
8
|
-
extend Stripe::APIOperations::List
|
9
|
-
|
10
|
-
OBJECT_NAME = "financial_connections.account_inferred_balance"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module FinancialConnections
|
6
|
-
# A Transaction represents a real transaction that affects a Financial Connections Account balance.
|
7
|
-
class Transaction < APIResource
|
8
|
-
extend Stripe::APIOperations::List
|
9
|
-
|
10
|
-
OBJECT_NAME = "financial_connections.transaction"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module GiftCards
|
6
|
-
# A gift card represents a single gift card owned by a customer, including the
|
7
|
-
# remaining balance, gift card code, and whether or not it is active.
|
8
|
-
class Card < APIResource
|
9
|
-
extend Stripe::APIOperations::Create
|
10
|
-
extend Stripe::APIOperations::List
|
11
|
-
include Stripe::APIOperations::Save
|
12
|
-
|
13
|
-
OBJECT_NAME = "gift_cards.card"
|
14
|
-
|
15
|
-
def self.validate(params = {}, opts = {})
|
16
|
-
request_stripe_object(
|
17
|
-
method: :post,
|
18
|
-
path: "/v1/gift_cards/cards/validate",
|
19
|
-
params: params,
|
20
|
-
opts: opts
|
21
|
-
)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
@@ -1,56 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module GiftCards
|
6
|
-
# A gift card transaction represents a single transaction on a referenced gift card.
|
7
|
-
# A transaction is in one of three states, `confirmed`, `held` or `canceled`. A `confirmed`
|
8
|
-
# transaction is one that has added/deducted funds. A `held` transaction has created a
|
9
|
-
# temporary hold on funds, which can then be cancelled or confirmed. A `held` transaction
|
10
|
-
# can be confirmed into a `confirmed` transaction, or canceled into a `canceled` transaction.
|
11
|
-
# A `canceled` transaction has no effect on a gift card's balance.
|
12
|
-
class Transaction < APIResource
|
13
|
-
extend Stripe::APIOperations::Create
|
14
|
-
extend Stripe::APIOperations::List
|
15
|
-
include Stripe::APIOperations::Save
|
16
|
-
|
17
|
-
OBJECT_NAME = "gift_cards.transaction"
|
18
|
-
|
19
|
-
def cancel(params = {}, opts = {})
|
20
|
-
request_stripe_object(
|
21
|
-
method: :post,
|
22
|
-
path: format("/v1/gift_cards/transactions/%<id>s/cancel", { id: CGI.escape(self["id"]) }),
|
23
|
-
params: params,
|
24
|
-
opts: opts
|
25
|
-
)
|
26
|
-
end
|
27
|
-
|
28
|
-
def confirm(params = {}, opts = {})
|
29
|
-
request_stripe_object(
|
30
|
-
method: :post,
|
31
|
-
path: format("/v1/gift_cards/transactions/%<id>s/confirm", { id: CGI.escape(self["id"]) }),
|
32
|
-
params: params,
|
33
|
-
opts: opts
|
34
|
-
)
|
35
|
-
end
|
36
|
-
|
37
|
-
def self.cancel(id, params = {}, opts = {})
|
38
|
-
request_stripe_object(
|
39
|
-
method: :post,
|
40
|
-
path: format("/v1/gift_cards/transactions/%<id>s/cancel", { id: CGI.escape(id) }),
|
41
|
-
params: params,
|
42
|
-
opts: opts
|
43
|
-
)
|
44
|
-
end
|
45
|
-
|
46
|
-
def self.confirm(id, params = {}, opts = {})
|
47
|
-
request_stripe_object(
|
48
|
-
method: :post,
|
49
|
-
path: format("/v1/gift_cards/transactions/%<id>s/confirm", { id: CGI.escape(id) }),
|
50
|
-
params: params,
|
51
|
-
opts: opts
|
52
|
-
)
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|