From 4c7fd2d5b2b0dd16039b985b42677097596cb3ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20Beregsz=C3=A1szi?= Date: Fri, 8 Aug 2025 16:59:41 +0200 Subject: [PATCH] [DEV-21287] Add `can_self_activate` property to `PlanReference` type --- src/types/Plan.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/Plan.ts b/src/types/Plan.ts index 544c1111..1bc3f492 100644 --- a/src/types/Plan.ts +++ b/src/types/Plan.ts @@ -15,6 +15,7 @@ export interface PlanReference { is_superior: boolean; is_trial: boolean; can_upgrade: boolean; + can_self_activate: boolean; pricing_table_id: TableId | null; pricing_table_option_id: OptionId | null; }