stripe 9.2.0 → 9.3.0.pre.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +204 -40
- data/OPENAPI_VERSION +1 -1
- data/README.md +11 -0
- data/VERSION +1 -1
- data/lib/stripe/api_operations/request.rb +2 -0
- data/lib/stripe/api_version.rb +1 -0
- data/lib/stripe/object_types.rb +17 -0
- data/lib/stripe/request_signing_authenticator.rb +83 -0
- data/lib/stripe/resources/capital/financing_offer.rb +32 -0
- data/lib/stripe/resources/capital/financing_summary.rb +12 -0
- data/lib/stripe/resources/capital/financing_transaction.rb +13 -0
- data/lib/stripe/resources/customer_session.rb +12 -0
- data/lib/stripe/resources/financial_connections/account.rb +39 -0
- data/lib/stripe/resources/financial_connections/inferred_balance.rb +13 -0
- data/lib/stripe/resources/financial_connections/transaction.rb +13 -0
- data/lib/stripe/resources/gift_cards/card.rb +25 -0
- data/lib/stripe/resources/gift_cards/transaction.rb +56 -0
- data/lib/stripe/resources/issuing/card_bundle.rb +13 -0
- data/lib/stripe/resources/issuing/card_design.rb +58 -0
- data/lib/stripe/resources/order.rb +89 -0
- data/lib/stripe/resources/payment_method_configuration.rb +13 -0
- data/lib/stripe/resources/quote.rb +100 -0
- data/lib/stripe/resources/quote_phase.rb +29 -0
- data/lib/stripe/resources/quote_preview_invoice.rb +42 -0
- data/lib/stripe/resources/quote_preview_schedule.rb +10 -0
- data/lib/stripe/resources/subscription_schedule.rb +18 -0
- data/lib/stripe/resources/tax/form.rb +39 -0
- data/lib/stripe/resources/tax/registration.rb +19 -0
- data/lib/stripe/resources/terminal/reader.rb +54 -0
- data/lib/stripe/resources.rb +17 -0
- data/lib/stripe/stripe_client.rb +60 -26
- data/lib/stripe/stripe_configuration.rb +2 -0
- data/lib/stripe/util.rb +8 -1
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +46 -0
- metadata +21 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9752761603256d405fad6cea0dbc96f8cf08d7704033f917a045f6fb301a8cf
|
4
|
+
data.tar.gz: 01cca74212d9d7cb3bba662707348b40632b0187387d8bcb2e6b77d2f3ea7efa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6dd1779363837f24176fb5e0e5c33403cbbfe02b7409f47d3a6d3450cde0d1caf1ed15bb873721c57e38e240ce836721420689bb65320a2a75bc4ab7422be5ce
|
7
|
+
data.tar.gz: ac2d58d95617a3d4a71405f94de41766c0a14b350db59db5633c4aa9ced5da42347984c1e81e9be1beaf79aace0de1f53146b2a962b67c01060a549dca1a392c
|
data/CHANGELOG.md
CHANGED
@@ -1,16 +1,37 @@
|
|
1
1
|
# Changelog
|
2
|
+
|
3
|
+
## 9.3.0-beta.1 - 2023-09-07
|
4
|
+
* [#1269](https://github.com/stripe/stripe-ruby/pull/1269) Update generated code for beta
|
5
|
+
* Release specs are identical.
|
6
|
+
* [#1268](https://github.com/stripe/stripe-ruby/pull/1268) Update generated code for beta
|
7
|
+
* Remove support for `submit_card` test helper method on resource `Issuing.Card`
|
8
|
+
* [#1265](https://github.com/stripe/stripe-ruby/pull/1265) Update generated code for beta
|
9
|
+
* Rename `Quote.preview_invoices` to `QuotePreviewInvoice.list` and `Quote.preview_schedules` to `QuotePreviewSchedules.list`
|
10
|
+
* [#1264](https://github.com/stripe/stripe-ruby/pull/1264) Update generated code for beta
|
11
|
+
* Add support for new resources `QuotePreviewInvoice` and `QuotePreviewSchedule`
|
12
|
+
* [#1259](https://github.com/stripe/stripe-ruby/pull/1259) Update generated code for beta
|
13
|
+
|
14
|
+
* [#1257](https://github.com/stripe/stripe-ruby/pull/1257) Update generated code for beta
|
15
|
+
|
16
|
+
* [#1254](https://github.com/stripe/stripe-ruby/pull/1254) Update generated code for beta
|
17
|
+
* Add support for `submit_card` test helper method on resource `Issuing.Card`
|
18
|
+
* [#1252](https://github.com/stripe/stripe-ruby/pull/1252) Remove developer_message support
|
19
|
+
|
2
20
|
## 9.2.0 - 2023-09-07
|
3
21
|
* [#1267](https://github.com/stripe/stripe-ruby/pull/1267) Update generated code
|
4
22
|
* Add support for new resource `PaymentMethodDomain`
|
5
23
|
* Add support for `create`, `list`, `retrieve`, `update`, and `validate` methods on resource `PaymentMethodDomain`
|
6
24
|
|
25
|
+
## 9.2.0-beta.1 - 2023-08-31
|
26
|
+
* [#1265](https://github.com/stripe/stripe-ruby/pull/1265) Update generated code for beta
|
27
|
+
* Rename `Quote.preview_invoices` to `QuotePreviewInvoice.list` and `Quote.preview_schedules` to `QuotePreviewSchedules.list`
|
28
|
+
|
7
29
|
## 9.1.0 - 2023-08-31
|
8
30
|
* [#1266](https://github.com/stripe/stripe-ruby/pull/1266) Update generated code
|
9
31
|
* Add support for new resource `AccountSession`
|
10
32
|
* Add support for `create` method on resource `AccountSession`
|
11
33
|
* [#1262](https://github.com/stripe/stripe-ruby/pull/1262) Explicitly format timestamp in SignatureVerificationError message
|
12
34
|
|
13
|
-
|
14
35
|
## 9.0.0 - 2023-08-16
|
15
36
|
**⚠️ ACTION REQUIRED: the breaking change in this release likely affects you ⚠️**
|
16
37
|
|
@@ -43,10 +64,39 @@
|
|
43
64
|
|
44
65
|
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.
|
45
66
|
|
67
|
+
## 9.0.0-beta.1 - 2023-08-24
|
68
|
+
* [#1264](https://github.com/stripe/stripe-ruby/pull/1264) Update generated code for beta
|
69
|
+
* Add support for new resources `QuotePreviewInvoice` and `QuotePreviewSchedule`
|
70
|
+
* [#1259](https://github.com/stripe/stripe-ruby/pull/1259) Update generated code for beta
|
71
|
+
|
72
|
+
## 8.8.0-beta.1 - 2023-08-10
|
73
|
+
* [#1257](https://github.com/stripe/stripe-ruby/pull/1257) Update generated code for beta
|
74
|
+
* Updated stable APIs to the latest version
|
75
|
+
|
46
76
|
## 8.7.0 - 2023-08-10
|
47
77
|
* [#1256](https://github.com/stripe/stripe-ruby/pull/1256) Update generated code
|
48
78
|
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.
|
49
79
|
|
80
|
+
## 8.7.0-beta.3 - 2023-08-03
|
81
|
+
* [#1254](https://github.com/stripe/stripe-ruby/pull/1254) Update generated code for beta
|
82
|
+
* Add support for `submit_card` test helper method on resource `Issuing.Card`
|
83
|
+
* [#1252](https://github.com/stripe/stripe-ruby/pull/1252) Remove developer_message support
|
84
|
+
|
85
|
+
## 8.7.0-beta.2 - 2023-07-28
|
86
|
+
* [#1251](https://github.com/stripe/stripe-ruby/pull/1251) Update generated code for beta
|
87
|
+
* Add support for new resource `Tax.Form`
|
88
|
+
* Add support for `list`, `pdf`, and `retrieve` methods on resource `Form`
|
89
|
+
* [#1249](https://github.com/stripe/stripe-ruby/pull/1249) Update generated code for beta
|
90
|
+
* [#1246](https://github.com/stripe/stripe-ruby/pull/1246) Update generated code for beta
|
91
|
+
|
92
|
+
## 8.7.0-beta.1 - 2023-07-13
|
93
|
+
* [#1245](https://github.com/stripe/stripe-ruby/pull/1245) Update generated code for beta
|
94
|
+
Release specs are identical.
|
95
|
+
* [#1243](https://github.com/stripe/stripe-ruby/pull/1243) Update generated code for beta
|
96
|
+
* Add support for new resource `PaymentMethodConfiguration`
|
97
|
+
* Add support for `create`, `list`, `retrieve`, and `update` methods on resource `PaymentMethodConfiguration`
|
98
|
+
* [#1239](https://github.com/stripe/stripe-ruby/pull/1239) Update generated code for beta
|
99
|
+
|
50
100
|
## 8.6.0 - 2023-07-13
|
51
101
|
* [#1244](https://github.com/stripe/stripe-ruby/pull/1244) Update generated code
|
52
102
|
* Add support for new resource `Tax.Settings`
|
@@ -75,6 +125,37 @@
|
|
75
125
|
|
76
126
|
* [#1204](https://github.com/stripe/stripe-ruby/pull/1204) Update generated code
|
77
127
|
|
128
|
+
## 8.6.0-beta.6 - 2023-06-22
|
129
|
+
* [#1237](https://github.com/stripe/stripe-ruby/pull/1237) Update generated code for beta
|
130
|
+
* Add support for new resource `CustomerSession`
|
131
|
+
* Add support for `create` method on resource `CustomerSession`
|
132
|
+
* [#1233](https://github.com/stripe/stripe-ruby/pull/1233) Update generated code for beta
|
133
|
+
* [#1229](https://github.com/stripe/stripe-ruby/pull/1229) Update generated code for beta
|
134
|
+
|
135
|
+
## 8.6.0-beta.5 - 2023-06-01
|
136
|
+
* [#1227](https://github.com/stripe/stripe-ruby/pull/1227) Update generated code for beta
|
137
|
+
* [#1228](https://github.com/stripe/stripe-ruby/pull/1228) Document raw_request
|
138
|
+
* [#1222](https://github.com/stripe/stripe-ruby/pull/1222) Update generated code for beta
|
139
|
+
* [#1224](https://github.com/stripe/stripe-ruby/pull/1224) Handle developer message in preview error responses
|
140
|
+
|
141
|
+
## 8.6.0-beta.4 - 2023-05-19
|
142
|
+
* [#1220](https://github.com/stripe/stripe-ruby/pull/1220) Update generated code for beta
|
143
|
+
* Add support for `subscribe` and `unsubscribe` methods on resource `FinancialConnections.Account`
|
144
|
+
* [#1217](https://github.com/stripe/stripe-ruby/pull/1217) Add raw_request
|
145
|
+
* [#1216](https://github.com/stripe/stripe-ruby/pull/1216) Update generated code for beta
|
146
|
+
* [#1214](https://github.com/stripe/stripe-ruby/pull/1214) Update generated code for beta
|
147
|
+
|
148
|
+
## 8.6.0-beta.3 - 2023-04-17
|
149
|
+
* [#1211](https://github.com/stripe/stripe-ruby/pull/1211) Update generated code for beta
|
150
|
+
* [#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
|
151
|
+
|
152
|
+
## 8.6.0-beta.2 - 2023-04-13
|
153
|
+
* [#1206](https://github.com/stripe/stripe-ruby/pull/1206) Update generated code for beta
|
154
|
+
* Add support for `collect_payment_method` and `confirm_payment_intent` methods on resource `Terminal.Reader`
|
155
|
+
* [#1205](https://github.com/stripe/stripe-ruby/pull/1205) Update generated code for beta
|
156
|
+
|
157
|
+
## 8.6.0-beta.1 - 2023-03-30
|
158
|
+
* [#1202](https://github.com/stripe/stripe-ruby/pull/1202) Update generated code for beta
|
78
159
|
|
79
160
|
## 8.5.0 - 2023-03-30
|
80
161
|
* [#1203](https://github.com/stripe/stripe-ruby/pull/1203) Update generated code
|
@@ -82,6 +163,11 @@
|
|
82
163
|
* 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.
|
83
164
|
* [#1201](https://github.com/stripe/stripe-ruby/pull/1201) Update save deprecation message
|
84
165
|
|
166
|
+
## 8.5.0-beta.1 - 2023-03-23
|
167
|
+
* [#1194](https://github.com/stripe/stripe-ruby/pull/1194) Update generated code for beta (new)
|
168
|
+
* Add support for new resources `Tax.CalculationLineItem` and `Tax.TransactionLineItem`
|
169
|
+
* Add support for `collect_inputs` method on resource `Terminal.Reader`
|
170
|
+
|
85
171
|
## 8.4.0 - 2023-03-23
|
86
172
|
* [#1197](https://github.com/stripe/stripe-ruby/pull/1197) Update generated code (new)
|
87
173
|
* Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction`
|
@@ -89,18 +175,91 @@
|
|
89
175
|
* Add support for `create_from_calculation`, `create_reversal`, `create`, `list_line_items`, and `retrieve` methods on resource `Transaction`
|
90
176
|
* [#1152](https://github.com/stripe/stripe-ruby/pull/1152) Symbolize hash keys inside `convert_to_stripe_object_with_params`
|
91
177
|
|
178
|
+
## 8.4.0-beta.4 - 2023-03-16
|
179
|
+
* [#1189](https://github.com/stripe/stripe-ruby/pull/1189) Update generated code for beta (new)
|
180
|
+
* Add support for `create_from_calculation` method on resource `Tax.Transaction`
|
181
|
+
* [#1188](https://github.com/stripe/stripe-ruby/pull/1188) Update generated code for beta (new)
|
182
|
+
* Remove support for resources `Capital.FinancingOffer` and `Capital.FinancingSummary`
|
183
|
+
* Remove support for `list`, `mark_delivered`, and `retrieve` methods on resource `FinancingOffer`
|
184
|
+
* Remove support for `retrieve` method on resource `FinancingSummary`
|
185
|
+
* [#1187](https://github.com/stripe/stripe-ruby/pull/1187) Merge upstream master
|
186
|
+
|
187
|
+
## 8.4.0-beta.3 - 2023-03-09
|
188
|
+
* [#1184](https://github.com/stripe/stripe-ruby/pull/1184) API Updates for beta branch
|
189
|
+
* Updated stable APIs to the latest version
|
190
|
+
* Remove support for `list_transactions` method on resource `Tax.Transaction`
|
191
|
+
|
192
|
+
## 8.4.0-beta.2 - 2023-03-03
|
193
|
+
* [#1183](https://github.com/stripe/stripe-ruby/pull/1183) API Updates for beta branch
|
194
|
+
* Updated stable APIs to the latest version
|
195
|
+
* Add support for new resources `Issuing.CardBundle` and `Issuing.CardDesign`
|
196
|
+
* Add support for `list` and `retrieve` methods on resource `CardBundle`
|
197
|
+
* Add support for `list`, `retrieve`, and `update` methods on resource `CardDesign`
|
198
|
+
|
199
|
+
## 8.4.0-beta.1 - 2023-02-23
|
200
|
+
* [#1182](https://github.com/stripe/stripe-ruby/pull/1182) API Updates for beta branch
|
201
|
+
* Updated stable APIs to the latest version
|
202
|
+
|
92
203
|
## 8.3.0 - 2023-02-16
|
93
204
|
* [#1175](https://github.com/stripe/stripe-ruby/pull/1175) API Updates
|
94
205
|
* Add support for `refund_payment` method on resource `Terminal.Reader`
|
95
206
|
|
207
|
+
## 8.3.0-beta.1 - 2023-02-02
|
208
|
+
* [#1174](https://github.com/stripe/stripe-ruby/pull/1174) API Updates for beta branch
|
209
|
+
* Updated stable APIs to the latest version
|
210
|
+
* Add support for new resource `FinancialConnections.Transaction`
|
211
|
+
* Add support for `list` method on resource `Transaction`
|
212
|
+
|
96
213
|
## 8.2.0 - 2023-02-02
|
97
214
|
* [#1173](https://github.com/stripe/stripe-ruby/pull/1173) API Updates
|
98
215
|
* Add support for `resume` method on resource `Subscription`
|
99
216
|
* [#1171](https://github.com/stripe/stripe-ruby/pull/1171) Remove unused `partial` param from `initialize_from`
|
100
217
|
|
218
|
+
## 8.2.0-beta.3 - 2023-01-26
|
219
|
+
* [#1172](https://github.com/stripe/stripe-ruby/pull/1172) API Updates for beta branch
|
220
|
+
* Updated stable APIs to the latest version
|
221
|
+
* Add support for `list_transactions` method on resource `Tax.Transaction`
|
222
|
+
|
223
|
+
## 8.2.0-beta.2 - 2023-01-19
|
224
|
+
* [#1170](https://github.com/stripe/stripe-ruby/pull/1170) API Updates for beta branch
|
225
|
+
* Updated stable APIs to the latest version
|
226
|
+
* Add support for `Tax.Settings` resource.
|
227
|
+
|
228
|
+
## 8.2.0-beta.1 - 2023-01-12
|
229
|
+
* [#1167](https://github.com/stripe/stripe-ruby/pull/1167) API Updates for beta branch
|
230
|
+
* Updated stable APIs to the latest version
|
231
|
+
* Change `quote.draft_quote` implementation to from calling `POST /v1/quotes/{quote}/draft` to `POST /v1/quotes/{quote}/mark_draft`
|
232
|
+
* Add support for `Tax::Register` resource
|
233
|
+
|
101
234
|
## 8.1.0 - 2023-01-12
|
102
235
|
* [#1162](https://github.com/stripe/stripe-ruby/pull/1162) Improve request events instrumentation
|
103
236
|
|
237
|
+
## 8.1.0-beta.4 - 2023-01-05
|
238
|
+
* [#1164](https://github.com/stripe/stripe-ruby/pull/1164) API Updates for beta branch
|
239
|
+
* Updated stable APIs to the latest version
|
240
|
+
* Add support for `mark_stale_quote` method on resource `Quote`
|
241
|
+
|
242
|
+
## 8.1.0-beta.3 - 2022-12-22
|
243
|
+
* [#1158](https://github.com/stripe/stripe-ruby/pull/1158) API Updates for beta branch
|
244
|
+
* Updated stable APIs to the latest version
|
245
|
+
* Move `TaxCalculation` and `TaxTransaction` to `Tax::Calculation` and `Tax::Transaction`.
|
246
|
+
|
247
|
+
## 8.1.0-beta.2 - 2022-12-15
|
248
|
+
* [#1156](https://github.com/stripe/stripe-ruby/pull/1156) API Updates for beta branch
|
249
|
+
* Updated stable APIs to the latest version
|
250
|
+
* Add support for new resources `TaxCalculation`, and `TaxTransaction`
|
251
|
+
* Add support for `create` and `list_line_items` methods on resource `TaxCalculation`
|
252
|
+
* Add support for `create_reversal`, `create`, and `retrieve` methods on resource `TaxTransaction`
|
253
|
+
* [#1155](https://github.com/stripe/stripe-ruby/pull/1155) API Updates for beta branch
|
254
|
+
* Updated stable APIs to the latest version
|
255
|
+
* Add support for new resource `QuoteLine`.
|
256
|
+
|
257
|
+
## 8.1.0-beta.1 - 2022-12-08
|
258
|
+
* [#1153](https://github.com/stripe/stripe-ruby/pull/1153) API Updates for beta branch
|
259
|
+
* Updated stable APIs to the latest version
|
260
|
+
* [#1146](https://github.com/stripe/stripe-ruby/pull/1146) API Updates for beta branch
|
261
|
+
* Updated stable APIs to the latest version
|
262
|
+
|
104
263
|
## 8.0.0 - 2022-11-16
|
105
264
|
* [#1144](https://github.com/stripe/stripe-ruby/pull/1144) Next major release changes
|
106
265
|
|
@@ -108,30 +267,29 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
108
267
|
|
109
268
|
"⚠️" symbol highlights breaking changes.
|
110
269
|
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
refund.description = "Refund description"
|
117
|
-
refund.save
|
118
|
-
|
119
|
-
# after
|
120
|
-
Stripe::Refund.update("re_123", description: "Refund description")
|
121
|
-
```
|
270
|
+
## 7.2.0-beta.5 - 2022-11-02
|
271
|
+
* [#1139](https://github.com/stripe/stripe-ruby/pull/1139) API Updates for beta branch
|
272
|
+
* Updated beta APIs to the latest stable version
|
273
|
+
* [#1135](https://github.com/stripe/stripe-ruby/pull/1135) API Updates for beta branch
|
274
|
+
* Updated stable APIs to the latest version
|
122
275
|
|
123
|
-
|
124
|
-
-
|
125
|
-
- Removed deprecated `Orders` resource.
|
126
|
-
- Removed deprecated `delete` method on `Subscription` resource. Please use `cancel` method instead.
|
127
|
-
```ruby
|
128
|
-
# before
|
129
|
-
Stripe::Subscription::delete("sub_12345")
|
276
|
+
## 7.2.0-beta.4 - 2022-10-07
|
277
|
+
* [#999](https://github.com/stripe/stripe-ruby/pull/999) DESCRIBE CHANGES HERE (try to use the same style, tense, etc. as the other entries)
|
130
278
|
|
131
|
-
|
132
|
-
|
133
|
-
|
279
|
+
## 7.2.0-beta.3 - 2022-09-26
|
280
|
+
* [#1129](https://github.com/stripe/stripe-ruby/pull/1129) API Updates for beta branch
|
281
|
+
* Updated stable APIs to the latest version
|
282
|
+
* Add `FinancingOffer`, `FinancingSummary` and `FinancingTransaction` resources.
|
134
283
|
|
284
|
+
## 7.2.0-beta.2 - 2022-08-26
|
285
|
+
* [#1127](https://github.com/stripe/stripe-ruby/pull/1127) API Updates for beta branch
|
286
|
+
* Updated stable APIs to the latest version
|
287
|
+
* Add support for the beta [Gift Card API](https://stripe.com/docs/gift-cards).
|
288
|
+
|
289
|
+
## 7.2.0-beta.1 - 2022-08-23
|
290
|
+
* [#1122](https://github.com/stripe/stripe-ruby/pull/1122) API Updates for beta branch
|
291
|
+
- Updated stable APIs to the latest version
|
292
|
+
- `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)
|
135
293
|
|
136
294
|
## 7.1.0 - 2022-08-19
|
137
295
|
* [#1116](https://github.com/stripe/stripe-ruby/pull/1116) API Updates
|
@@ -140,6 +298,16 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
140
298
|
* [#1117](https://github.com/stripe/stripe-ruby/pull/1117) Refresh rubocop config.
|
141
299
|
* [#1115](https://github.com/stripe/stripe-ruby/pull/1115) Add a support section to the readme
|
142
300
|
|
301
|
+
## 7.1.0-beta.2 - 2022-08-11
|
302
|
+
* [#1113](https://github.com/stripe/stripe-ruby/pull/1113) API Updates for beta branch
|
303
|
+
- Updated stable APIs to the latest version
|
304
|
+
- Add `refund_payment` method to Terminal resource
|
305
|
+
|
306
|
+
## 7.1.0-beta.1 - 2022-08-03
|
307
|
+
* [#1107](https://github.com/stripe/stripe-ruby/pull/1107) API Updates for beta branch
|
308
|
+
- Updated stable APIs to the latest version
|
309
|
+
- Added the `Order` resource support
|
310
|
+
|
143
311
|
## 7.0.0 - 2022-08-02
|
144
312
|
|
145
313
|
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.
|
@@ -151,21 +319,19 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
151
319
|
* [#1090](https://github.com/stripe/stripe-ruby/pull/1090) Use auto-generation for `Invoice` methods
|
152
320
|
* [#1103](https://github.com/stripe/stripe-ruby/pull/1103) Next major release changes
|
153
321
|
|
154
|
-
|
155
|
-
*
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
*
|
165
|
-
|
166
|
-
*
|
167
|
-
* Remove ability to list `Card` resource for a `Recipient`.
|
168
|
-
* Remove `cancel` method from `Transfer` resource. The method was deprecated.
|
322
|
+
## 6.6.0-beta.1 - 2022-07-22
|
323
|
+
* [#1100](https://github.com/stripe/stripe-ruby/pull/1100) API Updates for beta branch
|
324
|
+
- Updated stable APIs to the latest version
|
325
|
+
- Add `QuotePhase` resource
|
326
|
+
* [#1097](https://github.com/stripe/stripe-ruby/pull/1097) API Updates for beta branch
|
327
|
+
- Updated stable APIs to the latest version
|
328
|
+
- Add `SubscriptionSchedule.amend` method.
|
329
|
+
* [#1093](https://github.com/stripe/stripe-ruby/pull/1093) API Updates for beta branch
|
330
|
+
- Include `server_side_confirmation_beta=v1` beta
|
331
|
+
- Add `secretKeyConfirmation` to `PaymentIntent`
|
332
|
+
* [#1085](https://github.com/stripe/stripe-ruby/pull/1085) API Updates for beta branch
|
333
|
+
- Updated stable APIs to the latest version
|
334
|
+
* [#1075](https://github.com/stripe/stripe-ruby/pull/1075) Use the generated API version
|
169
335
|
|
170
336
|
## 6.5.0 - 2022-06-29
|
171
337
|
* [#1084](https://github.com/stripe/stripe-ruby/pull/1084) API Updates
|
@@ -195,8 +361,6 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
195
361
|
* 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`
|
196
362
|
* Add support for `retrieve_payment_method` method on resource `Customer`
|
197
363
|
* Add support for `list_owners` and `list` methods on resource `FinancialConnections.Account`
|
198
|
-
|
199
|
-
|
200
364
|
|
201
365
|
## 6.0.0 - 2022-05-09
|
202
366
|
* [#1056](https://github.com/stripe/stripe-ruby/pull/1056) API Updates
|
@@ -212,7 +376,6 @@ Breaking changes that arose during code generation of the library that we postpo
|
|
212
376
|
## 5.55.0 - 2022-05-05
|
213
377
|
* [#1055](https://github.com/stripe/stripe-ruby/pull/1055) API Updates
|
214
378
|
* Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session`
|
215
|
-
|
216
379
|
|
217
380
|
## 5.54.0 - 2022-05-03
|
218
381
|
* [#1053](https://github.com/stripe/stripe-ruby/pull/1053) API Updates
|
@@ -1243,3 +1406,4 @@ Identical to 1.56.0 above. I incorrectly cut a patch-level release.
|
|
1243
1406
|
<!--
|
1244
1407
|
# vim: set tw=0:
|
1245
1408
|
-->
|
1409
|
+
|
data/OPENAPI_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
v515
|
data/README.md
CHANGED
@@ -323,6 +323,17 @@ If your beta feature requires a `Stripe-Version` header to be sent, use the `Str
|
|
323
323
|
Stripe.api_version += "; feature_beta=v3"
|
324
324
|
```
|
325
325
|
|
326
|
+
### Custom requests
|
327
|
+
|
328
|
+
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`.
|
329
|
+
|
330
|
+
```ruby
|
331
|
+
resp = Stripe.raw_request(:post, "/v1/beta_endpoint", {param: 123}, {stripe_version: "2022-11-15; feature_beta=v3"})
|
332
|
+
|
333
|
+
# (Optional) resp is a StripeResponse. You can use `Stripe.deserialize` to get a StripeObject.
|
334
|
+
deserialized_resp = Stripe.deserialize(resp.http_body)
|
335
|
+
```
|
336
|
+
|
326
337
|
## Support
|
327
338
|
|
328
339
|
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
|
-
9.
|
1
|
+
9.3.0-beta.1
|
@@ -47,6 +47,7 @@ module Stripe
|
|
47
47
|
api_key = headers.delete(:api_key)
|
48
48
|
api_base = headers.delete(:api_base)
|
49
49
|
client = headers.delete(:client)
|
50
|
+
api_mode = headers.delete(:api_mode)
|
50
51
|
# Assume all remaining opts must be headers
|
51
52
|
|
52
53
|
resp, opts[:api_key] = client.send(
|
@@ -54,6 +55,7 @@ module Stripe
|
|
54
55
|
method, url,
|
55
56
|
api_base: api_base, api_key: api_key,
|
56
57
|
headers: headers, params: params,
|
58
|
+
api_mode: api_mode,
|
57
59
|
&read_body_chunk_block
|
58
60
|
)
|
59
61
|
|
data/lib/stripe/api_version.rb
CHANGED
data/lib/stripe/object_types.rb
CHANGED
@@ -25,6 +25,9 @@ module Stripe
|
|
25
25
|
BillingPortal::Configuration::OBJECT_NAME => BillingPortal::Configuration,
|
26
26
|
BillingPortal::Session::OBJECT_NAME => BillingPortal::Session,
|
27
27
|
Capability::OBJECT_NAME => Capability,
|
28
|
+
Capital::FinancingOffer::OBJECT_NAME => Capital::FinancingOffer,
|
29
|
+
Capital::FinancingSummary::OBJECT_NAME => Capital::FinancingSummary,
|
30
|
+
Capital::FinancingTransaction::OBJECT_NAME => Capital::FinancingTransaction,
|
28
31
|
Card::OBJECT_NAME => Card,
|
29
32
|
CashBalance::OBJECT_NAME => CashBalance,
|
30
33
|
Charge::OBJECT_NAME => Charge,
|
@@ -36,6 +39,7 @@ module Stripe
|
|
36
39
|
Customer::OBJECT_NAME => Customer,
|
37
40
|
CustomerBalanceTransaction::OBJECT_NAME => CustomerBalanceTransaction,
|
38
41
|
CustomerCashBalanceTransaction::OBJECT_NAME => CustomerCashBalanceTransaction,
|
42
|
+
CustomerSession::OBJECT_NAME => CustomerSession,
|
39
43
|
Discount::OBJECT_NAME => Discount,
|
40
44
|
Dispute::OBJECT_NAME => Dispute,
|
41
45
|
EphemeralKey::OBJECT_NAME => EphemeralKey,
|
@@ -48,8 +52,12 @@ module Stripe
|
|
48
52
|
FinancialConnections::AccountOwner::OBJECT_NAME => FinancialConnections::AccountOwner,
|
49
53
|
FinancialConnections::AccountOwnership::OBJECT_NAME =>
|
50
54
|
FinancialConnections::AccountOwnership,
|
55
|
+
FinancialConnections::InferredBalance::OBJECT_NAME => FinancialConnections::InferredBalance,
|
51
56
|
FinancialConnections::Session::OBJECT_NAME => FinancialConnections::Session,
|
57
|
+
FinancialConnections::Transaction::OBJECT_NAME => FinancialConnections::Transaction,
|
52
58
|
FundingInstructions::OBJECT_NAME => FundingInstructions,
|
59
|
+
GiftCards::Card::OBJECT_NAME => GiftCards::Card,
|
60
|
+
GiftCards::Transaction::OBJECT_NAME => GiftCards::Transaction,
|
53
61
|
Identity::VerificationReport::OBJECT_NAME => Identity::VerificationReport,
|
54
62
|
Identity::VerificationSession::OBJECT_NAME => Identity::VerificationSession,
|
55
63
|
Invoice::OBJECT_NAME => Invoice,
|
@@ -57,15 +65,19 @@ module Stripe
|
|
57
65
|
InvoiceLineItem::OBJECT_NAME => InvoiceLineItem,
|
58
66
|
Issuing::Authorization::OBJECT_NAME => Issuing::Authorization,
|
59
67
|
Issuing::Card::OBJECT_NAME => Issuing::Card,
|
68
|
+
Issuing::CardBundle::OBJECT_NAME => Issuing::CardBundle,
|
69
|
+
Issuing::CardDesign::OBJECT_NAME => Issuing::CardDesign,
|
60
70
|
Issuing::Cardholder::OBJECT_NAME => Issuing::Cardholder,
|
61
71
|
Issuing::Dispute::OBJECT_NAME => Issuing::Dispute,
|
62
72
|
Issuing::Transaction::OBJECT_NAME => Issuing::Transaction,
|
63
73
|
LineItem::OBJECT_NAME => LineItem,
|
64
74
|
LoginLink::OBJECT_NAME => LoginLink,
|
65
75
|
Mandate::OBJECT_NAME => Mandate,
|
76
|
+
Order::OBJECT_NAME => Order,
|
66
77
|
PaymentIntent::OBJECT_NAME => PaymentIntent,
|
67
78
|
PaymentLink::OBJECT_NAME => PaymentLink,
|
68
79
|
PaymentMethod::OBJECT_NAME => PaymentMethod,
|
80
|
+
PaymentMethodConfiguration::OBJECT_NAME => PaymentMethodConfiguration,
|
69
81
|
PaymentMethodDomain::OBJECT_NAME => PaymentMethodDomain,
|
70
82
|
Payout::OBJECT_NAME => Payout,
|
71
83
|
Person::OBJECT_NAME => Person,
|
@@ -74,6 +86,9 @@ module Stripe
|
|
74
86
|
Product::OBJECT_NAME => Product,
|
75
87
|
PromotionCode::OBJECT_NAME => PromotionCode,
|
76
88
|
Quote::OBJECT_NAME => Quote,
|
89
|
+
QuotePhase::OBJECT_NAME => QuotePhase,
|
90
|
+
QuotePreviewInvoice::OBJECT_NAME => QuotePreviewInvoice,
|
91
|
+
QuotePreviewSchedule::OBJECT_NAME => QuotePreviewSchedule,
|
77
92
|
Radar::EarlyFraudWarning::OBJECT_NAME => Radar::EarlyFraudWarning,
|
78
93
|
Radar::ValueList::OBJECT_NAME => Radar::ValueList,
|
79
94
|
Radar::ValueListItem::OBJECT_NAME => Radar::ValueListItem,
|
@@ -93,6 +108,8 @@ module Stripe
|
|
93
108
|
SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule,
|
94
109
|
Tax::Calculation::OBJECT_NAME => Tax::Calculation,
|
95
110
|
Tax::CalculationLineItem::OBJECT_NAME => Tax::CalculationLineItem,
|
111
|
+
Tax::Form::OBJECT_NAME => Tax::Form,
|
112
|
+
Tax::Registration::OBJECT_NAME => Tax::Registration,
|
96
113
|
Tax::Settings::OBJECT_NAME => Tax::Settings,
|
97
114
|
Tax::Transaction::OBJECT_NAME => Tax::Transaction,
|
98
115
|
Tax::TransactionLineItem::OBJECT_NAME => Tax::TransactionLineItem,
|
@@ -0,0 +1,83 @@
|
|
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
|
@@ -0,0 +1,32 @@
|
|
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
|
@@ -0,0 +1,12 @@
|
|
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
|
@@ -0,0 +1,13 @@
|
|
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
|
@@ -0,0 +1,12 @@
|
|
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
|