Merge pull request #15845 from Budibase/feat/pwa-feature

Add PWA feature to types
This commit is contained in:
Peter Clement 2025-03-31 12:49:56 +01:00 committed by GitHub
commit e660c1eeef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

@ -1 +1 @@
Subproject commit 538deccd0000090447d6cfe7f9716b16fdfefcc2
Subproject commit 40c36f86584568d31abd6dd5b6b00dd3a458093f

View File

@ -19,6 +19,7 @@ export enum Feature {
VIEW_READONLY_COLUMNS = "viewReadonlyColumns",
BUDIBASE_AI = "budibaseAI",
AI_CUSTOM_CONFIGS = "aiCustomConfigs",
PWA = "pwa",
}
export type PlanFeatures = { [key in PlanType]: Feature[] | undefined }