File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
packages/compass-preferences-model/src Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,15 @@ export type NonUserPreferences = {
115115 password ?: string ;
116116} ;
117117
118+ export type AtlasProjectPreferences = {
119+ enableGenAIFeaturesAtlasProject : boolean ;
120+ enableGenAISampleDocumentPassingOnAtlasProject : boolean ;
121+ } ;
122+
123+ export type AtlasOrgPreferences = {
124+ enableGenAIFeaturesAtlasOrg : boolean ;
125+ } ;
126+
118127export type AllPreferences = UserPreferences &
119128 CliOnlyPreferences &
120129 NonUserPreferences &
@@ -213,15 +222,6 @@ export type StoredPreferencesValidator = ReturnType<
213222
214223export type StoredPreferences = z . output < StoredPreferencesValidator > ;
215224
216- export type AtlasProjectPreferences = {
217- enableGenAIFeaturesAtlasProject : boolean ;
218- enableGenAISampleDocumentPassingOnAtlasProject : boolean ;
219- } ;
220-
221- export type AtlasOrgPreferences = {
222- enableGenAIFeaturesAtlasOrg : boolean ;
223- } ;
224-
225225// Preference definitions
226226const featureFlagsProps : Required < {
227227 [ K in keyof FeatureFlags ] : PreferenceDefinition < K > ;
You can’t perform that action at this time.
0 commit comments