stripe 8.6.0.pre.beta.5 → 8.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +61 -143
  3. data/OPENAPI_VERSION +1 -1
  4. data/README.md +1 -12
  5. data/VERSION +1 -1
  6. data/lib/stripe/api_operations/request.rb +0 -2
  7. data/lib/stripe/api_version.rb +0 -1
  8. data/lib/stripe/object_types.rb +0 -13
  9. data/lib/stripe/resources/financial_connections/account.rb +0 -39
  10. data/lib/stripe/resources/financial_connections/account_owner.rb +1 -0
  11. data/lib/stripe/resources/invoice.rb +1 -1
  12. data/lib/stripe/resources/login_link.rb +1 -0
  13. data/lib/stripe/resources/quote.rb +0 -131
  14. data/lib/stripe/resources/reversal.rb +2 -2
  15. data/lib/stripe/resources/subscription_schedule.rb +0 -18
  16. data/lib/stripe/resources/terminal/reader.rb +0 -54
  17. data/lib/stripe/resources/transfer.rb +1 -1
  18. data/lib/stripe/resources.rb +0 -13
  19. data/lib/stripe/stripe_client.rb +26 -60
  20. data/lib/stripe/stripe_configuration.rb +4 -4
  21. data/lib/stripe/util.rb +1 -8
  22. data/lib/stripe/version.rb +1 -1
  23. data/lib/stripe.rb +0 -47
  24. metadata +4 -18
  25. data/lib/stripe/request_signing_authenticator.rb +0 -83
  26. data/lib/stripe/resources/account_session.rb +0 -17
  27. data/lib/stripe/resources/capital/financing_offer.rb +0 -32
  28. data/lib/stripe/resources/capital/financing_summary.rb +0 -12
  29. data/lib/stripe/resources/capital/financing_transaction.rb +0 -13
  30. data/lib/stripe/resources/financial_connections/inferred_balance.rb +0 -13
  31. data/lib/stripe/resources/financial_connections/transaction.rb +0 -13
  32. data/lib/stripe/resources/gift_cards/card.rb +0 -25
  33. data/lib/stripe/resources/gift_cards/transaction.rb +0 -56
  34. data/lib/stripe/resources/issuing/card_bundle.rb +0 -13
  35. data/lib/stripe/resources/issuing/card_design.rb +0 -58
  36. data/lib/stripe/resources/order.rb +0 -89
  37. data/lib/stripe/resources/quote_phase.rb +0 -29
  38. data/lib/stripe/resources/tax/registration.rb +0 -19
@@ -29,15 +29,6 @@ module Stripe
29
29
  )
30
30
  end
31
31
 
32
- def draft_quote(params = {}, opts = {})
33
- request_stripe_object(
34
- method: :post,
35
- path: format("/v1/quotes/%<quote>s/mark_draft", { quote: CGI.escape(self["id"]) }),
36
- params: params,
37
- opts: opts
38
- )
39
- end
40
-
41
32
  def finalize_quote(params = {}, opts = {})
42
33
  request_stripe_object(
43
34
  method: :post,
@@ -65,60 +56,6 @@ module Stripe
65
56
  )
66
57
  end
67
58
 
68
- def list_lines(params = {}, opts = {})
69
- request_stripe_object(
70
- method: :get,
71
- path: format("/v1/quotes/%<quote>s/lines", { quote: CGI.escape(self["id"]) }),
72
- params: params,
73
- opts: opts
74
- )
75
- end
76
-
77
- def mark_stale_quote(params = {}, opts = {})
78
- request_stripe_object(
79
- method: :post,
80
- path: format("/v1/quotes/%<quote>s/mark_stale", { quote: CGI.escape(self["id"]) }),
81
- params: params,
82
- opts: opts
83
- )
84
- end
85
-
86
- def preview_invoice_lines(preview_invoice, params = {}, opts = {})
87
- request_stripe_object(
88
- method: :get,
89
- path: format("/v1/quotes/%<quote>s/preview_invoices/%<preview_invoice>s/lines", { quote: CGI.escape(self["id"]), preview_invoice: CGI.escape(preview_invoice) }),
90
- params: params,
91
- opts: opts
92
- )
93
- end
94
-
95
- def preview_invoices(params = {}, opts = {})
96
- request_stripe_object(
97
- method: :get,
98
- path: format("/v1/quotes/%<quote>s/preview_invoices", { quote: CGI.escape(self["id"]) }),
99
- params: params,
100
- opts: opts
101
- )
102
- end
103
-
104
- def preview_subscription_schedules(params = {}, opts = {})
105
- request_stripe_object(
106
- method: :get,
107
- path: format("/v1/quotes/%<quote>s/preview_subscription_schedules", { quote: CGI.escape(self["id"]) }),
108
- params: params,
109
- opts: opts
110
- )
111
- end
112
-
113
- def reestimate(params = {}, opts = {})
114
- request_stripe_object(
115
- method: :post,
116
- path: format("/v1/quotes/%<quote>s/reestimate", { quote: CGI.escape(self["id"]) }),
117
- params: params,
118
- opts: opts
119
- )
120
- end
121
-
122
59
  def self.accept(quote, params = {}, opts = {})
123
60
  request_stripe_object(
124
61
  method: :post,
@@ -137,15 +74,6 @@ module Stripe
137
74
  )
138
75
  end
139
76
 
140
- def self.draft_quote(quote, params = {}, opts = {})
141
- request_stripe_object(
142
- method: :post,
143
- path: format("/v1/quotes/%<quote>s/mark_draft", { quote: CGI.escape(quote) }),
144
- params: params,
145
- opts: opts
146
- )
147
- end
148
-
149
77
  def self.finalize_quote(quote, params = {}, opts = {})
150
78
  request_stripe_object(
151
79
  method: :post,
@@ -173,65 +101,6 @@ module Stripe
173
101
  )
174
102
  end
175
103
 
176
- def self.list_lines(quote, params = {}, opts = {})
177
- request_stripe_object(
178
- method: :get,
179
- path: format("/v1/quotes/%<quote>s/lines", { quote: CGI.escape(quote) }),
180
- params: params,
181
- opts: opts
182
- )
183
- end
184
-
185
- def self.mark_stale_quote(quote, params = {}, opts = {})
186
- request_stripe_object(
187
- method: :post,
188
- path: format("/v1/quotes/%<quote>s/mark_stale", { quote: CGI.escape(quote) }),
189
- params: params,
190
- opts: opts
191
- )
192
- end
193
-
194
- def self.preview_invoice_lines(
195
- quote,
196
- preview_invoice,
197
- params = {},
198
- opts = {}
199
- )
200
- request_stripe_object(
201
- method: :get,
202
- path: format("/v1/quotes/%<quote>s/preview_invoices/%<preview_invoice>s/lines", { quote: CGI.escape(quote), preview_invoice: CGI.escape(preview_invoice) }),
203
- params: params,
204
- opts: opts
205
- )
206
- end
207
-
208
- def self.preview_invoices(quote, params = {}, opts = {})
209
- request_stripe_object(
210
- method: :get,
211
- path: format("/v1/quotes/%<quote>s/preview_invoices", { quote: CGI.escape(quote) }),
212
- params: params,
213
- opts: opts
214
- )
215
- end
216
-
217
- def self.preview_subscription_schedules(quote, params = {}, opts = {})
218
- request_stripe_object(
219
- method: :get,
220
- path: format("/v1/quotes/%<quote>s/preview_subscription_schedules", { quote: CGI.escape(quote) }),
221
- params: params,
222
- opts: opts
223
- )
224
- end
225
-
226
- def self.reestimate(quote, params = {}, opts = {})
227
- request_stripe_object(
228
- method: :post,
229
- path: format("/v1/quotes/%<quote>s/reestimate", { quote: CGI.escape(quote) }),
230
- params: params,
231
- opts: opts
232
- )
233
- end
234
-
235
104
  def pdf(params = {}, opts = {}, &read_body_chunk_block)
236
105
  unless block_given?
237
106
  raise ArgumentError, "A read_body_chunk_block block parameter is required when calling the pdf method."
@@ -10,11 +10,11 @@ module Stripe
10
10
  # Reversing a transfer that was made for a [destination
11
11
  # charge](https://stripe.com/docs/connect/destination-charges) is allowed only up to the amount of
12
12
  # the charge. It is possible to reverse a
13
- # [transfer_group](https://stripe.com/docs/connect/charges-transfers#transfer-options)
13
+ # [transfer_group](https://stripe.com/docs/connect/separate-charges-and-transfers#transfer-options)
14
14
  # transfer only if the destination account has enough balance to cover the
15
15
  # reversal.
16
16
  #
17
- # Related guide: [Reversing transfers](https://stripe.com/docs/connect/charges-transfers#reversing-transfers)
17
+ # Related guide: [Reversing transfers](https://stripe.com/docs/connect/separate-charges-and-transfers#reversing-transfers)
18
18
  class Reversal < APIResource
19
19
  extend Stripe::APIOperations::List
20
20
  include Stripe::APIOperations::Save
@@ -12,15 +12,6 @@ module Stripe
12
12
 
13
13
  OBJECT_NAME = "subscription_schedule"
14
14
 
15
- def amend(params = {}, opts = {})
16
- request_stripe_object(
17
- method: :post,
18
- path: format("/v1/subscription_schedules/%<schedule>s/amend", { schedule: CGI.escape(self["id"]) }),
19
- params: params,
20
- opts: opts
21
- )
22
- end
23
-
24
15
  def cancel(params = {}, opts = {})
25
16
  request_stripe_object(
26
17
  method: :post,
@@ -39,15 +30,6 @@ module Stripe
39
30
  )
40
31
  end
41
32
 
42
- def self.amend(schedule, params = {}, opts = {})
43
- request_stripe_object(
44
- method: :post,
45
- path: format("/v1/subscription_schedules/%<schedule>s/amend", { schedule: CGI.escape(schedule) }),
46
- params: params,
47
- opts: opts
48
- )
49
- end
50
-
51
33
  def self.cancel(schedule, params = {}, opts = {})
52
34
  request_stripe_object(
53
35
  method: :post,
@@ -23,33 +23,6 @@ module Stripe
23
23
  )
24
24
  end
25
25
 
26
- def collect_inputs(params = {}, opts = {})
27
- request_stripe_object(
28
- method: :post,
29
- path: format("/v1/terminal/readers/%<reader>s/collect_inputs", { reader: CGI.escape(self["id"]) }),
30
- params: params,
31
- opts: opts
32
- )
33
- end
34
-
35
- def collect_payment_method(params = {}, opts = {})
36
- request_stripe_object(
37
- method: :post,
38
- path: format("/v1/terminal/readers/%<reader>s/collect_payment_method", { reader: CGI.escape(self["id"]) }),
39
- params: params,
40
- opts: opts
41
- )
42
- end
43
-
44
- def confirm_payment_intent(params = {}, opts = {})
45
- request_stripe_object(
46
- method: :post,
47
- path: format("/v1/terminal/readers/%<reader>s/confirm_payment_intent", { reader: CGI.escape(self["id"]) }),
48
- params: params,
49
- opts: opts
50
- )
51
- end
52
-
53
26
  def process_payment_intent(params = {}, opts = {})
54
27
  request_stripe_object(
55
28
  method: :post,
@@ -95,33 +68,6 @@ module Stripe
95
68
  )
96
69
  end
97
70
 
98
- def self.collect_inputs(reader, params = {}, opts = {})
99
- request_stripe_object(
100
- method: :post,
101
- path: format("/v1/terminal/readers/%<reader>s/collect_inputs", { reader: CGI.escape(reader) }),
102
- params: params,
103
- opts: opts
104
- )
105
- end
106
-
107
- def self.collect_payment_method(reader, params = {}, opts = {})
108
- request_stripe_object(
109
- method: :post,
110
- path: format("/v1/terminal/readers/%<reader>s/collect_payment_method", { reader: CGI.escape(reader) }),
111
- params: params,
112
- opts: opts
113
- )
114
- end
115
-
116
- def self.confirm_payment_intent(reader, params = {}, opts = {})
117
- request_stripe_object(
118
- method: :post,
119
- path: format("/v1/terminal/readers/%<reader>s/confirm_payment_intent", { reader: CGI.escape(reader) }),
120
- params: params,
121
- opts: opts
122
- )
123
- end
124
-
125
71
  def self.process_payment_intent(reader, params = {}, opts = {})
126
72
  request_stripe_object(
127
73
  method: :post,
@@ -11,7 +11,7 @@ module Stripe
11
11
  # information, read about the
12
12
  # [transfer/payout split](https://stripe.com/docs/transfer-payout-split).
13
13
  #
14
- # Related guide: [Creating separate charges and transfers](https://stripe.com/docs/connect/charges-transfers)
14
+ # Related guide: [Creating separate charges and transfers](https://stripe.com/docs/connect/separate-charges-and-transfers)
15
15
  class Transfer < APIResource
16
16
  extend Stripe::APIOperations::Create
17
17
  extend Stripe::APIOperations::List
@@ -3,7 +3,6 @@
3
3
 
4
4
  require "stripe/resources/account"
5
5
  require "stripe/resources/account_link"
6
- require "stripe/resources/account_session"
7
6
  require "stripe/resources/apple_pay_domain"
8
7
  require "stripe/resources/application_fee"
9
8
  require "stripe/resources/application_fee_refund"
@@ -14,9 +13,6 @@ require "stripe/resources/bank_account"
14
13
  require "stripe/resources/billing_portal/configuration"
15
14
  require "stripe/resources/billing_portal/session"
16
15
  require "stripe/resources/capability"
17
- require "stripe/resources/capital/financing_offer"
18
- require "stripe/resources/capital/financing_summary"
19
- require "stripe/resources/capital/financing_transaction"
20
16
  require "stripe/resources/card"
21
17
  require "stripe/resources/cash_balance"
22
18
  require "stripe/resources/charge"
@@ -38,12 +34,8 @@ require "stripe/resources/file_link"
38
34
  require "stripe/resources/financial_connections/account"
39
35
  require "stripe/resources/financial_connections/account_owner"
40
36
  require "stripe/resources/financial_connections/account_ownership"
41
- require "stripe/resources/financial_connections/inferred_balance"
42
37
  require "stripe/resources/financial_connections/session"
43
- require "stripe/resources/financial_connections/transaction"
44
38
  require "stripe/resources/funding_instructions"
45
- require "stripe/resources/gift_cards/card"
46
- require "stripe/resources/gift_cards/transaction"
47
39
  require "stripe/resources/identity/verification_report"
48
40
  require "stripe/resources/identity/verification_session"
49
41
  require "stripe/resources/invoice"
@@ -51,15 +43,12 @@ require "stripe/resources/invoice_item"
51
43
  require "stripe/resources/invoice_line_item"
52
44
  require "stripe/resources/issuing/authorization"
53
45
  require "stripe/resources/issuing/card"
54
- require "stripe/resources/issuing/card_bundle"
55
- require "stripe/resources/issuing/card_design"
56
46
  require "stripe/resources/issuing/cardholder"
57
47
  require "stripe/resources/issuing/dispute"
58
48
  require "stripe/resources/issuing/transaction"
59
49
  require "stripe/resources/line_item"
60
50
  require "stripe/resources/login_link"
61
51
  require "stripe/resources/mandate"
62
- require "stripe/resources/order"
63
52
  require "stripe/resources/payment_intent"
64
53
  require "stripe/resources/payment_link"
65
54
  require "stripe/resources/payment_method"
@@ -70,7 +59,6 @@ require "stripe/resources/price"
70
59
  require "stripe/resources/product"
71
60
  require "stripe/resources/promotion_code"
72
61
  require "stripe/resources/quote"
73
- require "stripe/resources/quote_phase"
74
62
  require "stripe/resources/radar/early_fraud_warning"
75
63
  require "stripe/resources/radar/value_list"
76
64
  require "stripe/resources/radar/value_list_item"
@@ -89,7 +77,6 @@ require "stripe/resources/subscription"
89
77
  require "stripe/resources/subscription_item"
90
78
  require "stripe/resources/subscription_schedule"
91
79
  require "stripe/resources/tax/calculation"
92
- require "stripe/resources/tax/registration"
93
80
  require "stripe/resources/tax/settings"
94
81
  require "stripe/resources/tax/transaction"
95
82
  require "stripe/resources/tax_code"
@@ -212,10 +212,9 @@ module Stripe
212
212
  end
213
213
 
214
214
  def execute_request(method, path,
215
- api_base: nil, api_key: nil,
216
- headers: {}, params: {}, api_mode: nil)
215
+ api_base: nil, api_key: nil, headers: {}, params: {})
217
216
  http_resp, api_key = execute_request_internal(
218
- method, path, api_base, api_key, headers, params, api_mode
217
+ method, path, api_base, api_key, headers, params
219
218
  )
220
219
 
221
220
  begin
@@ -246,7 +245,6 @@ module Stripe
246
245
  def execute_request_stream(method, path,
247
246
  api_base: nil, api_key: nil,
248
247
  headers: {}, params: {},
249
- api_mode: nil,
250
248
  &read_body_chunk_block)
251
249
  unless block_given?
252
250
  raise ArgumentError,
@@ -254,8 +252,7 @@ module Stripe
254
252
  end
255
253
 
256
254
  http_resp, api_key = execute_request_internal(
257
- method, path, api_base, api_key,
258
- headers, params, api_mode, &read_body_chunk_block
255
+ method, path, api_base, api_key, headers, params, &read_body_chunk_block
259
256
  )
260
257
 
261
258
  # When the read_body_chunk_block is given, we no longer have access to the
@@ -435,7 +432,7 @@ module Stripe
435
432
 
436
433
  private def execute_request_internal(method, path,
437
434
  api_base, api_key, headers, params,
438
- api_mode, &read_body_chunk_block)
435
+ &read_body_chunk_block)
439
436
  raise ArgumentError, "method should be a symbol" \
440
437
  unless method.is_a?(Symbol)
441
438
  raise ArgumentError, "path should be a string" \
@@ -443,10 +440,9 @@ module Stripe
443
440
 
444
441
  api_base ||= config.api_base
445
442
  api_key ||= config.api_key
446
- authenticator ||= config.authenticator
447
443
  params = Util.objects_to_ids(params)
448
444
 
449
- check_keys!(api_key, authenticator)
445
+ check_api_key!(api_key)
450
446
 
451
447
  body_params = nil
452
448
  query_params = nil
@@ -459,9 +455,8 @@ module Stripe
459
455
 
460
456
  query_params, path = merge_query_params(query_params, path)
461
457
 
462
- headers = request_headers(api_key, method, api_mode)
458
+ headers = request_headers(api_key, method)
463
459
  .update(Util.normalize_headers(headers))
464
-
465
460
  url = api_url(path, api_base)
466
461
 
467
462
  # Merge given query parameters with any already encoded in the path.
@@ -472,16 +467,13 @@ module Stripe
472
467
  # a log-friendly variant of the encoded form. File objects are displayed
473
468
  # as such instead of as their file contents.
474
469
  body, body_log =
475
- body_params ? encode_body(body_params, headers, api_mode) : [nil, nil]
476
-
477
- authenticator.authenticate(method, headers, body) unless api_key
470
+ body_params ? encode_body(body_params, headers) : [nil, nil]
478
471
 
479
472
  # stores information on the request we're about to make so that we don't
480
473
  # have to pass as many parameters around for logging.
481
474
  context = RequestLogContext.new
482
475
  context.account = headers["Stripe-Account"]
483
476
  context.api_key = api_key
484
- context.authenticator = authenticator
485
477
  context.api_version = headers["Stripe-Version"]
486
478
  context.body = body_log
487
479
  context.idempotency_key = headers["Idempotency-Key"]
@@ -520,16 +512,8 @@ module Stripe
520
512
  (api_base || config.api_base) + url
521
513
  end
522
514
 
523
- private def check_keys!(api_key, authenticator)
524
- if api_key && authenticator
525
- raise AuthenticationError, "Can't specify both API key " \
526
- "and authenticator. Either set your API key" \
527
- 'using "Stripe.api_key = <API-KEY>", or set your authenticator ' \
528
- 'using "Stripe.authenticator = <AUTHENTICATOR>"' \
529
- end
530
-
531
- unless api_key || authenticator
532
- # Default to missing API key error message for general users.
515
+ private def check_api_key!(api_key)
516
+ unless api_key
533
517
  raise AuthenticationError, "No API key provided. " \
534
518
  'Set your API key using "Stripe.api_key = <API-KEY>". ' \
535
519
  "You can generate API keys from the Stripe web interface. " \
@@ -548,7 +532,7 @@ module Stripe
548
532
  # Encodes a set of body parameters using multipart if `Content-Type` is set
549
533
  # for that, or standard form-encoding otherwise. Returns the encoded body
550
534
  # and a version of the encoded body that's safe to be logged.
551
- private def encode_body(body_params, headers, api_mode)
535
+ private def encode_body(body_params, headers)
552
536
  body = nil
553
537
  flattened_params = Util.flatten_params(body_params)
554
538
 
@@ -564,22 +548,15 @@ module Stripe
564
548
  flattened_params =
565
549
  flattened_params.map { |k, v| [k, v.is_a?(String) ? v : v.to_s] }.to_h
566
550
 
567
- elsif api_mode == :preview
568
- body = JSON.generate(body_params)
569
- headers["Content-Type"] = "application/json"
570
551
  else
571
552
  body = Util.encode_parameters(body_params)
572
553
  end
573
554
 
574
- if api_mode == :preview
575
- body_log = body
576
- else
577
- # We don't use `Util.encode_parameters` partly as an optimization (to
578
- # not redo work we've already done), and partly because the encoded
579
- # forms of certain characters introduce a lot of visual noise and it's
580
- # nice to have a clearer format for logs.
581
- body_log = flattened_params.map { |k, v| "#{k}=#{v}" }.join("&")
582
- end
555
+ # We don't use `Util.encode_parameters` partly as an optimization (to not
556
+ # redo work we've already done), and partly because the encoded forms of
557
+ # certain characters introduce a lot of visual noise and it's nice to
558
+ # have a clearer format for logs.
559
+ body_log = flattened_params.map { |k, v| "#{k}=#{v}" }.join("&")
583
560
 
584
561
  [body, body_log]
585
562
  end
@@ -768,11 +745,10 @@ module Stripe
768
745
  end
769
746
 
770
747
  private def specific_api_error(resp, error_data, context)
771
- message = error_data[:message] || error_data[:developer_message]
772
748
  Util.log_error("Stripe API error",
773
749
  status: resp.http_status,
774
750
  error_code: error_data[:code],
775
- error_message: message,
751
+ error_message: error_data[:message],
776
752
  error_param: error_data[:param],
777
753
  error_type: error_data[:type],
778
754
  idempotency_key: context.idempotency_key,
@@ -793,26 +769,26 @@ module Stripe
793
769
  when 400, 404
794
770
  case error_data[:type]
795
771
  when "idempotency_error"
796
- IdempotencyError.new(message, **opts)
772
+ IdempotencyError.new(error_data[:message], **opts)
797
773
  else
798
774
  InvalidRequestError.new(
799
- message, error_data[:param],
775
+ error_data[:message], error_data[:param],
800
776
  **opts
801
777
  )
802
778
  end
803
779
  when 401
804
- AuthenticationError.new(message, **opts)
780
+ AuthenticationError.new(error_data[:message], **opts)
805
781
  when 402
806
782
  CardError.new(
807
- message, error_data[:param],
783
+ error_data[:message], error_data[:param],
808
784
  **opts
809
785
  )
810
786
  when 403
811
- PermissionError.new(message, **opts)
787
+ PermissionError.new(error_data[:message], **opts)
812
788
  when 429
813
- RateLimitError.new(message, **opts)
789
+ RateLimitError.new(error_data[:message], **opts)
814
790
  else
815
- APIError.new(message, **opts)
791
+ APIError.new(error_data[:message], **opts)
816
792
  end
817
793
  end
818
794
 
@@ -880,7 +856,7 @@ module Stripe
880
856
  message + "\n\n(Network error: #{error.message})"
881
857
  end
882
858
 
883
- private def request_headers(api_key, method, api_mode)
859
+ private def request_headers(api_key, method)
884
860
  user_agent = "Stripe/v1 RubyBindings/#{Stripe::VERSION}"
885
861
  unless Stripe.app_info.nil?
886
862
  user_agent += " " + format_app_info(Stripe.app_info)
@@ -889,13 +865,9 @@ module Stripe
889
865
  headers = {
890
866
  "User-Agent" => user_agent,
891
867
  "Authorization" => "Bearer #{api_key}",
868
+ "Content-Type" => "application/x-www-form-urlencoded",
892
869
  }
893
870
 
894
- if api_mode != :preview
895
- # TODO: (major) don't set Content-Type if method is not post
896
- headers["Content-Type"] = "application/x-www-form-urlencoded"
897
- end
898
-
899
871
  if config.enable_telemetry? && !@last_request_metrics.nil?
900
872
  headers["X-Stripe-Client-Telemetry"] = JSON.generate(
901
873
  last_request_metrics: @last_request_metrics.payload
@@ -908,12 +880,7 @@ module Stripe
908
880
  headers["Idempotency-Key"] ||= SecureRandom.uuid
909
881
  end
910
882
 
911
- if api_mode == :preview
912
- headers["Stripe-Version"] = ApiVersion::PREVIEW
913
- elsif config.api_version
914
- headers["Stripe-Version"] = config.api_version
915
- end
916
-
883
+ headers["Stripe-Version"] = config.api_version if config.api_version
917
884
  headers["Stripe-Account"] = config.stripe_account if config.stripe_account
918
885
 
919
886
  user_agent = @system_profiler.user_agent
@@ -999,7 +966,6 @@ module Stripe
999
966
  attr_accessor :body
1000
967
  attr_accessor :account
1001
968
  attr_accessor :api_key
1002
- attr_accessor :authenticator
1003
969
  attr_accessor :api_version
1004
970
  attr_accessor :idempotency_key
1005
971
  attr_accessor :method
@@ -27,7 +27,6 @@ module Stripe
27
27
  class StripeConfiguration
28
28
  attr_accessor :api_key
29
29
  attr_accessor :api_version
30
- attr_accessor :authenticator
31
30
  attr_accessor :client_id
32
31
  attr_accessor :enable_telemetry
33
32
  attr_accessor :logger
@@ -64,8 +63,6 @@ module Stripe
64
63
  end
65
64
 
66
65
  def initialize
67
- @api_version = ApiVersion::CURRENT
68
-
69
66
  @ca_bundle_path = Stripe::DEFAULT_CA_BUNDLE_PATH
70
67
  @enable_telemetry = true
71
68
  @verify_ssl_certs = true
@@ -89,13 +86,16 @@ module Stripe
89
86
  val = Stripe::LEVEL_DEBUG
90
87
  elsif val == "info"
91
88
  val = Stripe::LEVEL_INFO
89
+ elsif val == "error"
90
+ val = Stripe::LEVEL_ERROR
92
91
  end
93
92
 
94
93
  levels = [Stripe::LEVEL_INFO, Stripe::LEVEL_DEBUG, Stripe::LEVEL_ERROR]
95
94
 
96
95
  if !val.nil? && !levels.include?(val)
97
96
  raise ArgumentError,
98
- "log_level should only be set to `nil`, `debug` or `info`"
97
+ "log_level should only be set to `nil`, `debug`, `info`," \
98
+ " or `error`"
99
99
  end
100
100
  @log_level = val
101
101
  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
@@ -282,13 +281,7 @@ module Stripe
282
281
  when String
283
282
  { api_key: opts }
284
283
  when Hash
285
- # If the user is using request signing for authentication,
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
284
+ check_api_key!(opts.fetch(:api_key)) if opts.key?(:api_key)
292
285
  # Explicitly use dup here instead of clone to avoid preserving freeze
293
286
  # state on input params.
294
287
  opts.dup
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "8.6.0-beta.5"
4
+ VERSION = "8.6.0"
5
5
  end