stripe 10.7.0 → 10.8.0.pre.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +272 -40
  3. data/OPENAPI_VERSION +1 -1
  4. data/README.md +11 -0
  5. data/VERSION +1 -1
  6. data/lib/stripe/api_operations/request.rb +2 -1
  7. data/lib/stripe/api_version.rb +1 -0
  8. data/lib/stripe/object_types.rb +23 -0
  9. data/lib/stripe/request_signing_authenticator.rb +79 -0
  10. data/lib/stripe/resources/account_notice.rb +14 -0
  11. data/lib/stripe/resources/capital/financing_offer.rb +36 -0
  12. data/lib/stripe/resources/capital/financing_summary.rb +12 -0
  13. data/lib/stripe/resources/capital/financing_transaction.rb +13 -0
  14. data/lib/stripe/resources/confirmation_token.rb +13 -0
  15. data/lib/stripe/resources/customer.rb +11 -0
  16. data/lib/stripe/resources/customer_entitlement.rb +9 -0
  17. data/lib/stripe/resources/customer_entitlement_summary.rb +9 -0
  18. data/lib/stripe/resources/entitlements/event.rb +13 -0
  19. data/lib/stripe/resources/entitlements/feature.rb +15 -0
  20. data/lib/stripe/resources/financial_connections/account.rb +3 -0
  21. data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +11 -0
  22. data/lib/stripe/resources/gift_cards/card.rb +26 -0
  23. data/lib/stripe/resources/gift_cards/transaction.rb +60 -0
  24. data/lib/stripe/resources/invoice.rb +53 -0
  25. data/lib/stripe/resources/invoice_payment.rb +9 -0
  26. data/lib/stripe/resources/issuing/credit_underwriting_record.rb +75 -0
  27. data/lib/stripe/resources/issuing/personalization_design.rb +83 -0
  28. data/lib/stripe/resources/issuing/physical_bundle.rb +13 -0
  29. data/lib/stripe/resources/margin.rb +14 -0
  30. data/lib/stripe/resources/order.rb +97 -0
  31. data/lib/stripe/resources/quote.rb +104 -0
  32. data/lib/stripe/resources/quote_phase.rb +31 -0
  33. data/lib/stripe/resources/quote_preview_invoice.rb +40 -0
  34. data/lib/stripe/resources/quote_preview_subscription_schedule.rb +8 -0
  35. data/lib/stripe/resources/subscription_schedule.rb +20 -0
  36. data/lib/stripe/resources/tax/form.rb +41 -0
  37. data/lib/stripe/resources/terminal/reader.rb +60 -0
  38. data/lib/stripe/resources.rb +22 -0
  39. data/lib/stripe/stripe_client.rb +62 -28
  40. data/lib/stripe/stripe_configuration.rb +2 -1
  41. data/lib/stripe/util.rb +8 -1
  42. data/lib/stripe/version.rb +1 -1
  43. data/lib/stripe.rb +46 -0
  44. metadata +27 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1d40d1ed04a652a17daa37e24d74ab90cefd720e3ec52bf7c89701812890eed9
4
- data.tar.gz: 83cf7121d4166187952c4e138dee3efc6465c9d1add27be4e84ea1402de3dd1b
3
+ metadata.gz: 9b1e4368424356db6b9a4dd7d1cbb557b3194b22c1b5d49f453329c66778b87d
4
+ data.tar.gz: 75b2a1d9e1212ddbaeedc51f297d93689864b6eaa334e80ac39e86a2692ec26f
5
5
  SHA512:
6
- metadata.gz: e20b4f214e6ea543f67c113b1743f586b541ee2c634ae26ff745d9ccf0def928e251a95c539b9fba890c8a12379c2fe7e9a2f40439eb9dacb75f9e539c491b04
7
- data.tar.gz: 76cbfe1b8fa7e76486b56409640d5fada577b9bbd13a29f4be7368674862c992d975e6a6a2c6728517e5e4ce112a10255338da54d16d1ad8cdcbb5f277d4d02b
6
+ metadata.gz: cee5c33a2b7f22a8fc6b138d639645a767f3a9bea1a5c64e223033e5a919a58534a818199c36dcfa128aecb911397db2e126302cf03796d104c3a7eb00e547d0
7
+ data.tar.gz: b541c4231a195fad1c20fc3956ddb1764aee8c899a8a7762ce62c23215fd717e1127d72be45dcf429b565b903cfb061273749dc799eb98e5490390fcbfff0428
data/CHANGELOG.md CHANGED
@@ -1,18 +1,44 @@
1
1
  # Changelog
2
+
3
+ ## 10.8.0-beta.1 - 2024-02-01
4
+ * [#1318](https://github.com/stripe/stripe-ruby/pull/1318) Update generated code for beta
5
+ * Add support for new resources `Entitlements.Event` and `Entitlements.Feature`
6
+ * Add support for `create` method on resource `Event`
7
+ * Add support for `create` and `list` methods on resource `Feature`
8
+
2
9
  ## 10.7.0 - 2024-02-01
3
10
  * [#1317](https://github.com/stripe/stripe-ruby/pull/1317) Remove list method in child resources
4
11
  * Removes list method mixin from child resources, as these methods always return `InvalidRequestError` and never succeed
5
12
  * [#1311](https://github.com/stripe/stripe-ruby/pull/1311) Use the deprecation gem in search and clean up usage of the gem
6
13
 
14
+ ## 10.7.0-beta.3 - 2024-01-25
15
+ * [#1313](https://github.com/stripe/stripe-ruby/pull/1313) Update generated code for beta
16
+ * Add support for `create_preview` method on resource `Invoice`
17
+ * [#1307](https://github.com/stripe/stripe-ruby/pull/1307) Beta: report raw request usage
18
+
19
+ ## 10.7.0-beta.2 - 2024-01-19
20
+ * [#1307](https://github.com/stripe/stripe-ruby/pull/1307) Beta: report raw request usage
21
+
22
+ ## 10.7.0-beta.1 - 2024-01-12
23
+ * [#1309](https://github.com/stripe/stripe-ruby/pull/1309) Update generated code for beta
24
+ * [#1305](https://github.com/stripe/stripe-ruby/pull/1305) Update generated code for beta
25
+
7
26
  ## 10.6.0 - 2024-01-12
8
27
  * [#1310](https://github.com/stripe/stripe-ruby/pull/1310) Update generated code
9
28
  * Add support for new resource `CustomerSession`
10
29
  * Add support for `create` method on resource `CustomerSession`
11
30
 
31
+ ## 10.6.0-beta.1 - 2024-01-04
32
+ * [#1302](https://github.com/stripe/stripe-ruby/pull/1302) Update generated code for beta
33
+ * Updated stable APIs to the latest version
34
+
12
35
  ## 10.5.0 - 2024-01-04
13
36
  * [#1306](https://github.com/stripe/stripe-ruby/pull/1306) Update generated code
14
37
  * Add support for `retrieve` method on resource `Tax.Registration`
15
38
 
39
+ ## 10.5.0-beta.1 - 2023-12-22
40
+ * [#1302](https://github.com/stripe/stripe-ruby/pull/1302) Update generated code for beta
41
+
16
42
  ## 10.4.0 - 2023-12-22
17
43
  * [#1303](https://github.com/stripe/stripe-ruby/pull/1303) Update generated code
18
44
  * Add support for new resource `FinancialConnections.Transaction`
@@ -20,9 +46,16 @@
20
46
  * Add support for `subscribe` and `unsubscribe` methods on resource `FinancialConnections.Account`
21
47
  * [#1304](https://github.com/stripe/stripe-ruby/pull/1304) Add support for updatable singleton resources
22
48
 
49
+ ## 10.4.0-beta.1 - 2023-12-14
50
+ Updated stable APIs to the latest version
51
+
23
52
  ## 10.3.0 - 2023-12-14
24
53
  * [#1294](https://github.com/stripe/stripe-ruby/pull/1294) Support sending parameters inside singleton retrieve
25
54
 
55
+ ## 10.3.0-beta.1 - 2023-11-30
56
+ * [#1298](https://github.com/stripe/stripe-ruby/pull/1298) Update generated code for beta
57
+ * [#1296](https://github.com/stripe/stripe-ruby/pull/1296) Merge master into beta
58
+
26
59
  ## 10.2.0 - 2023-11-30
27
60
  * [#1292](https://github.com/stripe/stripe-ruby/pull/1292) Update generated code
28
61
  * Add support for new resources `Climate.Order`, `Climate.Product`, and `Climate.Supplier`
@@ -35,12 +68,26 @@
35
68
 
36
69
  * [#1288](https://github.com/stripe/stripe-ruby/pull/1288) Update generated code
37
70
 
71
+ ## 10.2.0-beta.1 - 2023-11-02
72
+ * [#1287](https://github.com/stripe/stripe-ruby/pull/1287) Update generated code for beta
73
+ * Add support for `attach_payment_intent` method on resource `Invoice`
74
+ * [#1285](https://github.com/stripe/stripe-ruby/pull/1285) Update generated code for beta
38
75
 
39
76
  ## 10.1.0 - 2023-11-02
40
77
  * [#1286](https://github.com/stripe/stripe-ruby/pull/1286) Update generated code
41
78
  * Add support for new resource `Tax.Registration`
42
79
  * Add support for `create`, `list`, and `update` methods on resource `Registration`
43
80
 
81
+ ## 10.1.0-beta.2 - 2023-10-26
82
+ * [#1285](https://github.com/stripe/stripe-ruby/pull/1285) Update generated code for beta
83
+ * Add support for new resource `Margin`
84
+ * Add support for `create`, `list`, `retrieve`, and `update` methods on resource `Margin`
85
+
86
+ ## 10.1.0-beta.1 - 2023-10-17
87
+ * [#1284](https://github.com/stripe/stripe-ruby/pull/1284) Update generated code for beta
88
+ - Update pinned API version to `2023-10-16`
89
+ * [#1282](https://github.com/stripe/stripe-ruby/pull/1282) Update generated code for beta
90
+
44
91
  ## 10.0.0 - 2023-10-16
45
92
  * This release changes the pinned API version to `2023-10-16`. Please read the [API Upgrade Guide](https://stripe.com/docs/upgrades#2023-10-16) and carefully review the API changes before upgrading `stripe-ruby`.
46
93
  * [#1283](https://github.com/stripe/stripe-ruby/pull/1283) Update generated code
@@ -48,11 +95,33 @@
48
95
  * [#1281](https://github.com/stripe/stripe-ruby/pull/1281) Update generated code
49
96
  * Documentation only changes
50
97
 
98
+ ## 9.5.0-beta.2 - 2023-10-12
99
+ * [#1280](https://github.com/stripe/stripe-ruby/pull/1280) Update generated code for beta
100
+ * Add support for new resources `AccountNotice` and `Issuing.CreditUnderwritingRecord`
101
+ * Add support for `list`, `retrieve`, and `update` methods on resource `AccountNotice`
102
+ * Add support for `correct`, `create_from_application`, `create_from_proactive_review`, `list`, `report_decision`, and `retrieve` methods on resource `CreditUnderwritingRecord`
103
+
104
+ ## 9.5.0-beta.1 - 2023-10-05
105
+ * [#1278](https://github.com/stripe/stripe-ruby/pull/1278) Update generated code for beta
106
+ * Add support for `mark_draft` and `mark_stale` methods on resource `Quote`
107
+ * Remove support for `draft_quote` and `mark_stale_quote` methods on resource `Quote`
108
+ * Rename `preview_invoice_lines` to `list_preview_invoice_lines` on resource `Quote`
109
+
51
110
  ## 9.4.0 - 2023-10-05
52
111
  * [#1277](https://github.com/stripe/stripe-ruby/pull/1277) Update generated code
53
112
  * Add support for new resources `Issuing.Token`
54
113
  * Add support for `list`, `retrieve`, and `update` methods on resource `Token`
55
114
 
115
+ ## 9.4.0-beta.3 - 2023-09-28
116
+ * [#1276](https://github.com/stripe/stripe-ruby/pull/1276) Update generated code for beta
117
+ * Rename resources `Issuing.CardDesign` and `Issuing.CardBundle` to `Issuing.PersonalizationDesign` and `Issuing.PhysicalBundle`
118
+
119
+ ## 9.4.0-beta.2 - 2023-09-21
120
+ * [#1273](https://github.com/stripe/stripe-ruby/pull/1273) Update generated code for beta
121
+
122
+ ## 9.4.0-beta.1 - 2023-09-14
123
+ * Updated stable APIs to the latest version
124
+
56
125
  ## 9.3.0 - 2023-09-14
57
126
  * [#1272](https://github.com/stripe/stripe-ruby/pull/1272) Update generated code
58
127
  * Add support for new resource `PaymentMethodConfiguration`
@@ -61,18 +130,38 @@
61
130
  * Add support for `capture`, `create`, `expire`, `increment`, and `reverse` test helper methods on resource `Issuing.Authorization`
62
131
  * Add support for `create_force_capture`, `create_unlinked_refund`, and `refund` test helper methods on resource `Issuing.Transaction`
63
132
 
133
+ ## 9.3.0-beta.1 - 2023-09-07
134
+ * [#1269](https://github.com/stripe/stripe-ruby/pull/1269) Update generated code for beta
135
+ * Release specs are identical.
136
+ * [#1268](https://github.com/stripe/stripe-ruby/pull/1268) Update generated code for beta
137
+ * Remove support for `submit_card` test helper method on resource `Issuing.Card`
138
+ * [#1265](https://github.com/stripe/stripe-ruby/pull/1265) Update generated code for beta
139
+ * Rename `Quote.preview_invoices` to `QuotePreviewInvoice.list` and `Quote.preview_schedules` to `QuotePreviewSchedules.list`
140
+ * [#1264](https://github.com/stripe/stripe-ruby/pull/1264) Update generated code for beta
141
+ * Add support for new resources `QuotePreviewInvoice` and `QuotePreviewSchedule`
142
+ * [#1259](https://github.com/stripe/stripe-ruby/pull/1259) Update generated code for beta
143
+
144
+ * [#1257](https://github.com/stripe/stripe-ruby/pull/1257) Update generated code for beta
145
+
146
+ * [#1254](https://github.com/stripe/stripe-ruby/pull/1254) Update generated code for beta
147
+ * Add support for `submit_card` test helper method on resource `Issuing.Card`
148
+ * [#1252](https://github.com/stripe/stripe-ruby/pull/1252) Remove developer_message support
149
+
64
150
  ## 9.2.0 - 2023-09-07
65
151
  * [#1267](https://github.com/stripe/stripe-ruby/pull/1267) Update generated code
66
152
  * Add support for new resource `PaymentMethodDomain`
67
153
  * Add support for `create`, `list`, `retrieve`, `update`, and `validate` methods on resource `PaymentMethodDomain`
68
154
 
155
+ ## 9.2.0-beta.1 - 2023-08-31
156
+ * [#1265](https://github.com/stripe/stripe-ruby/pull/1265) Update generated code for beta
157
+ * Rename `Quote.preview_invoices` to `QuotePreviewInvoice.list` and `Quote.preview_schedules` to `QuotePreviewSchedules.list`
158
+
69
159
  ## 9.1.0 - 2023-08-31
70
160
  * [#1266](https://github.com/stripe/stripe-ruby/pull/1266) Update generated code
71
161
  * Add support for new resource `AccountSession`
72
162
  * Add support for `create` method on resource `AccountSession`
73
163
  * [#1262](https://github.com/stripe/stripe-ruby/pull/1262) Explicitly format timestamp in SignatureVerificationError message
74
164
 
75
-
76
165
  ## 9.0.0 - 2023-08-16
77
166
  **⚠️ ACTION REQUIRED: the breaking change in this release likely affects you ⚠️**
78
167
 
@@ -105,10 +194,39 @@
105
194
 
106
195
  That is, instead of upgrading stripe-ruby and separately upgrading your Stripe API Version through the Stripe Dashboard. whenever you upgrade major versions of stripe-ruby, you should also upgrade your integration to be compatible with the latest Stripe API version.
107
196
 
197
+ ## 9.0.0-beta.1 - 2023-08-24
198
+ * [#1264](https://github.com/stripe/stripe-ruby/pull/1264) Update generated code for beta
199
+ * Add support for new resources `QuotePreviewInvoice` and `QuotePreviewSchedule`
200
+ * [#1259](https://github.com/stripe/stripe-ruby/pull/1259) Update generated code for beta
201
+
202
+ ## 8.8.0-beta.1 - 2023-08-10
203
+ * [#1257](https://github.com/stripe/stripe-ruby/pull/1257) Update generated code for beta
204
+ * Updated stable APIs to the latest version
205
+
108
206
  ## 8.7.0 - 2023-08-10
109
207
  * [#1256](https://github.com/stripe/stripe-ruby/pull/1256) Update generated code
110
208
  Add resources `Tax::CalculationLineItem`, `Tax::TransactionLineItem`, and `Treasury::FinancialAccountFeatures`. These resources have no methods on them, but do represent the return type of methods elsewhere.
111
209
 
210
+ ## 8.7.0-beta.3 - 2023-08-03
211
+ * [#1254](https://github.com/stripe/stripe-ruby/pull/1254) Update generated code for beta
212
+ * Add support for `submit_card` test helper method on resource `Issuing.Card`
213
+ * [#1252](https://github.com/stripe/stripe-ruby/pull/1252) Remove developer_message support
214
+
215
+ ## 8.7.0-beta.2 - 2023-07-28
216
+ * [#1251](https://github.com/stripe/stripe-ruby/pull/1251) Update generated code for beta
217
+ * Add support for new resource `Tax.Form`
218
+ * Add support for `list`, `pdf`, and `retrieve` methods on resource `Form`
219
+ * [#1249](https://github.com/stripe/stripe-ruby/pull/1249) Update generated code for beta
220
+ * [#1246](https://github.com/stripe/stripe-ruby/pull/1246) Update generated code for beta
221
+
222
+ ## 8.7.0-beta.1 - 2023-07-13
223
+ * [#1245](https://github.com/stripe/stripe-ruby/pull/1245) Update generated code for beta
224
+ Release specs are identical.
225
+ * [#1243](https://github.com/stripe/stripe-ruby/pull/1243) Update generated code for beta
226
+ * Add support for new resource `PaymentMethodConfiguration`
227
+ * Add support for `create`, `list`, `retrieve`, and `update` methods on resource `PaymentMethodConfiguration`
228
+ * [#1239](https://github.com/stripe/stripe-ruby/pull/1239) Update generated code for beta
229
+
112
230
  ## 8.6.0 - 2023-07-13
113
231
  * [#1244](https://github.com/stripe/stripe-ruby/pull/1244) Update generated code
114
232
  * Add support for new resource `Tax.Settings`
@@ -137,6 +255,37 @@
137
255
 
138
256
  * [#1204](https://github.com/stripe/stripe-ruby/pull/1204) Update generated code
139
257
 
258
+ ## 8.6.0-beta.6 - 2023-06-22
259
+ * [#1237](https://github.com/stripe/stripe-ruby/pull/1237) Update generated code for beta
260
+ * Add support for new resource `CustomerSession`
261
+ * Add support for `create` method on resource `CustomerSession`
262
+ * [#1233](https://github.com/stripe/stripe-ruby/pull/1233) Update generated code for beta
263
+ * [#1229](https://github.com/stripe/stripe-ruby/pull/1229) Update generated code for beta
264
+
265
+ ## 8.6.0-beta.5 - 2023-06-01
266
+ * [#1227](https://github.com/stripe/stripe-ruby/pull/1227) Update generated code for beta
267
+ * [#1228](https://github.com/stripe/stripe-ruby/pull/1228) Document raw_request
268
+ * [#1222](https://github.com/stripe/stripe-ruby/pull/1222) Update generated code for beta
269
+ * [#1224](https://github.com/stripe/stripe-ruby/pull/1224) Handle developer message in preview error responses
270
+
271
+ ## 8.6.0-beta.4 - 2023-05-19
272
+ * [#1220](https://github.com/stripe/stripe-ruby/pull/1220) Update generated code for beta
273
+ * Add support for `subscribe` and `unsubscribe` methods on resource `FinancialConnections.Account`
274
+ * [#1217](https://github.com/stripe/stripe-ruby/pull/1217) Add raw_request
275
+ * [#1216](https://github.com/stripe/stripe-ruby/pull/1216) Update generated code for beta
276
+ * [#1214](https://github.com/stripe/stripe-ruby/pull/1214) Update generated code for beta
277
+
278
+ ## 8.6.0-beta.3 - 2023-04-17
279
+ * [#1211](https://github.com/stripe/stripe-ruby/pull/1211) Update generated code for beta
280
+ * [#1210](https://github.com/stripe/stripe-ruby/pull/1210), [#1212](https://github.com/stripe/stripe-ruby/pull/1212), [#1213](https://github.com/stripe/stripe-ruby/pull/1213) Add support for request signing
281
+
282
+ ## 8.6.0-beta.2 - 2023-04-13
283
+ * [#1206](https://github.com/stripe/stripe-ruby/pull/1206) Update generated code for beta
284
+ * Add support for `collect_payment_method` and `confirm_payment_intent` methods on resource `Terminal.Reader`
285
+ * [#1205](https://github.com/stripe/stripe-ruby/pull/1205) Update generated code for beta
286
+
287
+ ## 8.6.0-beta.1 - 2023-03-30
288
+ * [#1202](https://github.com/stripe/stripe-ruby/pull/1202) Update generated code for beta
140
289
 
141
290
  ## 8.5.0 - 2023-03-30
142
291
  * [#1203](https://github.com/stripe/stripe-ruby/pull/1203) Update generated code
@@ -144,6 +293,11 @@
144
293
  * This is not a breaking change, as this method was deprecated before the Tax Transactions API was released in favor of the `create_from_calculation` method.
145
294
  * [#1201](https://github.com/stripe/stripe-ruby/pull/1201) Update save deprecation message
146
295
 
296
+ ## 8.5.0-beta.1 - 2023-03-23
297
+ * [#1194](https://github.com/stripe/stripe-ruby/pull/1194) Update generated code for beta (new)
298
+ * Add support for new resources `Tax.CalculationLineItem` and `Tax.TransactionLineItem`
299
+ * Add support for `collect_inputs` method on resource `Terminal.Reader`
300
+
147
301
  ## 8.4.0 - 2023-03-23
148
302
  * [#1197](https://github.com/stripe/stripe-ruby/pull/1197) Update generated code (new)
149
303
  * Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction`
@@ -151,18 +305,91 @@
151
305
  * Add support for `create_from_calculation`, `create_reversal`, `create`, `list_line_items`, and `retrieve` methods on resource `Transaction`
152
306
  * [#1152](https://github.com/stripe/stripe-ruby/pull/1152) Symbolize hash keys inside `convert_to_stripe_object_with_params`
153
307
 
308
+ ## 8.4.0-beta.4 - 2023-03-16
309
+ * [#1189](https://github.com/stripe/stripe-ruby/pull/1189) Update generated code for beta (new)
310
+ * Add support for `create_from_calculation` method on resource `Tax.Transaction`
311
+ * [#1188](https://github.com/stripe/stripe-ruby/pull/1188) Update generated code for beta (new)
312
+ * Remove support for resources `Capital.FinancingOffer` and `Capital.FinancingSummary`
313
+ * Remove support for `list`, `mark_delivered`, and `retrieve` methods on resource `FinancingOffer`
314
+ * Remove support for `retrieve` method on resource `FinancingSummary`
315
+ * [#1187](https://github.com/stripe/stripe-ruby/pull/1187) Merge upstream master
316
+
317
+ ## 8.4.0-beta.3 - 2023-03-09
318
+ * [#1184](https://github.com/stripe/stripe-ruby/pull/1184) API Updates for beta branch
319
+ * Updated stable APIs to the latest version
320
+ * Remove support for `list_transactions` method on resource `Tax.Transaction`
321
+
322
+ ## 8.4.0-beta.2 - 2023-03-03
323
+ * [#1183](https://github.com/stripe/stripe-ruby/pull/1183) API Updates for beta branch
324
+ * Updated stable APIs to the latest version
325
+ * Add support for new resources `Issuing.CardBundle` and `Issuing.CardDesign`
326
+ * Add support for `list` and `retrieve` methods on resource `CardBundle`
327
+ * Add support for `list`, `retrieve`, and `update` methods on resource `CardDesign`
328
+
329
+ ## 8.4.0-beta.1 - 2023-02-23
330
+ * [#1182](https://github.com/stripe/stripe-ruby/pull/1182) API Updates for beta branch
331
+ * Updated stable APIs to the latest version
332
+
154
333
  ## 8.3.0 - 2023-02-16
155
334
  * [#1175](https://github.com/stripe/stripe-ruby/pull/1175) API Updates
156
335
  * Add support for `refund_payment` method on resource `Terminal.Reader`
157
336
 
337
+ ## 8.3.0-beta.1 - 2023-02-02
338
+ * [#1174](https://github.com/stripe/stripe-ruby/pull/1174) API Updates for beta branch
339
+ * Updated stable APIs to the latest version
340
+ * Add support for new resource `FinancialConnections.Transaction`
341
+ * Add support for `list` method on resource `Transaction`
342
+
158
343
  ## 8.2.0 - 2023-02-02
159
344
  * [#1173](https://github.com/stripe/stripe-ruby/pull/1173) API Updates
160
345
  * Add support for `resume` method on resource `Subscription`
161
346
  * [#1171](https://github.com/stripe/stripe-ruby/pull/1171) Remove unused `partial` param from `initialize_from`
162
347
 
348
+ ## 8.2.0-beta.3 - 2023-01-26
349
+ * [#1172](https://github.com/stripe/stripe-ruby/pull/1172) API Updates for beta branch
350
+ * Updated stable APIs to the latest version
351
+ * Add support for `list_transactions` method on resource `Tax.Transaction`
352
+
353
+ ## 8.2.0-beta.2 - 2023-01-19
354
+ * [#1170](https://github.com/stripe/stripe-ruby/pull/1170) API Updates for beta branch
355
+ * Updated stable APIs to the latest version
356
+ * Add support for `Tax.Settings` resource.
357
+
358
+ ## 8.2.0-beta.1 - 2023-01-12
359
+ * [#1167](https://github.com/stripe/stripe-ruby/pull/1167) API Updates for beta branch
360
+ * Updated stable APIs to the latest version
361
+ * Change `quote.draft_quote` implementation to from calling `POST /v1/quotes/{quote}/draft` to `POST /v1/quotes/{quote}/mark_draft`
362
+ * Add support for `Tax::Register` resource
363
+
163
364
  ## 8.1.0 - 2023-01-12
164
365
  * [#1162](https://github.com/stripe/stripe-ruby/pull/1162) Improve request events instrumentation
165
366
 
367
+ ## 8.1.0-beta.4 - 2023-01-05
368
+ * [#1164](https://github.com/stripe/stripe-ruby/pull/1164) API Updates for beta branch
369
+ * Updated stable APIs to the latest version
370
+ * Add support for `mark_stale_quote` method on resource `Quote`
371
+
372
+ ## 8.1.0-beta.3 - 2022-12-22
373
+ * [#1158](https://github.com/stripe/stripe-ruby/pull/1158) API Updates for beta branch
374
+ * Updated stable APIs to the latest version
375
+ * Move `TaxCalculation` and `TaxTransaction` to `Tax::Calculation` and `Tax::Transaction`.
376
+
377
+ ## 8.1.0-beta.2 - 2022-12-15
378
+ * [#1156](https://github.com/stripe/stripe-ruby/pull/1156) API Updates for beta branch
379
+ * Updated stable APIs to the latest version
380
+ * Add support for new resources `TaxCalculation`, and `TaxTransaction`
381
+ * Add support for `create` and `list_line_items` methods on resource `TaxCalculation`
382
+ * Add support for `create_reversal`, `create`, and `retrieve` methods on resource `TaxTransaction`
383
+ * [#1155](https://github.com/stripe/stripe-ruby/pull/1155) API Updates for beta branch
384
+ * Updated stable APIs to the latest version
385
+ * Add support for new resource `QuoteLine`.
386
+
387
+ ## 8.1.0-beta.1 - 2022-12-08
388
+ * [#1153](https://github.com/stripe/stripe-ruby/pull/1153) API Updates for beta branch
389
+ * Updated stable APIs to the latest version
390
+ * [#1146](https://github.com/stripe/stripe-ruby/pull/1146) API Updates for beta branch
391
+ * Updated stable APIs to the latest version
392
+
166
393
  ## 8.0.0 - 2022-11-16
167
394
  * [#1144](https://github.com/stripe/stripe-ruby/pull/1144) Next major release changes
168
395
 
@@ -170,30 +397,29 @@ Breaking changes that arose during code generation of the library that we postpo
170
397
 
171
398
  "⚠️" symbol highlights breaking changes.
172
399
 
173
- ### Deprecated
174
- - The `save` method is deprecated. Prefer the static `update` method that doesn't require retrieval of the resource to update it.
175
- ``` ruby
176
- # before
177
- refund = Stripe::Refund.retrieve("re_123")
178
- refund.description = "Refund description"
179
- refund.save
180
-
181
- # after
182
- Stripe::Refund.update("re_123", description: "Refund description")
183
- ```
400
+ ## 7.2.0-beta.5 - 2022-11-02
401
+ * [#1139](https://github.com/stripe/stripe-ruby/pull/1139) API Updates for beta branch
402
+ * Updated beta APIs to the latest stable version
403
+ * [#1135](https://github.com/stripe/stripe-ruby/pull/1135) API Updates for beta branch
404
+ * Updated stable APIs to the latest version
184
405
 
185
- ### ⚠️ Removed
186
- - Removed deprecated `Sku` resource.
187
- - Removed deprecated `Orders` resource.
188
- - Removed deprecated `delete` method on `Subscription` resource. Please use `cancel` method instead.
189
- ```ruby
190
- # before
191
- Stripe::Subscription::delete("sub_12345")
406
+ ## 7.2.0-beta.4 - 2022-10-07
407
+ * [#999](https://github.com/stripe/stripe-ruby/pull/999) DESCRIBE CHANGES HERE (try to use the same style, tense, etc. as the other entries)
192
408
 
193
- # after
194
- Stripe::Subscription::cancel("sub_12345")
195
- ```
409
+ ## 7.2.0-beta.3 - 2022-09-26
410
+ * [#1129](https://github.com/stripe/stripe-ruby/pull/1129) API Updates for beta branch
411
+ * Updated stable APIs to the latest version
412
+ * Add `FinancingOffer`, `FinancingSummary` and `FinancingTransaction` resources.
196
413
 
414
+ ## 7.2.0-beta.2 - 2022-08-26
415
+ * [#1127](https://github.com/stripe/stripe-ruby/pull/1127) API Updates for beta branch
416
+ * Updated stable APIs to the latest version
417
+ * Add support for the beta [Gift Card API](https://stripe.com/docs/gift-cards).
418
+
419
+ ## 7.2.0-beta.1 - 2022-08-23
420
+ * [#1122](https://github.com/stripe/stripe-ruby/pull/1122) API Updates for beta branch
421
+ - Updated stable APIs to the latest version
422
+ - `Stripe-Version` beta headers are not pinned by-default and need to be manually specified, please refer to [beta SDKs README section](https://github.com/stripe/stripe-ruby/blob/master/README.md#beta-sdks)
197
423
 
198
424
  ## 7.1.0 - 2022-08-19
199
425
  * [#1116](https://github.com/stripe/stripe-ruby/pull/1116) API Updates
@@ -202,6 +428,16 @@ Breaking changes that arose during code generation of the library that we postpo
202
428
  * [#1117](https://github.com/stripe/stripe-ruby/pull/1117) Refresh rubocop config.
203
429
  * [#1115](https://github.com/stripe/stripe-ruby/pull/1115) Add a support section to the readme
204
430
 
431
+ ## 7.1.0-beta.2 - 2022-08-11
432
+ * [#1113](https://github.com/stripe/stripe-ruby/pull/1113) API Updates for beta branch
433
+ - Updated stable APIs to the latest version
434
+ - Add `refund_payment` method to Terminal resource
435
+
436
+ ## 7.1.0-beta.1 - 2022-08-03
437
+ * [#1107](https://github.com/stripe/stripe-ruby/pull/1107) API Updates for beta branch
438
+ - Updated stable APIs to the latest version
439
+ - Added the `Order` resource support
440
+
205
441
  ## 7.0.0 - 2022-08-02
206
442
 
207
443
  Breaking changes that arose during code generation of the library that we postponed for the next major version. For changes to the SDK, read more detailed description at https://github.com/stripe/stripe-ruby/wiki/Migration-guide-for-v7. For changes to the Stripe products, read more at https://stripe.com/docs/upgrades#2022-08-01.
@@ -213,21 +449,19 @@ Breaking changes that arose during code generation of the library that we postpo
213
449
  * [#1090](https://github.com/stripe/stripe-ruby/pull/1090) Use auto-generation for `Invoice` methods
214
450
  * [#1103](https://github.com/stripe/stripe-ruby/pull/1103) Next major release changes
215
451
 
216
- ### ⚠️ Changed
217
- * `retrieve_cash_balance` and `update_cash_balance` methods on `Customer` resource no longer requires the second argument to always be `nil`. The methods now now take in `customer_id`, `params`, and `opts` parameters.
218
- * Update default bundle of CA certificates to April 26, 2022.
219
-
220
- ### Deprecated
221
- * Deprecate `delete` method on `Subscription` resource. Please use `cancel` method instead.
222
-
223
- ### ⚠️ Removed
224
- * Remove `details` method from `Issuing.Card` resource. The method was not supported.
225
- * Remove `Issuing.CardDetails` resource. Read more at https://stripe.com/docs/issuing/cards/virtual.
226
- * Remove `create` method from `ReportType` resource. The method was not supported.
227
- * Remove `usage_record_summaries` method from `SubscriptionItem` resource. Please use `list_usage_record_summaries` method instead.
228
- * Remove `AlipayAccount`, `BitcoinReceiver`, `BitcoinTransaction`, `Issuing::CardDetails`, `Recipient`, ` RecipientTransfer`, and `ThreeDSecure` resources. The resources were deprecated or no longer in use.
229
- * Remove ability to list `Card` resource for a `Recipient`.
230
- * Remove `cancel` method from `Transfer` resource. The method was deprecated.
452
+ ## 6.6.0-beta.1 - 2022-07-22
453
+ * [#1100](https://github.com/stripe/stripe-ruby/pull/1100) API Updates for beta branch
454
+ - Updated stable APIs to the latest version
455
+ - Add `QuotePhase` resource
456
+ * [#1097](https://github.com/stripe/stripe-ruby/pull/1097) API Updates for beta branch
457
+ - Updated stable APIs to the latest version
458
+ - Add `SubscriptionSchedule.amend` method.
459
+ * [#1093](https://github.com/stripe/stripe-ruby/pull/1093) API Updates for beta branch
460
+ - Include `server_side_confirmation_beta=v1` beta
461
+ - Add `secretKeyConfirmation` to `PaymentIntent`
462
+ * [#1085](https://github.com/stripe/stripe-ruby/pull/1085) API Updates for beta branch
463
+ - Updated stable APIs to the latest version
464
+ * [#1075](https://github.com/stripe/stripe-ruby/pull/1075) Use the generated API version
231
465
 
232
466
  ## 6.5.0 - 2022-06-29
233
467
  * [#1084](https://github.com/stripe/stripe-ruby/pull/1084) API Updates
@@ -257,8 +491,6 @@ Breaking changes that arose during code generation of the library that we postpo
257
491
  * Add support for new resources `Treasury.CreditReversal`, `Treasury.DebitReversal`, `Treasury.FinancialAccountFeatures`, `Treasury.FinancialAccount`, `Treasury.FlowDetails`, `Treasury.InboundTransfer`, `Treasury.OutboundPayment`, `Treasury.OutboundTransfer`, `Treasury.ReceivedCredit`, `Treasury.ReceivedDebit`, `Treasury.TransactionEntry`, and `Treasury.Transaction`
258
492
  * Add support for `retrieve_payment_method` method on resource `Customer`
259
493
  * Add support for `list_owners` and `list` methods on resource `FinancialConnections.Account`
260
-
261
-
262
494
 
263
495
  ## 6.0.0 - 2022-05-09
264
496
  * [#1056](https://github.com/stripe/stripe-ruby/pull/1056) API Updates
@@ -274,7 +506,6 @@ Breaking changes that arose during code generation of the library that we postpo
274
506
  ## 5.55.0 - 2022-05-05
275
507
  * [#1055](https://github.com/stripe/stripe-ruby/pull/1055) API Updates
276
508
  * Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session`
277
-
278
509
 
279
510
  ## 5.54.0 - 2022-05-03
280
511
  * [#1053](https://github.com/stripe/stripe-ruby/pull/1053) API Updates
@@ -1305,3 +1536,4 @@ Identical to 1.56.0 above. I incorrectly cut a patch-level release.
1305
1536
  <!--
1306
1537
  # vim: set tw=0:
1307
1538
  -->
1539
+
data/OPENAPI_VERSION CHANGED
@@ -1 +1 @@
1
- v793
1
+ v808
data/README.md CHANGED
@@ -324,6 +324,17 @@ If your beta feature requires a `Stripe-Version` header to be sent, use the `Str
324
324
  Stripe.api_version += "; feature_beta=v3"
325
325
  ```
326
326
 
327
+ ### Custom requests
328
+
329
+ If you would like to send a request to an undocumented API (for example you are in a private beta), or if you prefer to bypass the method definitions in the library and specify your request details directly, you can use the `raw_request` method on `Stripe`.
330
+
331
+ ```ruby
332
+ resp = Stripe.raw_request(:post, "/v1/beta_endpoint", {param: 123}, {stripe_version: "2022-11-15; feature_beta=v3"})
333
+
334
+ # (Optional) resp is a StripeResponse. You can use `Stripe.deserialize` to get a StripeObject.
335
+ deserialized_resp = Stripe.deserialize(resp.http_body)
336
+ ```
337
+
327
338
  ## Support
328
339
 
329
340
  New features and bug fixes are released on the latest major version of the Stripe Ruby library. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 10.7.0
1
+ 10.8.0-beta.1
@@ -48,13 +48,14 @@ module Stripe
48
48
  api_key = headers.delete(:api_key)
49
49
  api_base = headers.delete(:api_base)
50
50
  client = headers.delete(:client)
51
+ api_mode = headers.delete(:api_mode)
51
52
  # Assume all remaining opts must be headers
52
53
 
53
54
  resp, opts[:api_key] = client.send(
54
55
  client_request_method_sym,
55
56
  method, url,
56
57
  api_base: api_base, api_key: api_key,
57
- headers: headers, params: params, usage: usage,
58
+ headers: headers, params: params, usage: usage, api_mode: api_mode,
58
59
  &read_body_chunk_block
59
60
  )
60
61
 
@@ -4,5 +4,6 @@
4
4
  module Stripe
5
5
  module ApiVersion
6
6
  CURRENT = "2023-10-16"
7
+ PREVIEW = "2023-12-11.preview-v2"
7
8
  end
8
9
  end
@@ -15,6 +15,7 @@ module Stripe
15
15
  File::OBJECT_NAME_ALT => File,
16
16
  Account::OBJECT_NAME => Account,
17
17
  AccountLink::OBJECT_NAME => AccountLink,
18
+ AccountNotice::OBJECT_NAME => AccountNotice,
18
19
  AccountSession::OBJECT_NAME => AccountSession,
19
20
  ApplePayDomain::OBJECT_NAME => ApplePayDomain,
20
21
  ApplicationFee::OBJECT_NAME => ApplicationFee,
@@ -26,6 +27,9 @@ module Stripe
26
27
  BillingPortal::Configuration::OBJECT_NAME => BillingPortal::Configuration,
27
28
  BillingPortal::Session::OBJECT_NAME => BillingPortal::Session,
28
29
  Capability::OBJECT_NAME => Capability,
30
+ Capital::FinancingOffer::OBJECT_NAME => Capital::FinancingOffer,
31
+ Capital::FinancingSummary::OBJECT_NAME => Capital::FinancingSummary,
32
+ Capital::FinancingTransaction::OBJECT_NAME => Capital::FinancingTransaction,
29
33
  Card::OBJECT_NAME => Card,
30
34
  CashBalance::OBJECT_NAME => CashBalance,
31
35
  Charge::OBJECT_NAME => Charge,
@@ -33,6 +37,7 @@ module Stripe
33
37
  Climate::Order::OBJECT_NAME => Climate::Order,
34
38
  Climate::Product::OBJECT_NAME => Climate::Product,
35
39
  Climate::Supplier::OBJECT_NAME => Climate::Supplier,
40
+ ConfirmationToken::OBJECT_NAME => ConfirmationToken,
36
41
  CountrySpec::OBJECT_NAME => CountrySpec,
37
42
  Coupon::OBJECT_NAME => Coupon,
38
43
  CreditNote::OBJECT_NAME => CreditNote,
@@ -40,35 +45,49 @@ module Stripe
40
45
  Customer::OBJECT_NAME => Customer,
41
46
  CustomerBalanceTransaction::OBJECT_NAME => CustomerBalanceTransaction,
42
47
  CustomerCashBalanceTransaction::OBJECT_NAME => CustomerCashBalanceTransaction,
48
+ CustomerEntitlement::OBJECT_NAME => CustomerEntitlement,
49
+ CustomerEntitlementSummary::OBJECT_NAME => CustomerEntitlementSummary,
43
50
  CustomerSession::OBJECT_NAME => CustomerSession,
44
51
  Discount::OBJECT_NAME => Discount,
45
52
  Dispute::OBJECT_NAME => Dispute,
53
+ Entitlements::Event::OBJECT_NAME => Entitlements::Event,
54
+ Entitlements::Feature::OBJECT_NAME => Entitlements::Feature,
46
55
  EphemeralKey::OBJECT_NAME => EphemeralKey,
47
56
  Event::OBJECT_NAME => Event,
48
57
  ExchangeRate::OBJECT_NAME => ExchangeRate,
49
58
  File::OBJECT_NAME => File,
50
59
  FileLink::OBJECT_NAME => FileLink,
51
60
  FinancialConnections::Account::OBJECT_NAME => FinancialConnections::Account,
61
+ FinancialConnections::AccountInferredBalance::OBJECT_NAME =>
62
+ FinancialConnections::AccountInferredBalance,
52
63
  FinancialConnections::AccountOwner::OBJECT_NAME => FinancialConnections::AccountOwner,
53
64
  FinancialConnections::AccountOwnership::OBJECT_NAME =>
54
65
  FinancialConnections::AccountOwnership,
55
66
  FinancialConnections::Session::OBJECT_NAME => FinancialConnections::Session,
56
67
  FinancialConnections::Transaction::OBJECT_NAME => FinancialConnections::Transaction,
57
68
  FundingInstructions::OBJECT_NAME => FundingInstructions,
69
+ GiftCards::Card::OBJECT_NAME => GiftCards::Card,
70
+ GiftCards::Transaction::OBJECT_NAME => GiftCards::Transaction,
58
71
  Identity::VerificationReport::OBJECT_NAME => Identity::VerificationReport,
59
72
  Identity::VerificationSession::OBJECT_NAME => Identity::VerificationSession,
60
73
  Invoice::OBJECT_NAME => Invoice,
61
74
  InvoiceItem::OBJECT_NAME => InvoiceItem,
62
75
  InvoiceLineItem::OBJECT_NAME => InvoiceLineItem,
76
+ InvoicePayment::OBJECT_NAME => InvoicePayment,
63
77
  Issuing::Authorization::OBJECT_NAME => Issuing::Authorization,
64
78
  Issuing::Card::OBJECT_NAME => Issuing::Card,
65
79
  Issuing::Cardholder::OBJECT_NAME => Issuing::Cardholder,
80
+ Issuing::CreditUnderwritingRecord::OBJECT_NAME => Issuing::CreditUnderwritingRecord,
66
81
  Issuing::Dispute::OBJECT_NAME => Issuing::Dispute,
82
+ Issuing::PersonalizationDesign::OBJECT_NAME => Issuing::PersonalizationDesign,
83
+ Issuing::PhysicalBundle::OBJECT_NAME => Issuing::PhysicalBundle,
67
84
  Issuing::Token::OBJECT_NAME => Issuing::Token,
68
85
  Issuing::Transaction::OBJECT_NAME => Issuing::Transaction,
69
86
  LineItem::OBJECT_NAME => LineItem,
70
87
  LoginLink::OBJECT_NAME => LoginLink,
71
88
  Mandate::OBJECT_NAME => Mandate,
89
+ Margin::OBJECT_NAME => Margin,
90
+ Order::OBJECT_NAME => Order,
72
91
  PaymentIntent::OBJECT_NAME => PaymentIntent,
73
92
  PaymentLink::OBJECT_NAME => PaymentLink,
74
93
  PaymentMethod::OBJECT_NAME => PaymentMethod,
@@ -81,6 +100,9 @@ module Stripe
81
100
  Product::OBJECT_NAME => Product,
82
101
  PromotionCode::OBJECT_NAME => PromotionCode,
83
102
  Quote::OBJECT_NAME => Quote,
103
+ QuotePhase::OBJECT_NAME => QuotePhase,
104
+ QuotePreviewInvoice::OBJECT_NAME => QuotePreviewInvoice,
105
+ QuotePreviewSubscriptionSchedule::OBJECT_NAME => QuotePreviewSubscriptionSchedule,
84
106
  Radar::EarlyFraudWarning::OBJECT_NAME => Radar::EarlyFraudWarning,
85
107
  Radar::ValueList::OBJECT_NAME => Radar::ValueList,
86
108
  Radar::ValueListItem::OBJECT_NAME => Radar::ValueListItem,
@@ -100,6 +122,7 @@ module Stripe
100
122
  SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule,
101
123
  Tax::Calculation::OBJECT_NAME => Tax::Calculation,
102
124
  Tax::CalculationLineItem::OBJECT_NAME => Tax::CalculationLineItem,
125
+ Tax::Form::OBJECT_NAME => Tax::Form,
103
126
  Tax::Registration::OBJECT_NAME => Tax::Registration,
104
127
  Tax::Settings::OBJECT_NAME => Tax::Settings,
105
128
  Tax::Transaction::OBJECT_NAME => Tax::Transaction,