@microsoft/typespec-msgraph-reference 1.0.5 → 1.0.7
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 +19 -19
- package/.rush/temp/shrinkwrap-deps.json +10 -10
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +235 -6
- package/lib/Bleu/V1.0/main.tsp +672 -12
- package/lib/Delos/Beta/main.tsp +3542 -22
- package/lib/Delos/V1.0/main.tsp +2963 -38
- package/lib/Fairfax/Beta/main.tsp +360 -5
- package/lib/Fairfax/V1.0/main.tsp +325 -25
- package/lib/GovSG/Beta/main.tsp +1 -0
- package/lib/GovSG/V1.0/main.tsp +29 -1
- package/lib/Mooncake/Beta/main.tsp +209 -4
- package/lib/Mooncake/V1.0/main.tsp +122 -1
- package/lib/Prod/Beta/main.tsp +1550 -175
- package/lib/Prod/V1.0/main.tsp +3736 -84
- package/lib/USNat/Beta/main.tsp +375 -2
- package/lib/USNat/V1.0/main.tsp +317 -22
- package/lib/USSec/Beta/main.tsp +392 -2
- package/lib/USSec/V1.0/main.tsp +317 -22
- package/package.json +2 -2
package/lib/Bleu/V1.0/main.tsp
CHANGED
|
@@ -270,6 +270,9 @@ namespace reference.`microsoft.graph` {
|
|
|
270
270
|
@complex model allDevicesAssignmentTarget extends deviceAndAppManagementAssignmentTarget {
|
|
271
271
|
}
|
|
272
272
|
|
|
273
|
+
@complex model allDomains extends validatingDomains {
|
|
274
|
+
}
|
|
275
|
+
|
|
273
276
|
/**
|
|
274
277
|
* Represents an assignment to all licensed users in the tenant.
|
|
275
278
|
*/
|
|
@@ -392,6 +395,10 @@ namespace reference.`microsoft.graph` {
|
|
|
392
395
|
displayName: string | null;
|
|
393
396
|
}
|
|
394
397
|
|
|
398
|
+
@complex model appHostedMediaConfig extends mediaConfig {
|
|
399
|
+
blob: string | null;
|
|
400
|
+
}
|
|
401
|
+
|
|
395
402
|
@complex model appIdentity {
|
|
396
403
|
appId: string | null;
|
|
397
404
|
displayName: string | null;
|
|
@@ -704,6 +711,13 @@ namespace reference.`microsoft.graph` {
|
|
|
704
711
|
authenticationContextValue: string | null;
|
|
705
712
|
}
|
|
706
713
|
|
|
714
|
+
@complex model authenticationAppDeviceDetails {
|
|
715
|
+
appVersion: string | null;
|
|
716
|
+
clientApp: string | null;
|
|
717
|
+
deviceId: string | null;
|
|
718
|
+
operatingSystem: string | null;
|
|
719
|
+
}
|
|
720
|
+
|
|
707
721
|
@complex model authenticationFlow {
|
|
708
722
|
transferMethod: conditionalAccessTransferMethods | null;
|
|
709
723
|
}
|
|
@@ -832,6 +846,14 @@ namespace reference.`microsoft.graph` {
|
|
|
832
846
|
initiator: identitySet | null;
|
|
833
847
|
}
|
|
834
848
|
|
|
849
|
+
@complex model callMediaState {
|
|
850
|
+
audio: mediaState | null;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
@abstract
|
|
854
|
+
@complex model callOptions {
|
|
855
|
+
}
|
|
856
|
+
|
|
835
857
|
@complex model callParticipantInfo {
|
|
836
858
|
participant: identitySet | null;
|
|
837
859
|
}
|
|
@@ -846,6 +868,12 @@ namespace reference.`microsoft.graph` {
|
|
|
846
868
|
meetingOrganizer: identitySet | null;
|
|
847
869
|
}
|
|
848
870
|
|
|
871
|
+
@complex model callRoute {
|
|
872
|
+
final: identitySet;
|
|
873
|
+
original: identitySet;
|
|
874
|
+
routingType: routingType;
|
|
875
|
+
}
|
|
876
|
+
|
|
849
877
|
@complex model callStartedEventMessageDetail extends eventMessageDetail {
|
|
850
878
|
callEventType: teamworkCallEventType | null;
|
|
851
879
|
callId: string | null;
|
|
@@ -858,6 +886,11 @@ namespace reference.`microsoft.graph` {
|
|
|
858
886
|
meetingOrganizer: identitySet | null;
|
|
859
887
|
}
|
|
860
888
|
|
|
889
|
+
@complex model callTranscriptionInfo {
|
|
890
|
+
@computed lastModifiedDateTime: offsetDateTime | null;
|
|
891
|
+
state: callTranscriptionState;
|
|
892
|
+
}
|
|
893
|
+
|
|
861
894
|
@complex model certificateAuthority {
|
|
862
895
|
certificate: binary;
|
|
863
896
|
certificateRevocationListUrl: string | null;
|
|
@@ -1017,6 +1050,10 @@ namespace reference.`microsoft.graph` {
|
|
|
1017
1050
|
initiator: identitySet | null;
|
|
1018
1051
|
}
|
|
1019
1052
|
|
|
1053
|
+
@complex model chatRestrictions {
|
|
1054
|
+
allowTextOnly: boolean | null;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1020
1057
|
@complex model chatViewpoint {
|
|
1021
1058
|
isHidden: boolean | null;
|
|
1022
1059
|
@computed lastMessageReadDateTime: offsetDateTime | null;
|
|
@@ -1044,6 +1081,33 @@ namespace reference.`microsoft.graph` {
|
|
|
1044
1081
|
participants: identitySet[] | null;
|
|
1045
1082
|
}
|
|
1046
1083
|
|
|
1084
|
+
@open
|
|
1085
|
+
@complex model commsNotification {
|
|
1086
|
+
changeType: changeType;
|
|
1087
|
+
resourceUrl: string;
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
@complex model commsNotifications {
|
|
1091
|
+
value: commsNotification[] | null;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
@open
|
|
1095
|
+
@complex model communicationsIdentitySet extends identitySet {
|
|
1096
|
+
applicationInstance: identity | null;
|
|
1097
|
+
assertedIdentity: identity | null;
|
|
1098
|
+
azureCommunicationServicesUser: identity | null;
|
|
1099
|
+
encrypted: identity | null;
|
|
1100
|
+
endpointType: endpointType | null;
|
|
1101
|
+
guest: identity | null;
|
|
1102
|
+
onPremises: identity | null;
|
|
1103
|
+
phone: identity | null;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
@open
|
|
1107
|
+
@complex model communicationsUserIdentity extends identity {
|
|
1108
|
+
tenantId: string | null;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1047
1111
|
@open
|
|
1048
1112
|
@complex model ComplexExtensionValue {
|
|
1049
1113
|
}
|
|
@@ -2079,6 +2143,10 @@ namespace reference.`microsoft.graph` {
|
|
|
2079
2143
|
users: string[] | null;
|
|
2080
2144
|
}
|
|
2081
2145
|
|
|
2146
|
+
@complex model enumeratedDomains extends validatingDomains {
|
|
2147
|
+
domainNames: string[];
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2082
2150
|
@complex model enumeratedScopes extends inheritableScopes {
|
|
2083
2151
|
scopes: string[];
|
|
2084
2152
|
}
|
|
@@ -2393,6 +2461,13 @@ namespace reference.`microsoft.graph` {
|
|
|
2393
2461
|
targetType: authenticationMethodTargetType;
|
|
2394
2462
|
}
|
|
2395
2463
|
|
|
2464
|
+
@complex model incomingContext {
|
|
2465
|
+
observedParticipantId: string | null;
|
|
2466
|
+
onBehalfOf: identitySet | null;
|
|
2467
|
+
sourceParticipantId: string | null;
|
|
2468
|
+
transferor: identitySet | null;
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2396
2471
|
@open
|
|
2397
2472
|
@complex model incompleteData {
|
|
2398
2473
|
missingDataBeforeDateTime: offsetDateTime | null;
|
|
@@ -2512,6 +2587,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2512
2587
|
themeColor: rgbColor | null;
|
|
2513
2588
|
}
|
|
2514
2589
|
|
|
2590
|
+
@open
|
|
2591
|
+
@complex model invitationParticipantInfo {
|
|
2592
|
+
identity: identitySet;
|
|
2593
|
+
replacesCallId: string | null;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2515
2596
|
@complex model invitationRedemptionIdentityProviderConfiguration {
|
|
2516
2597
|
fallbackIdentityProvider: b2bIdentityProvidersType | null;
|
|
2517
2598
|
primaryIdentityProviderPrecedenceOrder: b2bIdentityProvidersType[] | null;
|
|
@@ -2822,6 +2903,12 @@ namespace reference.`microsoft.graph` {
|
|
|
2822
2903
|
siteId: string | null;
|
|
2823
2904
|
}
|
|
2824
2905
|
|
|
2906
|
+
@open
|
|
2907
|
+
@complex model joinMeetingIdMeetingInfo extends meetingInfo {
|
|
2908
|
+
joinMeetingId: string;
|
|
2909
|
+
passcode: string | null;
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2825
2912
|
@complex model joinMeetingIdSettings {
|
|
2826
2913
|
isPasscodeRequired: boolean | null;
|
|
2827
2914
|
joinMeetingId: string | null;
|
|
@@ -3121,6 +3208,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3121
3208
|
mobileAppIdentifier: mobileAppIdentifier | null;
|
|
3122
3209
|
}
|
|
3123
3210
|
|
|
3211
|
+
@abstract
|
|
3212
|
+
@complex model mediaConfig {
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3124
3215
|
@complex model mediaContentRatingAustralia {
|
|
3125
3216
|
/**
|
|
3126
3217
|
* Movies rating selected for Australia
|
|
@@ -3220,10 +3311,31 @@ namespace reference.`microsoft.graph` {
|
|
|
3220
3311
|
tvRating: ratingUnitedStatesTelevisionType;
|
|
3221
3312
|
}
|
|
3222
3313
|
|
|
3314
|
+
@complex model mediaInfo {
|
|
3315
|
+
resourceId: string | null;
|
|
3316
|
+
uri: string;
|
|
3317
|
+
}
|
|
3318
|
+
|
|
3319
|
+
@complex model mediaPrompt extends prompt {
|
|
3320
|
+
mediaInfo: mediaInfo;
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3223
3323
|
@complex model mediaSource {
|
|
3224
3324
|
contentCategory: mediaSourceContentCategory | null;
|
|
3225
3325
|
}
|
|
3226
3326
|
|
|
3327
|
+
@complex model mediaStream {
|
|
3328
|
+
direction: mediaDirection;
|
|
3329
|
+
label: string | null;
|
|
3330
|
+
mediaType: modality;
|
|
3331
|
+
serverMuted: boolean;
|
|
3332
|
+
sourceId: string;
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
@abstract
|
|
3336
|
+
@complex model meetingInfo {
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3227
3339
|
@complex model meetingParticipantInfo {
|
|
3228
3340
|
identity: identitySet | null;
|
|
3229
3341
|
role: onlineMeetingRole | null;
|
|
@@ -3578,6 +3690,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3578
3690
|
videoDisabled: onlineMeetingVideoDisabledReason | null;
|
|
3579
3691
|
}
|
|
3580
3692
|
|
|
3693
|
+
@complex model onlineMeetingSensitivityLabelAssignment {
|
|
3694
|
+
sensitivityLabelId: string | null;
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3581
3697
|
@complex model onPremisesAccidentalDeletionPrevention {
|
|
3582
3698
|
alertThreshold: int32 | null;
|
|
3583
3699
|
synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
|
|
@@ -3588,6 +3704,7 @@ namespace reference.`microsoft.graph` {
|
|
|
3588
3704
|
}
|
|
3589
3705
|
|
|
3590
3706
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
3707
|
+
allowOnPremUpdateOfOnPremisesObjectIdentifierEnabled: boolean | null;
|
|
3591
3708
|
blockCloudObjectTakeoverThroughHardMatchEnabled: boolean | null;
|
|
3592
3709
|
blockSoftMatchEnabled: boolean | null;
|
|
3593
3710
|
bypassDirSyncOverridesEnabled: boolean | null;
|
|
@@ -3657,6 +3774,11 @@ namespace reference.`microsoft.graph` {
|
|
|
3657
3774
|
saml2Token: optionalClaim[] | null;
|
|
3658
3775
|
}
|
|
3659
3776
|
|
|
3777
|
+
@open
|
|
3778
|
+
@complex model organizerMeetingInfo extends meetingInfo {
|
|
3779
|
+
organizer: identitySet;
|
|
3780
|
+
}
|
|
3781
|
+
|
|
3660
3782
|
/**
|
|
3661
3783
|
* Count of devices with malware for each OS version
|
|
3662
3784
|
*/
|
|
@@ -3675,6 +3797,9 @@ namespace reference.`microsoft.graph` {
|
|
|
3675
3797
|
osVersion: string | null;
|
|
3676
3798
|
}
|
|
3677
3799
|
|
|
3800
|
+
@complex model outgoingCallOptions extends callOptions {
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3678
3803
|
@complex model outlookGeoCoordinates {
|
|
3679
3804
|
accuracy: float64 | null;
|
|
3680
3805
|
altitude: float64 | null;
|
|
@@ -3731,6 +3856,14 @@ namespace reference.`microsoft.graph` {
|
|
|
3731
3856
|
parsingSucceeded: boolean;
|
|
3732
3857
|
}
|
|
3733
3858
|
|
|
3859
|
+
@complex model participantInfo {
|
|
3860
|
+
countryCode: string | null;
|
|
3861
|
+
endpointType: endpointType | null;
|
|
3862
|
+
identity: identitySet;
|
|
3863
|
+
languageId: string | null;
|
|
3864
|
+
region: string | null;
|
|
3865
|
+
}
|
|
3866
|
+
|
|
3734
3867
|
@complex model passwordCredential {
|
|
3735
3868
|
customKeyIdentifier: binary | null;
|
|
3736
3869
|
displayName: string | null;
|
|
@@ -3940,6 +4073,10 @@ namespace reference.`microsoft.graph` {
|
|
|
3940
4073
|
webUrl: string | null;
|
|
3941
4074
|
}
|
|
3942
4075
|
|
|
4076
|
+
@abstract
|
|
4077
|
+
@complex model prompt {
|
|
4078
|
+
}
|
|
4079
|
+
|
|
3943
4080
|
@complex model provisionChannelEmailResult {
|
|
3944
4081
|
email: string | null;
|
|
3945
4082
|
}
|
|
@@ -4062,6 +4199,11 @@ namespace reference.`microsoft.graph` {
|
|
|
4062
4199
|
emailAddress: emailAddress | null;
|
|
4063
4200
|
}
|
|
4064
4201
|
|
|
4202
|
+
@complex model recordingInfo {
|
|
4203
|
+
initiator: identitySet | null;
|
|
4204
|
+
recordingStatus: recordingStatus;
|
|
4205
|
+
}
|
|
4206
|
+
|
|
4065
4207
|
@complex model recurrencePattern {
|
|
4066
4208
|
dayOfMonth: int32;
|
|
4067
4209
|
daysOfWeek: dayOfWeek[] | null;
|
|
@@ -4226,6 +4368,12 @@ namespace reference.`microsoft.graph` {
|
|
|
4226
4368
|
@complex model restoreAction {
|
|
4227
4369
|
}
|
|
4228
4370
|
|
|
4371
|
+
@complex model resultInfo {
|
|
4372
|
+
code: int32;
|
|
4373
|
+
message: string | null;
|
|
4374
|
+
subcode: int32;
|
|
4375
|
+
}
|
|
4376
|
+
|
|
4229
4377
|
@complex model retentionLabelSettings {
|
|
4230
4378
|
behaviorDuringRetentionPeriod: reference.`microsoft.graph.security`.behaviorDuringRetentionPeriod | null;
|
|
4231
4379
|
isContentUpdateAllowed: boolean | null;
|
|
@@ -4340,6 +4488,10 @@ namespace reference.`microsoft.graph` {
|
|
|
4340
4488
|
postType: postType | null;
|
|
4341
4489
|
}
|
|
4342
4490
|
|
|
4491
|
+
@complex model serviceHostedMediaConfig extends mediaConfig {
|
|
4492
|
+
preFetchMedia: mediaInfo[] | null;
|
|
4493
|
+
}
|
|
4494
|
+
|
|
4343
4495
|
@complex model servicePlanInfo {
|
|
4344
4496
|
appliesTo: string | null;
|
|
4345
4497
|
provisioningStatus: string | null;
|
|
@@ -4889,6 +5041,62 @@ namespace reference.`microsoft.graph` {
|
|
|
4889
5041
|
userIdentityType: teamworkUserIdentityType | null;
|
|
4890
5042
|
}
|
|
4891
5043
|
|
|
5044
|
+
@open
|
|
5045
|
+
@complex model teleconferenceDeviceAudioQuality extends teleconferenceDeviceMediaQuality {
|
|
5046
|
+
}
|
|
5047
|
+
|
|
5048
|
+
@abstract
|
|
5049
|
+
@open
|
|
5050
|
+
@complex model teleconferenceDeviceMediaQuality {
|
|
5051
|
+
averageInboundJitter: duration | null;
|
|
5052
|
+
averageInboundPacketLossRateInPercentage: float64 | null;
|
|
5053
|
+
averageInboundRoundTripDelay: duration | null;
|
|
5054
|
+
averageOutboundJitter: duration | null;
|
|
5055
|
+
averageOutboundPacketLossRateInPercentage: float64 | null;
|
|
5056
|
+
averageOutboundRoundTripDelay: duration | null;
|
|
5057
|
+
channelIndex: int32;
|
|
5058
|
+
inboundPackets: int64 | null;
|
|
5059
|
+
localIPAddress: string | null;
|
|
5060
|
+
localPort: int32 | null;
|
|
5061
|
+
maximumInboundJitter: duration | null;
|
|
5062
|
+
maximumInboundPacketLossRateInPercentage: float64 | null;
|
|
5063
|
+
maximumInboundRoundTripDelay: duration | null;
|
|
5064
|
+
maximumOutboundJitter: duration | null;
|
|
5065
|
+
maximumOutboundPacketLossRateInPercentage: float64 | null;
|
|
5066
|
+
maximumOutboundRoundTripDelay: duration | null;
|
|
5067
|
+
mediaDuration: duration | null;
|
|
5068
|
+
networkLinkSpeedInBytes: int64 | null;
|
|
5069
|
+
outboundPackets: int64 | null;
|
|
5070
|
+
remoteIPAddress: string | null;
|
|
5071
|
+
remotePort: int32 | null;
|
|
5072
|
+
}
|
|
5073
|
+
|
|
5074
|
+
@open
|
|
5075
|
+
@complex model teleconferenceDeviceQuality {
|
|
5076
|
+
callChainId: guid;
|
|
5077
|
+
cloudServiceDeploymentEnvironment: string | null;
|
|
5078
|
+
cloudServiceDeploymentId: string | null;
|
|
5079
|
+
cloudServiceInstanceName: string | null;
|
|
5080
|
+
cloudServiceName: string | null;
|
|
5081
|
+
deviceDescription: string;
|
|
5082
|
+
deviceName: string;
|
|
5083
|
+
mediaLegId: guid;
|
|
5084
|
+
mediaQualityList: teleconferenceDeviceMediaQuality[];
|
|
5085
|
+
participantId: guid;
|
|
5086
|
+
}
|
|
5087
|
+
|
|
5088
|
+
@open
|
|
5089
|
+
@complex model teleconferenceDeviceScreenSharingQuality extends teleconferenceDeviceVideoQuality {
|
|
5090
|
+
}
|
|
5091
|
+
|
|
5092
|
+
@open
|
|
5093
|
+
@complex model teleconferenceDeviceVideoQuality extends teleconferenceDeviceMediaQuality {
|
|
5094
|
+
averageInboundBitRate: float64 | null;
|
|
5095
|
+
averageInboundFrameRate: float64 | null;
|
|
5096
|
+
averageOutboundBitRate: float64 | null;
|
|
5097
|
+
averageOutboundFrameRate: float64 | null;
|
|
5098
|
+
}
|
|
5099
|
+
|
|
4892
5100
|
@complex model tenantInformation {
|
|
4893
5101
|
defaultDomainName: string | null;
|
|
4894
5102
|
displayName: string | null;
|
|
@@ -4965,6 +5173,15 @@ namespace reference.`microsoft.graph` {
|
|
|
4965
5173
|
textAlignment: titleAreaTextAlignmentType | null;
|
|
4966
5174
|
}
|
|
4967
5175
|
|
|
5176
|
+
@complex model tokenMeetingInfo extends meetingInfo {
|
|
5177
|
+
token: string;
|
|
5178
|
+
}
|
|
5179
|
+
|
|
5180
|
+
@complex model toneInfo {
|
|
5181
|
+
sequenceId: int64;
|
|
5182
|
+
tone: tone;
|
|
5183
|
+
}
|
|
5184
|
+
|
|
4968
5185
|
@complex model unifiedApprovalStage {
|
|
4969
5186
|
approvalStageTimeOutInDays: int32 | null;
|
|
4970
5187
|
escalationApprovers: subjectSet[] | null;
|
|
@@ -5219,6 +5436,11 @@ namespace reference.`microsoft.graph` {
|
|
|
5219
5436
|
workLocationType: workLocationType;
|
|
5220
5437
|
}
|
|
5221
5438
|
|
|
5439
|
+
@abstract
|
|
5440
|
+
@complex model validatingDomains {
|
|
5441
|
+
rootDomains: rootDomains;
|
|
5442
|
+
}
|
|
5443
|
+
|
|
5222
5444
|
@complex model verifiedDomain {
|
|
5223
5445
|
capabilities: string | null;
|
|
5224
5446
|
isDefault: boolean | null;
|
|
@@ -5244,6 +5466,42 @@ namespace reference.`microsoft.graph` {
|
|
|
5244
5466
|
width: int32 | null;
|
|
5245
5467
|
}
|
|
5246
5468
|
|
|
5469
|
+
@complex model virtualEventExternalInformation {
|
|
5470
|
+
applicationId: string | null;
|
|
5471
|
+
externalEventId: string | null;
|
|
5472
|
+
}
|
|
5473
|
+
|
|
5474
|
+
@complex model virtualEventExternalRegistrationInformation {
|
|
5475
|
+
referrer: string | null;
|
|
5476
|
+
registrationId: string | null;
|
|
5477
|
+
}
|
|
5478
|
+
|
|
5479
|
+
@complex model virtualEventPresenterDetails {
|
|
5480
|
+
bio: itemBody | null;
|
|
5481
|
+
company: string | null;
|
|
5482
|
+
jobTitle: string | null;
|
|
5483
|
+
linkedInProfileWebUrl: string | null;
|
|
5484
|
+
personalSiteWebUrl: string | null;
|
|
5485
|
+
photo: stream | null;
|
|
5486
|
+
twitterProfileWebUrl: string | null;
|
|
5487
|
+
}
|
|
5488
|
+
|
|
5489
|
+
@complex model virtualEventPresenterInfo extends meetingParticipantInfo {
|
|
5490
|
+
presenterDetails: virtualEventPresenterDetails | null;
|
|
5491
|
+
}
|
|
5492
|
+
|
|
5493
|
+
@complex model virtualEventRegistrationQuestionAnswer {
|
|
5494
|
+
booleanValue: boolean | null;
|
|
5495
|
+
displayName: string | null;
|
|
5496
|
+
multiChoiceValues: string[] | null;
|
|
5497
|
+
questionId: string | null;
|
|
5498
|
+
value: string | null;
|
|
5499
|
+
}
|
|
5500
|
+
|
|
5501
|
+
@complex model virtualEventSettings {
|
|
5502
|
+
isAttendeeEmailNotificationEnabled: boolean | null;
|
|
5503
|
+
}
|
|
5504
|
+
|
|
5247
5505
|
/**
|
|
5248
5506
|
* Contains properties for iOS Volume-Purchased Program (Vpp) Licensing Type.
|
|
5249
5507
|
*/
|
|
@@ -7279,7 +7537,9 @@ namespace reference.`microsoft.graph` {
|
|
|
7279
7537
|
@entity model attendanceRecord extends entity {
|
|
7280
7538
|
attendanceIntervals: attendanceInterval[] | null;
|
|
7281
7539
|
emailAddress: string | null;
|
|
7540
|
+
externalRegistrationInformation: virtualEventExternalRegistrationInformation | null;
|
|
7282
7541
|
identity: identity | null;
|
|
7542
|
+
registrationId: string | null;
|
|
7283
7543
|
role: string | null;
|
|
7284
7544
|
totalAttendanceInSeconds: int32 | null;
|
|
7285
7545
|
}
|
|
@@ -7485,6 +7745,32 @@ namespace reference.`microsoft.graph` {
|
|
|
7485
7745
|
suggestedCalendarName: string | null;
|
|
7486
7746
|
}
|
|
7487
7747
|
|
|
7748
|
+
@open
|
|
7749
|
+
@entity model call extends entity {
|
|
7750
|
+
callbackUri: string;
|
|
7751
|
+
callChainId: string | null;
|
|
7752
|
+
callOptions: callOptions | null;
|
|
7753
|
+
callRoutes: callRoute[] | null;
|
|
7754
|
+
chatInfo: chatInfo | null;
|
|
7755
|
+
direction: callDirection | null;
|
|
7756
|
+
incomingContext: incomingContext | null;
|
|
7757
|
+
mediaConfig: mediaConfig | null;
|
|
7758
|
+
mediaState: callMediaState | null;
|
|
7759
|
+
meetingInfo: meetingInfo | null;
|
|
7760
|
+
myParticipantId: string | null;
|
|
7761
|
+
requestedModalities: modality[] | null;
|
|
7762
|
+
resultInfo: resultInfo | null;
|
|
7763
|
+
source: participantInfo | null;
|
|
7764
|
+
state: callState | null;
|
|
7765
|
+
subject: string | null;
|
|
7766
|
+
targets: invitationParticipantInfo[] | null;
|
|
7767
|
+
tenantId: string | null;
|
|
7768
|
+
toneInfo: toneInfo | null;
|
|
7769
|
+
transcription: callTranscriptionInfo | null;
|
|
7770
|
+
@contains operations: commsOperation[];
|
|
7771
|
+
@contains participants: participant[];
|
|
7772
|
+
}
|
|
7773
|
+
|
|
7488
7774
|
@entity model callRecording extends entity {
|
|
7489
7775
|
callId: string | null;
|
|
7490
7776
|
content: stream | null;
|
|
@@ -7508,6 +7794,10 @@ namespace reference.`microsoft.graph` {
|
|
|
7508
7794
|
transcriptContentUrl: string | null;
|
|
7509
7795
|
}
|
|
7510
7796
|
|
|
7797
|
+
@open
|
|
7798
|
+
@entity model cancelMediaProcessingOperation extends commsOperation {
|
|
7799
|
+
}
|
|
7800
|
+
|
|
7511
7801
|
@entity model canvasLayout extends entity {
|
|
7512
7802
|
@contains horizontalSections: horizontalSection[];
|
|
7513
7803
|
@contains verticalSection: verticalSection | null;
|
|
@@ -7599,6 +7889,7 @@ namespace reference.`microsoft.graph` {
|
|
|
7599
7889
|
|
|
7600
7890
|
@entity model cloudCommunications extends MsGraph.SharedModels.entity {
|
|
7601
7891
|
@contains adhocCalls: adhocCall[];
|
|
7892
|
+
@contains calls: call[];
|
|
7602
7893
|
@contains onlineMeetings: onlineMeeting[];
|
|
7603
7894
|
@contains presences: presence[];
|
|
7604
7895
|
}
|
|
@@ -7642,6 +7933,13 @@ namespace reference.`microsoft.graph` {
|
|
|
7642
7933
|
name: string | null;
|
|
7643
7934
|
}
|
|
7644
7935
|
|
|
7936
|
+
@open
|
|
7937
|
+
@entity model commsOperation extends entity {
|
|
7938
|
+
clientContext: string | null;
|
|
7939
|
+
resultInfo: resultInfo | null;
|
|
7940
|
+
status: operationStatus;
|
|
7941
|
+
}
|
|
7942
|
+
|
|
7645
7943
|
@entity model companySubscription extends entity {
|
|
7646
7944
|
commerceSubscriptionId: string | null;
|
|
7647
7945
|
@computed createdDateTime: offsetDateTime | null;
|
|
@@ -9860,7 +10158,11 @@ namespace reference.`microsoft.graph` {
|
|
|
9860
10158
|
description: string | null;
|
|
9861
10159
|
issuer: string;
|
|
9862
10160
|
name: string;
|
|
9863
|
-
subject: string;
|
|
10161
|
+
subject: string | null;
|
|
10162
|
+
}
|
|
10163
|
+
|
|
10164
|
+
@entity model federatedTokenValidationPolicy extends directoryObject {
|
|
10165
|
+
validatingDomains: validatingDomains;
|
|
9864
10166
|
}
|
|
9865
10167
|
|
|
9866
10168
|
@entity model fido2CombinationConfiguration extends authenticationCombinationConfiguration {
|
|
@@ -9944,6 +10246,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9944
10246
|
|
|
9945
10247
|
@open
|
|
9946
10248
|
@entity model group extends directoryObject {
|
|
10249
|
+
accessType: groupAccessType | null;
|
|
9947
10250
|
allowExternalSenders: boolean | null;
|
|
9948
10251
|
assignedLabels: assignedLabel[] | null;
|
|
9949
10252
|
assignedLicenses: assignedLicense[] | null;
|
|
@@ -9960,6 +10263,7 @@ namespace reference.`microsoft.graph` {
|
|
|
9960
10263
|
infoCatalogs: string[];
|
|
9961
10264
|
isArchived: boolean | null;
|
|
9962
10265
|
isAssignableToRole: boolean | null;
|
|
10266
|
+
isFavorite: boolean | null;
|
|
9963
10267
|
isManagementRestricted: boolean | null;
|
|
9964
10268
|
isSubscribedByMail: boolean | null;
|
|
9965
10269
|
licenseProcessingState: licenseProcessingState | null;
|
|
@@ -9986,7 +10290,9 @@ namespace reference.`microsoft.graph` {
|
|
|
9986
10290
|
securityIdentifier: string | null;
|
|
9987
10291
|
theme: string | null;
|
|
9988
10292
|
uniqueName: string | null;
|
|
10293
|
+
unseenConversationsCount: int32 | null;
|
|
9989
10294
|
unseenCount: int32 | null;
|
|
10295
|
+
unseenMessagesCount: int32 | null;
|
|
9990
10296
|
visibility: string | null;
|
|
9991
10297
|
welcomeMessageEnabled: boolean | null;
|
|
9992
10298
|
@contains acceptedSenders: directoryObject[];
|
|
@@ -10179,6 +10485,11 @@ namespace reference.`microsoft.graph` {
|
|
|
10179
10485
|
@references invitedUser: user | null;
|
|
10180
10486
|
}
|
|
10181
10487
|
|
|
10488
|
+
@open
|
|
10489
|
+
@entity model inviteParticipantsOperation extends commsOperation {
|
|
10490
|
+
participants: invitationParticipantInfo[];
|
|
10491
|
+
}
|
|
10492
|
+
|
|
10182
10493
|
/**
|
|
10183
10494
|
* Device Configuration.
|
|
10184
10495
|
*/
|
|
@@ -11173,6 +11484,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11173
11484
|
@contains drive: drive | null;
|
|
11174
11485
|
@contains items: listItem[];
|
|
11175
11486
|
@contains operations: richLongRunningOperation[];
|
|
11487
|
+
@contains permissions: permission[];
|
|
11176
11488
|
@contains subscriptions: subscription[];
|
|
11177
11489
|
}
|
|
11178
11490
|
|
|
@@ -11184,6 +11496,7 @@ namespace reference.`microsoft.graph` {
|
|
|
11184
11496
|
@contains documentSetVersions: documentSetVersion[];
|
|
11185
11497
|
@contains driveItem: driveItem | null;
|
|
11186
11498
|
@contains fields: fieldValueSet | null;
|
|
11499
|
+
@contains permissions: permission[];
|
|
11187
11500
|
@contains versions: listItemVersion[];
|
|
11188
11501
|
}
|
|
11189
11502
|
|
|
@@ -12487,6 +12800,7 @@ namespace reference.`microsoft.graph` {
|
|
|
12487
12800
|
}
|
|
12488
12801
|
|
|
12489
12802
|
@entity model meetingAttendanceReport extends entity {
|
|
12803
|
+
externalEventInformation: virtualEventExternalInformation[] | null;
|
|
12490
12804
|
meetingEndDateTime: offsetDateTime | null;
|
|
12491
12805
|
meetingStartDateTime: offsetDateTime | null;
|
|
12492
12806
|
totalParticipantCount: int32 | null;
|
|
@@ -12873,6 +13187,10 @@ namespace reference.`microsoft.graph` {
|
|
|
12873
13187
|
value: string[] | null;
|
|
12874
13188
|
}
|
|
12875
13189
|
|
|
13190
|
+
@open
|
|
13191
|
+
@entity model muteParticipantOperation extends commsOperation {
|
|
13192
|
+
}
|
|
13193
|
+
|
|
12876
13194
|
@entity model namedLocation extends policyDeletableItem {
|
|
12877
13195
|
@computed createdDateTime: offsetDateTime | null;
|
|
12878
13196
|
displayName: string;
|
|
@@ -12919,36 +13237,56 @@ namespace reference.`microsoft.graph` {
|
|
|
12919
13237
|
}
|
|
12920
13238
|
|
|
12921
13239
|
@open
|
|
12922
|
-
@entity model onlineMeeting extends
|
|
13240
|
+
@entity model onlineMeeting extends onlineMeetingBase {
|
|
13241
|
+
attendeeReport: stream | null;
|
|
13242
|
+
broadcastSettings: broadcastMeetingSettings | null;
|
|
13243
|
+
creationDateTime: offsetDateTime | null;
|
|
13244
|
+
endDateTime: offsetDateTime | null;
|
|
13245
|
+
externalId: string | null;
|
|
13246
|
+
isBroadcast: boolean | null;
|
|
13247
|
+
meetingTemplateId: string | null;
|
|
13248
|
+
participants: meetingParticipants | null;
|
|
13249
|
+
startDateTime: offsetDateTime | null;
|
|
13250
|
+
@contains recordings: callRecording[];
|
|
13251
|
+
@contains transcripts: callTranscript[];
|
|
13252
|
+
}
|
|
13253
|
+
|
|
13254
|
+
@abstract
|
|
13255
|
+
@open
|
|
13256
|
+
@entity model onlineMeetingBase extends entity {
|
|
12923
13257
|
allowAttendeeToEnableCamera: boolean | null;
|
|
12924
13258
|
allowAttendeeToEnableMic: boolean | null;
|
|
13259
|
+
allowBreakoutRooms: boolean | null;
|
|
13260
|
+
allowCopyingAndSharingMeetingContent: boolean | null;
|
|
13261
|
+
allowedLobbyAdmitters: allowedLobbyAdmitterRoles | null;
|
|
12925
13262
|
allowedPresenters: onlineMeetingPresenters | null;
|
|
13263
|
+
allowLiveShare: meetingLiveShareOptions | null;
|
|
12926
13264
|
allowMeetingChat: meetingChatMode | null;
|
|
12927
13265
|
allowParticipantsToChangeName: boolean | null;
|
|
13266
|
+
allowPowerPointSharing: boolean | null;
|
|
13267
|
+
allowRecording: boolean | null;
|
|
12928
13268
|
allowTeamworkReactions: boolean | null;
|
|
12929
|
-
|
|
13269
|
+
allowTranscription: boolean | null;
|
|
13270
|
+
allowWhiteboard: boolean | null;
|
|
12930
13271
|
audioConferencing: audioConferencing | null;
|
|
12931
|
-
broadcastSettings: broadcastMeetingSettings | null;
|
|
12932
13272
|
chatInfo: chatInfo | null;
|
|
12933
|
-
|
|
12934
|
-
|
|
12935
|
-
|
|
12936
|
-
isBroadcast: boolean | null;
|
|
13273
|
+
chatRestrictions: chatRestrictions | null;
|
|
13274
|
+
expiryDateTime: offsetDateTime | null;
|
|
13275
|
+
isEndToEndEncryptionEnabled: boolean | null;
|
|
12937
13276
|
isEntryExitAnnounced: boolean | null;
|
|
12938
13277
|
joinInformation: itemBody | null;
|
|
12939
13278
|
joinMeetingIdSettings: joinMeetingIdSettings | null;
|
|
12940
13279
|
joinWebUrl: string | null;
|
|
12941
13280
|
lobbyBypassSettings: lobbyBypassSettings | null;
|
|
12942
|
-
|
|
13281
|
+
meetingOptionsWebUrl: string | null;
|
|
13282
|
+
meetingSpokenLanguageTag: string | null;
|
|
12943
13283
|
recordAutomatically: boolean | null;
|
|
13284
|
+
sensitivityLabelAssignment: onlineMeetingSensitivityLabelAssignment | null;
|
|
12944
13285
|
shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
|
|
12945
|
-
startDateTime: offsetDateTime | null;
|
|
12946
13286
|
subject: string | null;
|
|
12947
13287
|
videoTeleconferenceId: string | null;
|
|
12948
13288
|
watermarkProtection: watermarkProtectionValues | null;
|
|
12949
13289
|
@contains attendanceReports: meetingAttendanceReport[];
|
|
12950
|
-
@contains recordings: callRecording[];
|
|
12951
|
-
@contains transcripts: callTranscript[];
|
|
12952
13290
|
}
|
|
12953
13291
|
|
|
12954
13292
|
/**
|
|
@@ -13102,6 +13440,14 @@ namespace reference.`microsoft.graph` {
|
|
|
13102
13440
|
@contains masterCategories: outlookCategory[];
|
|
13103
13441
|
}
|
|
13104
13442
|
|
|
13443
|
+
@entity model participant extends entity {
|
|
13444
|
+
info: participantInfo;
|
|
13445
|
+
isInLobby: boolean;
|
|
13446
|
+
isMuted: boolean;
|
|
13447
|
+
mediaStreams: mediaStream[] | null;
|
|
13448
|
+
recordingInfo: recordingInfo | null;
|
|
13449
|
+
}
|
|
13450
|
+
|
|
13105
13451
|
@entity model passkeyAuthenticationMethodTarget extends authenticationMethodTarget {
|
|
13106
13452
|
allowedPasskeyProfiles: guid | null;
|
|
13107
13453
|
}
|
|
@@ -13266,6 +13612,10 @@ namespace reference.`microsoft.graph` {
|
|
|
13266
13612
|
@references tasks: plannerTask[];
|
|
13267
13613
|
}
|
|
13268
13614
|
|
|
13615
|
+
@open
|
|
13616
|
+
@entity model playPromptOperation extends commsOperation {
|
|
13617
|
+
}
|
|
13618
|
+
|
|
13269
13619
|
@abstract
|
|
13270
13620
|
@entity model policyBase extends directoryObject {
|
|
13271
13621
|
description: string | null;
|
|
@@ -13288,6 +13638,7 @@ namespace reference.`microsoft.graph` {
|
|
|
13288
13638
|
@contains defaultAppManagementPolicy: tenantAppManagementPolicy | null;
|
|
13289
13639
|
@contains deviceRegistrationPolicy: deviceRegistrationPolicy | null;
|
|
13290
13640
|
@contains featureRolloutPolicies: featureRolloutPolicy[];
|
|
13641
|
+
@contains federatedTokenValidationPolicy: federatedTokenValidationPolicy | null;
|
|
13291
13642
|
@contains homeRealmDiscoveryPolicies: homeRealmDiscoveryPolicy[];
|
|
13292
13643
|
@contains identitySecurityDefaultsEnforcementPolicy: identitySecurityDefaultsEnforcementPolicy | null;
|
|
13293
13644
|
@contains permissionGrantPolicies: permissionGrantPolicy[];
|
|
@@ -13489,6 +13840,12 @@ namespace reference.`microsoft.graph` {
|
|
|
13489
13840
|
@contains roleEligibilitySchedules: unifiedRoleEligibilitySchedule[];
|
|
13490
13841
|
}
|
|
13491
13842
|
|
|
13843
|
+
@open
|
|
13844
|
+
@entity model recordOperation extends commsOperation {
|
|
13845
|
+
recordingAccessToken: string | null;
|
|
13846
|
+
recordingLocation: string | null;
|
|
13847
|
+
}
|
|
13848
|
+
|
|
13492
13849
|
@open
|
|
13493
13850
|
@entity model recycleBin extends baseItem {
|
|
13494
13851
|
settings: recycleBinSettings | null;
|
|
@@ -14073,23 +14430,29 @@ namespace reference.`microsoft.graph` {
|
|
|
14073
14430
|
appDisplayName: string | null;
|
|
14074
14431
|
appId: string | null;
|
|
14075
14432
|
appliedConditionalAccessPolicies: appliedConditionalAccessPolicy[] | null;
|
|
14433
|
+
authenticationAppDeviceDetails: authenticationAppDeviceDetails | null;
|
|
14076
14434
|
clientAppUsed: string | null;
|
|
14077
14435
|
conditionalAccessStatus: conditionalAccessStatus | null;
|
|
14078
14436
|
correlationId: string | null;
|
|
14079
14437
|
@computed createdDateTime: offsetDateTime;
|
|
14080
14438
|
deviceDetail: deviceDetail | null;
|
|
14439
|
+
homeTenantId: string | null;
|
|
14081
14440
|
ipAddress: string | null;
|
|
14082
14441
|
isInteractive: boolean | null;
|
|
14083
14442
|
location: signInLocation | null;
|
|
14084
14443
|
resourceDisplayName: string | null;
|
|
14085
14444
|
resourceId: string | null;
|
|
14445
|
+
resourceTenantId: string | null;
|
|
14086
14446
|
riskDetail: riskDetail | null;
|
|
14087
14447
|
riskEventTypes: riskEventType[] | null;
|
|
14088
14448
|
riskEventTypes_v2: string[] | null;
|
|
14089
14449
|
riskLevelAggregated: riskLevel | null;
|
|
14090
14450
|
riskLevelDuringSignIn: riskLevel | null;
|
|
14091
14451
|
riskState: riskState | null;
|
|
14452
|
+
servicePrincipalId: string | null;
|
|
14453
|
+
servicePrincipalName: string | null;
|
|
14092
14454
|
status: signInStatus | null;
|
|
14455
|
+
userAgent: string | null;
|
|
14093
14456
|
userDisplayName: string | null;
|
|
14094
14457
|
userId: string;
|
|
14095
14458
|
userPrincipalName: string | null;
|
|
@@ -14206,12 +14569,24 @@ namespace reference.`microsoft.graph` {
|
|
|
14206
14569
|
unknownUserCount: int32;
|
|
14207
14570
|
}
|
|
14208
14571
|
|
|
14572
|
+
@entity model solutionsRoot extends MsGraph.SharedModels.entity {
|
|
14573
|
+
@contains virtualEvents: virtualEventsRoot | null;
|
|
14574
|
+
}
|
|
14575
|
+
|
|
14209
14576
|
@entity model standardWebPart extends webPart {
|
|
14210
14577
|
containerTextWebPartId: string | null;
|
|
14211
14578
|
data: webPartData | null;
|
|
14212
14579
|
webPartType: string | null;
|
|
14213
14580
|
}
|
|
14214
14581
|
|
|
14582
|
+
@open
|
|
14583
|
+
@entity model startHoldMusicOperation extends commsOperation {
|
|
14584
|
+
}
|
|
14585
|
+
|
|
14586
|
+
@open
|
|
14587
|
+
@entity model stopHoldMusicOperation extends commsOperation {
|
|
14588
|
+
}
|
|
14589
|
+
|
|
14215
14590
|
@entity model storage extends MsGraph.SharedModels.entity {
|
|
14216
14591
|
@contains fileStorage: fileStorage | null;
|
|
14217
14592
|
}
|
|
@@ -14236,6 +14611,10 @@ namespace reference.`microsoft.graph` {
|
|
|
14236
14611
|
subscriptionIds: string[] | null;
|
|
14237
14612
|
}
|
|
14238
14613
|
|
|
14614
|
+
@open
|
|
14615
|
+
@entity model subscribeToToneOperation extends commsOperation {
|
|
14616
|
+
}
|
|
14617
|
+
|
|
14239
14618
|
@entity model subscription extends entity {
|
|
14240
14619
|
applicationId: string | null;
|
|
14241
14620
|
changeType: string;
|
|
@@ -14754,6 +15133,14 @@ namespace reference.`microsoft.graph` {
|
|
|
14754
15133
|
@references roleDefinition: unifiedRoleDefinition | null;
|
|
14755
15134
|
}
|
|
14756
15135
|
|
|
15136
|
+
@open
|
|
15137
|
+
@entity model unmuteParticipantOperation extends commsOperation {
|
|
15138
|
+
}
|
|
15139
|
+
|
|
15140
|
+
@open
|
|
15141
|
+
@entity model updateRecordingStatusOperation extends commsOperation {
|
|
15142
|
+
}
|
|
15143
|
+
|
|
14757
15144
|
@open
|
|
14758
15145
|
@entity model user extends directoryObject {
|
|
14759
15146
|
aboutMe: string | null;
|
|
@@ -15920,6 +16307,93 @@ namespace reference.`microsoft.graph` {
|
|
|
15920
16307
|
@contains webparts: webPart[];
|
|
15921
16308
|
}
|
|
15922
16309
|
|
|
16310
|
+
@entity model virtualEvent extends entity {
|
|
16311
|
+
createdBy: communicationsIdentitySet | null;
|
|
16312
|
+
description: itemBody | null;
|
|
16313
|
+
displayName: string | null;
|
|
16314
|
+
endDateTime: dateTimeTimeZone | null;
|
|
16315
|
+
externalEventInformation: virtualEventExternalInformation[] | null;
|
|
16316
|
+
settings: virtualEventSettings | null;
|
|
16317
|
+
startDateTime: dateTimeTimeZone | null;
|
|
16318
|
+
status: virtualEventStatus | null;
|
|
16319
|
+
@contains presenters: virtualEventPresenter[];
|
|
16320
|
+
@contains sessions: virtualEventSession[];
|
|
16321
|
+
}
|
|
16322
|
+
|
|
16323
|
+
@entity model virtualEventPresenter extends entity {
|
|
16324
|
+
email: string | null;
|
|
16325
|
+
identity: identity | null;
|
|
16326
|
+
presenterDetails: virtualEventPresenterDetails | null;
|
|
16327
|
+
}
|
|
16328
|
+
|
|
16329
|
+
@entity model virtualEventRegistration extends entity {
|
|
16330
|
+
cancelationDateTime: offsetDateTime | null;
|
|
16331
|
+
email: string | null;
|
|
16332
|
+
externalRegistrationInformation: virtualEventExternalRegistrationInformation | null;
|
|
16333
|
+
firstName: string | null;
|
|
16334
|
+
lastName: string | null;
|
|
16335
|
+
preferredLanguage: string | null;
|
|
16336
|
+
preferredTimezone: string | null;
|
|
16337
|
+
registrationDateTime: offsetDateTime | null;
|
|
16338
|
+
registrationQuestionAnswers: virtualEventRegistrationQuestionAnswer[] | null;
|
|
16339
|
+
status: virtualEventAttendeeRegistrationStatus | null;
|
|
16340
|
+
userId: string | null;
|
|
16341
|
+
@references sessions: virtualEventSession[];
|
|
16342
|
+
}
|
|
16343
|
+
|
|
16344
|
+
@entity model virtualEventRegistrationConfiguration extends entity {
|
|
16345
|
+
capacity: int32 | null;
|
|
16346
|
+
isManualApprovalEnabled: boolean | null;
|
|
16347
|
+
isWaitlistEnabled: boolean | null;
|
|
16348
|
+
registrationWebUrl: string | null;
|
|
16349
|
+
@contains questions: virtualEventRegistrationQuestionBase[];
|
|
16350
|
+
}
|
|
16351
|
+
|
|
16352
|
+
@entity model virtualEventRegistrationCustomQuestion extends virtualEventRegistrationQuestionBase {
|
|
16353
|
+
answerChoices: string[] | null;
|
|
16354
|
+
answerInputType: virtualEventRegistrationQuestionAnswerInputType | null;
|
|
16355
|
+
}
|
|
16356
|
+
|
|
16357
|
+
@entity model virtualEventRegistrationPredefinedQuestion extends virtualEventRegistrationQuestionBase {
|
|
16358
|
+
label: virtualEventRegistrationPredefinedQuestionLabel | null;
|
|
16359
|
+
}
|
|
16360
|
+
|
|
16361
|
+
@abstract
|
|
16362
|
+
@entity model virtualEventRegistrationQuestionBase extends entity {
|
|
16363
|
+
displayName: string | null;
|
|
16364
|
+
isRequired: boolean | null;
|
|
16365
|
+
}
|
|
16366
|
+
|
|
16367
|
+
@open
|
|
16368
|
+
@entity model virtualEventSession extends onlineMeetingBase {
|
|
16369
|
+
endDateTime: dateTimeTimeZone | null;
|
|
16370
|
+
startDateTime: dateTimeTimeZone | null;
|
|
16371
|
+
videoOnDemandWebUrl: string | null;
|
|
16372
|
+
}
|
|
16373
|
+
|
|
16374
|
+
@entity model virtualEventsRoot extends entity {
|
|
16375
|
+
@contains events: virtualEvent[];
|
|
16376
|
+
@contains townhalls: virtualEventTownhall[];
|
|
16377
|
+
@contains webinars: virtualEventWebinar[];
|
|
16378
|
+
}
|
|
16379
|
+
|
|
16380
|
+
@entity model virtualEventTownhall extends virtualEvent {
|
|
16381
|
+
audience: meetingAudience | null;
|
|
16382
|
+
coOrganizers: communicationsUserIdentity[] | null;
|
|
16383
|
+
invitedAttendees: identity[] | null;
|
|
16384
|
+
isInviteOnly: boolean | null;
|
|
16385
|
+
}
|
|
16386
|
+
|
|
16387
|
+
@entity model virtualEventWebinar extends virtualEvent {
|
|
16388
|
+
audience: meetingAudience | null;
|
|
16389
|
+
coOrganizers: communicationsUserIdentity[] | null;
|
|
16390
|
+
@contains registrationConfiguration: virtualEventWebinarRegistrationConfiguration | null;
|
|
16391
|
+
@contains registrations: virtualEventRegistration[];
|
|
16392
|
+
}
|
|
16393
|
+
|
|
16394
|
+
@entity model virtualEventWebinarRegistrationConfiguration extends virtualEventRegistrationConfiguration {
|
|
16395
|
+
}
|
|
16396
|
+
|
|
15923
16397
|
/**
|
|
15924
16398
|
* You purchase multiple licenses for iOS apps through the Apple Volume Purchase Program for Business or Education. This involves setting up an Apple VPP account from the Apple website and uploading the Apple VPP Business or Education token to Intune. You can then synchronize your volume purchase information with Intune and track your volume-purchased app use. You can upload multiple Apple VPP Business or Education tokens.
|
|
15925
16399
|
*/
|
|
@@ -18706,6 +19180,12 @@ namespace reference.`microsoft.graph` {
|
|
|
18706
19180
|
unknownFutureValue: 5,
|
|
18707
19181
|
}
|
|
18708
19182
|
|
|
19183
|
+
enum allowedLobbyAdmitterRoles {
|
|
19184
|
+
organizerAndCoOrganizersAndPresenters: 0,
|
|
19185
|
+
organizerAndCoOrganizers: 1,
|
|
19186
|
+
unknownFutureValue: 2,
|
|
19187
|
+
}
|
|
19188
|
+
|
|
18709
19189
|
enum allowedTargetScope {
|
|
18710
19190
|
notSpecified: 0,
|
|
18711
19191
|
specificDirectoryUsers: 1,
|
|
@@ -19391,6 +19871,12 @@ namespace reference.`microsoft.graph` {
|
|
|
19391
19871
|
accept: 0,
|
|
19392
19872
|
}
|
|
19393
19873
|
|
|
19874
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19875
|
+
enum callDirection {
|
|
19876
|
+
incoming: 0,
|
|
19877
|
+
outgoing: 1,
|
|
19878
|
+
}
|
|
19879
|
+
|
|
19394
19880
|
enum callRecordingStatus {
|
|
19395
19881
|
success: 0,
|
|
19396
19882
|
failure: 1,
|
|
@@ -19399,6 +19885,26 @@ namespace reference.`microsoft.graph` {
|
|
|
19399
19885
|
unknownFutureValue: 4,
|
|
19400
19886
|
}
|
|
19401
19887
|
|
|
19888
|
+
enum callState {
|
|
19889
|
+
incoming: 0,
|
|
19890
|
+
establishing: 1,
|
|
19891
|
+
established: 3,
|
|
19892
|
+
hold: 4,
|
|
19893
|
+
transferring: 5,
|
|
19894
|
+
transferAccepted: 6,
|
|
19895
|
+
redirecting: 7,
|
|
19896
|
+
terminating: 8,
|
|
19897
|
+
terminated: 9,
|
|
19898
|
+
unknownFutureValue: 10,
|
|
19899
|
+
}
|
|
19900
|
+
|
|
19901
|
+
enum callTranscriptionState {
|
|
19902
|
+
notStarted: 0,
|
|
19903
|
+
active: 1,
|
|
19904
|
+
inactive: 2,
|
|
19905
|
+
unknownFutureValue: 3,
|
|
19906
|
+
}
|
|
19907
|
+
|
|
19402
19908
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
19403
19909
|
enum categoryColor {
|
|
19404
19910
|
none: -1,
|
|
@@ -20603,6 +21109,14 @@ namespace reference.`microsoft.graph` {
|
|
|
20603
21109
|
disabled: 2,
|
|
20604
21110
|
}
|
|
20605
21111
|
|
|
21112
|
+
enum endpointType {
|
|
21113
|
+
default: 0,
|
|
21114
|
+
voicemail: 1,
|
|
21115
|
+
skypeForBusiness: 2,
|
|
21116
|
+
skypeForBusinessVoipPhone: 3,
|
|
21117
|
+
unknownFutureValue: 4,
|
|
21118
|
+
}
|
|
21119
|
+
|
|
20606
21120
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
20607
21121
|
enum enrollmentState {
|
|
20608
21122
|
/**
|
|
@@ -20864,6 +21378,14 @@ namespace reference.`microsoft.graph` {
|
|
|
20864
21378
|
unknownFutureValue: 2,
|
|
20865
21379
|
}
|
|
20866
21380
|
|
|
21381
|
+
enum groupAccessType {
|
|
21382
|
+
none: 0,
|
|
21383
|
+
private: 1,
|
|
21384
|
+
secret: 2,
|
|
21385
|
+
public: 3,
|
|
21386
|
+
unknownFutureValue: 4,
|
|
21387
|
+
}
|
|
21388
|
+
|
|
20867
21389
|
enum groupType {
|
|
20868
21390
|
unifiedGroups: 0,
|
|
20869
21391
|
azureAD: 1,
|
|
@@ -21516,6 +22038,14 @@ namespace reference.`microsoft.graph` {
|
|
|
21516
22038
|
office365: 3,
|
|
21517
22039
|
}
|
|
21518
22040
|
|
|
22041
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22042
|
+
enum mediaDirection {
|
|
22043
|
+
inactive: 0,
|
|
22044
|
+
sendOnly: 1,
|
|
22045
|
+
receiveOnly: 2,
|
|
22046
|
+
sendReceive: 3,
|
|
22047
|
+
}
|
|
22048
|
+
|
|
21519
22049
|
enum mediaSourceContentCategory {
|
|
21520
22050
|
meeting: 0,
|
|
21521
22051
|
liveStream: 1,
|
|
@@ -21529,6 +22059,18 @@ namespace reference.`microsoft.graph` {
|
|
|
21529
22059
|
unknownFutureValue: 9,
|
|
21530
22060
|
}
|
|
21531
22061
|
|
|
22062
|
+
enum mediaState {
|
|
22063
|
+
active: 0,
|
|
22064
|
+
inactive: 1,
|
|
22065
|
+
unknownFutureValue: 2,
|
|
22066
|
+
}
|
|
22067
|
+
|
|
22068
|
+
enum meetingAudience {
|
|
22069
|
+
everyone: 0,
|
|
22070
|
+
organization: 1,
|
|
22071
|
+
unknownFutureValue: 2,
|
|
22072
|
+
}
|
|
22073
|
+
|
|
21532
22074
|
enum meetingChatHistoryDefaultMode {
|
|
21533
22075
|
none: 0,
|
|
21534
22076
|
all: 1,
|
|
@@ -21542,6 +22084,12 @@ namespace reference.`microsoft.graph` {
|
|
|
21542
22084
|
unknownFutureValue: 3,
|
|
21543
22085
|
}
|
|
21544
22086
|
|
|
22087
|
+
enum meetingLiveShareOptions {
|
|
22088
|
+
enabled: 0,
|
|
22089
|
+
disabled: 1,
|
|
22090
|
+
unknownFutureValue: 2,
|
|
22091
|
+
}
|
|
22092
|
+
|
|
21545
22093
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
21546
22094
|
enum meetingMessageType {
|
|
21547
22095
|
none: 0,
|
|
@@ -21766,6 +22314,14 @@ namespace reference.`microsoft.graph` {
|
|
|
21766
22314
|
unknownFutureValue: 6,
|
|
21767
22315
|
}
|
|
21768
22316
|
|
|
22317
|
+
enum modality {
|
|
22318
|
+
audio: 1,
|
|
22319
|
+
video: 2,
|
|
22320
|
+
videoBasedScreenSharing: 3,
|
|
22321
|
+
data: 4,
|
|
22322
|
+
unknownFutureValue: 5,
|
|
22323
|
+
}
|
|
22324
|
+
|
|
21769
22325
|
enum multiFactorAuthConfiguration {
|
|
21770
22326
|
notRequired: 0,
|
|
21771
22327
|
required: 1,
|
|
@@ -21939,6 +22495,14 @@ namespace reference.`microsoft.graph` {
|
|
|
21939
22495
|
unknownFutureValue: 3,
|
|
21940
22496
|
}
|
|
21941
22497
|
|
|
22498
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22499
|
+
enum operationStatus {
|
|
22500
|
+
NotStarted: 0,
|
|
22501
|
+
Running: 1,
|
|
22502
|
+
Completed: 2,
|
|
22503
|
+
Failed: 3,
|
|
22504
|
+
}
|
|
22505
|
+
|
|
21942
22506
|
enum pageLayoutType {
|
|
21943
22507
|
microsoftReserved: 0,
|
|
21944
22508
|
article: 1,
|
|
@@ -22837,6 +23401,14 @@ namespace reference.`microsoft.graph` {
|
|
|
22837
23401
|
externalNonPartner: 8,
|
|
22838
23402
|
}
|
|
22839
23403
|
|
|
23404
|
+
enum recordingStatus {
|
|
23405
|
+
`unknown`: 0,
|
|
23406
|
+
notRecording: 1,
|
|
23407
|
+
recording: 2,
|
|
23408
|
+
failed: 3,
|
|
23409
|
+
unknownFutureValue: 4,
|
|
23410
|
+
}
|
|
23411
|
+
|
|
22840
23412
|
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
22841
23413
|
enum recurrencePatternType {
|
|
22842
23414
|
daily: 0,
|
|
@@ -22854,6 +23426,13 @@ namespace reference.`microsoft.graph` {
|
|
|
22854
23426
|
numbered: 2,
|
|
22855
23427
|
}
|
|
22856
23428
|
|
|
23429
|
+
enum rejectReason {
|
|
23430
|
+
none: 0,
|
|
23431
|
+
busy: 1,
|
|
23432
|
+
forbidden: 2,
|
|
23433
|
+
unknownFutureValue: 3,
|
|
23434
|
+
}
|
|
23435
|
+
|
|
22857
23436
|
/**
|
|
22858
23437
|
* The current TeamViewer connector status
|
|
22859
23438
|
*/
|
|
@@ -23002,6 +23581,23 @@ namespace reference.`microsoft.graph` {
|
|
|
23002
23581
|
unknownFutureValue: 4,
|
|
23003
23582
|
}
|
|
23004
23583
|
|
|
23584
|
+
enum rootDomains {
|
|
23585
|
+
none: 0,
|
|
23586
|
+
all: 1,
|
|
23587
|
+
allFederated: 2,
|
|
23588
|
+
allManaged: 3,
|
|
23589
|
+
enumerated: 4,
|
|
23590
|
+
allManagedAndEnumeratedFederated: 5,
|
|
23591
|
+
unknownFutureValue: 6,
|
|
23592
|
+
}
|
|
23593
|
+
|
|
23594
|
+
enum routingType {
|
|
23595
|
+
forwarded: 0,
|
|
23596
|
+
lookup: 1,
|
|
23597
|
+
selfFork: 2,
|
|
23598
|
+
unknownFutureValue: 3,
|
|
23599
|
+
}
|
|
23600
|
+
|
|
23005
23601
|
/**
|
|
23006
23602
|
* Indicates the type of execution context the app runs in.
|
|
23007
23603
|
*/
|
|
@@ -23069,6 +23665,12 @@ namespace reference.`microsoft.graph` {
|
|
|
23069
23665
|
Unary: 1,
|
|
23070
23666
|
}
|
|
23071
23667
|
|
|
23668
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
23669
|
+
enum screenSharingRole {
|
|
23670
|
+
viewer: 0,
|
|
23671
|
+
sharer: 1,
|
|
23672
|
+
}
|
|
23673
|
+
|
|
23072
23674
|
enum sectionEmphasisType {
|
|
23073
23675
|
none: 0,
|
|
23074
23676
|
neutral: 1,
|
|
@@ -23600,6 +24202,27 @@ namespace reference.`microsoft.graph` {
|
|
|
23600
24202
|
NPSExtension: 5,
|
|
23601
24203
|
}
|
|
23602
24204
|
|
|
24205
|
+
#suppress "@microsoft/typespec-msgraph/use-evolvable-enum" "Matches shipped CSDL."
|
|
24206
|
+
enum tone {
|
|
24207
|
+
tone0: 0,
|
|
24208
|
+
tone1: 1,
|
|
24209
|
+
tone2: 2,
|
|
24210
|
+
tone3: 3,
|
|
24211
|
+
tone4: 4,
|
|
24212
|
+
tone5: 5,
|
|
24213
|
+
tone6: 6,
|
|
24214
|
+
tone7: 7,
|
|
24215
|
+
tone8: 8,
|
|
24216
|
+
tone9: 9,
|
|
24217
|
+
star: 10,
|
|
24218
|
+
pound: 11,
|
|
24219
|
+
a: 12,
|
|
24220
|
+
b: 13,
|
|
24221
|
+
c: 14,
|
|
24222
|
+
d: 15,
|
|
24223
|
+
flash: 16,
|
|
24224
|
+
}
|
|
24225
|
+
|
|
23603
24226
|
enum unifiedRoleManagementPolicyRuleTargetOperations {
|
|
23604
24227
|
all: 0,
|
|
23605
24228
|
activate: 1,
|
|
@@ -23765,6 +24388,43 @@ namespace reference.`microsoft.graph` {
|
|
|
23765
24388
|
unknownFutureValue: 2,
|
|
23766
24389
|
}
|
|
23767
24390
|
|
|
24391
|
+
enum virtualEventAttendeeRegistrationStatus {
|
|
24392
|
+
registered: 0,
|
|
24393
|
+
canceled: 1,
|
|
24394
|
+
waitlisted: 2,
|
|
24395
|
+
pendingApproval: 3,
|
|
24396
|
+
rejectedByOrganizer: 4,
|
|
24397
|
+
unknownFutureValue: 11,
|
|
24398
|
+
}
|
|
24399
|
+
|
|
24400
|
+
enum virtualEventRegistrationPredefinedQuestionLabel {
|
|
24401
|
+
street: 0,
|
|
24402
|
+
city: 1,
|
|
24403
|
+
state: 2,
|
|
24404
|
+
postalCode: 3,
|
|
24405
|
+
countryOrRegion: 4,
|
|
24406
|
+
industry: 5,
|
|
24407
|
+
jobTitle: 6,
|
|
24408
|
+
organization: 7,
|
|
24409
|
+
unknownFutureValue: 8,
|
|
24410
|
+
}
|
|
24411
|
+
|
|
24412
|
+
enum virtualEventRegistrationQuestionAnswerInputType {
|
|
24413
|
+
text: 0,
|
|
24414
|
+
multilineText: 1,
|
|
24415
|
+
singleChoice: 2,
|
|
24416
|
+
multiChoice: 3,
|
|
24417
|
+
`boolean`: 4,
|
|
24418
|
+
unknownFutureValue: 5,
|
|
24419
|
+
}
|
|
24420
|
+
|
|
24421
|
+
enum virtualEventStatus {
|
|
24422
|
+
draft: 0,
|
|
24423
|
+
published: 1,
|
|
24424
|
+
canceled: 2,
|
|
24425
|
+
unknownFutureValue: 3,
|
|
24426
|
+
}
|
|
24427
|
+
|
|
23768
24428
|
/**
|
|
23769
24429
|
* Generic visibility state.
|
|
23770
24430
|
*/
|