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; } }