stripe 8.196.0 → 8.197.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 8.197.0 - 2022-01-13
4
+ * [#1329](https://github.com/stripe/stripe-node/pull/1329) API Updates
5
+ * Add support for `paid_out_of_band` on `Invoice`
6
+
3
7
  ## 8.196.0 - 2022-01-12
4
8
  * [#1328](https://github.com/stripe/stripe-node/pull/1328) API Updates
5
9
  * Add support for `customer_creation` on `CheckoutSessionCreateParams` and `Checkout.Session`
package/VERSION CHANGED
@@ -1 +1 @@
1
- 8.196.0
1
+ 8.197.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stripe",
3
- "version": "8.196.0",
3
+ "version": "8.197.0",
4
4
  "description": "Stripe API wrapper",
5
5
  "keywords": [
6
6
  "stripe",
@@ -239,6 +239,11 @@ declare module 'stripe' {
239
239
  */
240
240
  paid: boolean;
241
241
 
242
+ /**
243
+ * Returns true if the invoice was manually marked paid, returns false if the invoice hasn't been paid yet or was paid on Stripe.
244
+ */
245
+ paid_out_of_band: boolean;
246
+
242
247
  /**
243
248
  * The PaymentIntent associated with this invoice. The PaymentIntent is generated when the invoice is finalized, and can then be used to pay the invoice. Note that voiding an invoice will cancel the PaymentIntent.
244
249
  */
@@ -1213,7 +1213,7 @@ declare module 'stripe' {
1213
1213
  type: PaymentMethodListParams.Type;
1214
1214
 
1215
1215
  /**
1216
- * The ID of the customer whose PaymentMethods will be retrieved.
1216
+ * The ID of the customer whose PaymentMethods will be retrieved. If not provided, the response list will be empty.
1217
1217
  */
1218
1218
  customer?: string;
1219
1219