1- // Type definitions for non-npm package microsoft-graph 1.15
21// Project: https://github.com/microsoftgraph/msgraph-typescript-typings
32// Definitions by: Microsoft Graph Team <https://github.com/microsoftgraph>
43// Michael Mainer <https://github.com/MIchaelMainer>
@@ -2511,6 +2510,7 @@ export interface Application extends DirectoryObject {
25112510 identifierUris?: string[];
25122511 // The date and time the application was registered. Read-only.
25132512 createdDateTime?: NullableOption<string>;
2513+ description?: NullableOption<string>;
25142514 // Specifies settings for installed clients such as desktop or mobile devices.
25152515 publicClient?: NullableOption<PublicClientApplication>;
25162516 // The display name for the application.
@@ -2533,6 +2533,7 @@ export interface Application extends DirectoryObject {
25332533 keyCredentials?: KeyCredential[];
25342534 // The main logo for the application. Not nullable.
25352535 logo?: any;
2536+ notes?: NullableOption<string>;
25362537 oauth2RequirePostResponse?: boolean;
25372538 /**
25382539 * Application developers can configure optional claims in their Azure AD apps to specify which claims they want in tokens
@@ -3289,6 +3290,7 @@ export interface ServicePrincipal extends DirectoryObject {
32893290 alternativeNames?: string[];
32903291 // The display name exposed by the associated application.
32913292 appDisplayName?: NullableOption<string>;
3293+ appDescription?: NullableOption<string>;
32923294 // The unique identifier for the associated application (its appId property).
32933295 appId?: NullableOption<string>;
32943296 // Unique identifier of the applicationTemplate that the servicePrincipal was created from. Read-only.
@@ -3308,6 +3310,7 @@ export interface ServicePrincipal extends DirectoryObject {
33083310 * property definition on the application entity. Not nullable.
33093311 */
33103312 appRoles?: AppRole[];
3313+ description?: NullableOption<string>;
33113314 // The display name for the service principal.
33123315 displayName?: NullableOption<string>;
33133316 // Home page or landing page of the application.
@@ -3332,6 +3335,7 @@ export interface ServicePrincipal extends DirectoryObject {
33323335 * front-channel, back-channel or SAML logout protocols.
33333336 */
33343337 logoutUrl?: NullableOption<string>;
3338+ notes?: NullableOption<string>;
33353339 /**
33363340 * Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the
33373341 * expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery
@@ -9447,13 +9451,13 @@ export interface TeamsApp extends Entity {
94479451 externalId?: NullableOption<string>;
94489452 // The name of the catalog app provided by the app developer in the Microsoft Teams zip app package.
94499453 displayName?: NullableOption<string>;
9450- // The method of distribution for the app.
9454+ // The method of distribution for the app. Read-only.
94519455 distributionMethod?: NullableOption<TeamsAppDistributionMethod>;
94529456 // The details for each version of the app.
94539457 appDefinitions?: NullableOption<TeamsAppDefinition[]>;
94549458}
94559459export interface TeamsAppDefinition extends Entity {
9456- // The id from the Teams App manifest.
9460+ // The ID from the Teams app manifest.
94579461 teamsAppId?: NullableOption<string>;
94589462 // The name of the app provided by the app developer.
94599463 displayName?: NullableOption<string>;
0 commit comments