@microsoft/typespec-msgraph-reference 1.0.9 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3332,6 +3332,12 @@ namespace reference.`microsoft.graph` {
3332
3332
  sourceId: string;
3333
3333
  }
3334
3334
 
3335
+ @complex model meetingEngagement {
3336
+ dateTime: offsetDateTime | null;
3337
+ engagementSubType: string | null;
3338
+ engagementType: meetingEngagementType | null;
3339
+ }
3340
+
3335
3341
  @abstract
3336
3342
  @complex model meetingInfo {
3337
3343
  }
@@ -7537,6 +7543,7 @@ namespace reference.`microsoft.graph` {
7537
7543
  @entity model attendanceRecord extends entity {
7538
7544
  attendanceIntervals: attendanceInterval[] | null;
7539
7545
  emailAddress: string | null;
7546
+ engagements: meetingEngagement[] | null;
7540
7547
  externalRegistrationInformation: virtualEventExternalRegistrationInformation | null;
7541
7548
  identity: identity | null;
7542
7549
  registrationId: string | null;
@@ -8368,7 +8375,7 @@ namespace reference.`microsoft.graph` {
8368
8375
  /**
8369
8376
  * Singleton entity that acts as a container for all device app management functionality.
8370
8377
  */
8371
- @entity model deviceAppManagement extends entity {
8378
+ @entity model deviceAppManagement extends MsGraph.SharedModels.entity {
8372
8379
  /**
8373
8380
  * Whether the account is enabled for syncing applications from the Microsoft Store for Business.
8374
8381
  */
@@ -13280,6 +13287,7 @@ namespace reference.`microsoft.graph` {
13280
13287
  lobbyBypassSettings: lobbyBypassSettings | null;
13281
13288
  meetingOptionsWebUrl: string | null;
13282
13289
  meetingSpokenLanguageTag: string | null;
13290
+ meetingType: onlineMeetingType | null;
13283
13291
  recordAutomatically: boolean | null;
13284
13292
  sensitivityLabelAssignment: onlineMeetingSensitivityLabelAssignment | null;
13285
13293
  shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
@@ -14807,7 +14815,7 @@ namespace reference.`microsoft.graph` {
14807
14815
  @entity model teamsTemplate extends entity {
14808
14816
  }
14809
14817
 
14810
- @entity model teamwork extends entity {
14818
+ @entity model teamwork extends MsGraph.SharedModels.entity {
14811
14819
  isTeamsEnabled: boolean;
14812
14820
  region: string | null;
14813
14821
  @contains deletedChats: deletedChat[];
@@ -22084,6 +22092,14 @@ namespace reference.`microsoft.graph` {
22084
22092
  unknownFutureValue: 3,
22085
22093
  }
22086
22094
 
22095
+ enum meetingEngagementType {
22096
+ reaction: 0,
22097
+ hand: 1,
22098
+ camera: 2,
22099
+ microphone: 3,
22100
+ unknownFutureValue: 4,
22101
+ }
22102
+
22087
22103
  enum meetingLiveShareOptions {
22088
22104
  enabled: 0,
22089
22105
  disabled: 1,
@@ -22452,6 +22468,15 @@ namespace reference.`microsoft.graph` {
22452
22468
  coorganizer: 4,
22453
22469
  }
22454
22470
 
22471
+ enum onlineMeetingType {
22472
+ adhoc: 0,
22473
+ scheduled: 1,
22474
+ recurring: 2,
22475
+ broadcast: 3,
22476
+ meetnow: 4,
22477
+ unknownFutureValue: 5,
22478
+ }
22479
+
22455
22480
  @graphFlags
22456
22481
  enum onlineMeetingVideoDisabledReason {
22457
22482
  watermarkProtection: 1,