@microsoft/typespec-msgraph-reference 1.0.8 → 1.0.10
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 +17 -17
- package/.rush/temp/shrinkwrap-deps.json +37 -59
- package/CHANGELOG.md +18 -0
- package/lib/Bleu/Beta/main.tsp +725 -44
- package/lib/Bleu/V1.0/main.tsp +25 -0
- package/lib/Delos/Beta/main.tsp +1477 -51
- package/lib/Delos/V1.0/main.tsp +670 -9
- package/lib/Fairfax/Beta/main.tsp +828 -45
- package/lib/Fairfax/V1.0/main.tsp +26 -11
- package/lib/GovSG/Beta/main.tsp +112 -0
- package/lib/Mooncake/Beta/main.tsp +725 -44
- package/lib/Prod/Beta/main.tsp +203 -30
- package/lib/Prod/V1.0/main.tsp +33 -0
- package/lib/USNat/Beta/main.tsp +197 -3
- package/lib/USNat/V1.0/main.tsp +24 -9
- package/lib/USSec/Beta/main.tsp +197 -3
- package/lib/USSec/V1.0/main.tsp +24 -9
- package/package.json +5 -5
|
@@ -14892,36 +14892,42 @@ namespace reference.`microsoft.graph` {
|
|
|
14892
14892
|
}
|
|
14893
14893
|
|
|
14894
14894
|
@open
|
|
14895
|
-
@entity model onlineMeeting extends
|
|
14895
|
+
@entity model onlineMeeting extends onlineMeetingBase {
|
|
14896
|
+
attendeeReport: stream | null;
|
|
14897
|
+
broadcastSettings: broadcastMeetingSettings | null;
|
|
14898
|
+
creationDateTime: offsetDateTime | null;
|
|
14899
|
+
endDateTime: offsetDateTime | null;
|
|
14900
|
+
externalId: string | null;
|
|
14901
|
+
isBroadcast: boolean | null;
|
|
14902
|
+
participants: meetingParticipants | null;
|
|
14903
|
+
startDateTime: offsetDateTime | null;
|
|
14904
|
+
@contains recordings: callRecording[];
|
|
14905
|
+
@contains transcripts: callTranscript[];
|
|
14906
|
+
}
|
|
14907
|
+
|
|
14908
|
+
@abstract
|
|
14909
|
+
@open
|
|
14910
|
+
@entity model onlineMeetingBase extends entity {
|
|
14896
14911
|
allowAttendeeToEnableCamera: boolean | null;
|
|
14897
14912
|
allowAttendeeToEnableMic: boolean | null;
|
|
14898
14913
|
allowedPresenters: onlineMeetingPresenters | null;
|
|
14899
14914
|
allowMeetingChat: meetingChatMode | null;
|
|
14900
14915
|
allowParticipantsToChangeName: boolean | null;
|
|
14901
14916
|
allowTeamworkReactions: boolean | null;
|
|
14902
|
-
attendeeReport: stream | null;
|
|
14903
14917
|
audioConferencing: audioConferencing | null;
|
|
14904
|
-
broadcastSettings: broadcastMeetingSettings | null;
|
|
14905
14918
|
chatInfo: chatInfo | null;
|
|
14906
|
-
creationDateTime: offsetDateTime | null;
|
|
14907
|
-
endDateTime: offsetDateTime | null;
|
|
14908
|
-
externalId: string | null;
|
|
14909
|
-
isBroadcast: boolean | null;
|
|
14910
14919
|
isEntryExitAnnounced: boolean | null;
|
|
14911
14920
|
joinInformation: itemBody | null;
|
|
14912
14921
|
joinMeetingIdSettings: joinMeetingIdSettings | null;
|
|
14913
14922
|
joinWebUrl: string | null;
|
|
14914
14923
|
lobbyBypassSettings: lobbyBypassSettings | null;
|
|
14915
|
-
|
|
14924
|
+
meetingType: onlineMeetingType | null;
|
|
14916
14925
|
recordAutomatically: boolean | null;
|
|
14917
14926
|
shareMeetingChatHistoryDefault: meetingChatHistoryDefaultMode | null;
|
|
14918
|
-
startDateTime: offsetDateTime | null;
|
|
14919
14927
|
subject: string | null;
|
|
14920
14928
|
videoTeleconferenceId: string | null;
|
|
14921
14929
|
watermarkProtection: watermarkProtectionValues | null;
|
|
14922
14930
|
@contains attendanceReports: meetingAttendanceReport[];
|
|
14923
|
-
@contains recordings: callRecording[];
|
|
14924
|
-
@contains transcripts: callTranscript[];
|
|
14925
14931
|
}
|
|
14926
14932
|
|
|
14927
14933
|
/**
|
|
@@ -25203,6 +25209,15 @@ namespace reference.`microsoft.graph` {
|
|
|
25203
25209
|
coorganizer: 4,
|
|
25204
25210
|
}
|
|
25205
25211
|
|
|
25212
|
+
enum onlineMeetingType {
|
|
25213
|
+
adhoc: 0,
|
|
25214
|
+
scheduled: 1,
|
|
25215
|
+
recurring: 2,
|
|
25216
|
+
broadcast: 3,
|
|
25217
|
+
meetnow: 4,
|
|
25218
|
+
unknownFutureValue: 5,
|
|
25219
|
+
}
|
|
25220
|
+
|
|
25206
25221
|
@graphFlags
|
|
25207
25222
|
enum onlineMeetingVideoDisabledReason {
|
|
25208
25223
|
watermarkProtection: 1,
|
package/lib/GovSG/Beta/main.tsp
CHANGED
|
@@ -63,6 +63,7 @@ namespace reference.`microsoft.graph` {
|
|
|
63
63
|
|
|
64
64
|
@complex model appManagementApplicationConfiguration extends appManagementConfiguration {
|
|
65
65
|
identifierUris: identifierUriConfiguration | null;
|
|
66
|
+
redirectUris: redirectUriConfiguration | null;
|
|
66
67
|
}
|
|
67
68
|
|
|
68
69
|
@abstract
|
|
@@ -193,6 +194,7 @@ namespace reference.`microsoft.graph` {
|
|
|
193
194
|
|
|
194
195
|
@complex model customAppManagementApplicationConfiguration {
|
|
195
196
|
identifierUris: identifierUriConfiguration | null;
|
|
197
|
+
redirectUris: redirectUriConfiguration | null;
|
|
196
198
|
}
|
|
197
199
|
|
|
198
200
|
@complex model customAppManagementConfiguration extends appManagementConfiguration {
|
|
@@ -455,8 +457,26 @@ namespace reference.`microsoft.graph` {
|
|
|
455
457
|
synchronizationPreventionType: onPremisesDirectorySynchronizationDeletionPreventionType | null;
|
|
456
458
|
}
|
|
457
459
|
|
|
460
|
+
@complex model onPremisesCurrentExportData {
|
|
461
|
+
clientMachineName: string | null;
|
|
462
|
+
pendingObjectsAddition: int32 | null;
|
|
463
|
+
pendingObjectsDeletion: int32 | null;
|
|
464
|
+
pendingObjectsUpdate: int32 | null;
|
|
465
|
+
serviceAccount: string | null;
|
|
466
|
+
successfulLinksProvisioningCount: int64 | null;
|
|
467
|
+
successfulObjectsProvisioningCount: int32 | null;
|
|
468
|
+
totalConnectorSpaceObjects: int32 | null;
|
|
469
|
+
}
|
|
470
|
+
|
|
458
471
|
@complex model onPremisesDirectorySynchronizationConfiguration {
|
|
459
472
|
accidentalDeletionPrevention: onPremisesAccidentalDeletionPrevention | null;
|
|
473
|
+
anchorAttribute: string | null;
|
|
474
|
+
applicationId: string | null;
|
|
475
|
+
currentExportData: onPremisesCurrentExportData | null;
|
|
476
|
+
customerRequestedSynchronizationInterval: duration | null;
|
|
477
|
+
synchronizationClientVersion: string | null;
|
|
478
|
+
synchronizationInterval: duration | null;
|
|
479
|
+
writebackConfiguration: onPremisesWritebackConfiguration | null;
|
|
460
480
|
}
|
|
461
481
|
|
|
462
482
|
@complex model onPremisesDirectorySynchronizationFeature {
|
|
@@ -507,6 +527,11 @@ namespace reference.`microsoft.graph` {
|
|
|
507
527
|
value: string | null;
|
|
508
528
|
}
|
|
509
529
|
|
|
530
|
+
@complex model onPremisesWritebackConfiguration {
|
|
531
|
+
unifiedGroupContainer: string | null;
|
|
532
|
+
userContainer: string | null;
|
|
533
|
+
}
|
|
534
|
+
|
|
510
535
|
@complex model optionalClaim {
|
|
511
536
|
additionalProperties: string[] | null;
|
|
512
537
|
essential: boolean;
|
|
@@ -610,11 +635,94 @@ namespace reference.`microsoft.graph` {
|
|
|
610
635
|
redirectUris: string[];
|
|
611
636
|
}
|
|
612
637
|
|
|
638
|
+
@complex model redirectUriAllowedDomainConfiguration {
|
|
639
|
+
allowedDomains: string[];
|
|
640
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
641
|
+
isStateSetByMicrosoft: boolean;
|
|
642
|
+
publicClient: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
643
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
644
|
+
spa: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
645
|
+
state: appManagementRestrictionState;
|
|
646
|
+
web: redirectUriPlatformAllowedDomainConfiguration | null;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
@complex model redirectUriAllowedSchemeConfiguration {
|
|
650
|
+
allowedSchemes: string[];
|
|
651
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
652
|
+
isStateSetByMicrosoft: boolean;
|
|
653
|
+
publicClient: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
654
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
655
|
+
spa: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
656
|
+
state: appManagementRestrictionState;
|
|
657
|
+
web: redirectUriPlatformAllowedSchemeConfiguration | null;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
@complex model redirectUriBlockedDomainConfiguration {
|
|
661
|
+
blockedDomains: string[];
|
|
662
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
663
|
+
isStateSetByMicrosoft: boolean;
|
|
664
|
+
publicClient: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
665
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
666
|
+
spa: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
667
|
+
state: appManagementRestrictionState;
|
|
668
|
+
web: redirectUriPlatformBlockedDomainConfiguration | null;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
@complex model redirectUriBlockedSchemeConfiguration {
|
|
672
|
+
blockedSchemes: string[];
|
|
673
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
674
|
+
exemptFormats: string[];
|
|
675
|
+
isStateSetByMicrosoft: boolean;
|
|
676
|
+
publicClient: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
677
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
678
|
+
spa: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
679
|
+
state: appManagementRestrictionState;
|
|
680
|
+
web: redirectUriPlatformBlockedSchemeConfiguration | null;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
@complex model redirectUriConfiguration {
|
|
684
|
+
uriWithBlockedDomain: redirectUriBlockedDomainConfiguration | null;
|
|
685
|
+
uriWithBlockedScheme: redirectUriBlockedSchemeConfiguration | null;
|
|
686
|
+
uriWithoutAllowedDomain: redirectUriAllowedDomainConfiguration | null;
|
|
687
|
+
uriWithoutAllowedScheme: redirectUriAllowedSchemeConfiguration | null;
|
|
688
|
+
uriWithWildcard: redirectUriWildcardConfiguration | null;
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
@complex model redirectUriPlatformAllowedDomainConfiguration {
|
|
692
|
+
allowedDomains: string[];
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
@complex model redirectUriPlatformAllowedSchemeConfiguration {
|
|
696
|
+
allowedSchemes: string[];
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
@complex model redirectUriPlatformBlockedDomainConfiguration {
|
|
700
|
+
blockedDomains: string[];
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
@complex model redirectUriPlatformBlockedSchemeConfiguration {
|
|
704
|
+
blockedSchemes: string[];
|
|
705
|
+
exemptFormats: string[];
|
|
706
|
+
}
|
|
707
|
+
|
|
613
708
|
@complex model redirectUriSettings {
|
|
614
709
|
index: int32 | null;
|
|
615
710
|
uri: string | null;
|
|
616
711
|
}
|
|
617
712
|
|
|
713
|
+
@complex model redirectUriWildcardConfiguration {
|
|
714
|
+
excludeActors: appManagementPolicyActorExemptions | null;
|
|
715
|
+
excludeFormats: redirectUriWildcardExcludeFormats | null;
|
|
716
|
+
isStateSetByMicrosoft: boolean;
|
|
717
|
+
restrictForAppsCreatedAfterDateTime: offsetDateTime | null;
|
|
718
|
+
state: appManagementRestrictionState;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
@complex model redirectUriWildcardExcludeFormats {
|
|
722
|
+
excludeWildcardsInPath: boolean;
|
|
723
|
+
excludeWildcardsInPathWithDomains: string[];
|
|
724
|
+
}
|
|
725
|
+
|
|
618
726
|
@complex model requestSignatureVerification {
|
|
619
727
|
allowedWeakAlgorithms: weakAlgorithms | null;
|
|
620
728
|
isSignedRequestRequired: boolean;
|
|
@@ -780,6 +888,9 @@ namespace reference.`microsoft.graph` {
|
|
|
780
888
|
@entity model agentIdentity extends servicePrincipal {
|
|
781
889
|
agentIdentityBlueprintId: string;
|
|
782
890
|
@computed createdDateTime: offsetDateTime | null;
|
|
891
|
+
managerApplications: guid;
|
|
892
|
+
@references inheritedAppRoleAssignments: appRoleAssignment[];
|
|
893
|
+
@references inheritedOauth2PermissionGrants: oAuth2PermissionGrant[];
|
|
783
894
|
@references sponsors: directoryObject[];
|
|
784
895
|
}
|
|
785
896
|
|
|
@@ -792,6 +903,7 @@ namespace reference.`microsoft.graph` {
|
|
|
792
903
|
|
|
793
904
|
@open
|
|
794
905
|
@entity model agentIdentityBlueprintPrincipal extends servicePrincipal {
|
|
906
|
+
managerApplications: guid;
|
|
795
907
|
@references sponsors: directoryObject[];
|
|
796
908
|
}
|
|
797
909
|
|