Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion msgraph-sdk-powershell
Submodule msgraph-sdk-powershell updated 69 files
+4 −0 README.md
+3 −3 config/ModuleMetadata.json
+189 −118 openApiDocs/beta/Applications.yml
+43 −4 openApiDocs/beta/BackupRestore.yml
+42 −3 openApiDocs/beta/Bookings.yml
+1,524 −170 openApiDocs/beta/Calendar.yml
+1,351 −161 openApiDocs/beta/CloudCommunications.yml
+169 −111 openApiDocs/beta/Compliance.yml
+169 −111 openApiDocs/beta/CrossDeviceExperiences.yml
+278 −153 openApiDocs/beta/DeviceManagement.yml
+169 −111 openApiDocs/beta/Devices.CloudPrint.yml
+3,757 −167 openApiDocs/beta/Devices.CorporateManagement.yml
+179 −116 openApiDocs/beta/Education.yml
+175 −117 openApiDocs/beta/Files.yml
+305 −133 openApiDocs/beta/Groups.yml
+177 −115 openApiDocs/beta/Identity.DirectoryManagement.yml
+180 −119 openApiDocs/beta/Identity.Governance.yml
+7,475 −4,928 openApiDocs/beta/Identity.SignIns.yml
+707 −155 openApiDocs/beta/NetworkAccess.yml
+90 −2 openApiDocs/beta/Reports.yml
+18 −18 openApiDocs/beta/Search.yml
+175 −117 openApiDocs/beta/Sites.yml
+172 −114 openApiDocs/beta/Teams.yml
+169 −111 openApiDocs/beta/Users.Actions.yml
+169 −111 openApiDocs/beta/Users.Functions.yml
+174 −112 openApiDocs/beta/Users.yml
+15 −15 openApiDocs/beta/WindowsUpdates.yml
+19 −14 openApiDocs/v1.0/Applications.yml
+3 −3 openApiDocs/v1.0/BackupRestore.yml
+8 −3 openApiDocs/v1.0/Bookings.yml
+20 −11 openApiDocs/v1.0/CloudCommunications.yml
+19 −14 openApiDocs/v1.0/Compliance.yml
+23 −18 openApiDocs/v1.0/DeviceManagement.Administration.yml
+12 −12 openApiDocs/v1.0/DeviceManagement.Enrollment.yml
+46 −41 openApiDocs/v1.0/DeviceManagement.yml
+19 −14 openApiDocs/v1.0/Devices.CloudPrint.yml
+67 −60 openApiDocs/v1.0/Devices.CorporateManagement.yml
+23 −14 openApiDocs/v1.0/Education.yml
+19 −14 openApiDocs/v1.0/Files.yml
+22 −17 openApiDocs/v1.0/Groups.yml
+19 −14 openApiDocs/v1.0/Identity.DirectoryManagement.yml
+25 −20 openApiDocs/v1.0/Identity.Governance.yml
+25 −20 openApiDocs/v1.0/Identity.SignIns.yml
+3 −3 openApiDocs/v1.0/Search.yml
+39 −14 openApiDocs/v1.0/Security.yml
+22 −17 openApiDocs/v1.0/Sites.yml
+34 −29 openApiDocs/v1.0/Teams.yml
+19 −14 openApiDocs/v1.0/Users.Actions.yml
+19 −14 openApiDocs/v1.0/Users.Functions.yml
+30 −25 openApiDocs/v1.0/Users.yml
+11 −0 src/Applications/beta/examples/Get-MgBetaServicePrincipalSynchronizationTemplate.md
+0 −0 src/Applications/beta/examples/Get-MgBetaServicePrincipalTokenLifetimePolicyByRef.md
+6 −2 src/Applications/v1.0/examples/Get-MgServicePrincipalCreatedObject.md
+6 −2 src/Applications/v1.0/examples/Get-MgServicePrincipalOwnedObject.md
+0 −11 src/Applications/v1.0/examples/Get-MgServicePrincipalSynchronizationTemplate.md
+1 −1 src/Authentication/Authentication/custom/common/MgCommandMetadata.json
+11 −0 src/ChangeNotifications/beta/examples/Get-MgBetaSubscriptionVapidPublicKey.md
+22 −0 src/Education/v1.0/examples/Get-MgEducationReportReadingAssignmentSubmission.md
+22 −0 src/Education/v1.0/examples/Get-MgEducationReportReflectCheck.md
+0 −0 src/Files/beta/examples/Get-MgBetaShareListSubscriptionVapidPublicKey.md
+0 −0 src/Files/beta/examples/Get-MgBetaUserDriveItemSubscriptionVapidPublicKey.md
+0 −0 src/Files/beta/examples/Get-MgBetaUserDriveListSubscriptionVapidPublicKey.md
+0 −0 src/Files/beta/examples/Get-MgBetaUserDriveRootSubscriptionVapidPublicKey.md
+2 −2 src/Identity.SignIns/v1.0/examples/Update-MgPolicyAuthorizationPolicy.md
+1 −1 src/Security/v1.0/examples/Get-MgSecurityAttackSimulationEndUserNotification.md
+11 −0 src/Security/v1.0/examples/Get-MgSecurityAttackSimulationTrainingLanguageDetail.md
+11 −0 src/Security/v1.0/examples/Get-MgSecurityDataSecurityAndGovernanceSensitivityLabel.md
+11 −0 src/Security/v1.0/examples/Get-MgSecurityDataSecurityAndGovernanceSensitivityLabelRight.md
+0 −0 src/Sites/beta/examples/Get-MgBetaSiteListSubscriptionVapidPublicKey.md
2 changes: 1 addition & 1 deletion scripts/RemoveInvalidFullStops.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function Update-Files {
$files | ForEach-Object {
$FilePath = $_.FullName
# Read the file and remove any full stops at the beginning of a line
(Get-Content $FilePath) -replace '^\.', '' | Set-Content $FilePath
(Get-Content $FilePath) -replace '^\.', '' -notmatch '### -Proof' | Set-Content $FilePath
}
}

Expand Down