From 187caaea1dc2fca6e7f78bb4bb54ce0eff1929d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Acu=C3=B1a?= Date: Fri, 15 Mar 2019 14:52:40 -0300 Subject: [PATCH] stripe: Add type option to IProductListOptions (#33900) * stripe: Add type option to IProductListOptions https://stripe.com/docs/api/service_products/list?lang=node#list_service_products-type * Add created property --- types/stripe/index.d.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/types/stripe/index.d.ts b/types/stripe/index.d.ts index f86b4bb348..3a71b3d03a 100644 --- a/types/stripe/index.d.ts +++ b/types/stripe/index.d.ts @@ -3901,6 +3901,17 @@ declare namespace Stripe { * Only return products with the given url */ url?: string; + + /** + * Only return products of this type + */ + type?: string; + + /** + * A filter on the list based on the object created field. The value can be a string with an integer Unix timestamp, + * or it can be a dictionary with the following options: + */ + created?: IDateFilter; } /**