add MiUserProfile.defaultCWPriority property and API

This commit is contained in:
Hazelnoot 2025-02-01 23:15:02 -05:00
parent 74407bc8ee
commit c8f8a61a00
7 changed files with 45 additions and 3 deletions

View file

@ -756,6 +756,11 @@ export const packedMeDetailedOnlySchema = {
type: 'string',
nullable: true, optional: false,
},
defaultCWPriority: {
type: 'string',
enum: ['default', 'parent', 'defaultParent', 'parentDefault'],
nullable: false, optional: false,
},
},
} as const;