Skip to content

Commit

Permalink
prefProps for atlas org and atlas proj prefs
Browse files Browse the repository at this point in the history
  • Loading branch information
ruchitharajaghatta committed Nov 1, 2024
1 parent b4dbf9e commit d685195
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/compass-preferences-model/src/preferences-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1033,10 +1033,10 @@ const nonUserPreferences: Required<{
};

const atlasProjectPreferencesProps: Required<{
[K in keyof NonUserPreferences]: PreferenceDefinition<K>;
[K in keyof AtlasProjectPreferences]: PreferenceDefinition<K>;
}> = {
enableGenAIFeaturesAtlasProject: {
ui: true,
ui: false,
cli: true,
global: true,
description: {
Expand All @@ -1046,7 +1046,7 @@ const atlasProjectPreferencesProps: Required<{
type: 'boolean',
},
enableGenAISampleDocumentPassingOnAtlasProject: {
ui: true,
ui: false,
cli: true,
global: true,
description: {
Expand All @@ -1058,10 +1058,10 @@ const atlasProjectPreferencesProps: Required<{
};

const atlasOrgPreferencesProps: Required<{
[K in keyof NonUserPreferences]: PreferenceDefinition<K>;
[K in keyof AtlasOrgPreferences]: PreferenceDefinition<K>;
}> = {
enableGenAIFeaturesAtlasOrg: {
ui: true,
ui: false,
cli: true,
global: true,
description: {
Expand Down

0 comments on commit d685195

Please sign in to comment.