From 948f3ce729407c7b3fe921addea32122bb16c0ce Mon Sep 17 00:00:00 2001 From: Adam Roberts <3422185+abenrob@users.noreply.github.com> Date: Tue, 4 Sep 2018 15:51:51 +0200 Subject: [PATCH] listTransactions additional aguments Include additional optional arguments to listTransactions. [limit](https://stripe.com/docs/api#balance_history-limit) and [payout](https://stripe.com/docs/api#balance_history-payout). --- types/stripe/index.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/types/stripe/index.d.ts b/types/stripe/index.d.ts index 06b7fbbb70..16cf53fbd7 100644 --- a/types/stripe/index.d.ts +++ b/types/stripe/index.d.ts @@ -716,6 +716,16 @@ declare namespace Stripe { * or "transfer_failure" */ type?: string; + + /** + * For automatic Stripe payouts only, only returns transactions that were payed out on the specified payout ID. + */ + payout?: string; + + /** + * A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. + */ + limit?: number; } }