@@ -3037,6 +3037,12 @@ export interface Application extends DirectoryObject {
30373037 */
30383038 createdDateTime?: NullableOption<string>;
30393039 description?: NullableOption<string>;
3040+ /**
3041+ * Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value),
3042+ * NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious
3043+ * activity, or a violation of the Microsoft Services Agreement).
3044+ */
3045+ disabledByMicrosoftStatus?: NullableOption<string>;
30403046 // The display name for the application.
30413047 displayName?: NullableOption<string>;
30423048 /**
@@ -3168,6 +3174,12 @@ export interface ServicePrincipal extends DirectoryObject {
31683174 * MyApps will display the application description in this field. The maximum allowed size is 1024 characters.
31693175 */
31703176 description?: NullableOption<string>;
3177+ /**
3178+ * Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value),
3179+ * NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious
3180+ * activity, or a violation of the Microsoft Services Agreement).
3181+ */
3182+ disabledByMicrosoftStatus?: NullableOption<string>;
31713183 // The display name for the service principal.
31723184 displayName?: NullableOption<string>;
31733185 // Home page or landing page of the application.
@@ -11271,7 +11283,7 @@ export interface ChatMessage extends Entity {
1127111283 summary?: NullableOption<string>;
1127211284 // Read-only. Link to the message in Microsoft Teams.
1127311285 webUrl?: NullableOption<string>;
11274- // Content in a message hosted by Microsoft Teams e.g. , images, code snippets etc .
11286+ // Content in a message hosted by Microsoft Teams - for example , images or code snippets.
1127511287 hostedContents?: NullableOption<ChatMessageHostedContent[]>;
1127611288 // Replies for a specified message.
1127711289 replies?: NullableOption<ChatMessage[]>;
@@ -11397,8 +11409,8 @@ export interface WorkforceIntegration extends ChangeTrackedEntity {
1139711409 /**
1139811410 * This property will replace supports in v1.0. We recommend that you use this property instead of supports. The supports
1139911411 * property will still be supported in beta for the time being. Possible values are none, shift, swapRequest, openshift,
11400- * openShiftRequest, userShiftPreferences. If selecting more than one value, all values must start with the first letter
11401- * in uppercase.
11412+ * openShiftRequest, userShiftPreferences, offerShiftRequest, timeCard, timeOffReason, timeOff, timeOffRequest and
11413+ * unknownFutureValue. If selecting more than one value, all values must start with the first letter in uppercase.
1140211414 */
1140311415 supportedEntities?: NullableOption<WorkforceIntegrationSupportedEntities>;
1140411416 // Workforce Integration URL for callbacks from the Shifts service.
0 commit comments