@microsoft/typespec-msgraph-reference 1.0.1 → 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.
- package/.rush/temp/package-deps_build.json +18 -18
- package/CHANGELOG.md +9 -0
- package/lib/Bleu/Beta/main.tsp +4107 -1560
- package/lib/Bleu/V1.0/main.tsp +2646 -643
- package/lib/Delos/Beta/main.tsp +1314 -116
- package/lib/Delos/V1.0/main.tsp +1119 -72
- package/lib/Fairfax/Beta/main.tsp +8944 -8247
- package/lib/Fairfax/V1.0/main.tsp +4665 -4208
- package/lib/GovSG/Beta/main.tsp +121 -116
- package/lib/GovSG/V1.0/main.tsp +73 -72
- package/lib/Mooncake/Beta/main.tsp +5896 -5275
- package/lib/Mooncake/V1.0/main.tsp +2204 -2191
- package/lib/Prod/Beta/main.tsp +12641 -11564
- package/lib/Prod/V1.0/main.tsp +5446 -5359
- package/lib/USNat/Beta/main.tsp +2383 -2375
- package/lib/USNat/V1.0/main.tsp +1889 -1876
- package/lib/USSec/Beta/main.tsp +2403 -2395
- package/lib/USSec/V1.0/main.tsp +1855 -1842
- package/package.json +2 -2
package/lib/Delos/Beta/main.tsp
CHANGED
|
@@ -8,6 +8,7 @@ scalar binary; //TODO: Enables support for Edm.Binary
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
@privatePreviewDefinition("AgenticSP", "2025-04-14", "2025-07-13", "<theOwner>")
|
|
11
|
+
@deprecatedDefinition("Outlook_Tasks", "<ChangeLogCategory>", "2021-02-20", "2023-02-20", "The Outlook tasks API is deprecated and will stop returning data on February 20, 2023. Please use the new To Do API. For more details, please visit https://developer.microsoft.com/en-us/office/blogs/announcing-the-general-availability-of-microsoft-to-do-apis-on-graph/")
|
|
11
12
|
@publicNamespace("microsoft.graph")
|
|
12
13
|
namespace reference.`microsoft.graph` {
|
|
13
14
|
@complex model addIn {
|
|
@@ -113,6 +114,23 @@ namespace reference.`microsoft.graph` {
|
|
|
113
114
|
servicePlanId: guid | null;
|
|
114
115
|
}
|
|
115
116
|
|
|
117
|
+
@complex model attachmentItem {
|
|
118
|
+
attachmentType: attachmentType | null;
|
|
119
|
+
contentType: string | null;
|
|
120
|
+
isInline: boolean | null;
|
|
121
|
+
name: string | null;
|
|
122
|
+
size: int64 | null;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
@complex model attendee extends attendeeBase {
|
|
126
|
+
proposedNewTime: timeSlot | null;
|
|
127
|
+
status: responseStatus | null;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
@complex model attendeeBase extends recipient {
|
|
131
|
+
type: attendeeType | null;
|
|
132
|
+
}
|
|
133
|
+
|
|
116
134
|
@complex model authenticationBehaviors {
|
|
117
135
|
removeUnverifiedEmailClaim: boolean | null;
|
|
118
136
|
requireClientServicePrincipal: boolean | null;
|
|
@@ -122,6 +140,28 @@ namespace reference.`microsoft.graph` {
|
|
|
122
140
|
certificateUserIds: string[] | null;
|
|
123
141
|
}
|
|
124
142
|
|
|
143
|
+
@complex model automaticRepliesMailTips {
|
|
144
|
+
message: string | null;
|
|
145
|
+
messageLanguage: localeInfo | null;
|
|
146
|
+
scheduledEndTime: dateTimeTimeZone | null;
|
|
147
|
+
scheduledStartTime: dateTimeTimeZone | null;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
@complex model automaticRepliesSetting {
|
|
151
|
+
externalAudience: externalAudienceScope | null;
|
|
152
|
+
externalReplyMessage: string | null;
|
|
153
|
+
internalReplyMessage: string | null;
|
|
154
|
+
scheduledEndDateTime: dateTimeTimeZone | null;
|
|
155
|
+
scheduledStartDateTime: dateTimeTimeZone | null;
|
|
156
|
+
status: automaticRepliesStatus | null;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
@complex model calendarSharingMessageAction {
|
|
160
|
+
action: calendarSharingAction | null;
|
|
161
|
+
actionType: calendarSharingActionType | null;
|
|
162
|
+
importance: calendarSharingActionImportance | null;
|
|
163
|
+
}
|
|
164
|
+
|
|
125
165
|
@complex model certificateAuthority {
|
|
126
166
|
certificate: binary;
|
|
127
167
|
certificateRevocationListUrl: string | null;
|
|
@@ -153,6 +193,12 @@ namespace reference.`microsoft.graph` {
|
|
|
153
193
|
userPrincipalName: string;
|
|
154
194
|
}
|
|
155
195
|
|
|
196
|
+
@complex model convertIdResult {
|
|
197
|
+
errorDetails: genericError | null;
|
|
198
|
+
sourceId: string | null;
|
|
199
|
+
targetId: string | null;
|
|
200
|
+
}
|
|
201
|
+
|
|
156
202
|
@complex model crossTenantAccessPolicyB2BSetting {
|
|
157
203
|
applications: crossTenantAccessPolicyTargetConfiguration | null;
|
|
158
204
|
usersAndGroups: crossTenantAccessPolicyTargetConfiguration | null;
|
|
@@ -190,6 +236,21 @@ namespace reference.`microsoft.graph` {
|
|
|
190
236
|
@complex model customSecurityAttributeValue {
|
|
191
237
|
}
|
|
192
238
|
|
|
239
|
+
@complex model customTimeZone extends timeZoneBase {
|
|
240
|
+
bias: int32 | null;
|
|
241
|
+
daylightOffset: daylightTimeZoneOffset | null;
|
|
242
|
+
standardOffset: standardTimeZoneOffset | null;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
@complex model dateTimeTimeZone {
|
|
246
|
+
dateTime: string;
|
|
247
|
+
timeZone: string | null;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
@complex model daylightTimeZoneOffset extends standardTimeZoneOffset {
|
|
251
|
+
daylightBias: int32 | null;
|
|
252
|
+
}
|
|
253
|
+
|
|
193
254
|
@complex model defaultInvitationRedemptionIdentityProviderConfiguration extends invitationRedemptionIdentityProviderConfiguration {
|
|
194
255
|
}
|
|
195
256
|
|
|
@@ -222,6 +283,11 @@ namespace reference.`microsoft.graph` {
|
|
|
222
283
|
status: string | null;
|
|
223
284
|
}
|
|
224
285
|
|
|
286
|
+
@complex model emailAddress {
|
|
287
|
+
address: string | null;
|
|
288
|
+
name: string | null;
|
|
289
|
+
}
|
|
290
|
+
|
|
225
291
|
@complex model employeeOrgData {
|
|
226
292
|
costCenter: string | null;
|
|
227
293
|
division: string | null;
|
|
@@ -254,6 +320,23 @@ namespace reference.`microsoft.graph` {
|
|
|
254
320
|
value: string;
|
|
255
321
|
}
|
|
256
322
|
|
|
323
|
+
@complex model followupFlag {
|
|
324
|
+
completedDateTime: dateTimeTimeZone | null;
|
|
325
|
+
dueDateTime: dateTimeTimeZone | null;
|
|
326
|
+
flagStatus: followupFlagStatus | null;
|
|
327
|
+
startDateTime: dateTimeTimeZone | null;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
@complex model freeBusyError {
|
|
331
|
+
message: string | null;
|
|
332
|
+
responseCode: string | null;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
@complex model genericError {
|
|
336
|
+
code: string | null;
|
|
337
|
+
message: string | null;
|
|
338
|
+
}
|
|
339
|
+
|
|
257
340
|
@complex model groupWritebackConfiguration extends writebackConfiguration {
|
|
258
341
|
onPremisesGroupType: string | null;
|
|
259
342
|
}
|
|
@@ -305,11 +388,21 @@ namespace reference.`microsoft.graph` {
|
|
|
305
388
|
resourceAppId: string;
|
|
306
389
|
}
|
|
307
390
|
|
|
391
|
+
@complex model internetMessageHeader {
|
|
392
|
+
name: string | null;
|
|
393
|
+
value: string | null;
|
|
394
|
+
}
|
|
395
|
+
|
|
308
396
|
@complex model invitationRedemptionIdentityProviderConfiguration {
|
|
309
397
|
fallbackIdentityProvider: b2bIdentityProvidersType | null;
|
|
310
398
|
primaryIdentityProviderPrecedenceOrder: b2bIdentityProvidersType[] | null;
|
|
311
399
|
}
|
|
312
400
|
|
|
401
|
+
@complex model itemBody {
|
|
402
|
+
content: string | null;
|
|
403
|
+
contentType: bodyType | null;
|
|
404
|
+
}
|
|
405
|
+
|
|
313
406
|
@complex model keyCredential {
|
|
314
407
|
customKeyIdentifier: binary | null;
|
|
315
408
|
displayName: string | null;
|
|
@@ -345,6 +438,22 @@ namespace reference.`microsoft.graph` {
|
|
|
345
438
|
warning: int32 | null;
|
|
346
439
|
}
|
|
347
440
|
|
|
441
|
+
@complex model localeInfo {
|
|
442
|
+
displayName: string | null;
|
|
443
|
+
locale: string | null;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
@complex model location {
|
|
447
|
+
address: physicalAddress | null;
|
|
448
|
+
coordinates: outlookGeoCoordinates | null;
|
|
449
|
+
displayName: string | null;
|
|
450
|
+
locationEmailAddress: string | null;
|
|
451
|
+
locationType: locationType | null;
|
|
452
|
+
locationUri: string | null;
|
|
453
|
+
uniqueId: string | null;
|
|
454
|
+
uniqueIdType: locationUniqueIdType | null;
|
|
455
|
+
}
|
|
456
|
+
|
|
348
457
|
@complex model loginPageBrandingVisualElement {
|
|
349
458
|
customText: string | null;
|
|
350
459
|
customUrl: string | null;
|
|
@@ -366,6 +475,89 @@ namespace reference.`microsoft.graph` {
|
|
|
366
475
|
hideTermsOfUse: boolean | null;
|
|
367
476
|
}
|
|
368
477
|
|
|
478
|
+
@complex model mailboxSettings {
|
|
479
|
+
archiveFolder: string | null;
|
|
480
|
+
automaticRepliesSetting: automaticRepliesSetting | null;
|
|
481
|
+
dateFormat: string | null;
|
|
482
|
+
delegateMeetingMessageDeliveryOptions: delegateMeetingMessageDeliveryOptions | null;
|
|
483
|
+
language: localeInfo | null;
|
|
484
|
+
timeFormat: string | null;
|
|
485
|
+
timeZone: string | null;
|
|
486
|
+
userPurpose: userPurpose | null;
|
|
487
|
+
workingHours: workingHours | null;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
@complex model mailTips {
|
|
491
|
+
automaticReplies: automaticRepliesMailTips | null;
|
|
492
|
+
customMailTip: string | null;
|
|
493
|
+
deliveryRestricted: boolean | null;
|
|
494
|
+
emailAddress: emailAddress | null;
|
|
495
|
+
error: mailTipsError | null;
|
|
496
|
+
externalMemberCount: int32 | null;
|
|
497
|
+
isModerated: boolean | null;
|
|
498
|
+
mailboxFull: boolean | null;
|
|
499
|
+
maxMessageSize: int32 | null;
|
|
500
|
+
recipientScope: recipientScopeType | null;
|
|
501
|
+
recipientSuggestions: recipient[] | null;
|
|
502
|
+
totalMemberCount: int32 | null;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
@complex model mailTipsError {
|
|
506
|
+
code: string | null;
|
|
507
|
+
message: string | null;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
@complex model mentionsPreview {
|
|
511
|
+
isMentioned: boolean | null;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
@complex model messageRuleActions {
|
|
515
|
+
assignCategories: string[] | null;
|
|
516
|
+
copyToFolder: string | null;
|
|
517
|
+
delete: boolean | null;
|
|
518
|
+
forwardAsAttachmentTo: recipient[] | null;
|
|
519
|
+
forwardTo: recipient[] | null;
|
|
520
|
+
markAsRead: boolean | null;
|
|
521
|
+
markImportance: importance | null;
|
|
522
|
+
moveToFolder: string | null;
|
|
523
|
+
permanentDelete: boolean | null;
|
|
524
|
+
redirectTo: recipient[] | null;
|
|
525
|
+
stopProcessingRules: boolean | null;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
@complex model messageRulePredicates {
|
|
529
|
+
bodyContains: string[] | null;
|
|
530
|
+
bodyOrSubjectContains: string[] | null;
|
|
531
|
+
categories: string[] | null;
|
|
532
|
+
fromAddresses: recipient[] | null;
|
|
533
|
+
hasAttachments: boolean | null;
|
|
534
|
+
headerContains: string[] | null;
|
|
535
|
+
importance: importance | null;
|
|
536
|
+
isApprovalRequest: boolean | null;
|
|
537
|
+
isAutomaticForward: boolean | null;
|
|
538
|
+
isAutomaticReply: boolean | null;
|
|
539
|
+
isEncrypted: boolean | null;
|
|
540
|
+
isMeetingRequest: boolean | null;
|
|
541
|
+
isMeetingResponse: boolean | null;
|
|
542
|
+
isNonDeliveryReport: boolean | null;
|
|
543
|
+
isPermissionControlled: boolean | null;
|
|
544
|
+
isReadReceipt: boolean | null;
|
|
545
|
+
isSigned: boolean | null;
|
|
546
|
+
isVoicemail: boolean | null;
|
|
547
|
+
messageActionFlag: messageActionFlag | null;
|
|
548
|
+
notSentToMe: boolean | null;
|
|
549
|
+
recipientContains: string[] | null;
|
|
550
|
+
senderContains: string[] | null;
|
|
551
|
+
sensitivity: sensitivity | null;
|
|
552
|
+
sentCcMe: boolean | null;
|
|
553
|
+
sentOnlyToMe: boolean | null;
|
|
554
|
+
sentToAddresses: recipient[] | null;
|
|
555
|
+
sentToMe: boolean | null;
|
|
556
|
+
sentToOrCcMe: boolean | null;
|
|
557
|
+
subjectContains: string[] | null;
|
|
558
|
+
withinSizeRange: sizeRange | null;
|
|
559
|
+
}
|
|
560
|
+
|
|
369
561
|
@complex model noScopes extends inheritableScopes {
|
|
370
562
|
}
|
|
371
563
|
|
|
@@ -375,6 +567,15 @@ namespace reference.`microsoft.graph` {
|
|
|
375
567
|
signInType: string | null;
|
|
376
568
|
}
|
|
377
569
|
|
|
570
|
+
@complex model onlineMeetingInfo {
|
|
571
|
+
conferenceId: string | null;
|
|
572
|
+
joinUrl: string | null;
|
|
573
|
+
phones: phone[] | null;
|
|
574
|
+
quickDial: string | null;
|
|
575
|
+
tollFreeNumbers: string[] | null;
|
|
576
|
+
tollNumber: string | null;
|
|
577
|
+
}
|
|
578
|
+
|
|
378
579
|
@complex model onPremisesAccidentalDeletionPrevention {
|
|
379
580
|
alertThreshold: int32 | null;
|
|
380
581
|
synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
|
|
@@ -444,6 +645,14 @@ namespace reference.`microsoft.graph` {
|
|
|
444
645
|
saml2Token: optionalClaim[] | null;
|
|
445
646
|
}
|
|
446
647
|
|
|
648
|
+
@complex model outlookGeoCoordinates {
|
|
649
|
+
accuracy: float64 | null;
|
|
650
|
+
altitude: float64 | null;
|
|
651
|
+
altitudeAccuracy: float64 | null;
|
|
652
|
+
latitude: float64 | null;
|
|
653
|
+
longitude: float64 | null;
|
|
654
|
+
}
|
|
655
|
+
|
|
447
656
|
@complex model parentalControlSettings {
|
|
448
657
|
countriesBlockedForMinors: string[] | null;
|
|
449
658
|
legalAgeGroupRule: string | null;
|
|
@@ -465,6 +674,11 @@ namespace reference.`microsoft.graph` {
|
|
|
465
674
|
password: string | null;
|
|
466
675
|
}
|
|
467
676
|
|
|
677
|
+
@complex model patternedRecurrence {
|
|
678
|
+
pattern: recurrencePattern | null;
|
|
679
|
+
range: recurrenceRange | null;
|
|
680
|
+
}
|
|
681
|
+
|
|
468
682
|
@complex model permissionScope {
|
|
469
683
|
adminConsentDescription: string | null;
|
|
470
684
|
adminConsentDisplayName: string | null;
|
|
@@ -477,11 +691,25 @@ namespace reference.`microsoft.graph` {
|
|
|
477
691
|
value: string | null;
|
|
478
692
|
}
|
|
479
693
|
|
|
694
|
+
@complex model personDataSource {
|
|
695
|
+
type: string | null;
|
|
696
|
+
}
|
|
697
|
+
|
|
480
698
|
@complex model phone {
|
|
481
699
|
number: string | null;
|
|
482
700
|
type: phoneType | null;
|
|
483
701
|
}
|
|
484
702
|
|
|
703
|
+
@complex model physicalAddress {
|
|
704
|
+
city: string | null;
|
|
705
|
+
countryOrRegion: string | null;
|
|
706
|
+
postalCode: string | null;
|
|
707
|
+
postOfficeBox: string | null;
|
|
708
|
+
state: string | null;
|
|
709
|
+
street: string | null;
|
|
710
|
+
type: physicalAddressType | null;
|
|
711
|
+
}
|
|
712
|
+
|
|
485
713
|
@complex model physicalOfficeAddress {
|
|
486
714
|
city: string | null;
|
|
487
715
|
countryOrRegion: string | null;
|
|
@@ -523,11 +751,49 @@ namespace reference.`microsoft.graph` {
|
|
|
523
751
|
redirectUris: string[];
|
|
524
752
|
}
|
|
525
753
|
|
|
754
|
+
@complex model rankedEmailAddress {
|
|
755
|
+
address: string | null;
|
|
756
|
+
rank: float64 | null;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
@complex model recipient {
|
|
760
|
+
emailAddress: emailAddress | null;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
@complex model recurrencePattern {
|
|
764
|
+
dayOfMonth: int32;
|
|
765
|
+
daysOfWeek: dayOfWeek[] | null;
|
|
766
|
+
firstDayOfWeek: dayOfWeek | null;
|
|
767
|
+
index: weekIndex | null;
|
|
768
|
+
interval: int32;
|
|
769
|
+
month: int32;
|
|
770
|
+
type: recurrencePatternType | null;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
@complex model recurrenceRange {
|
|
774
|
+
endDate: offsetDateTime | null;
|
|
775
|
+
numberOfOccurrences: int32;
|
|
776
|
+
recurrenceTimeZone: string | null;
|
|
777
|
+
startDate: offsetDateTime | null;
|
|
778
|
+
type: recurrenceRangeType | null;
|
|
779
|
+
}
|
|
780
|
+
|
|
526
781
|
@complex model redirectUriSettings {
|
|
527
782
|
index: int32 | null;
|
|
528
783
|
uri: string | null;
|
|
529
784
|
}
|
|
530
785
|
|
|
786
|
+
@complex model reminder {
|
|
787
|
+
changeKey: string | null;
|
|
788
|
+
eventEndTime: dateTimeTimeZone | null;
|
|
789
|
+
eventId: string | null;
|
|
790
|
+
eventLocation: location | null;
|
|
791
|
+
eventStartTime: dateTimeTimeZone | null;
|
|
792
|
+
eventSubject: string | null;
|
|
793
|
+
eventWebLink: string | null;
|
|
794
|
+
reminderFireTime: dateTimeTimeZone | null;
|
|
795
|
+
}
|
|
796
|
+
|
|
531
797
|
@complex model requestSignatureVerification {
|
|
532
798
|
allowedWeakAlgorithms: weakAlgorithms | null;
|
|
533
799
|
isSignedRequestRequired: boolean;
|
|
@@ -556,10 +822,32 @@ namespace reference.`microsoft.graph` {
|
|
|
556
822
|
value: string | null;
|
|
557
823
|
}
|
|
558
824
|
|
|
825
|
+
@complex model responseStatus {
|
|
826
|
+
response: responseType | null;
|
|
827
|
+
time: offsetDateTime | null;
|
|
828
|
+
}
|
|
829
|
+
|
|
559
830
|
@complex model samlSingleSignOnSettings {
|
|
560
831
|
relayState: string | null;
|
|
561
832
|
}
|
|
562
833
|
|
|
834
|
+
@complex model scheduleInformation {
|
|
835
|
+
availabilityView: string | null;
|
|
836
|
+
error: freeBusyError | null;
|
|
837
|
+
scheduleId: string | null;
|
|
838
|
+
scheduleItems: scheduleItem[] | null;
|
|
839
|
+
workingHours: workingHours | null;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
@complex model scheduleItem {
|
|
843
|
+
end: dateTimeTimeZone | null;
|
|
844
|
+
isPrivate: boolean | null;
|
|
845
|
+
location: string | null;
|
|
846
|
+
start: dateTimeTimeZone | null;
|
|
847
|
+
status: freeBusyStatus | null;
|
|
848
|
+
subject: string | null;
|
|
849
|
+
}
|
|
850
|
+
|
|
563
851
|
@abstract
|
|
564
852
|
@complex model scopeSensitivityLabels {
|
|
565
853
|
labelKind: labelKind | null;
|
|
@@ -614,10 +902,23 @@ namespace reference.`microsoft.graph` {
|
|
|
614
902
|
@computed lastRunDateTime: offsetDateTime | null;
|
|
615
903
|
}
|
|
616
904
|
|
|
905
|
+
@complex model sizeRange {
|
|
906
|
+
maximumSize: int32 | null;
|
|
907
|
+
minimumSize: int32 | null;
|
|
908
|
+
}
|
|
909
|
+
|
|
617
910
|
@complex model spaApplication {
|
|
618
911
|
redirectUris: string[];
|
|
619
912
|
}
|
|
620
913
|
|
|
914
|
+
@complex model standardTimeZoneOffset {
|
|
915
|
+
dayOccurrence: int32 | null;
|
|
916
|
+
dayOfWeek: dayOfWeek | null;
|
|
917
|
+
month: int32 | null;
|
|
918
|
+
time: offsetDateTime | null;
|
|
919
|
+
year: int32 | null;
|
|
920
|
+
}
|
|
921
|
+
|
|
621
922
|
@complex model tenantInformation {
|
|
622
923
|
defaultDomainName: string | null;
|
|
623
924
|
displayName: string | null;
|
|
@@ -625,6 +926,20 @@ namespace reference.`microsoft.graph` {
|
|
|
625
926
|
tenantId: string;
|
|
626
927
|
}
|
|
627
928
|
|
|
929
|
+
@complex model timeSlot {
|
|
930
|
+
end: dateTimeTimeZone;
|
|
931
|
+
start: dateTimeTimeZone;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
@complex model timeZoneBase {
|
|
935
|
+
name: string | null;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
@complex model timeZoneInformation {
|
|
939
|
+
`alias`: string | null;
|
|
940
|
+
displayName: string | null;
|
|
941
|
+
}
|
|
942
|
+
|
|
628
943
|
@complex model trustedSubjectNameAndIssuerConfiguration {
|
|
629
944
|
trustedCertificateSubjectAddition: trustedSubjectNameAndIssuerRestriction | null;
|
|
630
945
|
}
|
|
@@ -636,6 +951,11 @@ namespace reference.`microsoft.graph` {
|
|
|
636
951
|
state: appManagementRestrictionState;
|
|
637
952
|
}
|
|
638
953
|
|
|
954
|
+
@complex model typedEmailAddress extends emailAddress {
|
|
955
|
+
otherLabel: string | null;
|
|
956
|
+
type: emailType | null;
|
|
957
|
+
}
|
|
958
|
+
|
|
639
959
|
@complex model unifiedRolePermission {
|
|
640
960
|
allowedResourceActions: string[];
|
|
641
961
|
condition: string | null;
|
|
@@ -645,6 +965,16 @@ namespace reference.`microsoft.graph` {
|
|
|
645
965
|
@complex model unrestrictedAudience extends signInAudienceRestrictionsBase {
|
|
646
966
|
}
|
|
647
967
|
|
|
968
|
+
@complex model uploadSession {
|
|
969
|
+
expirationDateTime: offsetDateTime | null;
|
|
970
|
+
nextExpectedRanges: string[] | null;
|
|
971
|
+
uploadUrl: string | null;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
@complex model userPurpose {
|
|
975
|
+
value: mailboxRecipientType | null;
|
|
976
|
+
}
|
|
977
|
+
|
|
648
978
|
@abstract
|
|
649
979
|
@complex model validatingDomains {
|
|
650
980
|
rootDomains: rootDomains;
|
|
@@ -667,6 +997,19 @@ namespace reference.`microsoft.graph` {
|
|
|
667
997
|
redirectUriSettings: redirectUriSettings[];
|
|
668
998
|
}
|
|
669
999
|
|
|
1000
|
+
@complex model website {
|
|
1001
|
+
address: string | null;
|
|
1002
|
+
displayName: string | null;
|
|
1003
|
+
type: websiteType | null;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
@complex model workingHours {
|
|
1007
|
+
daysOfWeek: dayOfWeek[] | null;
|
|
1008
|
+
endTime: offsetDateTime | null;
|
|
1009
|
+
startTime: offsetDateTime | null;
|
|
1010
|
+
timeZone: timeZoneBase | null;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
670
1013
|
@complex model writebackConfiguration {
|
|
671
1014
|
isEnabled: boolean | null;
|
|
672
1015
|
}
|
|
@@ -708,6 +1051,10 @@ namespace reference.`microsoft.graph` {
|
|
|
708
1051
|
@references sponsors: directoryObject[];
|
|
709
1052
|
}
|
|
710
1053
|
|
|
1054
|
+
@open
|
|
1055
|
+
@entity model agentUser extends user {
|
|
1056
|
+
}
|
|
1057
|
+
|
|
711
1058
|
@open
|
|
712
1059
|
@entity model allowedDataLocation extends entity {
|
|
713
1060
|
appId: string | null;
|
|
@@ -787,6 +1134,15 @@ namespace reference.`microsoft.graph` {
|
|
|
787
1134
|
type: string | null;
|
|
788
1135
|
}
|
|
789
1136
|
|
|
1137
|
+
@abstract
|
|
1138
|
+
@entity model attachment extends entity {
|
|
1139
|
+
contentType: string | null;
|
|
1140
|
+
isInline: boolean;
|
|
1141
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
1142
|
+
name: string | null;
|
|
1143
|
+
size: int32;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
790
1146
|
@entity model attributeSet extends entity {
|
|
791
1147
|
description: string | null;
|
|
792
1148
|
maxAttributesPerSet: int32 | null;
|
|
@@ -811,6 +1167,52 @@ namespace reference.`microsoft.graph` {
|
|
|
811
1167
|
permissionGrantPolicyIdsAssignedToDefaultUserRole: string[] | null;
|
|
812
1168
|
}
|
|
813
1169
|
|
|
1170
|
+
@entity model calendar extends entity {
|
|
1171
|
+
allowedOnlineMeetingProviders: onlineMeetingProviderType[] | null;
|
|
1172
|
+
calendarGroupId: string | null;
|
|
1173
|
+
canEdit: boolean | null;
|
|
1174
|
+
canShare: boolean | null;
|
|
1175
|
+
canViewPrivateItems: boolean | null;
|
|
1176
|
+
changeKey: string | null;
|
|
1177
|
+
color: calendarColor | null;
|
|
1178
|
+
defaultOnlineMeetingProvider: onlineMeetingProviderType | null;
|
|
1179
|
+
hexColor: string | null;
|
|
1180
|
+
isDefaultCalendar: boolean | null;
|
|
1181
|
+
isRemovable: boolean | null;
|
|
1182
|
+
isShared: boolean | null;
|
|
1183
|
+
isSharedWithMe: boolean | null;
|
|
1184
|
+
isTallyingResponses: boolean | null;
|
|
1185
|
+
name: string | null;
|
|
1186
|
+
owner: emailAddress | null;
|
|
1187
|
+
@contains calendarPermissions: calendarPermission[];
|
|
1188
|
+
@contains calendarView: event[];
|
|
1189
|
+
@contains events: event[];
|
|
1190
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
1191
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
@entity model calendarGroup extends entity {
|
|
1195
|
+
changeKey: string | null;
|
|
1196
|
+
classId: guid | null;
|
|
1197
|
+
name: string | null;
|
|
1198
|
+
@contains calendars: calendar[];
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
@entity model calendarPermission extends entity {
|
|
1202
|
+
allowedRoles: calendarRoleType[] | null;
|
|
1203
|
+
emailAddress: emailAddress | null;
|
|
1204
|
+
isInsideOrganization: boolean | null;
|
|
1205
|
+
isRemovable: boolean | null;
|
|
1206
|
+
role: calendarRoleType | null;
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
@entity model calendarSharingMessage extends message {
|
|
1210
|
+
canAccept: boolean | null;
|
|
1211
|
+
sharingMessageAction: calendarSharingMessageAction | null;
|
|
1212
|
+
sharingMessageActions: calendarSharingMessageAction[] | null;
|
|
1213
|
+
suggestedCalendarName: string | null;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
814
1216
|
@entity model certificateAuthorityAsEntity extends entity {
|
|
815
1217
|
certificate: binary;
|
|
816
1218
|
isRootAuthority: boolean;
|
|
@@ -874,6 +1276,57 @@ namespace reference.`microsoft.graph` {
|
|
|
874
1276
|
@entity model conditionalAccessRoot extends MsGraph.SharedModels.entity {
|
|
875
1277
|
}
|
|
876
1278
|
|
|
1279
|
+
@open
|
|
1280
|
+
@entity model contact extends outlookItem {
|
|
1281
|
+
assistantName: string | null;
|
|
1282
|
+
birthday: offsetDateTime | null;
|
|
1283
|
+
children: string[] | null;
|
|
1284
|
+
companyName: string | null;
|
|
1285
|
+
department: string | null;
|
|
1286
|
+
displayName: string | null;
|
|
1287
|
+
emailAddresses: typedEmailAddress[] | null;
|
|
1288
|
+
fileAs: string | null;
|
|
1289
|
+
flag: followupFlag | null;
|
|
1290
|
+
gender: string | null;
|
|
1291
|
+
generation: string | null;
|
|
1292
|
+
givenName: string | null;
|
|
1293
|
+
imAddresses: string[] | null;
|
|
1294
|
+
initials: string | null;
|
|
1295
|
+
isFavorite: boolean | null;
|
|
1296
|
+
jobTitle: string | null;
|
|
1297
|
+
manager: string | null;
|
|
1298
|
+
middleName: string | null;
|
|
1299
|
+
nickName: string | null;
|
|
1300
|
+
officeLocation: string | null;
|
|
1301
|
+
parentFolderId: string | null;
|
|
1302
|
+
personalNotes: string | null;
|
|
1303
|
+
phones: phone[] | null;
|
|
1304
|
+
postalAddresses: physicalAddress[] | null;
|
|
1305
|
+
profession: string | null;
|
|
1306
|
+
spouseName: string | null;
|
|
1307
|
+
surname: string | null;
|
|
1308
|
+
title: string | null;
|
|
1309
|
+
websites: website[] | null;
|
|
1310
|
+
weddingAnniversary: offsetDateTime | null;
|
|
1311
|
+
yomiCompanyName: string | null;
|
|
1312
|
+
yomiGivenName: string | null;
|
|
1313
|
+
yomiSurname: string | null;
|
|
1314
|
+
@contains extensions: extension[];
|
|
1315
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
1316
|
+
@contains photo: profilePhoto | null;
|
|
1317
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
@entity model contactFolder extends entity {
|
|
1321
|
+
displayName: string | null;
|
|
1322
|
+
parentFolderId: string | null;
|
|
1323
|
+
wellKnownName: string | null;
|
|
1324
|
+
@contains childFolders: contactFolder[];
|
|
1325
|
+
@contains contacts: contact[];
|
|
1326
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
1327
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
1328
|
+
}
|
|
1329
|
+
|
|
877
1330
|
@open
|
|
878
1331
|
@entity model contract extends directoryObject {
|
|
879
1332
|
contractType: string | null;
|
|
@@ -882,6 +1335,27 @@ namespace reference.`microsoft.graph` {
|
|
|
882
1335
|
displayName: string | null;
|
|
883
1336
|
}
|
|
884
1337
|
|
|
1338
|
+
@entity model conversation extends entity {
|
|
1339
|
+
hasAttachments: boolean;
|
|
1340
|
+
@computed lastDeliveredDateTime: offsetDateTime;
|
|
1341
|
+
preview: string;
|
|
1342
|
+
topic: string;
|
|
1343
|
+
uniqueSenders: string[];
|
|
1344
|
+
@contains threads: conversationThread[];
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
@entity model conversationThread extends entity {
|
|
1348
|
+
ccRecipients: recipient[];
|
|
1349
|
+
hasAttachments: boolean;
|
|
1350
|
+
isLocked: boolean;
|
|
1351
|
+
@computed lastDeliveredDateTime: offsetDateTime;
|
|
1352
|
+
preview: string;
|
|
1353
|
+
topic: string;
|
|
1354
|
+
toRecipients: recipient[];
|
|
1355
|
+
uniqueSenders: string[];
|
|
1356
|
+
@contains posts: post[];
|
|
1357
|
+
}
|
|
1358
|
+
|
|
885
1359
|
@entity model crossTenantAccessPolicy extends tenantRelationshipAccessPolicyBase {
|
|
886
1360
|
allowedCloudEndpoints: string[];
|
|
887
1361
|
@contains default: crossTenantAccessPolicyConfigurationDefault | null;
|
|
@@ -1102,10 +1576,84 @@ namespace reference.`microsoft.graph` {
|
|
|
1102
1576
|
}
|
|
1103
1577
|
|
|
1104
1578
|
@abstract
|
|
1105
|
-
@entity model entity
|
|
1579
|
+
@entity model entity {
|
|
1106
1580
|
@computed @key id: string;
|
|
1107
1581
|
}
|
|
1108
1582
|
|
|
1583
|
+
@open
|
|
1584
|
+
@entity model event extends outlookItem {
|
|
1585
|
+
allowNewTimeProposals: boolean | null;
|
|
1586
|
+
attendees: attendee[] | null;
|
|
1587
|
+
body: itemBody | null;
|
|
1588
|
+
bodyPreview: string | null;
|
|
1589
|
+
end: dateTimeTimeZone | null;
|
|
1590
|
+
hasAttachments: boolean | null;
|
|
1591
|
+
hideAttendees: boolean | null;
|
|
1592
|
+
importance: importance | null;
|
|
1593
|
+
isAllDay: boolean | null;
|
|
1594
|
+
isCancelled: boolean | null;
|
|
1595
|
+
isDraft: boolean | null;
|
|
1596
|
+
isOnlineMeeting: boolean | null;
|
|
1597
|
+
isOrganizer: boolean | null;
|
|
1598
|
+
isReminderOn: boolean | null;
|
|
1599
|
+
location: location | null;
|
|
1600
|
+
locations: location[] | null;
|
|
1601
|
+
onlineMeeting: onlineMeetingInfo | null;
|
|
1602
|
+
onlineMeetingProvider: onlineMeetingProviderType | null;
|
|
1603
|
+
onlineMeetingUrl: string | null;
|
|
1604
|
+
organizer: recipient | null;
|
|
1605
|
+
originalEndTimeZone: string | null;
|
|
1606
|
+
originalStart: offsetDateTime | null;
|
|
1607
|
+
originalStartTimeZone: string | null;
|
|
1608
|
+
recurrence: patternedRecurrence | null;
|
|
1609
|
+
reminderMinutesBeforeStart: int32 | null;
|
|
1610
|
+
responseRequested: boolean | null;
|
|
1611
|
+
responseStatus: responseStatus | null;
|
|
1612
|
+
sensitivity: sensitivity | null;
|
|
1613
|
+
seriesMasterId: string | null;
|
|
1614
|
+
showAs: freeBusyStatus | null;
|
|
1615
|
+
start: dateTimeTimeZone | null;
|
|
1616
|
+
subject: string | null;
|
|
1617
|
+
transactionId: string | null;
|
|
1618
|
+
type: eventType | null;
|
|
1619
|
+
uid: string | null;
|
|
1620
|
+
webLink: string | null;
|
|
1621
|
+
@contains attachments: attachment[];
|
|
1622
|
+
@contains calendar: calendar | null;
|
|
1623
|
+
@contains extensions: extension[];
|
|
1624
|
+
@contains instances: event[];
|
|
1625
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
1626
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
@entity model eventMessage extends message {
|
|
1630
|
+
endDateTime: dateTimeTimeZone | null;
|
|
1631
|
+
isAllDay: boolean | null;
|
|
1632
|
+
isDelegated: boolean | null;
|
|
1633
|
+
isOutOfDate: boolean | null;
|
|
1634
|
+
location: location | null;
|
|
1635
|
+
meetingMessageType: meetingMessageType | null;
|
|
1636
|
+
recurrence: patternedRecurrence | null;
|
|
1637
|
+
startDateTime: dateTimeTimeZone | null;
|
|
1638
|
+
type: eventType | null;
|
|
1639
|
+
@contains event: event | null;
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
@entity model eventMessageRequest extends eventMessage {
|
|
1643
|
+
allowNewTimeProposals: boolean | null;
|
|
1644
|
+
previousEndDateTime: dateTimeTimeZone | null;
|
|
1645
|
+
previousLocation: location | null;
|
|
1646
|
+
previousStartDateTime: dateTimeTimeZone | null;
|
|
1647
|
+
responseRequested: boolean | null;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
@entity model eventMessageResponse extends eventMessage {
|
|
1651
|
+
proposedNewTime: timeSlot | null;
|
|
1652
|
+
responseType: responseType | null;
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
@abstract
|
|
1656
|
+
@open
|
|
1109
1657
|
@entity model extension extends entity {
|
|
1110
1658
|
}
|
|
1111
1659
|
|
|
@@ -1140,10 +1688,19 @@ namespace reference.`microsoft.graph` {
|
|
|
1140
1688
|
validatingDomains: validatingDomains;
|
|
1141
1689
|
}
|
|
1142
1690
|
|
|
1691
|
+
@entity model fileAttachment extends attachment {
|
|
1692
|
+
contentBytes: binary | null;
|
|
1693
|
+
contentId: string | null;
|
|
1694
|
+
contentLocation: string | null;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1143
1697
|
@open
|
|
1144
1698
|
@entity model group extends directoryObject {
|
|
1699
|
+
accessType: groupAccessType | null;
|
|
1700
|
+
allowExternalSenders: boolean | null;
|
|
1145
1701
|
assignedLabels: assignedLabel[] | null;
|
|
1146
1702
|
assignedLicenses: assignedLicense[] | null;
|
|
1703
|
+
autoSubscribeNewMembers: boolean | null;
|
|
1147
1704
|
classification: string | null;
|
|
1148
1705
|
createdByAppId: string | null;
|
|
1149
1706
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -1152,9 +1709,13 @@ namespace reference.`microsoft.graph` {
|
|
|
1152
1709
|
expirationDateTime: offsetDateTime | null;
|
|
1153
1710
|
groupTypes: string[];
|
|
1154
1711
|
hasMembersWithLicenseErrors: boolean | null;
|
|
1712
|
+
hideFromAddressLists: boolean | null;
|
|
1713
|
+
hideFromOutlookClients: boolean | null;
|
|
1155
1714
|
infoCatalogs: string[];
|
|
1156
1715
|
isAssignableToRole: boolean | null;
|
|
1716
|
+
isFavorite: boolean | null;
|
|
1157
1717
|
isManagementRestricted: boolean | null;
|
|
1718
|
+
isSubscribedByMail: boolean | null;
|
|
1158
1719
|
licenseProcessingState: licenseProcessingState | null;
|
|
1159
1720
|
mail: string | null;
|
|
1160
1721
|
mailEnabled: boolean | null;
|
|
@@ -1179,11 +1740,19 @@ namespace reference.`microsoft.graph` {
|
|
|
1179
1740
|
securityIdentifier: string | null;
|
|
1180
1741
|
theme: string | null;
|
|
1181
1742
|
uniqueName: string | null;
|
|
1743
|
+
unseenConversationsCount: int32 | null;
|
|
1744
|
+
unseenCount: int32 | null;
|
|
1745
|
+
unseenMessagesCount: int32 | null;
|
|
1182
1746
|
visibility: string | null;
|
|
1183
1747
|
writebackConfiguration: groupWritebackConfiguration | null;
|
|
1748
|
+
@contains acceptedSenders: directoryObject[];
|
|
1184
1749
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
1750
|
+
@contains calendar: calendar | null;
|
|
1751
|
+
@contains calendarView: event[];
|
|
1752
|
+
@contains conversations: conversation[];
|
|
1185
1753
|
@references createdOnBehalfOf: directoryObject | null;
|
|
1186
1754
|
@contains endpoints: endpoint[];
|
|
1755
|
+
@contains events: event[];
|
|
1187
1756
|
@contains extensions: extension[];
|
|
1188
1757
|
@references memberOf: directoryObject[];
|
|
1189
1758
|
@references members: directoryObject[];
|
|
@@ -1191,7 +1760,9 @@ namespace reference.`microsoft.graph` {
|
|
|
1191
1760
|
@contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
|
|
1192
1761
|
@references owners: directoryObject[];
|
|
1193
1762
|
@contains permissionGrants: resourceSpecificPermissionGrant[];
|
|
1763
|
+
@contains rejectedSenders: directoryObject[];
|
|
1194
1764
|
@contains settings: directorySetting[];
|
|
1765
|
+
@contains threads: conversationThread[];
|
|
1195
1766
|
@references transitiveMemberOf: directoryObject[];
|
|
1196
1767
|
@references transitiveMembers: directoryObject[];
|
|
1197
1768
|
}
|
|
@@ -1214,6 +1785,15 @@ namespace reference.`microsoft.graph` {
|
|
|
1214
1785
|
userPrincipalName: string;
|
|
1215
1786
|
}
|
|
1216
1787
|
|
|
1788
|
+
@entity model inferenceClassification extends entity {
|
|
1789
|
+
@contains overrides: inferenceClassificationOverride[];
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
@entity model inferenceClassificationOverride extends entity {
|
|
1793
|
+
classifyAs: inferenceClassificationType | null;
|
|
1794
|
+
senderEmailAddress: emailAddress | null;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1217
1797
|
@entity model inheritablePermission extends MsGraph.SharedModels.entity {
|
|
1218
1798
|
inheritableScopes: inheritableScopes;
|
|
1219
1799
|
@computed @key resourceAppId: string;
|
|
@@ -1230,6 +1810,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1230
1810
|
signOutUri: string | null;
|
|
1231
1811
|
}
|
|
1232
1812
|
|
|
1813
|
+
@entity model itemAttachment extends attachment {
|
|
1814
|
+
@contains item: outlookItem | null;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1233
1817
|
|
|
1234
1818
|
@entity model licenseDetails extends entity {
|
|
1235
1819
|
servicePlans: servicePlanInfo[];
|
|
@@ -1237,6 +1821,92 @@ namespace reference.`microsoft.graph` {
|
|
|
1237
1821
|
skuPartNumber: string | null;
|
|
1238
1822
|
}
|
|
1239
1823
|
|
|
1824
|
+
@entity model mailFolder extends entity {
|
|
1825
|
+
childFolderCount: int32 | null;
|
|
1826
|
+
displayName: string | null;
|
|
1827
|
+
parentFolderId: string | null;
|
|
1828
|
+
totalItemCount: int32 | null;
|
|
1829
|
+
unreadItemCount: int32 | null;
|
|
1830
|
+
wellKnownName: string | null;
|
|
1831
|
+
@contains childFolders: mailFolder[];
|
|
1832
|
+
@contains messageRules: messageRule[];
|
|
1833
|
+
@contains messages: message[];
|
|
1834
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
1835
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
1836
|
+
@contains userConfigurations: userConfiguration[];
|
|
1837
|
+
}
|
|
1838
|
+
|
|
1839
|
+
@entity model mailSearchFolder extends mailFolder {
|
|
1840
|
+
filterQuery: string | null;
|
|
1841
|
+
includeNestedFolders: boolean | null;
|
|
1842
|
+
isSupported: boolean | null;
|
|
1843
|
+
sourceFolderIds: string[] | null;
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
@entity model mention extends entity {
|
|
1847
|
+
application: string | null;
|
|
1848
|
+
clientReference: string | null;
|
|
1849
|
+
createdBy: emailAddress | null;
|
|
1850
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
1851
|
+
deepLink: string | null;
|
|
1852
|
+
mentioned: emailAddress;
|
|
1853
|
+
mentionText: string | null;
|
|
1854
|
+
serverCreatedDateTime: offsetDateTime | null;
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
@open
|
|
1858
|
+
@entity model message extends outlookItem {
|
|
1859
|
+
bccRecipients: recipient[] | null;
|
|
1860
|
+
body: itemBody | null;
|
|
1861
|
+
bodyPreview: string | null;
|
|
1862
|
+
ccRecipients: recipient[] | null;
|
|
1863
|
+
conversationId: string | null;
|
|
1864
|
+
conversationIndex: binary | null;
|
|
1865
|
+
flag: followupFlag | null;
|
|
1866
|
+
from: recipient | null;
|
|
1867
|
+
hasAttachments: boolean | null;
|
|
1868
|
+
importance: importance | null;
|
|
1869
|
+
inferenceClassification: inferenceClassificationType | null;
|
|
1870
|
+
internetMessageHeaders: internetMessageHeader[] | null;
|
|
1871
|
+
internetMessageId: string | null;
|
|
1872
|
+
isDeliveryReceiptRequested: boolean | null;
|
|
1873
|
+
isDraft: boolean | null;
|
|
1874
|
+
isRead: boolean | null;
|
|
1875
|
+
isReadReceiptRequested: boolean | null;
|
|
1876
|
+
mentionsPreview: mentionsPreview | null;
|
|
1877
|
+
parentFolderId: string | null;
|
|
1878
|
+
receivedDateTime: offsetDateTime | null;
|
|
1879
|
+
replyTo: recipient[] | null;
|
|
1880
|
+
sender: recipient | null;
|
|
1881
|
+
sentDateTime: offsetDateTime | null;
|
|
1882
|
+
subject: string | null;
|
|
1883
|
+
toRecipients: recipient[] | null;
|
|
1884
|
+
uniqueBody: itemBody | null;
|
|
1885
|
+
unsubscribeData: string[] | null;
|
|
1886
|
+
unsubscribeEnabled: boolean | null;
|
|
1887
|
+
webLink: string | null;
|
|
1888
|
+
@contains attachments: attachment[];
|
|
1889
|
+
@contains extensions: extension[];
|
|
1890
|
+
@contains mentions: mention[];
|
|
1891
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
1892
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
@entity model messageRule extends entity {
|
|
1896
|
+
actions: messageRuleActions | null;
|
|
1897
|
+
conditions: messageRulePredicates | null;
|
|
1898
|
+
displayName: string | null;
|
|
1899
|
+
exceptions: messageRulePredicates | null;
|
|
1900
|
+
hasError: boolean | null;
|
|
1901
|
+
isEnabled: boolean | null;
|
|
1902
|
+
isReadOnly: boolean | null;
|
|
1903
|
+
sequence: int32 | null;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
@entity model multiValueLegacyExtendedProperty extends entity {
|
|
1907
|
+
value: string[] | null;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1240
1910
|
@entity model oAuth2PermissionGrant extends entity {
|
|
1241
1911
|
clientId: string;
|
|
1242
1912
|
consentType: string | null;
|
|
@@ -1256,6 +1926,11 @@ namespace reference.`microsoft.graph` {
|
|
|
1256
1926
|
isCloudManaged: boolean;
|
|
1257
1927
|
}
|
|
1258
1928
|
|
|
1929
|
+
@open
|
|
1930
|
+
@entity model openTypeExtension extends extension {
|
|
1931
|
+
extensionName: string;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1259
1934
|
@open
|
|
1260
1935
|
@entity model organization extends directoryObject {
|
|
1261
1936
|
assignedPlans: assignedPlan[];
|
|
@@ -1358,6 +2033,71 @@ namespace reference.`microsoft.graph` {
|
|
|
1358
2033
|
@contains tenants: tenantReference[];
|
|
1359
2034
|
}
|
|
1360
2035
|
|
|
2036
|
+
@entity model outlookCategory extends entity {
|
|
2037
|
+
color: categoryColor | null;
|
|
2038
|
+
displayName: string | null;
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
@abstract
|
|
2042
|
+
@entity model outlookItem extends entity {
|
|
2043
|
+
categories: string[] | null;
|
|
2044
|
+
changeKey: string | null;
|
|
2045
|
+
@computed createdDateTime: offsetDateTime | null;
|
|
2046
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
@entity model outlookTask extends outlookItem {
|
|
2050
|
+
assignedTo: string | null;
|
|
2051
|
+
body: itemBody | null;
|
|
2052
|
+
completedDateTime: dateTimeTimeZone | null;
|
|
2053
|
+
dueDateTime: dateTimeTimeZone | null;
|
|
2054
|
+
hasAttachments: boolean | null;
|
|
2055
|
+
importance: importance | null;
|
|
2056
|
+
isReminderOn: boolean | null;
|
|
2057
|
+
owner: string | null;
|
|
2058
|
+
parentFolderId: string | null;
|
|
2059
|
+
recurrence: patternedRecurrence | null;
|
|
2060
|
+
reminderDateTime: dateTimeTimeZone | null;
|
|
2061
|
+
sensitivity: sensitivity | null;
|
|
2062
|
+
startDateTime: dateTimeTimeZone | null;
|
|
2063
|
+
status: taskStatus | null;
|
|
2064
|
+
subject: string | null;
|
|
2065
|
+
@contains attachments: attachment[];
|
|
2066
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
2067
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
@entity model outlookTaskFolder extends entity {
|
|
2071
|
+
changeKey: string | null;
|
|
2072
|
+
isDefaultFolder: boolean | null;
|
|
2073
|
+
name: string | null;
|
|
2074
|
+
parentGroupKey: guid | null;
|
|
2075
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
2076
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
2077
|
+
@contains tasks: outlookTask[];
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
@entity model outlookTaskGroup extends entity {
|
|
2081
|
+
changeKey: string | null;
|
|
2082
|
+
groupKey: guid | null;
|
|
2083
|
+
isDefaultGroup: boolean | null;
|
|
2084
|
+
name: string | null;
|
|
2085
|
+
@contains taskFolders: outlookTaskFolder[];
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
@entity model outlookUser extends entity {
|
|
2089
|
+
@contains masterCategories: outlookCategory[];
|
|
2090
|
+
|
|
2091
|
+
@graphDeprecated("Outlook_Tasks")
|
|
2092
|
+
@contains taskFolders: outlookTaskFolder[];
|
|
2093
|
+
|
|
2094
|
+
@graphDeprecated("Outlook_Tasks")
|
|
2095
|
+
@contains taskGroups: outlookTaskGroup[];
|
|
2096
|
+
|
|
2097
|
+
@graphDeprecated("Outlook_Tasks")
|
|
2098
|
+
@contains tasks: outlookTask[];
|
|
2099
|
+
}
|
|
2100
|
+
|
|
1361
2101
|
@entity model partnerInformation extends MsGraph.SharedModels.entity {
|
|
1362
2102
|
commerceUrl: string | null;
|
|
1363
2103
|
companyName: string | null;
|
|
@@ -1393,6 +2133,29 @@ namespace reference.`microsoft.graph` {
|
|
|
1393
2133
|
conditions: preApprovalDetail[] | null;
|
|
1394
2134
|
}
|
|
1395
2135
|
|
|
2136
|
+
@entity model person extends entity {
|
|
2137
|
+
birthday: string | null;
|
|
2138
|
+
companyName: string | null;
|
|
2139
|
+
department: string | null;
|
|
2140
|
+
displayName: string | null;
|
|
2141
|
+
emailAddresses: rankedEmailAddress[] | null;
|
|
2142
|
+
givenName: string | null;
|
|
2143
|
+
isFavorite: boolean | null;
|
|
2144
|
+
mailboxType: string | null;
|
|
2145
|
+
officeLocation: string | null;
|
|
2146
|
+
personNotes: string | null;
|
|
2147
|
+
personType: string | null;
|
|
2148
|
+
phones: phone[] | null;
|
|
2149
|
+
postalAddresses: location[] | null;
|
|
2150
|
+
profession: string | null;
|
|
2151
|
+
sources: personDataSource[] | null;
|
|
2152
|
+
surname: string | null;
|
|
2153
|
+
title: string | null;
|
|
2154
|
+
userPrincipalName: string | null;
|
|
2155
|
+
websites: website[] | null;
|
|
2156
|
+
yomiCompany: string | null;
|
|
2157
|
+
}
|
|
2158
|
+
|
|
1396
2159
|
@abstract
|
|
1397
2160
|
@entity model policyBase extends directoryObject {
|
|
1398
2161
|
description: string;
|
|
@@ -1415,6 +2178,30 @@ namespace reference.`microsoft.graph` {
|
|
|
1415
2178
|
@contains tokenLifetimePolicies: tokenLifetimePolicy[];
|
|
1416
2179
|
}
|
|
1417
2180
|
|
|
2181
|
+
@open
|
|
2182
|
+
@entity model post extends outlookItem {
|
|
2183
|
+
body: itemBody | null;
|
|
2184
|
+
conversationId: string | null;
|
|
2185
|
+
conversationThreadId: string | null;
|
|
2186
|
+
from: recipient;
|
|
2187
|
+
hasAttachments: boolean;
|
|
2188
|
+
importance: importance | null;
|
|
2189
|
+
newParticipants: recipient[];
|
|
2190
|
+
receivedDateTime: offsetDateTime;
|
|
2191
|
+
sender: recipient | null;
|
|
2192
|
+
@contains attachments: attachment[];
|
|
2193
|
+
@contains extensions: extension[];
|
|
2194
|
+
@contains inReplyTo: post | null;
|
|
2195
|
+
@contains mentions: mention[];
|
|
2196
|
+
@contains multiValueExtendedProperties: multiValueLegacyExtendedProperty[];
|
|
2197
|
+
@contains singleValueExtendedProperties: singleValueLegacyExtendedProperty[];
|
|
2198
|
+
}
|
|
2199
|
+
|
|
2200
|
+
@entity model profilePhoto extends entity {
|
|
2201
|
+
height: int32 | null;
|
|
2202
|
+
width: int32 | null;
|
|
2203
|
+
}
|
|
2204
|
+
|
|
1418
2205
|
@entity model publicKeyInfrastructureRoot extends entity {
|
|
1419
2206
|
@contains certificateBasedAuthConfigurations: certificateBasedAuthPki[];
|
|
1420
2207
|
}
|
|
@@ -1432,6 +2219,15 @@ namespace reference.`microsoft.graph` {
|
|
|
1432
2219
|
@contains roleDefinitions: unifiedRoleDefinition[];
|
|
1433
2220
|
}
|
|
1434
2221
|
|
|
2222
|
+
@entity model referenceAttachment extends attachment {
|
|
2223
|
+
isFolder: boolean | null;
|
|
2224
|
+
permission: referenceAttachmentPermission | null;
|
|
2225
|
+
previewUrl: string | null;
|
|
2226
|
+
providerType: referenceAttachmentProvider | null;
|
|
2227
|
+
sourceUrl: string | null;
|
|
2228
|
+
thumbnailUrl: string | null;
|
|
2229
|
+
}
|
|
2230
|
+
|
|
1435
2231
|
@entity model remoteDesktopSecurityConfiguration extends entity {
|
|
1436
2232
|
isRemoteDesktopProtocolEnabled: boolean;
|
|
1437
2233
|
@contains targetDeviceGroups: targetDeviceGroup[];
|
|
@@ -1536,6 +2332,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1536
2332
|
@references transitiveMemberOf: directoryObject[];
|
|
1537
2333
|
}
|
|
1538
2334
|
|
|
2335
|
+
@entity model singleValueLegacyExtendedProperty extends entity {
|
|
2336
|
+
value: string | null;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
1539
2339
|
@abstract
|
|
1540
2340
|
@entity model stsPolicy extends policyBase {
|
|
1541
2341
|
definition: string[];
|
|
@@ -1683,6 +2483,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1683
2483
|
faxNumber: string | null;
|
|
1684
2484
|
givenName: string | null;
|
|
1685
2485
|
identities: objectIdentity[] | null;
|
|
2486
|
+
identityParentId: string | null;
|
|
1686
2487
|
imAddresses: string[] | null;
|
|
1687
2488
|
infoCatalogs: string[];
|
|
1688
2489
|
isManagementRestricted: boolean | null;
|
|
@@ -1692,6 +2493,7 @@ namespace reference.`microsoft.graph` {
|
|
|
1692
2493
|
legalAgeGroupClassification: string | null;
|
|
1693
2494
|
licenseAssignmentStates: licenseAssignmentState[] | null;
|
|
1694
2495
|
mail: string | null;
|
|
2496
|
+
mailboxSettings: mailboxSettings | null;
|
|
1695
2497
|
mailNickname: string | null;
|
|
1696
2498
|
mobilePhone: string | null;
|
|
1697
2499
|
officeLocation: string | null;
|
|
@@ -1725,15 +2527,28 @@ namespace reference.`microsoft.graph` {
|
|
|
1725
2527
|
userType: string | null;
|
|
1726
2528
|
@references appRoleAssignedResources: servicePrincipal[];
|
|
1727
2529
|
@contains appRoleAssignments: appRoleAssignment[];
|
|
2530
|
+
@contains calendar: calendar | null;
|
|
2531
|
+
@contains calendarGroups: calendarGroup[];
|
|
2532
|
+
@contains calendars: calendar[];
|
|
2533
|
+
@contains calendarView: event[];
|
|
2534
|
+
@contains contactFolders: contactFolder[];
|
|
2535
|
+
@contains contacts: contact[];
|
|
1728
2536
|
@references createdObjects: directoryObject[];
|
|
1729
2537
|
@references directReports: directoryObject[];
|
|
2538
|
+
@contains events: event[];
|
|
1730
2539
|
@contains extensions: extension[];
|
|
2540
|
+
@contains inferenceClassification: inferenceClassification | null;
|
|
2541
|
+
@contains joinedGroups: group[];
|
|
1731
2542
|
@contains licenseDetails: licenseDetails[];
|
|
2543
|
+
@contains mailFolders: mailFolder[];
|
|
1732
2544
|
@references manager: directoryObject | null;
|
|
1733
2545
|
@references memberOf: directoryObject[];
|
|
2546
|
+
@contains messages: message[];
|
|
1734
2547
|
@contains onPremisesSyncBehavior: onPremisesSyncBehavior | null;
|
|
2548
|
+
@contains outlook: outlookUser | null;
|
|
1735
2549
|
@references ownedDevices: directoryObject[];
|
|
1736
2550
|
@references ownedObjects: directoryObject[];
|
|
2551
|
+
@contains people: person[];
|
|
1737
2552
|
@references registeredDevices: directoryObject[];
|
|
1738
2553
|
@contains scopedRoleMemberOf: scopedRoleMembership[];
|
|
1739
2554
|
@references sponsors: directoryObject[];
|
|
@@ -1741,204 +2556,587 @@ namespace reference.`microsoft.graph` {
|
|
|
1741
2556
|
@references transitiveReports: directoryObject[];
|
|
1742
2557
|
}
|
|
1743
2558
|
|
|
2559
|
+
@entity model userConfiguration extends entity {
|
|
2560
|
+
binaryData: binary | null;
|
|
2561
|
+
}
|
|
2562
|
+
|
|
1744
2563
|
@graphFlags
|
|
1745
2564
|
enum allowedRolePrincipalTypes {
|
|
1746
|
-
user,
|
|
1747
|
-
servicePrincipal,
|
|
1748
|
-
group,
|
|
1749
|
-
unknownFutureValue,
|
|
2565
|
+
user: 1,
|
|
2566
|
+
servicePrincipal: 2,
|
|
2567
|
+
group: 4,
|
|
2568
|
+
unknownFutureValue: 8,
|
|
1750
2569
|
}
|
|
1751
2570
|
|
|
1752
2571
|
enum allowInvitesFrom {
|
|
1753
|
-
none,
|
|
1754
|
-
adminsAndGuestInviters,
|
|
1755
|
-
adminsGuestInvitersAndAllMembers,
|
|
1756
|
-
everyone,
|
|
1757
|
-
unknownFutureValue,
|
|
2572
|
+
none: 0,
|
|
2573
|
+
adminsAndGuestInviters: 1,
|
|
2574
|
+
adminsGuestInvitersAndAllMembers: 2,
|
|
2575
|
+
everyone: 3,
|
|
2576
|
+
unknownFutureValue: 4,
|
|
1758
2577
|
}
|
|
1759
2578
|
|
|
1760
2579
|
enum appCredentialRestrictionType {
|
|
1761
|
-
passwordAddition,
|
|
1762
|
-
passwordLifetime,
|
|
1763
|
-
symmetricKeyAddition,
|
|
1764
|
-
symmetricKeyLifetime,
|
|
1765
|
-
customPasswordAddition,
|
|
1766
|
-
unknownFutureValue,
|
|
2580
|
+
passwordAddition: 0,
|
|
2581
|
+
passwordLifetime: 1,
|
|
2582
|
+
symmetricKeyAddition: 2,
|
|
2583
|
+
symmetricKeyLifetime: 3,
|
|
2584
|
+
customPasswordAddition: 4,
|
|
2585
|
+
unknownFutureValue: 99,
|
|
1767
2586
|
}
|
|
1768
2587
|
|
|
1769
2588
|
enum appKeyCredentialRestrictionType {
|
|
1770
|
-
asymmetricKeyLifetime,
|
|
1771
|
-
trustedCertificateAuthority,
|
|
1772
|
-
unknownFutureValue,
|
|
2589
|
+
asymmetricKeyLifetime: 0,
|
|
2590
|
+
trustedCertificateAuthority: 1,
|
|
2591
|
+
unknownFutureValue: 99,
|
|
1773
2592
|
}
|
|
1774
2593
|
|
|
1775
2594
|
enum appManagementRestrictionState {
|
|
1776
|
-
enabled,
|
|
1777
|
-
disabled,
|
|
1778
|
-
unknownFutureValue,
|
|
2595
|
+
enabled: 1,
|
|
2596
|
+
disabled: 2,
|
|
2597
|
+
unknownFutureValue: 3,
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2601
|
+
enum attachmentType {
|
|
2602
|
+
file: 0,
|
|
2603
|
+
item: 1,
|
|
2604
|
+
reference: 2,
|
|
2605
|
+
}
|
|
2606
|
+
|
|
2607
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2608
|
+
enum attendeeType {
|
|
2609
|
+
required: 0,
|
|
2610
|
+
optional: 1,
|
|
2611
|
+
resource: 2,
|
|
1779
2612
|
}
|
|
1780
2613
|
|
|
1781
2614
|
enum authenticationProtocol {
|
|
1782
|
-
wsFed,
|
|
1783
|
-
saml,
|
|
1784
|
-
unknownFutureValue,
|
|
2615
|
+
wsFed: 0,
|
|
2616
|
+
saml: 1,
|
|
2617
|
+
unknownFutureValue: 2,
|
|
2618
|
+
}
|
|
2619
|
+
|
|
2620
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2621
|
+
enum automaticRepliesStatus {
|
|
2622
|
+
disabled: 0,
|
|
2623
|
+
alwaysEnabled: 1,
|
|
2624
|
+
scheduled: 2,
|
|
1785
2625
|
}
|
|
1786
2626
|
|
|
1787
2627
|
enum b2bIdentityProvidersType {
|
|
1788
|
-
azureActiveDirectory,
|
|
1789
|
-
externalFederation,
|
|
1790
|
-
socialIdentityProviders,
|
|
1791
|
-
emailOneTimePasscode,
|
|
1792
|
-
microsoftAccount,
|
|
1793
|
-
defaultConfiguredIdp,
|
|
1794
|
-
unknownFutureValue,
|
|
2628
|
+
azureActiveDirectory: 1,
|
|
2629
|
+
externalFederation: 2,
|
|
2630
|
+
socialIdentityProviders: 3,
|
|
2631
|
+
emailOneTimePasscode: 4,
|
|
2632
|
+
microsoftAccount: 5,
|
|
2633
|
+
defaultConfiguredIdp: 6,
|
|
2634
|
+
unknownFutureValue: 7,
|
|
2635
|
+
}
|
|
2636
|
+
|
|
2637
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2638
|
+
enum bodyType {
|
|
2639
|
+
text: 0,
|
|
2640
|
+
html: 1,
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2643
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2644
|
+
enum calendarColor {
|
|
2645
|
+
auto: -1,
|
|
2646
|
+
lightBlue: 0,
|
|
2647
|
+
lightGreen: 1,
|
|
2648
|
+
lightOrange: 2,
|
|
2649
|
+
lightGray: 3,
|
|
2650
|
+
lightYellow: 4,
|
|
2651
|
+
lightTeal: 5,
|
|
2652
|
+
lightPink: 6,
|
|
2653
|
+
lightBrown: 7,
|
|
2654
|
+
lightRed: 8,
|
|
2655
|
+
maxColor: 9,
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2659
|
+
enum calendarRoleType {
|
|
2660
|
+
none: 0,
|
|
2661
|
+
freeBusyRead: 1,
|
|
2662
|
+
limitedRead: 2,
|
|
2663
|
+
read: 3,
|
|
2664
|
+
write: 4,
|
|
2665
|
+
delegateWithoutPrivateEventAccess: 5,
|
|
2666
|
+
delegateWithPrivateEventAccess: 6,
|
|
2667
|
+
custom: 7,
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2671
|
+
enum calendarSharingAction {
|
|
2672
|
+
accept: 0,
|
|
2673
|
+
acceptAndViewCalendar: 1,
|
|
2674
|
+
viewCalendar: 2,
|
|
2675
|
+
addThisCalendar: 3,
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2679
|
+
enum calendarSharingActionImportance {
|
|
2680
|
+
primary: 0,
|
|
2681
|
+
secondary: 1,
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2685
|
+
enum calendarSharingActionType {
|
|
2686
|
+
accept: 0,
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2689
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2690
|
+
enum categoryColor {
|
|
2691
|
+
none: -1,
|
|
2692
|
+
preset0: 0,
|
|
2693
|
+
preset1: 1,
|
|
2694
|
+
preset2: 2,
|
|
2695
|
+
preset3: 3,
|
|
2696
|
+
preset4: 4,
|
|
2697
|
+
preset5: 5,
|
|
2698
|
+
preset6: 6,
|
|
2699
|
+
preset7: 7,
|
|
2700
|
+
preset8: 8,
|
|
2701
|
+
preset9: 9,
|
|
2702
|
+
preset10: 10,
|
|
2703
|
+
preset11: 11,
|
|
2704
|
+
preset12: 12,
|
|
2705
|
+
preset13: 13,
|
|
2706
|
+
preset14: 14,
|
|
2707
|
+
preset15: 15,
|
|
2708
|
+
preset16: 16,
|
|
2709
|
+
preset17: 17,
|
|
2710
|
+
preset18: 18,
|
|
2711
|
+
preset19: 19,
|
|
2712
|
+
preset20: 20,
|
|
2713
|
+
preset21: 21,
|
|
2714
|
+
preset22: 22,
|
|
2715
|
+
preset23: 23,
|
|
2716
|
+
preset24: 24,
|
|
1795
2717
|
}
|
|
1796
2718
|
|
|
1797
2719
|
enum certificateAuthorityType {
|
|
1798
|
-
root,
|
|
1799
|
-
intermediate,
|
|
1800
|
-
unknownFutureValue,
|
|
2720
|
+
root: 0,
|
|
2721
|
+
intermediate: 1,
|
|
2722
|
+
unknownFutureValue: 2,
|
|
1801
2723
|
}
|
|
1802
2724
|
|
|
1803
2725
|
enum crossTenantAccessPolicyTargetConfigurationAccessType {
|
|
1804
|
-
allowed,
|
|
1805
|
-
blocked,
|
|
1806
|
-
unknownFutureValue,
|
|
2726
|
+
allowed: 1,
|
|
2727
|
+
blocked: 2,
|
|
2728
|
+
unknownFutureValue: 3,
|
|
1807
2729
|
}
|
|
1808
2730
|
|
|
1809
2731
|
enum crossTenantAccessPolicyTargetType {
|
|
1810
|
-
user,
|
|
1811
|
-
group,
|
|
1812
|
-
application,
|
|
1813
|
-
unknownFutureValue,
|
|
2732
|
+
user: 1,
|
|
2733
|
+
group: 2,
|
|
2734
|
+
application: 3,
|
|
2735
|
+
unknownFutureValue: 4,
|
|
1814
2736
|
}
|
|
1815
2737
|
|
|
1816
2738
|
enum customSecurityAttributeComparisonOperator {
|
|
1817
|
-
equals,
|
|
1818
|
-
unknownFutureValue,
|
|
2739
|
+
equals: 1,
|
|
2740
|
+
unknownFutureValue: 2,
|
|
2741
|
+
}
|
|
2742
|
+
|
|
2743
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2744
|
+
enum dayOfWeek {
|
|
2745
|
+
sunday: 0,
|
|
2746
|
+
monday: 1,
|
|
2747
|
+
tuesday: 2,
|
|
2748
|
+
wednesday: 3,
|
|
2749
|
+
thursday: 4,
|
|
2750
|
+
friday: 5,
|
|
2751
|
+
saturday: 6,
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2755
|
+
enum delegateMeetingMessageDeliveryOptions {
|
|
2756
|
+
sendToDelegateAndInformationToPrincipal: 0,
|
|
2757
|
+
sendToDelegateAndPrincipal: 1,
|
|
2758
|
+
sendToDelegateOnly: 2,
|
|
2759
|
+
}
|
|
2760
|
+
|
|
2761
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2762
|
+
enum emailType {
|
|
2763
|
+
`unknown`: 0,
|
|
2764
|
+
work: 1,
|
|
2765
|
+
personal: 2,
|
|
2766
|
+
main: 3,
|
|
2767
|
+
other: 4,
|
|
2768
|
+
}
|
|
2769
|
+
|
|
2770
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2771
|
+
enum eventType {
|
|
2772
|
+
singleInstance: 0,
|
|
2773
|
+
occurrence: 1,
|
|
2774
|
+
exception: 2,
|
|
2775
|
+
seriesMaster: 3,
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2779
|
+
enum exchangeIdFormat {
|
|
2780
|
+
entryId: 0,
|
|
2781
|
+
ewsId: 1,
|
|
2782
|
+
immutableEntryId: 2,
|
|
2783
|
+
restId: 3,
|
|
2784
|
+
restImmutableEntryId: 4,
|
|
2785
|
+
}
|
|
2786
|
+
|
|
2787
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2788
|
+
enum externalAudienceScope {
|
|
2789
|
+
none: 0,
|
|
2790
|
+
contactsOnly: 1,
|
|
2791
|
+
all: 2,
|
|
1819
2792
|
}
|
|
1820
2793
|
|
|
1821
2794
|
enum federatedIdpMfaBehavior {
|
|
1822
|
-
acceptIfMfaDoneByFederatedIdp,
|
|
1823
|
-
enforceMfaByFederatedIdp,
|
|
1824
|
-
rejectMfaByFederatedIdp,
|
|
1825
|
-
unknownFutureValue,
|
|
2795
|
+
acceptIfMfaDoneByFederatedIdp: 0,
|
|
2796
|
+
enforceMfaByFederatedIdp: 1,
|
|
2797
|
+
rejectMfaByFederatedIdp: 2,
|
|
2798
|
+
unknownFutureValue: 3,
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2802
|
+
enum followupFlagStatus {
|
|
2803
|
+
notFlagged: 0,
|
|
2804
|
+
complete: 1,
|
|
2805
|
+
flagged: 2,
|
|
2806
|
+
}
|
|
2807
|
+
|
|
2808
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2809
|
+
enum freeBusyStatus {
|
|
2810
|
+
`unknown`: -1,
|
|
2811
|
+
free: 0,
|
|
2812
|
+
tentative: 1,
|
|
2813
|
+
busy: 2,
|
|
2814
|
+
oof: 3,
|
|
2815
|
+
workingElsewhere: 4,
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2819
|
+
enum groupAccessType {
|
|
2820
|
+
none: 0,
|
|
2821
|
+
private: 1,
|
|
2822
|
+
secret: 2,
|
|
2823
|
+
public: 3,
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2827
|
+
enum importance {
|
|
2828
|
+
low: 0,
|
|
2829
|
+
normal: 1,
|
|
2830
|
+
high: 2,
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2834
|
+
enum inferenceClassificationType {
|
|
2835
|
+
focused: 0,
|
|
2836
|
+
other: 1,
|
|
1826
2837
|
}
|
|
1827
2838
|
|
|
1828
2839
|
enum kind {
|
|
1829
|
-
unrestricted,
|
|
1830
|
-
allowedTenants,
|
|
1831
|
-
unknownFutureValue,
|
|
2840
|
+
unrestricted: 0,
|
|
2841
|
+
allowedTenants: 1,
|
|
2842
|
+
unknownFutureValue: 2,
|
|
1832
2843
|
}
|
|
1833
2844
|
|
|
1834
2845
|
enum labelKind {
|
|
1835
|
-
all,
|
|
1836
|
-
enumerated,
|
|
1837
|
-
unknownFutureValue,
|
|
2846
|
+
all: 1,
|
|
2847
|
+
enumerated: 2,
|
|
2848
|
+
unknownFutureValue: 3,
|
|
1838
2849
|
}
|
|
1839
2850
|
|
|
1840
2851
|
enum layoutTemplateType {
|
|
1841
|
-
default,
|
|
1842
|
-
verticalSplit,
|
|
1843
|
-
unknownFutureValue,
|
|
2852
|
+
default: 0,
|
|
2853
|
+
verticalSplit: 1,
|
|
2854
|
+
unknownFutureValue: 10,
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2858
|
+
enum locationType {
|
|
2859
|
+
default: 0,
|
|
2860
|
+
conferenceRoom: 1,
|
|
2861
|
+
homeAddress: 2,
|
|
2862
|
+
businessAddress: 3,
|
|
2863
|
+
geoCoordinates: 4,
|
|
2864
|
+
streetAddress: 5,
|
|
2865
|
+
hotel: 6,
|
|
2866
|
+
restaurant: 7,
|
|
2867
|
+
localBusiness: 8,
|
|
2868
|
+
postalAddress: 9,
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2872
|
+
enum locationUniqueIdType {
|
|
2873
|
+
`unknown`: 0,
|
|
2874
|
+
locationStore: 1,
|
|
2875
|
+
directory: 2,
|
|
2876
|
+
private: 3,
|
|
2877
|
+
bing: 4,
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2881
|
+
enum mailboxRecipientType {
|
|
2882
|
+
`unknown`: 0,
|
|
2883
|
+
user: 1,
|
|
2884
|
+
linked: 2,
|
|
2885
|
+
shared: 3,
|
|
2886
|
+
room: 4,
|
|
2887
|
+
equipment: 5,
|
|
2888
|
+
others: 6,
|
|
2889
|
+
}
|
|
2890
|
+
|
|
2891
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2892
|
+
@graphFlags
|
|
2893
|
+
enum mailTipsType {
|
|
2894
|
+
automaticReplies: 1,
|
|
2895
|
+
mailboxFullStatus: 2,
|
|
2896
|
+
customMailTip: 4,
|
|
2897
|
+
externalMemberCount: 8,
|
|
2898
|
+
totalMemberCount: 16,
|
|
2899
|
+
maxMessageSize: 32,
|
|
2900
|
+
deliveryRestriction: 64,
|
|
2901
|
+
moderationStatus: 128,
|
|
2902
|
+
recipientScope: 256,
|
|
2903
|
+
recipientSuggestions: 512,
|
|
2904
|
+
}
|
|
2905
|
+
|
|
2906
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2907
|
+
enum meetingMessageType {
|
|
2908
|
+
none: 0,
|
|
2909
|
+
meetingRequest: 1,
|
|
2910
|
+
meetingCancelled: 2,
|
|
2911
|
+
meetingAccepted: 3,
|
|
2912
|
+
meetingTentativelyAccepted: 4,
|
|
2913
|
+
meetingDeclined: 5,
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2916
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2917
|
+
enum messageActionFlag {
|
|
2918
|
+
any: 0,
|
|
2919
|
+
call: 1,
|
|
2920
|
+
doNotForward: 2,
|
|
2921
|
+
followUp: 3,
|
|
2922
|
+
fyi: 4,
|
|
2923
|
+
forward: 5,
|
|
2924
|
+
noResponseNecessary: 6,
|
|
2925
|
+
read: 7,
|
|
2926
|
+
reply: 8,
|
|
2927
|
+
replyToAll: 9,
|
|
2928
|
+
review: 10,
|
|
2929
|
+
}
|
|
2930
|
+
|
|
2931
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2932
|
+
enum onlineMeetingProviderType {
|
|
2933
|
+
`unknown`: 0,
|
|
2934
|
+
skypeForBusiness: 1,
|
|
2935
|
+
skypeForConsumer: 2,
|
|
2936
|
+
teamsForBusiness: 3,
|
|
1844
2937
|
}
|
|
1845
2938
|
|
|
1846
2939
|
enum onPremisesDirectorySynchronizationDeletionPreventionType {
|
|
1847
|
-
disabled,
|
|
1848
|
-
enabledForCount,
|
|
1849
|
-
enabledForPercentage,
|
|
1850
|
-
unknownFutureValue,
|
|
2940
|
+
disabled: 0,
|
|
2941
|
+
enabledForCount: 1,
|
|
2942
|
+
enabledForPercentage: 2,
|
|
2943
|
+
unknownFutureValue: 3,
|
|
1851
2944
|
}
|
|
1852
2945
|
|
|
1853
2946
|
enum partnerTenantType {
|
|
1854
|
-
microsoftSupport,
|
|
1855
|
-
syndicatePartner,
|
|
1856
|
-
breadthPartner,
|
|
1857
|
-
breadthPartnerDelegatedAdmin,
|
|
1858
|
-
resellerPartnerDelegatedAdmin,
|
|
1859
|
-
valueAddedResellerPartnerDelegatedAdmin,
|
|
1860
|
-
unknownFutureValue,
|
|
2947
|
+
microsoftSupport: 1,
|
|
2948
|
+
syndicatePartner: 2,
|
|
2949
|
+
breadthPartner: 3,
|
|
2950
|
+
breadthPartnerDelegatedAdmin: 4,
|
|
2951
|
+
resellerPartnerDelegatedAdmin: 5,
|
|
2952
|
+
valueAddedResellerPartnerDelegatedAdmin: 6,
|
|
2953
|
+
unknownFutureValue: 7,
|
|
1861
2954
|
}
|
|
1862
2955
|
|
|
1863
2956
|
enum permissionClassificationType {
|
|
1864
|
-
low,
|
|
1865
|
-
medium,
|
|
1866
|
-
high,
|
|
1867
|
-
unknownFutureValue,
|
|
2957
|
+
low: 1,
|
|
2958
|
+
medium: 2,
|
|
2959
|
+
high: 3,
|
|
2960
|
+
unknownFutureValue: 4,
|
|
1868
2961
|
}
|
|
1869
2962
|
|
|
1870
2963
|
enum permissionKind {
|
|
1871
|
-
all,
|
|
1872
|
-
enumerated,
|
|
1873
|
-
allPermissionsOnResourceApp,
|
|
1874
|
-
unknownFutureValue,
|
|
2964
|
+
all: 1,
|
|
2965
|
+
enumerated: 2,
|
|
2966
|
+
allPermissionsOnResourceApp: 3,
|
|
2967
|
+
unknownFutureValue: 4,
|
|
1875
2968
|
}
|
|
1876
2969
|
|
|
1877
2970
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
1878
2971
|
enum permissionType {
|
|
1879
|
-
application,
|
|
1880
|
-
delegated,
|
|
1881
|
-
delegatedUserConsentable,
|
|
2972
|
+
application: 1,
|
|
2973
|
+
delegated: 2,
|
|
2974
|
+
delegatedUserConsentable: 3,
|
|
1882
2975
|
}
|
|
1883
2976
|
|
|
1884
2977
|
enum perUserMfaState {
|
|
1885
|
-
disabled,
|
|
1886
|
-
enforced,
|
|
1887
|
-
enabled,
|
|
1888
|
-
unknownFutureValue,
|
|
2978
|
+
disabled: 0,
|
|
2979
|
+
enforced: 1,
|
|
2980
|
+
enabled: 2,
|
|
2981
|
+
unknownFutureValue: 3,
|
|
1889
2982
|
}
|
|
1890
2983
|
|
|
1891
2984
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
1892
2985
|
enum phoneType {
|
|
1893
|
-
home,
|
|
1894
|
-
business,
|
|
1895
|
-
mobile,
|
|
1896
|
-
other,
|
|
1897
|
-
assistant,
|
|
1898
|
-
homeFax,
|
|
1899
|
-
businessFax,
|
|
1900
|
-
otherFax,
|
|
1901
|
-
pager,
|
|
1902
|
-
radio,
|
|
2986
|
+
home: 0,
|
|
2987
|
+
business: 1,
|
|
2988
|
+
mobile: 2,
|
|
2989
|
+
other: 3,
|
|
2990
|
+
assistant: 4,
|
|
2991
|
+
homeFax: 5,
|
|
2992
|
+
businessFax: 6,
|
|
2993
|
+
otherFax: 7,
|
|
2994
|
+
pager: 8,
|
|
2995
|
+
radio: 9,
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
2999
|
+
enum physicalAddressType {
|
|
3000
|
+
`unknown`: 0,
|
|
3001
|
+
home: 1,
|
|
3002
|
+
business: 2,
|
|
3003
|
+
other: 3,
|
|
1903
3004
|
}
|
|
1904
3005
|
|
|
1905
3006
|
enum promptLoginBehavior {
|
|
1906
|
-
translateToFreshPasswordAuthentication,
|
|
1907
|
-
nativeSupport,
|
|
1908
|
-
disabled,
|
|
1909
|
-
unknownFutureValue,
|
|
3007
|
+
translateToFreshPasswordAuthentication: 0,
|
|
3008
|
+
nativeSupport: 1,
|
|
3009
|
+
disabled: 2,
|
|
3010
|
+
unknownFutureValue: 3,
|
|
3011
|
+
}
|
|
3012
|
+
|
|
3013
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3014
|
+
@graphFlags
|
|
3015
|
+
enum recipientScopeType {
|
|
3016
|
+
none: 0,
|
|
3017
|
+
`internal`: 1,
|
|
3018
|
+
external: 2,
|
|
3019
|
+
externalPartner: 4,
|
|
3020
|
+
externalNonPartner: 8,
|
|
3021
|
+
}
|
|
3022
|
+
|
|
3023
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3024
|
+
enum recurrencePatternType {
|
|
3025
|
+
daily: 0,
|
|
3026
|
+
weekly: 1,
|
|
3027
|
+
absoluteMonthly: 2,
|
|
3028
|
+
relativeMonthly: 3,
|
|
3029
|
+
absoluteYearly: 4,
|
|
3030
|
+
relativeYearly: 5,
|
|
3031
|
+
}
|
|
3032
|
+
|
|
3033
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3034
|
+
enum recurrenceRangeType {
|
|
3035
|
+
endDate: 0,
|
|
3036
|
+
noEnd: 1,
|
|
3037
|
+
numbered: 2,
|
|
3038
|
+
}
|
|
3039
|
+
|
|
3040
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3041
|
+
enum referenceAttachmentPermission {
|
|
3042
|
+
other: 0,
|
|
3043
|
+
view: 1,
|
|
3044
|
+
edit: 2,
|
|
3045
|
+
anonymousView: 3,
|
|
3046
|
+
anonymousEdit: 4,
|
|
3047
|
+
organizationView: 5,
|
|
3048
|
+
organizationEdit: 6,
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3052
|
+
enum referenceAttachmentProvider {
|
|
3053
|
+
other: 0,
|
|
3054
|
+
oneDriveBusiness: 1,
|
|
3055
|
+
oneDriveConsumer: 2,
|
|
3056
|
+
dropbox: 3,
|
|
1910
3057
|
}
|
|
1911
3058
|
|
|
1912
3059
|
enum resourceScopeType {
|
|
1913
|
-
group,
|
|
1914
|
-
chat,
|
|
1915
|
-
tenant,
|
|
1916
|
-
unknownFutureValue,
|
|
1917
|
-
team,
|
|
3060
|
+
group: 1,
|
|
3061
|
+
chat: 2,
|
|
3062
|
+
tenant: 3,
|
|
3063
|
+
unknownFutureValue: 4,
|
|
3064
|
+
team: 5,
|
|
3065
|
+
}
|
|
3066
|
+
|
|
3067
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3068
|
+
enum responseType {
|
|
3069
|
+
none: 0,
|
|
3070
|
+
organizer: 1,
|
|
3071
|
+
tentativelyAccepted: 2,
|
|
3072
|
+
accepted: 3,
|
|
3073
|
+
declined: 4,
|
|
3074
|
+
notResponded: 5,
|
|
1918
3075
|
}
|
|
1919
3076
|
|
|
1920
3077
|
enum rootDomains {
|
|
1921
|
-
none,
|
|
1922
|
-
all,
|
|
1923
|
-
allFederated,
|
|
1924
|
-
allManaged,
|
|
1925
|
-
enumerated,
|
|
1926
|
-
allManagedAndEnumeratedFederated,
|
|
1927
|
-
unknownFutureValue,
|
|
3078
|
+
none: 0,
|
|
3079
|
+
all: 1,
|
|
3080
|
+
allFederated: 2,
|
|
3081
|
+
allManaged: 3,
|
|
3082
|
+
enumerated: 4,
|
|
3083
|
+
allManagedAndEnumeratedFederated: 5,
|
|
3084
|
+
unknownFutureValue: 6,
|
|
1928
3085
|
}
|
|
1929
3086
|
|
|
1930
3087
|
enum scopeCollectionKind {
|
|
1931
|
-
allAllowed,
|
|
1932
|
-
enumerated,
|
|
1933
|
-
none,
|
|
1934
|
-
scopeKindNotSet,
|
|
1935
|
-
unknownFutureValue,
|
|
3088
|
+
allAllowed: 0,
|
|
3089
|
+
enumerated: 1,
|
|
3090
|
+
none: 2,
|
|
3091
|
+
scopeKindNotSet: 3,
|
|
3092
|
+
unknownFutureValue: 4,
|
|
3093
|
+
}
|
|
3094
|
+
|
|
3095
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3096
|
+
enum sensitivity {
|
|
3097
|
+
normal: 0,
|
|
3098
|
+
personal: 1,
|
|
3099
|
+
private: 2,
|
|
3100
|
+
confidential: 3,
|
|
3101
|
+
}
|
|
3102
|
+
|
|
3103
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3104
|
+
enum taskStatus {
|
|
3105
|
+
notStarted: 0,
|
|
3106
|
+
inProgress: 1,
|
|
3107
|
+
completed: 2,
|
|
3108
|
+
waitingOnOthers: 3,
|
|
3109
|
+
deferred: 4,
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3113
|
+
enum timeZoneStandard {
|
|
3114
|
+
windows: 0,
|
|
3115
|
+
iana: 1,
|
|
1936
3116
|
}
|
|
1937
3117
|
|
|
1938
3118
|
@graphFlags
|
|
1939
3119
|
enum weakAlgorithms {
|
|
1940
|
-
rsaSha1,
|
|
1941
|
-
unknownFutureValue,
|
|
3120
|
+
rsaSha1: 1,
|
|
3121
|
+
unknownFutureValue: 2,
|
|
3122
|
+
}
|
|
3123
|
+
|
|
3124
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3125
|
+
enum websiteType {
|
|
3126
|
+
other: 0,
|
|
3127
|
+
home: 1,
|
|
3128
|
+
work: 2,
|
|
3129
|
+
blog: 3,
|
|
3130
|
+
profile: 4,
|
|
3131
|
+
}
|
|
3132
|
+
|
|
3133
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
3134
|
+
enum weekIndex {
|
|
3135
|
+
first: 0,
|
|
3136
|
+
second: 1,
|
|
3137
|
+
third: 2,
|
|
3138
|
+
fourth: 3,
|
|
3139
|
+
last: 4,
|
|
1942
3140
|
}
|
|
1943
3141
|
|
|
1944
3142
|
}
|