@@ -1194,7 +1194,7 @@ export interface User extends DirectoryObject {
11941194 city?: NullableOption<string>;
11951195 /**
11961196 * The company name which the user is associated. This property can be useful for describing the company that an external
1197- * user comes from.
1197+ * user comes from. The maximum length of the company name is 64 chararcters.Returned only on $select.
11981198 */
11991199 companyName?: NullableOption<string>;
12001200 /**
@@ -1204,6 +1204,8 @@ export interface User extends DirectoryObject {
12041204 consentProvidedForMinor?: NullableOption<string>;
12051205 // The country/region in which the user is located; for example, 'US' or 'UK'. Supports $filter.
12061206 country?: NullableOption<string>;
1207+ // The created date of the user object.
1208+ createdDateTime?: NullableOption<string>;
12071209 /**
12081210 * Indicates whether the user account was created as a regular school or work account (null), an external account
12091211 * (Invitation), a local account for an Azure Active Directory B2C tenant (LocalAccount) or self-service sign-up using
@@ -1259,7 +1261,7 @@ export interface User extends DirectoryObject {
12591261 legalAgeGroupClassification?: NullableOption<string>;
12601262 // State of license assignments for this user. Read-only.
12611263 licenseAssignmentStates?: NullableOption<LicenseAssignmentState[]>;
1262- // The SMTP address for the user, for example, '
[email protected] '.
Read-Only. Supports $filter.
1264+ // The SMTP address for the user, for example, '
[email protected] '. Supports $filter.
12631265 mail?: NullableOption<string>;
12641266 // The mail alias for the user. This property must be specified when a user is created. Supports $filter.
12651267 mailNickname?: NullableOption<string>;
@@ -1759,6 +1761,7 @@ export interface Event extends OutlookItem {
17591761 start?: NullableOption<DateTimeTimeZone>;
17601762 // The text of the event's subject line.
17611763 subject?: NullableOption<string>;
1764+ transactionId?: NullableOption<string>;
17621765 // The event type. The possible values are: singleInstance, occurrence, exception, seriesMaster. Read-only.
17631766 type?: NullableOption<EventType>;
17641767 /**
@@ -2453,7 +2456,7 @@ export interface Team extends Entity {
24532456 * unique behaviors and experiences targeted to its use case.
24542457 */
24552458 specialization?: NullableOption<TeamSpecialization>;
2456- // The visibility of a the group and team. Defaults to Public.
2459+ // The visibility of the group and team. Defaults to Public.
24572460 visibility?: NullableOption<TeamVisibilityType>;
24582461 /**
24592462 * A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a
0 commit comments