@microsoft/typespec-msgraph-reference 1.0.6 → 1.0.8

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.
@@ -270,6 +270,9 @@ namespace reference.`microsoft.graph` {
270
270
  @complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
271
271
  }
272
272
 
273
+ @complex model allDomains extends validatingDomains {
274
+ }
275
+
273
276
  /**
274
277
  * Represents an assignment to all licensed users in the tenant.
275
278
  */
@@ -708,6 +711,13 @@ namespace reference.`microsoft.graph` {
708
711
  authenticationContextValue: string | null;
709
712
  }
710
713
 
714
+ @complex model authenticationAppDeviceDetails {
715
+ appVersion: string | null;
716
+ clientApp: string | null;
717
+ deviceId: string | null;
718
+ operatingSystem: string | null;
719
+ }
720
+
711
721
  @complex model authenticationFlow {
712
722
  transferMethod: conditionalAccessTransferMethods | null;
713
723
  }
@@ -1040,6 +1050,10 @@ namespace reference.`microsoft.graph` {
1040
1050
  initiator: identitySet | null;
1041
1051
  }
1042
1052
 
1053
+ @complex model chatRestrictions {
1054
+ allowTextOnly: boolean | null;
1055
+ }
1056
+
1043
1057
  @complex model chatViewpoint {
1044
1058
  isHidden: boolean | null;
1045
1059
  @computed lastMessageReadDateTime: offsetDateTime | null;
@@ -1077,6 +1091,23 @@ namespace reference.`microsoft.graph` {
1077
1091
  value: commsNotification[] | null;
1078
1092
  }
1079
1093
 
1094
+ @open
1095
+ @complex model communicationsIdentitySet extends identitySet {
1096
+ applicationInstance: identity | null;
1097
+ assertedIdentity: identity | null;
1098
+ azureCommunicationServicesUser: identity | null;
1099
+ encrypted: identity | null;
1100
+ endpointType: endpointType | null;
1101
+ guest: identity | null;
1102
+ onPremises: identity | null;
1103
+ phone: identity | null;
1104
+ }
1105
+
1106
+ @open
1107
+ @complex model communicationsUserIdentity extends identity {
1108
+ tenantId: string | null;
1109
+ }
1110
+
1080
1111
  @open
1081
1112
  @complex model ComplexExtensionValue {
1082
1113
  }
@@ -2112,6 +2143,10 @@ namespace reference.`microsoft.graph` {
2112
2143
  users: string[] | null;
2113
2144
  }
2114
2145
 
2146
+ @complex model enumeratedDomains extends validatingDomains {
2147
+ domainNames: string[];
2148
+ }
2149
+
2115
2150
  @complex model enumeratedScopes extends inheritableScopes {
2116
2151
  scopes: string[];
2117
2152
  }
@@ -3655,6 +3690,10 @@ namespace reference.`microsoft.graph` {
3655
3690
  videoDisabled: onlineMeetingVideoDisabledReason | null;
3656
3691
  }
3657
3692
 
3693
+ @complex model onlineMeetingSensitivityLabelAssignment {
3694
+ sensitivityLabelId: string | null;
3695
+ }
3696
+
3658
3697
  @complex model onPremisesAccidentalDeletionPrevention {
3659
3698
  alertThreshold: int32 | null;
3660
3699
  synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
@@ -5397,6 +5436,11 @@ namespace reference.`microsoft.graph` {
5397
5436
  workLocationType: workLocationType;
5398
5437
  }
5399
5438
 
5439
+ @abstract
5440
+ @complex model validatingDomains {
5441
+ rootDomains: rootDomains;
5442
+ }
5443
+
5400
5444
  @complex model verifiedDomain {
5401
5445
  capabilities: string | null;
5402
5446
  isDefault: boolean | null;
@@ -5422,6 +5466,42 @@ namespace reference.`microsoft.graph` {
5422
5466
  width: int32 | null;
5423
5467
  }
5424
5468
 
5469
+ @complex model virtualEventExternalInformation {
5470
+ applicationId: string | null;
5471
+ externalEventId: string | null;
5472
+ }
5473
+
5474
+ @complex model virtualEventExternalRegistrationInformation {
5475
+ referrer: string | null;
5476
+ registrationId: string | null;
5477
+ }
5478
+
5479
+ @complex model virtualEventPresenterDetails {
5480
+ bio: itemBody | null;
5481
+ company: string | null;
5482
+ jobTitle: string | null;
5483
+ linkedInProfileWebUrl: string | null;
5484
+ personalSiteWebUrl: string | null;
5485
+ photo: stream | null;
5486
+ twitterProfileWebUrl: string | null;
5487
+ }
5488
+
5489
+ @complex model virtualEventPresenterInfo extends meetingParticipantInfo {
5490
+ presenterDetails: virtualEventPresenterDetails | null;
5491
+ }
5492
+
5493
+ @complex model virtualEventRegistrationQuestionAnswer {
5494
+ booleanValue: boolean | null;
5495
+ displayName: string | null;
5496
+ multiChoiceValues: string[] | null;
5497
+ questionId: string | null;
5498
+ value: string | null;
5499
+ }
5500
+
5501
+ @complex model virtualEventSettings {
5502
+ isAttendeeEmailNotificationEnabled: boolean | null;
5503
+ }
5504
+
5425
5505
  /**
5426
5506
  * Contains properties for iOS Volume-Purchased Program (Vpp) Licensing Type.
5427
5507
  */
@@ -7457,7 +7537,9 @@ namespace reference.`microsoft.graph` {
7457
7537
  @entity model attendanceRecord extends entity {
7458
7538
  attendanceIntervals: attendanceInterval[] | null;
7459
7539
  emailAddress: string | null;
7540
+ externalRegistrationInformation: virtualEventExternalRegistrationInformation | null;
7460
7541
  identity: identity | null;
7542
+ registrationId: string | null;
7461
7543
  role: string | null;
7462
7544
  totalAttendanceInSeconds: int32 | null;
7463
7545
  }
@@ -10079,6 +10161,10 @@ namespace reference.`microsoft.graph` {
10079
10161
  subject: string | null;
10080
10162
  }
10081
10163
 
10164
+ @entity model federatedTokenValidationPolicy extends directoryObject {
10165
+ validatingDomains: validatingDomains;
10166
+ }
10167
+
10082
10168
  @entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
10083
10169
  allowedAAGUIDs: string[];
10084
10170
  }
@@ -10160,6 +10246,7 @@ namespace reference.`microsoft.graph` {
10160
10246
 
10161
10247
  @open
10162
10248
  @entity model group extends directoryObject {
10249
+ accessType: groupAccessType | null;
10163
10250
  allowExternalSenders: boolean | null;
10164
10251
  assignedLabels: assignedLabel[] | null;
10165
10252
  assignedLicenses: assignedLicense[] | null;
@@ -10176,6 +10263,7 @@ namespace reference.`microsoft.graph` {
10176
10263
  infoCatalogs: string[];
10177
10264
  isArchived: boolean | null;
10178
10265
  isAssignableToRole: boolean | null;
10266
+ isFavorite: boolean | null;
10179
10267
  isManagementRestricted: boolean | null;
10180
10268
  isSubscribedByMail: boolean | null;
10181
10269
  licenseProcessingState: licenseProcessingState | null;
@@ -10202,7 +10290,9 @@ namespace reference.`microsoft.graph` {
10202
10290
  securityIdentifier: string | null;
10203
10291
  theme: string | null;
10204
10292
  uniqueName: string | null;
10293
+ unseenConversationsCount: int32 | null;
10205
10294
  unseenCount: int32 | null;
10295
+ unseenMessagesCount: int32 | null;
10206
10296
  visibility: string | null;
10207
10297
  welcomeMessageEnabled: boolean | null;
10208
10298
  @contains acceptedSenders: directoryObject[];
@@ -11394,6 +11484,7 @@ namespace reference.`microsoft.graph` {
11394
11484
  @contains drive: drive | null;
11395
11485
  @contains items: listItem[];
11396
11486
  @contains operations: richLongRunningOperation[];
11487
+ @contains permissions: permission[];
11397
11488
  @contains subscriptions: subscription[];
11398
11489
  }
11399
11490
 
@@ -11405,6 +11496,7 @@ namespace reference.`microsoft.graph` {
11405
11496
  @contains documentSetVersions: documentSetVersion[];
11406
11497
  @contains driveItem: driveItem | null;
11407
11498
  @contains fields: fieldValueSet | null;
11499
+ @contains permissions: permission[];
11408
11500
  @contains versions: listItemVersion[];
11409
11501
  }
11410
11502
 
@@ -12708,6 +12800,7 @@ namespace reference.`microsoft.graph` {
12708
12800
  }
12709
12801
 
12710
12802
  @entity model meetingAttendanceReport extends entity {
12803
+ externalEventInformation: virtualEventExternalInformation[] | null;
12711
12804
  meetingEndDateTime: offsetDateTime | null;
12712
12805
  meetingStartDateTime: offsetDateTime | null;
12713
12806
  totalParticipantCount: int32 | null;
@@ -13144,36 +13237,56 @@ namespace reference.`microsoft.graph` {
13144
13237
  }
13145
13238
 
13146
13239
  @open
13147
- @entity model onlineMeeting extends entity {
13240
+ @entity model onlineMeeting extends onlineMeetingBase {
13241
+ attendeeReport: stream | null;
13242
+ broadcastSettings: broadcastMeetingSettings | null;
13243
+ creationDateTime: offsetDateTime | null;
13244
+ endDateTime: offsetDateTime | null;
13245
+ externalId: string | null;
13246
+ isBroadcast: boolean | null;
13247
+ meetingTemplateId: string | null;
13248
+ participants: meetingParticipants | null;
13249
+ startDateTime: offsetDateTime | null;
13250
+ @contains recordings: callRecording[];
13251
+ @contains transcripts: callTranscript[];
13252
+ }
13253
+
13254
+ @abstract
13255
+ @open
13256
+ @entity model onlineMeetingBase extends entity {
13148
13257
  allowAttendeeToEnableCamera: boolean | null;
13149
13258
  allowAttendeeToEnableMic: boolean | null;
13259
+ allowBreakoutRooms: boolean | null;
13260
+ allowCopyingAndSharingMeetingContent: boolean | null;
13261
+ allowedLobbyAdmitters: allowedLobbyAdmitterRoles | null;
13150
13262
  allowedPresenters: onlineMeetingPresenters | null;
13263
+ allowLiveShare: meetingLiveShareOptions | null;
13151
13264
  allowMeetingChat: meetingChatMode | null;
13152
13265
  allowParticipantsToChangeName: boolean | null;
13266
+ allowPowerPointSharing: boolean | null;
13267
+ allowRecording: boolean | null;
13153
13268
  allowTeamworkReactions: boolean | null;
13154
- attendeeReport: stream | null;
13269
+ allowTranscription: boolean | null;
13270
+ allowWhiteboard: boolean | null;
13155
13271
  audioConferencing: audioConferencing | null;
13156
- broadcastSettings: broadcastMeetingSettings | null;
13157
13272
  chatInfo: chatInfo | null;
13158
- creationDateTime: offsetDateTime | null;
13159
- endDateTime: offsetDateTime | null;
13160
- externalId: string | null;
13161
- isBroadcast: boolean | null;
13273
+ chatRestrictions: chatRestrictions | null;
13274
+ expiryDateTime: offsetDateTime | null;
13275
+ isEndToEndEncryptionEnabled: boolean | null;
13162
13276
  isEntryExitAnnounced: boolean | null;
13163
13277
  joinInformation: itemBody | null;
13164
13278
  joinMeetingIdSettings: joinMeetingIdSettings | null;
13165
13279
  joinWebUrl: string | null;
13166
13280
  lobbyBypassSettings: lobbyBypassSettings | null;
13167
- participants: meetingParticipants | null;
13281
+ meetingOptionsWebUrl: string | null;
13282
+ meetingSpokenLanguageTag: string | null;
13168
13283
  recordAutomatically: boolean | null;
13284
+ sensitivityLabelAssignment: onlineMeetingSensitivityLabelAssignment | null;
13169
13285
  shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
13170
- startDateTime: offsetDateTime | null;
13171
13286
  subject: string | null;
13172
13287
  videoTeleconferenceId: string | null;
13173
13288
  watermarkProtection: watermarkProtectionValues | null;
13174
13289
  @contains attendanceReports: meetingAttendanceReport[];
13175
- @contains recordings: callRecording[];
13176
- @contains transcripts: callTranscript[];
13177
13290
  }
13178
13291
 
13179
13292
  /**
@@ -13525,6 +13638,7 @@ namespace reference.`microsoft.graph` {
13525
13638
  @contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
13526
13639
  @contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
13527
13640
  @contains featureRolloutPolicies: featureRolloutPolicy[];
13641
+ @contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
13528
13642
  @contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
13529
13643
  @contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
13530
13644
  @contains permissionGrantPolicies: permissionGrantPolicy[];
@@ -14316,23 +14430,29 @@ namespace reference.`microsoft.graph` {
14316
14430
  appDisplayName: string | null;
14317
14431
  appId: string | null;
14318
14432
  appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
14433
+ authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
14319
14434
  clientAppUsed: string | null;
14320
14435
  conditionalAccessStatus: conditionalAccessStatus | null;
14321
14436
  correlationId: string | null;
14322
14437
  @computed createdDateTime: offsetDateTime;
14323
14438
  deviceDetail: deviceDetail | null;
14439
+ homeTenantId: string | null;
14324
14440
  ipAddress: string | null;
14325
14441
  isInteractive: boolean | null;
14326
14442
  location: signInLocation | null;
14327
14443
  resourceDisplayName: string | null;
14328
14444
  resourceId: string | null;
14445
+ resourceTenantId: string | null;
14329
14446
  riskDetail: riskDetail | null;
14330
14447
  riskEventTypes: riskEventType[] | null;
14331
14448
  riskEventTypes_v2: string[] | null;
14332
14449
  riskLevelAggregated: riskLevel | null;
14333
14450
  riskLevelDuringSignIn: riskLevel | null;
14334
14451
  riskState: riskState | null;
14452
+ servicePrincipalId: string | null;
14453
+ servicePrincipalName: string | null;
14335
14454
  status: signInStatus | null;
14455
+ userAgent: string | null;
14336
14456
  userDisplayName: string | null;
14337
14457
  userId: string;
14338
14458
  userPrincipalName: string | null;
@@ -14449,6 +14569,10 @@ namespace reference.`microsoft.graph` {
14449
14569
  unknownUserCount: int32;
14450
14570
  }
14451
14571
 
14572
+ @entity model solutionsRoot extends MsGraph.SharedModels.entity {
14573
+ @contains virtualEvents: virtualEventsRoot | null;
14574
+ }
14575
+
14452
14576
  @entity model standardWebPart extends webPart {
14453
14577
  containerTextWebPartId: string | null;
14454
14578
  data: webPartData | null;
@@ -16183,6 +16307,93 @@ namespace reference.`microsoft.graph` {
16183
16307
  @contains webparts: webPart[];
16184
16308
  }
16185
16309
 
16310
+ @entity model virtualEvent extends entity {
16311
+ createdBy: communicationsIdentitySet | null;
16312
+ description: itemBody | null;
16313
+ displayName: string | null;
16314
+ endDateTime: dateTimeTimeZone | null;
16315
+ externalEventInformation: virtualEventExternalInformation[] | null;
16316
+ settings: virtualEventSettings | null;
16317
+ startDateTime: dateTimeTimeZone | null;
16318
+ status: virtualEventStatus | null;
16319
+ @contains presenters: virtualEventPresenter[];
16320
+ @contains sessions: virtualEventSession[];
16321
+ }
16322
+
16323
+ @entity model virtualEventPresenter extends entity {
16324
+ email: string | null;
16325
+ identity: identity | null;
16326
+ presenterDetails: virtualEventPresenterDetails | null;
16327
+ }
16328
+
16329
+ @entity model virtualEventRegistration extends entity {
16330
+ cancelationDateTime: offsetDateTime | null;
16331
+ email: string | null;
16332
+ externalRegistrationInformation: virtualEventExternalRegistrationInformation | null;
16333
+ firstName: string | null;
16334
+ lastName: string | null;
16335
+ preferredLanguage: string | null;
16336
+ preferredTimezone: string | null;
16337
+ registrationDateTime: offsetDateTime | null;
16338
+ registrationQuestionAnswers: virtualEventRegistrationQuestionAnswer[] | null;
16339
+ status: virtualEventAttendeeRegistrationStatus | null;
16340
+ userId: string | null;
16341
+ @references sessions: virtualEventSession[];
16342
+ }
16343
+
16344
+ @entity model virtualEventRegistrationConfiguration extends entity {
16345
+ capacity: int32 | null;
16346
+ isManualApprovalEnabled: boolean | null;
16347
+ isWaitlistEnabled: boolean | null;
16348
+ registrationWebUrl: string | null;
16349
+ @contains questions: virtualEventRegistrationQuestionBase[];
16350
+ }
16351
+
16352
+ @entity model virtualEventRegistrationCustomQuestion extends virtualEventRegistrationQuestionBase {
16353
+ answerChoices: string[] | null;
16354
+ answerInputType: virtualEventRegistrationQuestionAnswerInputType | null;
16355
+ }
16356
+
16357
+ @entity model virtualEventRegistrationPredefinedQuestion extends virtualEventRegistrationQuestionBase {
16358
+ label: virtualEventRegistrationPredefinedQuestionLabel | null;
16359
+ }
16360
+
16361
+ @abstract
16362
+ @entity model virtualEventRegistrationQuestionBase extends entity {
16363
+ displayName: string | null;
16364
+ isRequired: boolean | null;
16365
+ }
16366
+
16367
+ @open
16368
+ @entity model virtualEventSession extends onlineMeetingBase {
16369
+ endDateTime: dateTimeTimeZone | null;
16370
+ startDateTime: dateTimeTimeZone | null;
16371
+ videoOnDemandWebUrl: string | null;
16372
+ }
16373
+
16374
+ @entity model virtualEventsRoot extends entity {
16375
+ @contains events: virtualEvent[];
16376
+ @contains townhalls: virtualEventTownhall[];
16377
+ @contains webinars: virtualEventWebinar[];
16378
+ }
16379
+
16380
+ @entity model virtualEventTownhall extends virtualEvent {
16381
+ audience: meetingAudience | null;
16382
+ coOrganizers: communicationsUserIdentity[] | null;
16383
+ invitedAttendees: identity[] | null;
16384
+ isInviteOnly: boolean | null;
16385
+ }
16386
+
16387
+ @entity model virtualEventWebinar extends virtualEvent {
16388
+ audience: meetingAudience | null;
16389
+ coOrganizers: communicationsUserIdentity[] | null;
16390
+ @contains registrationConfiguration: virtualEventWebinarRegistrationConfiguration | null;
16391
+ @contains registrations: virtualEventRegistration[];
16392
+ }
16393
+
16394
+ @entity model virtualEventWebinarRegistrationConfiguration extends virtualEventRegistrationConfiguration {
16395
+ }
16396
+
16186
16397
  /**
16187
16398
  * You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens.
16188
16399
  */
@@ -18969,6 +19180,12 @@ namespace reference.`microsoft.graph` {
18969
19180
  unknownFutureValue: 5,
18970
19181
  }
18971
19182
 
19183
+ enum allowedLobbyAdmitterRoles {
19184
+ organizerAndCoOrganizersAndPresenters: 0,
19185
+ organizerAndCoOrganizers: 1,
19186
+ unknownFutureValue: 2,
19187
+ }
19188
+
18972
19189
  enum allowedTargetScope {
18973
19190
  notSpecified: 0,
18974
19191
  specificDirectoryUsers: 1,
@@ -21161,6 +21378,14 @@ namespace reference.`microsoft.graph` {
21161
21378
  unknownFutureValue: 2,
21162
21379
  }
21163
21380
 
21381
+ enum groupAccessType {
21382
+ none: 0,
21383
+ private: 1,
21384
+ secret: 2,
21385
+ public: 3,
21386
+ unknownFutureValue: 4,
21387
+ }
21388
+
21164
21389
  enum groupType {
21165
21390
  unifiedGroups: 0,
21166
21391
  azureAD: 1,
@@ -21840,6 +22065,12 @@ namespace reference.`microsoft.graph` {
21840
22065
  unknownFutureValue: 2,
21841
22066
  }
21842
22067
 
22068
+ enum meetingAudience {
22069
+ everyone: 0,
22070
+ organization: 1,
22071
+ unknownFutureValue: 2,
22072
+ }
22073
+
21843
22074
  enum meetingChatHistoryDefaultMode {
21844
22075
  none: 0,
21845
22076
  all: 1,
@@ -21853,6 +22084,12 @@ namespace reference.`microsoft.graph` {
21853
22084
  unknownFutureValue: 3,
21854
22085
  }
21855
22086
 
22087
+ enum meetingLiveShareOptions {
22088
+ enabled: 0,
22089
+ disabled: 1,
22090
+ unknownFutureValue: 2,
22091
+ }
22092
+
21856
22093
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
21857
22094
  enum meetingMessageType {
21858
22095
  none: 0,
@@ -23344,6 +23581,16 @@ namespace reference.`microsoft.graph` {
23344
23581
  unknownFutureValue: 4,
23345
23582
  }
23346
23583
 
23584
+ enum rootDomains {
23585
+ none: 0,
23586
+ all: 1,
23587
+ allFederated: 2,
23588
+ allManaged: 3,
23589
+ enumerated: 4,
23590
+ allManagedAndEnumeratedFederated: 5,
23591
+ unknownFutureValue: 6,
23592
+ }
23593
+
23347
23594
  enum routingType {
23348
23595
  forwarded: 0,
23349
23596
  lookup: 1,
@@ -24141,6 +24388,43 @@ namespace reference.`microsoft.graph` {
24141
24388
  unknownFutureValue: 2,
24142
24389
  }
24143
24390
 
24391
+ enum virtualEventAttendeeRegistrationStatus {
24392
+ registered: 0,
24393
+ canceled: 1,
24394
+ waitlisted: 2,
24395
+ pendingApproval: 3,
24396
+ rejectedByOrganizer: 4,
24397
+ unknownFutureValue: 11,
24398
+ }
24399
+
24400
+ enum virtualEventRegistrationPredefinedQuestionLabel {
24401
+ street: 0,
24402
+ city: 1,
24403
+ state: 2,
24404
+ postalCode: 3,
24405
+ countryOrRegion: 4,
24406
+ industry: 5,
24407
+ jobTitle: 6,
24408
+ organization: 7,
24409
+ unknownFutureValue: 8,
24410
+ }
24411
+
24412
+ enum virtualEventRegistrationQuestionAnswerInputType {
24413
+ text: 0,
24414
+ multilineText: 1,
24415
+ singleChoice: 2,
24416
+ multiChoice: 3,
24417
+ `boolean`: 4,
24418
+ unknownFutureValue: 5,
24419
+ }
24420
+
24421
+ enum virtualEventStatus {
24422
+ draft: 0,
24423
+ published: 1,
24424
+ canceled: 2,
24425
+ unknownFutureValue: 3,
24426
+ }
24427
+
24144
24428
  /**
24145
24429
  * Generic visibility state.
24146
24430
  */