@microsoft/typespec-msgraph-reference 1.0.0 → 1.0.2

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.
@@ -68,10 +68,49 @@ namespace reference.`microsoft.graph` {
68
68
  servicePlanId: guid | null;
69
69
  }
70
70
 
71
+ @complex model attachmentItem {
72
+ attachmentType: attachmentType | null;
73
+ contentType: string | null;
74
+ isInline: boolean | null;
75
+ name: string | null;
76
+ size: int64 | null;
77
+ }
78
+
79
+ @complex model attendee extends attendeeBase {
80
+ proposedNewTime: timeSlot | null;
81
+ status: responseStatus | null;
82
+ }
83
+
84
+ @complex model attendeeBase extends recipient {
85
+ type: attendeeType | null;
86
+ }
87
+
71
88
  @complex model authorizationInfo {
72
89
  certificateUserIds: string[] | null;
73
90
  }
74
91
 
92
+ @complex model automaticRepliesMailTips {
93
+ message: string | null;
94
+ messageLanguage: localeInfo | null;
95
+ scheduledEndTime: dateTimeTimeZone | null;
96
+ scheduledStartTime: dateTimeTimeZone | null;
97
+ }
98
+
99
+ @complex model automaticRepliesSetting {
100
+ externalAudience: externalAudienceScope | null;
101
+ externalReplyMessage: string | null;
102
+ internalReplyMessage: string | null;
103
+ scheduledEndDateTime: dateTimeTimeZone | null;
104
+ scheduledStartDateTime: dateTimeTimeZone | null;
105
+ status: automaticRepliesStatus | null;
106
+ }
107
+
108
+ @complex model calendarSharingMessageAction {
109
+ action: calendarSharingAction | null;
110
+ actionType: calendarSharingActionType | null;
111
+ importance: calendarSharingActionImportance | null;
112
+ }
113
+
75
114
  @complex model certificateAuthority {
76
115
  certificate: binary;
77
116
  certificateRevocationListUrl: string | null;
@@ -92,6 +131,12 @@ namespace reference.`microsoft.graph` {
92
131
  registrationCampaignRelativeUrl: string | null;
93
132
  }
94
133
 
134
+ @complex model convertIdResult {
135
+ errorDetails: genericError | null;
136
+ sourceId: string | null;
137
+ targetId: string | null;
138
+ }
139
+
95
140
  @complex model crossTenantAccessPolicyB2BSetting {
96
141
  applications: crossTenantAccessPolicyTargetConfiguration | null;
97
142
  usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
@@ -124,6 +169,21 @@ namespace reference.`microsoft.graph` {
124
169
  @complex model customSecurityAttributeValue {
125
170
  }
126
171
 
172
+ @complex model customTimeZone extends timeZoneBase {
173
+ bias: int32 | null;
174
+ daylightOffset: daylightTimeZoneOffset | null;
175
+ standardOffset: standardTimeZoneOffset | null;
176
+ }
177
+
178
+ @complex model dateTimeTimeZone {
179
+ dateTime: string;
180
+ timeZone: string | null;
181
+ }
182
+
183
+ @complex model daylightTimeZoneOffset extends standardTimeZoneOffset {
184
+ daylightBias: int32 | null;
185
+ }
186
+
127
187
  @complex model defaultInvitationRedemptionIdentityProviderConfiguration extends invitationRedemptionIdentityProviderConfiguration {
128
188
  }
129
189
 
@@ -142,6 +202,11 @@ namespace reference.`microsoft.graph` {
142
202
  status: string | null;
143
203
  }
144
204
 
205
+ @complex model emailAddress {
206
+ address: string | null;
207
+ name: string | null;
208
+ }
209
+
145
210
  @complex model employeeOrgData {
146
211
  costCenter: string | null;
147
212
  division: string | null;
@@ -152,6 +217,23 @@ namespace reference.`microsoft.graph` {
152
217
  type: string | null;
153
218
  }
154
219
 
220
+ @complex model followupFlag {
221
+ completedDateTime: dateTimeTimeZone | null;
222
+ dueDateTime: dateTimeTimeZone | null;
223
+ flagStatus: followupFlagStatus | null;
224
+ startDateTime: dateTimeTimeZone | null;
225
+ }
226
+
227
+ @complex model freeBusyError {
228
+ message: string | null;
229
+ responseCode: string | null;
230
+ }
231
+
232
+ @complex model genericError {
233
+ code: string | null;
234
+ message: string | null;
235
+ }
236
+
155
237
  @open
156
238
  @complex model identity {
157
239
  displayName: string | null;
@@ -181,11 +263,21 @@ namespace reference.`microsoft.graph` {
181
263
  resourceAppId: string;
182
264
  }
183
265
 
266
+ @complex model internetMessageHeader {
267
+ name: string | null;
268
+ value: string | null;
269
+ }
270
+
184
271
  @complex model invitationRedemptionIdentityProviderConfiguration {
185
272
  fallbackIdentityProvider: b2bIdentityProvidersType | null;
186
273
  primaryIdentityProviderPrecedenceOrder: b2bIdentityProvidersType[] | null;
187
274
  }
188
275
 
276
+ @complex model itemBody {
277
+ content: string | null;
278
+ contentType: bodyType | null;
279
+ }
280
+
189
281
  @complex model keyCredential {
190
282
  customKeyIdentifier: binary | null;
191
283
  displayName: string | null;
@@ -222,6 +314,22 @@ namespace reference.`microsoft.graph` {
222
314
  warning: int32 | null;
223
315
  }
224
316
 
317
+ @complex model localeInfo {
318
+ displayName: string | null;
319
+ locale: string | null;
320
+ }
321
+
322
+ @complex model location {
323
+ address: physicalAddress | null;
324
+ coordinates: outlookGeoCoordinates | null;
325
+ displayName: string | null;
326
+ locationEmailAddress: string | null;
327
+ locationType: locationType | null;
328
+ locationUri: string | null;
329
+ uniqueId: string | null;
330
+ uniqueIdType: locationUniqueIdType | null;
331
+ }
332
+
225
333
  @complex model loginPageLayoutConfiguration {
226
334
  isFooterShown: boolean | null;
227
335
  isHeaderShown: boolean | null;
@@ -237,12 +345,99 @@ namespace reference.`microsoft.graph` {
237
345
  hideTermsOfUse: boolean | null;
238
346
  }
239
347
 
348
+ @complex model mailboxSettings {
349
+ archiveFolder: string | null;
350
+ automaticRepliesSetting: automaticRepliesSetting | null;
351
+ dateFormat: string | null;
352
+ delegateMeetingMessageDeliveryOptions: delegateMeetingMessageDeliveryOptions | null;
353
+ language: localeInfo | null;
354
+ timeFormat: string | null;
355
+ timeZone: string | null;
356
+ workingHours: workingHours | null;
357
+ }
358
+
359
+ @complex model mailTips {
360
+ automaticReplies: automaticRepliesMailTips | null;
361
+ customMailTip: string | null;
362
+ deliveryRestricted: boolean | null;
363
+ emailAddress: emailAddress | null;
364
+ error: mailTipsError | null;
365
+ externalMemberCount: int32 | null;
366
+ isModerated: boolean | null;
367
+ mailboxFull: boolean | null;
368
+ maxMessageSize: int32 | null;
369
+ recipientScope: recipientScopeType | null;
370
+ recipientSuggestions: recipient[] | null;
371
+ totalMemberCount: int32 | null;
372
+ }
373
+
374
+ @complex model mailTipsError {
375
+ code: string | null;
376
+ message: string | null;
377
+ }
378
+
379
+ @complex model messageRuleActions {
380
+ assignCategories: string[] | null;
381
+ copyToFolder: string | null;
382
+ delete: boolean | null;
383
+ forwardAsAttachmentTo: recipient[] | null;
384
+ forwardTo: recipient[] | null;
385
+ markAsRead: boolean | null;
386
+ markImportance: importance | null;
387
+ moveToFolder: string | null;
388
+ permanentDelete: boolean | null;
389
+ redirectTo: recipient[] | null;
390
+ stopProcessingRules: boolean | null;
391
+ }
392
+
393
+ @complex model messageRulePredicates {
394
+ bodyContains: string[] | null;
395
+ bodyOrSubjectContains: string[] | null;
396
+ categories: string[] | null;
397
+ fromAddresses: recipient[] | null;
398
+ hasAttachments: boolean | null;
399
+ headerContains: string[] | null;
400
+ importance: importance | null;
401
+ isApprovalRequest: boolean | null;
402
+ isAutomaticForward: boolean | null;
403
+ isAutomaticReply: boolean | null;
404
+ isEncrypted: boolean | null;
405
+ isMeetingRequest: boolean | null;
406
+ isMeetingResponse: boolean | null;
407
+ isNonDeliveryReport: boolean | null;
408
+ isPermissionControlled: boolean | null;
409
+ isReadReceipt: boolean | null;
410
+ isSigned: boolean | null;
411
+ isVoicemail: boolean | null;
412
+ messageActionFlag: messageActionFlag | null;
413
+ notSentToMe: boolean | null;
414
+ recipientContains: string[] | null;
415
+ senderContains: string[] | null;
416
+ sensitivity: sensitivity | null;
417
+ sentCcMe: boolean | null;
418
+ sentOnlyToMe: boolean | null;
419
+ sentToAddresses: recipient[] | null;
420
+ sentToMe: boolean | null;
421
+ sentToOrCcMe: boolean | null;
422
+ subjectContains: string[] | null;
423
+ withinSizeRange: sizeRange | null;
424
+ }
425
+
240
426
  @complex model objectIdentity {
241
427
  issuer: string | null;
242
428
  issuerAssignedId: string | null;
243
429
  signInType: string | null;
244
430
  }
245
431
 
432
+ @complex model onlineMeetingInfo {
433
+ conferenceId: string | null;
434
+ joinUrl: string | null;
435
+ phones: phone[] | null;
436
+ quickDial: string | null;
437
+ tollFreeNumbers: string[] | null;
438
+ tollNumber: string | null;
439
+ }
440
+
246
441
  @complex model onPremisesAccidentalDeletionPrevention {
247
442
  alertThreshold: int32 | null;
248
443
  synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
@@ -312,6 +507,14 @@ namespace reference.`microsoft.graph` {
312
507
  saml2Token: optionalClaim[] | null;
313
508
  }
314
509
 
510
+ @complex model outlookGeoCoordinates {
511
+ accuracy: float64 | null;
512
+ altitude: float64 | null;
513
+ altitudeAccuracy: float64 | null;
514
+ latitude: float64 | null;
515
+ longitude: float64 | null;
516
+ }
517
+
315
518
  @complex model parentalControlSettings {
316
519
  countriesBlockedForMinors: string[] | null;
317
520
  legalAgeGroupRule: string | null;
@@ -334,6 +537,11 @@ namespace reference.`microsoft.graph` {
334
537
  password: string | null;
335
538
  }
336
539
 
540
+ @complex model patternedRecurrence {
541
+ pattern: recurrencePattern | null;
542
+ range: recurrenceRange | null;
543
+ }
544
+
337
545
  @complex model permissionScope {
338
546
  adminConsentDescription: string | null;
339
547
  adminConsentDisplayName: string | null;
@@ -346,6 +554,11 @@ namespace reference.`microsoft.graph` {
346
554
  value: string | null;
347
555
  }
348
556
 
557
+ @complex model personType {
558
+ class: string | null;
559
+ subclass: string | null;
560
+ }
561
+
349
562
  @complex model phone {
350
563
  language: string | null;
351
564
  number: string | null;
@@ -353,6 +566,14 @@ namespace reference.`microsoft.graph` {
353
566
  type: phoneType | null;
354
567
  }
355
568
 
569
+ @complex model physicalAddress {
570
+ city: string | null;
571
+ countryOrRegion: string | null;
572
+ postalCode: string | null;
573
+ state: string | null;
574
+ street: string | null;
575
+ }
576
+
356
577
  @complex model physicalOfficeAddress {
357
578
  city: string | null;
358
579
  countryOrRegion: string | null;
@@ -382,11 +603,44 @@ namespace reference.`microsoft.graph` {
382
603
  redirectUris: string[];
383
604
  }
384
605
 
606
+ @complex model recipient {
607
+ emailAddress: emailAddress | null;
608
+ }
609
+
610
+ @complex model recurrencePattern {
611
+ dayOfMonth: int32;
612
+ daysOfWeek: dayOfWeek[] | null;
613
+ firstDayOfWeek: dayOfWeek | null;
614
+ index: weekIndex | null;
615
+ interval: int32;
616
+ month: int32;
617
+ type: recurrencePatternType | null;
618
+ }
619
+
620
+ @complex model recurrenceRange {
621
+ endDate: offsetDateTime | null;
622
+ numberOfOccurrences: int32;
623
+ recurrenceTimeZone: string | null;
624
+ startDate: offsetDateTime | null;
625
+ type: recurrenceRangeType | null;
626
+ }
627
+
385
628
  @complex model redirectUriSettings {
386
629
  index: int32 | null;
387
630
  uri: string | null;
388
631
  }
389
632
 
633
+ @complex model reminder {
634
+ changeKey: string | null;
635
+ eventEndTime: dateTimeTimeZone | null;
636
+ eventId: string | null;
637
+ eventLocation: location | null;
638
+ eventStartTime: dateTimeTimeZone | null;
639
+ eventSubject: string | null;
640
+ eventWebLink: string | null;
641
+ reminderFireTime: dateTimeTimeZone | null;
642
+ }
643
+
390
644
  @complex model requestSignatureVerification {
391
645
  allowedWeakAlgorithms: weakAlgorithms | null;
392
646
  isSignedRequestRequired: boolean;
@@ -407,10 +661,39 @@ namespace reference.`microsoft.graph` {
407
661
  value: string;
408
662
  }
409
663
 
664
+ @complex model responseStatus {
665
+ response: responseType | null;
666
+ time: offsetDateTime | null;
667
+ }
668
+
410
669
  @complex model samlSingleSignOnSettings {
411
670
  relayState: string | null;
412
671
  }
413
672
 
673
+ @complex model scheduleInformation {
674
+ availabilityView: string | null;
675
+ error: freeBusyError | null;
676
+ scheduleId: string | null;
677
+ scheduleItems: scheduleItem[] | null;
678
+ workingHours: workingHours | null;
679
+ }
680
+
681
+ @complex model scheduleItem {
682
+ end: dateTimeTimeZone | null;
683
+ isPrivate: boolean | null;
684
+ location: string | null;
685
+ start: dateTimeTimeZone | null;
686
+ status: freeBusyStatus | null;
687
+ subject: string | null;
688
+ }
689
+
690
+ @complex model scoredEmailAddress {
691
+ address: string | null;
692
+ itemId: string | null;
693
+ relevanceScore: float64 | null;
694
+ selectionLikelihood: selectionLikelihoodInfo | null;
695
+ }
696
+
414
697
  @complex model servicePlanInfo {
415
698
  appliesTo: string | null;
416
699
  provisioningStatus: string | null;
@@ -443,10 +726,23 @@ namespace reference.`microsoft.graph` {
443
726
  @computed lastRunDateTime: offsetDateTime | null;
444
727
  }
445
728
 
729
+ @complex model sizeRange {
730
+ maximumSize: int32 | null;
731
+ minimumSize: int32 | null;
732
+ }
733
+
446
734
  @complex model spaApplication {
447
735
  redirectUris: string[];
448
736
  }
449
737
 
738
+ @complex model standardTimeZoneOffset {
739
+ dayOccurrence: int32 | null;
740
+ dayOfWeek: dayOfWeek | null;
741
+ month: int32 | null;
742
+ time: offsetDateTime | null;
743
+ year: int32 | null;
744
+ }
745
+
450
746
  @complex model tenantInformation {
451
747
  defaultDomainName: string | null;
452
748
  displayName: string | null;
@@ -454,12 +750,32 @@ namespace reference.`microsoft.graph` {
454
750
  tenantId: string;
455
751
  }
456
752
 
753
+ @complex model timeSlot {
754
+ end: dateTimeTimeZone;
755
+ start: dateTimeTimeZone;
756
+ }
757
+
758
+ @complex model timeZoneBase {
759
+ name: string | null;
760
+ }
761
+
762
+ @complex model timeZoneInformation {
763
+ `alias`: string | null;
764
+ displayName: string | null;
765
+ }
766
+
457
767
  @complex model unifiedRolePermission {
458
768
  allowedResourceActions: string[];
459
769
  condition: string | null;
460
770
  excludedResourceActions: string[] | null;
461
771
  }
462
772
 
773
+ @complex model uploadSession {
774
+ expirationDateTime: offsetDateTime | null;
775
+ nextExpectedRanges: string[] | null;
776
+ uploadUrl: string | null;
777
+ }
778
+
463
779
  @complex model verifiedDomain {
464
780
  capabilities: string | null;
465
781
  isDefault: boolean | null;
@@ -476,6 +792,19 @@ namespace reference.`microsoft.graph` {
476
792
  redirectUriSettings: redirectUriSettings[];
477
793
  }
478
794
 
795
+ @complex model website {
796
+ address: string | null;
797
+ displayName: string | null;
798
+ type: websiteType | null;
799
+ }
800
+
801
+ @complex model workingHours {
802
+ daysOfWeek: dayOfWeek[] | null;
803
+ endTime: offsetDateTime | null;
804
+ startTime: offsetDateTime | null;
805
+ timeZone: timeZoneBase | null;
806
+ }
807
+
479
808
  @entity model activityBasedTimeoutPolicy extends stsPolicy {
480
809
  }
481
810
 
@@ -562,6 +891,15 @@ namespace reference.`microsoft.graph` {
562
891
  type: string | null;
563
892
  }
564
893
 
894
+ @abstract
895
+ @entity model attachment extends entity {
896
+ contentType: string | null;
897
+ isInline: boolean;
898
+ @computed lastModifiedDateTime: offsetDateTime | null;
899
+ name: string | null;
900
+ size: int32;
901
+ }
902
+
565
903
  @entity model attributeSet extends entity {
566
904
  description: string | null;
567
905
  maxAttributesPerSet: int32 | null;
@@ -578,6 +916,49 @@ namespace reference.`microsoft.graph` {
578
916
  guestUserRoleId: guid | null;
579
917
  }
580
918
 
919
+ @entity model calendar extends entity {
920
+ allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
921
+ canEdit: boolean | null;
922
+ canShare: boolean | null;
923
+ canViewPrivateItems: boolean | null;
924
+ changeKey: string | null;
925
+ color: calendarColor | null;
926
+ defaultOnlineMeetingProvider: onlineMeetingProviderType | null;
927
+ hexColor: string | null;
928
+ isDefaultCalendar: boolean | null;
929
+ isRemovable: boolean | null;
930
+ isTallyingResponses: boolean | null;
931
+ name: string | null;
932
+ owner: emailAddress | null;
933
+ @contains calendarPermissions: calendarPermission[];
934
+ @contains calendarView: event[];
935
+ @contains events: event[];
936
+ @contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
937
+ @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
938
+ }
939
+
940
+ @entity model calendarGroup extends entity {
941
+ changeKey: string | null;
942
+ classId: guid | null;
943
+ name: string | null;
944
+ @contains calendars: calendar[];
945
+ }
946
+
947
+ @entity model calendarPermission extends entity {
948
+ allowedRoles: calendarRoleType[] | null;
949
+ emailAddress: emailAddress | null;
950
+ isInsideOrganization: boolean | null;
951
+ isRemovable: boolean | null;
952
+ role: calendarRoleType | null;
953
+ }
954
+
955
+ @entity model calendarSharingMessage extends message {
956
+ canAccept: boolean | null;
957
+ sharingMessageAction: calendarSharingMessageAction | null;
958
+ sharingMessageActions: calendarSharingMessageAction[] | null;
959
+ suggestedCalendarName: string | null;
960
+ }
961
+
581
962
  @entity model certificateBasedAuthConfiguration extends entity {
582
963
  certificateAuthorities: certificateAuthority[];
583
964
  }
@@ -600,6 +981,56 @@ namespace reference.`microsoft.graph` {
600
981
  totalLicenses: int32 | null;
601
982
  }
602
983
 
984
+ @open
985
+ @entity model contact extends outlookItem {
986
+ assistantName: string | null;
987
+ birthday: offsetDateTime | null;
988
+ businessAddress: physicalAddress | null;
989
+ businessHomePage: string | null;
990
+ businessPhones: string[] | null;
991
+ children: string[] | null;
992
+ companyName: string | null;
993
+ department: string | null;
994
+ displayName: string | null;
995
+ emailAddresses: emailAddress[] | null;
996
+ fileAs: string | null;
997
+ generation: string | null;
998
+ givenName: string | null;
999
+ homeAddress: physicalAddress | null;
1000
+ homePhones: string[] | null;
1001
+ imAddresses: string[] | null;
1002
+ initials: string | null;
1003
+ jobTitle: string | null;
1004
+ manager: string | null;
1005
+ middleName: string | null;
1006
+ mobilePhone: string | null;
1007
+ nickName: string | null;
1008
+ officeLocation: string | null;
1009
+ otherAddress: physicalAddress | null;
1010
+ parentFolderId: string | null;
1011
+ personalNotes: string | null;
1012
+ profession: string | null;
1013
+ spouseName: string | null;
1014
+ surname: string | null;
1015
+ title: string | null;
1016
+ yomiCompanyName: string | null;
1017
+ yomiGivenName: string | null;
1018
+ yomiSurname: string | null;
1019
+ @contains extensions: extension[];
1020
+ @contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
1021
+ @contains photo: profilePhoto | null;
1022
+ @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
1023
+ }
1024
+
1025
+ @entity model contactFolder extends entity {
1026
+ displayName: string | null;
1027
+ parentFolderId: string | null;
1028
+ @contains childFolders: contactFolder[];
1029
+ @contains contacts: contact[];
1030
+ @contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
1031
+ @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
1032
+ }
1033
+
603
1034
  @open
604
1035
  @entity model contract extends directoryObject {
605
1036
  contractType: string | null;
@@ -608,6 +1039,27 @@ namespace reference.`microsoft.graph` {
608
1039
  displayName: string | null;
609
1040
  }
610
1041
 
1042
+ @entity model conversation extends entity {
1043
+ hasAttachments: boolean;
1044
+ @computed lastDeliveredDateTime: offsetDateTime;
1045
+ preview: string;
1046
+ topic: string;
1047
+ uniqueSenders: string[];
1048
+ @contains threads: conversationThread[];
1049
+ }
1050
+
1051
+ @entity model conversationThread extends entity {
1052
+ ccRecipients: recipient[];
1053
+ hasAttachments: boolean;
1054
+ isLocked: boolean;
1055
+ @computed lastDeliveredDateTime: offsetDateTime;
1056
+ preview: string;
1057
+ topic: string;
1058
+ toRecipients: recipient[];
1059
+ uniqueSenders: string[];
1060
+ @contains posts: post[];
1061
+ }
1062
+
611
1063
  @entity model crossTenantAccessPolicy extends policyBase {
612
1064
  @contains default: crossTenantAccessPolicyConfigurationDefault | null;
613
1065
  @contains partners: crossTenantAccessPolicyConfigurationPartner[];
@@ -800,10 +1252,85 @@ namespace reference.`microsoft.graph` {
800
1252
  }
801
1253
 
802
1254
  @abstract
803
- @entity model entity extends MsGraph.SharedModels.entity {
1255
+ @entity model entity {
804
1256
  @computed @key id: string;
805
1257
  }
806
1258
 
1259
+ @open
1260
+ @entity model event extends outlookItem {
1261
+ allowNewTimeProposals: boolean | null;
1262
+ attendees: attendee[] | null;
1263
+ body: itemBody | null;
1264
+ bodyPreview: string | null;
1265
+ end: dateTimeTimeZone | null;
1266
+ hasAttachments: boolean | null;
1267
+ hideAttendees: boolean | null;
1268
+ iCalUId: string | null;
1269
+ importance: importance | null;
1270
+ isAllDay: boolean | null;
1271
+ isCancelled: boolean | null;
1272
+ isDraft: boolean | null;
1273
+ isOnlineMeeting: boolean | null;
1274
+ isOrganizer: boolean | null;
1275
+ isReminderOn: boolean | null;
1276
+ location: location | null;
1277
+ locations: location[] | null;
1278
+ onlineMeeting: onlineMeetingInfo | null;
1279
+ onlineMeetingProvider: onlineMeetingProviderType | null;
1280
+ onlineMeetingUrl: string | null;
1281
+ organizer: recipient | null;
1282
+ originalEndTimeZone: string | null;
1283
+ originalStart: offsetDateTime | null;
1284
+ originalStartTimeZone: string | null;
1285
+ recurrence: patternedRecurrence | null;
1286
+ reminderMinutesBeforeStart: int32 | null;
1287
+ responseRequested: boolean | null;
1288
+ responseStatus: responseStatus | null;
1289
+ sensitivity: sensitivity | null;
1290
+ seriesMasterId: string | null;
1291
+ showAs: freeBusyStatus | null;
1292
+ start: dateTimeTimeZone | null;
1293
+ subject: string | null;
1294
+ transactionId: string | null;
1295
+ type: eventType | null;
1296
+ webLink: string | null;
1297
+ @contains attachments: attachment[];
1298
+ @contains calendar: calendar | null;
1299
+ @contains extensions: extension[];
1300
+ @contains instances: event[];
1301
+ @contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
1302
+ @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
1303
+ }
1304
+
1305
+ @entity model eventMessage extends message {
1306
+ endDateTime: dateTimeTimeZone | null;
1307
+ isAllDay: boolean | null;
1308
+ isDelegated: boolean | null;
1309
+ isOutOfDate: boolean | null;
1310
+ location: location | null;
1311
+ meetingMessageType: meetingMessageType | null;
1312
+ recurrence: patternedRecurrence | null;
1313
+ startDateTime: dateTimeTimeZone | null;
1314
+ type: eventType | null;
1315
+ @contains event: event | null;
1316
+ }
1317
+
1318
+ @entity model eventMessageRequest extends eventMessage {
1319
+ allowNewTimeProposals: boolean | null;
1320
+ meetingRequestType: meetingRequestType | null;
1321
+ previousEndDateTime: dateTimeTimeZone | null;
1322
+ previousLocation: location | null;
1323
+ previousStartDateTime: dateTimeTimeZone | null;
1324
+ responseRequested: boolean | null;
1325
+ }
1326
+
1327
+ @entity model eventMessageResponse extends eventMessage {
1328
+ proposedNewTime: timeSlot | null;
1329
+ responseType: responseType | null;
1330
+ }
1331
+
1332
+ @abstract
1333
+ @open
807
1334
  @entity model extension extends entity {
808
1335
  }
809
1336
 
@@ -828,10 +1355,18 @@ namespace reference.`microsoft.graph` {
828
1355
  subject: string;
829
1356
  }
830
1357
 
1358
+ @entity model fileAttachment extends attachment {
1359
+ contentBytes: binary | null;
1360
+ contentId: string | null;
1361
+ contentLocation: string | null;
1362
+ }
1363
+
831
1364
  @open
832
1365
  @entity model group extends directoryObject {
1366
+ allowExternalSenders: boolean | null;
833
1367
  assignedLabels: assignedLabel[] | null;
834
1368
  assignedLicenses: assignedLicense[] | null;
1369
+ autoSubscribeNewMembers: boolean | null;
835
1370
  classification: string | null;
836
1371
  @computed createdDateTime: offsetDateTime | null;
837
1372
  description: string | null;
@@ -839,8 +1374,11 @@ namespace reference.`microsoft.graph` {
839
1374
  expirationDateTime: offsetDateTime | null;
840
1375
  groupTypes: string[];
841
1376
  hasMembersWithLicenseErrors: boolean | null;
1377
+ hideFromAddressLists: boolean | null;
1378
+ hideFromOutlookClients: boolean | null;
842
1379
  isAssignableToRole: boolean | null;
843
1380
  isManagementRestricted: boolean | null;
1381
+ isSubscribedByMail: boolean | null;
844
1382
  licenseProcessingState: licenseProcessingState | null;
845
1383
  mail: string | null;
846
1384
  mailEnabled: boolean | null;
@@ -864,9 +1402,15 @@ namespace reference.`microsoft.graph` {
864
1402
  securityIdentifier: string | null;
865
1403
  theme: string | null;
866
1404
  uniqueName: string | null;
1405
+ unseenCount: int32 | null;
867
1406
  visibility: string | null;
1407
+ @contains acceptedSenders: directoryObject[];
868
1408
  @contains appRoleAssignments: appRoleAssignment[];
1409
+ @contains calendar: calendar | null;
1410
+ @contains calendarView: event[];
1411
+ @contains conversations: conversation[];
869
1412
  @references createdOnBehalfOf: directoryObject | null;
1413
+ @contains events: event[];
870
1414
  @contains extensions: extension[];
871
1415
  @references memberOf: directoryObject[];
872
1416
  @references members: directoryObject[];
@@ -874,7 +1418,9 @@ namespace reference.`microsoft.graph` {
874
1418
  @contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
875
1419
  @references owners: directoryObject[];
876
1420
  @contains permissionGrants: resourceSpecificPermissionGrant[];
1421
+ @contains rejectedSenders: directoryObject[];
877
1422
  @contains settings: groupSetting[];
1423
+ @contains threads: conversationThread[];
878
1424
  @references transitiveMemberOf: directoryObject[];
879
1425
  @references transitiveMembers: directoryObject[];
880
1426
  }
@@ -904,6 +1450,15 @@ namespace reference.`microsoft.graph` {
904
1450
  displayName: string | null;
905
1451
  }
906
1452
 
1453
+ @entity model inferenceClassification extends entity {
1454
+ @contains overrides: inferenceClassificationOverride[];
1455
+ }
1456
+
1457
+ @entity model inferenceClassificationOverride extends entity {
1458
+ classifyAs: inferenceClassificationType | null;
1459
+ senderEmailAddress: emailAddress | null;
1460
+ }
1461
+
907
1462
  @entity model internalDomainFederation extends samlOrWsFedProvider {
908
1463
  activeSignInUri: string | null;
909
1464
  federatedIdpMfaBehavior: federatedIdpMfaBehavior | null;
@@ -915,12 +1470,85 @@ namespace reference.`microsoft.graph` {
915
1470
  signOutUri: string | null;
916
1471
  }
917
1472
 
1473
+ @entity model itemAttachment extends attachment {
1474
+ @contains item: outlookItem | null;
1475
+ }
1476
+
918
1477
  @entity model licenseDetails extends entity {
919
1478
  servicePlans: servicePlanInfo[];
920
1479
  skuId: guid | null;
921
1480
  skuPartNumber: string | null;
922
1481
  }
923
1482
 
1483
+ @entity model mailFolder extends entity {
1484
+ childFolderCount: int32 | null;
1485
+ displayName: string | null;
1486
+ parentFolderId: string | null;
1487
+ totalItemCount: int32 | null;
1488
+ unreadItemCount: int32 | null;
1489
+ @contains childFolders: mailFolder[];
1490
+ @contains messageRules: messageRule[];
1491
+ @contains messages: message[];
1492
+ @contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
1493
+ @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
1494
+ }
1495
+
1496
+ @entity model mailSearchFolder extends mailFolder {
1497
+ filterQuery: string | null;
1498
+ includeNestedFolders: boolean | null;
1499
+ isSupported: boolean | null;
1500
+ sourceFolderIds: string[] | null;
1501
+ }
1502
+
1503
+ @open
1504
+ @entity model message extends outlookItem {
1505
+ bccRecipients: recipient[] | null;
1506
+ body: itemBody | null;
1507
+ bodyPreview: string | null;
1508
+ ccRecipients: recipient[] | null;
1509
+ conversationId: string | null;
1510
+ conversationIndex: binary | null;
1511
+ flag: followupFlag | null;
1512
+ from: recipient | null;
1513
+ hasAttachments: boolean | null;
1514
+ importance: importance | null;
1515
+ inferenceClassification: inferenceClassificationType | null;
1516
+ internetMessageHeaders: internetMessageHeader[] | null;
1517
+ internetMessageId: string | null;
1518
+ isDeliveryReceiptRequested: boolean | null;
1519
+ isDraft: boolean | null;
1520
+ isRead: boolean | null;
1521
+ isReadReceiptRequested: boolean | null;
1522
+ parentFolderId: string | null;
1523
+ receivedDateTime: offsetDateTime | null;
1524
+ replyTo: recipient[] | null;
1525
+ sender: recipient | null;
1526
+ sentDateTime: offsetDateTime | null;
1527
+ subject: string | null;
1528
+ toRecipients: recipient[] | null;
1529
+ uniqueBody: itemBody | null;
1530
+ webLink: string | null;
1531
+ @contains attachments: attachment[];
1532
+ @contains extensions: extension[];
1533
+ @contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
1534
+ @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
1535
+ }
1536
+
1537
+ @entity model messageRule extends entity {
1538
+ actions: messageRuleActions | null;
1539
+ conditions: messageRulePredicates | null;
1540
+ displayName: string | null;
1541
+ exceptions: messageRulePredicates | null;
1542
+ hasError: boolean | null;
1543
+ isEnabled: boolean | null;
1544
+ isReadOnly: boolean | null;
1545
+ sequence: int32 | null;
1546
+ }
1547
+
1548
+ @entity model multiValueLegacyExtendedProperty extends entity {
1549
+ value: string[] | null;
1550
+ }
1551
+
924
1552
  @entity model oAuth2PermissionGrant extends entity {
925
1553
  clientId: string;
926
1554
  consentType: string | null;
@@ -938,6 +1566,11 @@ namespace reference.`microsoft.graph` {
938
1566
  isCloudManaged: boolean;
939
1567
  }
940
1568
 
1569
+ @open
1570
+ @entity model openTypeExtension extends extension {
1571
+ extensionName: string;
1572
+ }
1573
+
941
1574
  @open
942
1575
  @entity model organization extends directoryObject {
943
1576
  assignedPlans: assignedPlan[];
@@ -1032,6 +1665,23 @@ namespace reference.`microsoft.graph` {
1032
1665
  @references transitiveMemberOf: directoryObject[];
1033
1666
  }
1034
1667
 
1668
+ @entity model outlookCategory extends entity {
1669
+ color: categoryColor | null;
1670
+ displayName: string | null;
1671
+ }
1672
+
1673
+ @abstract
1674
+ @entity model outlookItem extends entity {
1675
+ categories: string[] | null;
1676
+ changeKey: string | null;
1677
+ @computed createdDateTime: offsetDateTime | null;
1678
+ @computed lastModifiedDateTime: offsetDateTime | null;
1679
+ }
1680
+
1681
+ @entity model outlookUser extends entity {
1682
+ @contains masterCategories: outlookCategory[];
1683
+ }
1684
+
1035
1685
  @entity model permissionGrantConditionSet extends entity {
1036
1686
  clientApplicationIds: string[] | null;
1037
1687
  clientApplicationPublisherIds: string[] | null;
@@ -1048,6 +1698,28 @@ namespace reference.`microsoft.graph` {
1048
1698
  @contains includes: permissionGrantConditionSet[];
1049
1699
  }
1050
1700
 
1701
+ @entity model person extends entity {
1702
+ birthday: string | null;
1703
+ companyName: string | null;
1704
+ department: string | null;
1705
+ displayName: string | null;
1706
+ givenName: string | null;
1707
+ imAddress: string | null;
1708
+ isFavorite: boolean | null;
1709
+ jobTitle: string | null;
1710
+ officeLocation: string | null;
1711
+ personNotes: string | null;
1712
+ personType: personType | null;
1713
+ phones: phone[] | null;
1714
+ postalAddresses: location[] | null;
1715
+ profession: string | null;
1716
+ scoredEmailAddresses: scoredEmailAddress[] | null;
1717
+ surname: string | null;
1718
+ userPrincipalName: string | null;
1719
+ websites: website[] | null;
1720
+ yomiCompany: string | null;
1721
+ }
1722
+
1051
1723
  @abstract
1052
1724
  @entity model policyBase extends directoryObject {
1053
1725
  description: string | null;
@@ -1067,12 +1739,37 @@ namespace reference.`microsoft.graph` {
1067
1739
  @contains tokenLifetimePolicies: tokenLifetimePolicy[];
1068
1740
  }
1069
1741
 
1742
+ @open
1743
+ @entity model post extends outlookItem {
1744
+ body: itemBody | null;
1745
+ conversationId: string | null;
1746
+ conversationThreadId: string | null;
1747
+ from: recipient;
1748
+ hasAttachments: boolean;
1749
+ newParticipants: recipient[];
1750
+ receivedDateTime: offsetDateTime;
1751
+ sender: recipient | null;
1752
+ @contains attachments: attachment[];
1753
+ @contains extensions: extension[];
1754
+ @contains inReplyTo: post | null;
1755
+ @contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
1756
+ @contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
1757
+ }
1758
+
1759
+ @entity model profilePhoto extends entity {
1760
+ height: int32 | null;
1761
+ width: int32 | null;
1762
+ }
1763
+
1070
1764
  @entity model rbacApplication extends entity {
1071
1765
  @contains resourceNamespaces: unifiedRbacResourceNamespace[];
1072
1766
  @contains roleAssignments: unifiedRoleAssignment[];
1073
1767
  @contains roleDefinitions: unifiedRoleDefinition[];
1074
1768
  }
1075
1769
 
1770
+ @entity model referenceAttachment extends attachment {
1771
+ }
1772
+
1076
1773
  @entity model remoteDesktopSecurityConfiguration extends entity {
1077
1774
  isRemoteDesktopProtocolEnabled: boolean;
1078
1775
  @contains targetDeviceGroups: targetDeviceGroup[];
@@ -1170,6 +1867,10 @@ namespace reference.`microsoft.graph` {
1170
1867
  @references transitiveMemberOf: directoryObject[];
1171
1868
  }
1172
1869
 
1870
+ @entity model singleValueLegacyExtendedProperty extends entity {
1871
+ value: string | null;
1872
+ }
1873
+
1173
1874
  @abstract
1174
1875
  @entity model stsPolicy extends policyBase {
1175
1876
  definition: string[];
@@ -1282,6 +1983,7 @@ namespace reference.`microsoft.graph` {
1282
1983
  legalAgeGroupClassification: string | null;
1283
1984
  licenseAssignmentStates: licenseAssignmentState[] | null;
1284
1985
  mail: string | null;
1986
+ mailboxSettings: mailboxSettings | null;
1285
1987
  mailNickname: string | null;
1286
1988
  mobilePhone: string | null;
1287
1989
  officeLocation: string | null;
@@ -1313,141 +2015,486 @@ namespace reference.`microsoft.graph` {
1313
2015
  userPrincipalName: string | null;
1314
2016
  userType: string | null;
1315
2017
  @contains appRoleAssignments: appRoleAssignment[];
2018
+ @contains calendar: calendar | null;
2019
+ @contains calendarGroups: calendarGroup[];
2020
+ @contains calendars: calendar[];
2021
+ @contains calendarView: event[];
2022
+ @contains contactFolders: contactFolder[];
2023
+ @contains contacts: contact[];
1316
2024
  @references createdObjects: directoryObject[];
1317
2025
  @references directReports: directoryObject[];
2026
+ @contains events: event[];
1318
2027
  @contains extensions: extension[];
2028
+ @contains inferenceClassification: inferenceClassification | null;
1319
2029
  @contains licenseDetails: licenseDetails[];
2030
+ @contains mailFolders: mailFolder[];
1320
2031
  @references manager: directoryObject | null;
1321
2032
  @references memberOf: directoryObject[];
2033
+ @contains messages: message[];
1322
2034
  @references oauth2PermissionGrants: oAuth2PermissionGrant[];
1323
2035
  @contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
2036
+ @contains outlook: outlookUser | null;
1324
2037
  @references ownedDevices: directoryObject[];
1325
2038
  @references ownedObjects: directoryObject[];
2039
+ @contains people: person[];
1326
2040
  @references registeredDevices: directoryObject[];
1327
2041
  @contains scopedRoleMemberOf: scopedRoleMembership[];
2042
+ @references sponsors: directoryObject[];
1328
2043
  @references transitiveMemberOf: directoryObject[];
1329
2044
  }
1330
2045
 
1331
2046
  enum allowInvitesFrom {
1332
- none,
1333
- adminsAndGuestInviters,
1334
- adminsGuestInvitersAndAllMembers,
1335
- everyone,
1336
- unknownFutureValue,
2047
+ none: 0,
2048
+ adminsAndGuestInviters: 1,
2049
+ adminsGuestInvitersAndAllMembers: 2,
2050
+ everyone: 3,
2051
+ unknownFutureValue: 4,
1337
2052
  }
1338
2053
 
1339
2054
  enum appCredentialRestrictionType {
1340
- passwordAddition,
1341
- passwordLifetime,
1342
- symmetricKeyAddition,
1343
- symmetricKeyLifetime,
1344
- customPasswordAddition,
1345
- unknownFutureValue,
2055
+ passwordAddition: 0,
2056
+ passwordLifetime: 1,
2057
+ symmetricKeyAddition: 2,
2058
+ symmetricKeyLifetime: 3,
2059
+ customPasswordAddition: 4,
2060
+ unknownFutureValue: 99,
1346
2061
  }
1347
2062
 
1348
2063
  enum appKeyCredentialRestrictionType {
1349
- asymmetricKeyLifetime,
1350
- unknownFutureValue,
2064
+ asymmetricKeyLifetime: 0,
2065
+ unknownFutureValue: 99,
2066
+ }
2067
+
2068
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2069
+ enum attachmentType {
2070
+ file: 0,
2071
+ item: 1,
2072
+ reference: 2,
2073
+ }
2074
+
2075
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2076
+ enum attendeeType {
2077
+ required: 0,
2078
+ optional: 1,
2079
+ resource: 2,
1351
2080
  }
1352
2081
 
1353
2082
  enum authenticationProtocol {
1354
- wsFed,
1355
- saml,
1356
- unknownFutureValue,
2083
+ wsFed: 0,
2084
+ saml: 1,
2085
+ unknownFutureValue: 2,
2086
+ }
2087
+
2088
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2089
+ enum automaticRepliesStatus {
2090
+ disabled: 0,
2091
+ alwaysEnabled: 1,
2092
+ scheduled: 2,
1357
2093
  }
1358
2094
 
1359
2095
  enum b2bIdentityProvidersType {
1360
- azureActiveDirectory,
1361
- externalFederation,
1362
- socialIdentityProviders,
1363
- emailOneTimePasscode,
1364
- microsoftAccount,
1365
- defaultConfiguredIdp,
1366
- unknownFutureValue,
2096
+ azureActiveDirectory: 1,
2097
+ externalFederation: 2,
2098
+ socialIdentityProviders: 3,
2099
+ emailOneTimePasscode: 4,
2100
+ microsoftAccount: 5,
2101
+ defaultConfiguredIdp: 6,
2102
+ unknownFutureValue: 7,
2103
+ }
2104
+
2105
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2106
+ enum bodyType {
2107
+ text: 0,
2108
+ html: 1,
2109
+ }
2110
+
2111
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2112
+ enum calendarColor {
2113
+ auto: -1,
2114
+ lightBlue: 0,
2115
+ lightGreen: 1,
2116
+ lightOrange: 2,
2117
+ lightGray: 3,
2118
+ lightYellow: 4,
2119
+ lightTeal: 5,
2120
+ lightPink: 6,
2121
+ lightBrown: 7,
2122
+ lightRed: 8,
2123
+ maxColor: 9,
2124
+ }
2125
+
2126
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2127
+ enum calendarRoleType {
2128
+ none: 0,
2129
+ freeBusyRead: 1,
2130
+ limitedRead: 2,
2131
+ read: 3,
2132
+ write: 4,
2133
+ delegateWithoutPrivateEventAccess: 5,
2134
+ delegateWithPrivateEventAccess: 6,
2135
+ custom: 7,
2136
+ }
2137
+
2138
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2139
+ enum calendarSharingAction {
2140
+ accept: 0,
2141
+ acceptAndViewCalendar: 1,
2142
+ viewCalendar: 2,
2143
+ addThisCalendar: 3,
2144
+ }
2145
+
2146
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2147
+ enum calendarSharingActionImportance {
2148
+ primary: 0,
2149
+ secondary: 1,
2150
+ }
2151
+
2152
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2153
+ enum calendarSharingActionType {
2154
+ accept: 0,
2155
+ }
2156
+
2157
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2158
+ enum categoryColor {
2159
+ none: -1,
2160
+ preset0: 0,
2161
+ preset1: 1,
2162
+ preset2: 2,
2163
+ preset3: 3,
2164
+ preset4: 4,
2165
+ preset5: 5,
2166
+ preset6: 6,
2167
+ preset7: 7,
2168
+ preset8: 8,
2169
+ preset9: 9,
2170
+ preset10: 10,
2171
+ preset11: 11,
2172
+ preset12: 12,
2173
+ preset13: 13,
2174
+ preset14: 14,
2175
+ preset15: 15,
2176
+ preset16: 16,
2177
+ preset17: 17,
2178
+ preset18: 18,
2179
+ preset19: 19,
2180
+ preset20: 20,
2181
+ preset21: 21,
2182
+ preset22: 22,
2183
+ preset23: 23,
2184
+ preset24: 24,
1367
2185
  }
1368
2186
 
1369
2187
  enum crossTenantAccessPolicyTargetConfigurationAccessType {
1370
- allowed,
1371
- blocked,
1372
- unknownFutureValue,
2188
+ allowed: 1,
2189
+ blocked: 2,
2190
+ unknownFutureValue: 3,
1373
2191
  }
1374
2192
 
1375
2193
  enum crossTenantAccessPolicyTargetType {
1376
- user,
1377
- group,
1378
- application,
1379
- unknownFutureValue,
2194
+ user: 1,
2195
+ group: 2,
2196
+ application: 3,
2197
+ unknownFutureValue: 4,
2198
+ }
2199
+
2200
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2201
+ enum dayOfWeek {
2202
+ sunday: 0,
2203
+ monday: 1,
2204
+ tuesday: 2,
2205
+ wednesday: 3,
2206
+ thursday: 4,
2207
+ friday: 5,
2208
+ saturday: 6,
2209
+ }
2210
+
2211
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2212
+ enum delegateMeetingMessageDeliveryOptions {
2213
+ sendToDelegateAndInformationToPrincipal: 0,
2214
+ sendToDelegateAndPrincipal: 1,
2215
+ sendToDelegateOnly: 2,
2216
+ }
2217
+
2218
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2219
+ enum eventType {
2220
+ singleInstance: 0,
2221
+ occurrence: 1,
2222
+ exception: 2,
2223
+ seriesMaster: 3,
2224
+ }
2225
+
2226
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2227
+ enum exchangeIdFormat {
2228
+ entryId: 0,
2229
+ ewsId: 1,
2230
+ immutableEntryId: 2,
2231
+ restId: 3,
2232
+ restImmutableEntryId: 4,
2233
+ }
2234
+
2235
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2236
+ enum externalAudienceScope {
2237
+ none: 0,
2238
+ contactsOnly: 1,
2239
+ all: 2,
1380
2240
  }
1381
2241
 
1382
2242
  enum federatedIdpMfaBehavior {
1383
- acceptIfMfaDoneByFederatedIdp,
1384
- enforceMfaByFederatedIdp,
1385
- rejectMfaByFederatedIdp,
1386
- unknownFutureValue,
2243
+ acceptIfMfaDoneByFederatedIdp: 0,
2244
+ enforceMfaByFederatedIdp: 1,
2245
+ rejectMfaByFederatedIdp: 2,
2246
+ unknownFutureValue: 3,
2247
+ }
2248
+
2249
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2250
+ enum followupFlagStatus {
2251
+ notFlagged: 0,
2252
+ complete: 1,
2253
+ flagged: 2,
2254
+ }
2255
+
2256
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2257
+ enum freeBusyStatus {
2258
+ `unknown`: -1,
2259
+ free: 0,
2260
+ tentative: 1,
2261
+ busy: 2,
2262
+ oof: 3,
2263
+ workingElsewhere: 4,
2264
+ }
2265
+
2266
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2267
+ enum importance {
2268
+ low: 0,
2269
+ normal: 1,
2270
+ high: 2,
2271
+ }
2272
+
2273
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2274
+ enum inferenceClassificationType {
2275
+ focused: 0,
2276
+ other: 1,
1387
2277
  }
1388
2278
 
1389
2279
  enum layoutTemplateType {
1390
- default,
1391
- verticalSplit,
1392
- unknownFutureValue,
2280
+ default: 0,
2281
+ verticalSplit: 1,
2282
+ unknownFutureValue: 10,
2283
+ }
2284
+
2285
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2286
+ enum locationType {
2287
+ default: 0,
2288
+ conferenceRoom: 1,
2289
+ homeAddress: 2,
2290
+ businessAddress: 3,
2291
+ geoCoordinates: 4,
2292
+ streetAddress: 5,
2293
+ hotel: 6,
2294
+ restaurant: 7,
2295
+ localBusiness: 8,
2296
+ postalAddress: 9,
2297
+ }
2298
+
2299
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2300
+ enum locationUniqueIdType {
2301
+ `unknown`: 0,
2302
+ locationStore: 1,
2303
+ directory: 2,
2304
+ private: 3,
2305
+ bing: 4,
2306
+ }
2307
+
2308
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2309
+ @graphFlags
2310
+ enum mailTipsType {
2311
+ automaticReplies: 1,
2312
+ mailboxFullStatus: 2,
2313
+ customMailTip: 4,
2314
+ externalMemberCount: 8,
2315
+ totalMemberCount: 16,
2316
+ maxMessageSize: 32,
2317
+ deliveryRestriction: 64,
2318
+ moderationStatus: 128,
2319
+ recipientScope: 256,
2320
+ recipientSuggestions: 512,
2321
+ }
2322
+
2323
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2324
+ enum meetingMessageType {
2325
+ none: 0,
2326
+ meetingRequest: 1,
2327
+ meetingCancelled: 2,
2328
+ meetingAccepted: 3,
2329
+ meetingTenativelyAccepted: 4,
2330
+ meetingDeclined: 5,
2331
+ }
2332
+
2333
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2334
+ enum meetingRequestType {
2335
+ none: 0,
2336
+ newMeetingRequest: 1,
2337
+ fullUpdate: 65536,
2338
+ informationalUpdate: 131072,
2339
+ silentUpdate: 262144,
2340
+ outdated: 524288,
2341
+ principalWantsCopy: 1048576,
2342
+ }
2343
+
2344
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2345
+ enum messageActionFlag {
2346
+ any: 0,
2347
+ call: 1,
2348
+ doNotForward: 2,
2349
+ followUp: 3,
2350
+ fyi: 4,
2351
+ forward: 5,
2352
+ noResponseNecessary: 6,
2353
+ read: 7,
2354
+ reply: 8,
2355
+ replyToAll: 9,
2356
+ review: 10,
2357
+ }
2358
+
2359
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2360
+ enum onlineMeetingProviderType {
2361
+ `unknown`: 0,
2362
+ skypeForBusiness: 1,
2363
+ skypeForConsumer: 2,
2364
+ teamsForBusiness: 3,
1393
2365
  }
1394
2366
 
1395
2367
  enum onPremisesDirectorySynchronizationDeletionPreventionType {
1396
- disabled,
1397
- enabledForCount,
1398
- enabledForPercentage,
1399
- unknownFutureValue,
2368
+ disabled: 0,
2369
+ enabledForCount: 1,
2370
+ enabledForPercentage: 2,
2371
+ unknownFutureValue: 3,
1400
2372
  }
1401
2373
 
1402
2374
  enum partnerTenantType {
1403
- microsoftSupport,
1404
- syndicatePartner,
1405
- breadthPartner,
1406
- breadthPartnerDelegatedAdmin,
1407
- resellerPartnerDelegatedAdmin,
1408
- valueAddedResellerPartnerDelegatedAdmin,
1409
- unknownFutureValue,
2375
+ microsoftSupport: 1,
2376
+ syndicatePartner: 2,
2377
+ breadthPartner: 3,
2378
+ breadthPartnerDelegatedAdmin: 4,
2379
+ resellerPartnerDelegatedAdmin: 5,
2380
+ valueAddedResellerPartnerDelegatedAdmin: 6,
2381
+ unknownFutureValue: 7,
1410
2382
  }
1411
2383
 
1412
2384
  enum permissionClassificationType {
1413
- low,
1414
- medium,
1415
- high,
1416
- unknownFutureValue,
2385
+ low: 1,
2386
+ medium: 2,
2387
+ high: 3,
2388
+ unknownFutureValue: 4,
1417
2389
  }
1418
2390
 
1419
2391
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
1420
2392
  enum permissionType {
1421
- delegatedUserConsentable,
1422
- delegated,
1423
- application,
2393
+ delegatedUserConsentable: 1,
2394
+ delegated: 2,
2395
+ application: 3,
1424
2396
  }
1425
2397
 
1426
2398
  #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
1427
2399
  enum phoneType {
1428
- home,
1429
- business,
1430
- mobile,
1431
- other,
1432
- assistant,
1433
- homeFax,
1434
- businessFax,
1435
- otherFax,
1436
- pager,
1437
- radio,
2400
+ home: 0,
2401
+ business: 1,
2402
+ mobile: 2,
2403
+ other: 3,
2404
+ assistant: 4,
2405
+ homeFax: 5,
2406
+ businessFax: 6,
2407
+ otherFax: 7,
2408
+ pager: 8,
2409
+ radio: 9,
1438
2410
  }
1439
2411
 
1440
2412
  enum promptLoginBehavior {
1441
- translateToFreshPasswordAuthentication,
1442
- nativeSupport,
1443
- disabled,
1444
- unknownFutureValue,
2413
+ translateToFreshPasswordAuthentication: 0,
2414
+ nativeSupport: 1,
2415
+ disabled: 2,
2416
+ unknownFutureValue: 3,
2417
+ }
2418
+
2419
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2420
+ @graphFlags
2421
+ enum recipientScopeType {
2422
+ none: 0,
2423
+ `internal`: 1,
2424
+ external: 2,
2425
+ externalPartner: 4,
2426
+ externalNonPartner: 8,
2427
+ }
2428
+
2429
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2430
+ enum recurrencePatternType {
2431
+ daily: 0,
2432
+ weekly: 1,
2433
+ absoluteMonthly: 2,
2434
+ relativeMonthly: 3,
2435
+ absoluteYearly: 4,
2436
+ relativeYearly: 5,
2437
+ }
2438
+
2439
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2440
+ enum recurrenceRangeType {
2441
+ endDate: 0,
2442
+ noEnd: 1,
2443
+ numbered: 2,
2444
+ }
2445
+
2446
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2447
+ enum responseType {
2448
+ none: 0,
2449
+ organizer: 1,
2450
+ tentativelyAccepted: 2,
2451
+ accepted: 3,
2452
+ declined: 4,
2453
+ notResponded: 5,
2454
+ }
2455
+
2456
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2457
+ enum selectionLikelihoodInfo {
2458
+ notSpecified: 0,
2459
+ high: 1,
2460
+ }
2461
+
2462
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2463
+ enum sensitivity {
2464
+ normal: 0,
2465
+ personal: 1,
2466
+ private: 2,
2467
+ confidential: 3,
2468
+ }
2469
+
2470
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2471
+ enum timeZoneStandard {
2472
+ windows: 0,
2473
+ iana: 1,
1445
2474
  }
1446
2475
 
1447
2476
  @graphFlags
1448
2477
  enum weakAlgorithms {
1449
- rsaSha1,
1450
- unknownFutureValue,
2478
+ rsaSha1: 1,
2479
+ unknownFutureValue: 2,
2480
+ }
2481
+
2482
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2483
+ enum websiteType {
2484
+ other: 0,
2485
+ home: 1,
2486
+ work: 2,
2487
+ blog: 3,
2488
+ profile: 4,
2489
+ }
2490
+
2491
+ #suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
2492
+ enum weekIndex {
2493
+ first: 0,
2494
+ second: 1,
2495
+ third: 2,
2496
+ fourth: 3,
2497
+ last: 4,
1451
2498
  }
1452
2499
 
1453
2500
  }