From dd6a1a37507f00a830f174b1bd285cf9d9b5f1a5 Mon Sep 17 00:00:00 2001 From: Camden Phalen Date: Thu, 5 Sep 2024 15:49:40 -0400 Subject: [PATCH] fix EnabledFeaturesResponse type --- types/Accounts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/Accounts.ts b/types/Accounts.ts index 0bcb130..948c8a7 100644 --- a/types/Accounts.ts +++ b/types/Accounts.ts @@ -141,7 +141,7 @@ export type AccessTokenResponse = { }; export type EnabledFeaturesResponse = { - enabledFeatures?: { [key: string]: number }; + enabledFeatures: { [key: string]: boolean }; }; export type UpdateAccountConfigOptions =