From 1a5e5d90e91239b27976feb4d1c2967d5a7216fc Mon Sep 17 00:00:00 2001 From: Henry Chen <1474479+chenhunghan@users.noreply.github.com> Date: Thu, 7 Nov 2024 14:26:38 +0200 Subject: [PATCH] feat: add business subscription autoRenew field (#559) Signed-off-by: Hung-Han (Henry) Chen --- src/BusinessService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BusinessService.ts b/src/BusinessService.ts index 25fb516e..3fbdf19c 100644 --- a/src/BusinessService.ts +++ b/src/BusinessService.ts @@ -299,7 +299,7 @@ export type BusinessSubscription = { }; unitAmount: number | null; - + autoRenew?: boolean | null; customFields?: SubscriptionCustomField[]; };