From 5220c24c7ab57fd0f4e94265ffbf6476a307933d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1=C4=8Fa=20Durch=C3=A1nek?= Date: Tue, 10 Sep 2019 05:23:16 +0200 Subject: [PATCH] @types/stripe Update start dates for ISubscription (#38195) * @types/stripe start_date for ISubscription * @types/stripe Updating the version number --- types/stripe/index.d.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/types/stripe/index.d.ts b/types/stripe/index.d.ts index 6454b24b69..cb990c28be 100644 --- a/types/stripe/index.d.ts +++ b/types/stripe/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for stripe 6.31 +// Type definitions for stripe 6.32 // Project: https://github.com/stripe/stripe-node/ // Definitions by: William Johnston // Peter Harris @@ -7690,10 +7690,16 @@ declare namespace Stripe { quantity?: number; /** - * Date the subscription started + * Date of the last substantial change to this subscription. For example, a change to the items array, + * or a change of status, will reset this timestamp. */ start: number; + /** + * Date when the subscription was first created. The date might differ from the created date due to backdating. + */ + start_date: number; + /** * Possible values are `incomplete`, `incomplete_expired`, `trialing`, `active`, * `past_due`, `canceled`, or `unpaid`.