Skip to content
Merged
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 tools/DownloadOpenApiDoc.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (-not (Test-Path $OpenApiDocOutput)) {
New-Item -Path $OpenApiDocOutput -Type Directory
}

$OpenApiBaseUrl = "https://graphexplorerapi.azurewebsites.net"
$OpenApiBaseUrl = "https://devxapi-func-prod-eastus.azurewebsites.net"
$OpenApiServiceUrl = ("$OpenApiBaseUrl/`$openapi?tags={0}&title=$ModuleName&openapiversion=3&style=Powershell&fileName=powershell_v2&graphVersion=$GraphVersion" -f $ModuleRegex)
if ($ForceRefresh.IsPresent) {
$OpenApiServiceUrl = "$OpenApiServiceUrl&forceRefresh=true"
Expand Down
2 changes: 1 addition & 1 deletion tools/PostGeneration/NewCommandMetadata.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $OpenApiTagPattern = '\[OpenAPI\].s*(.*)=>(.*):\"(.*)\"'
$ExternalDocsPattern = 'https://learn.microsoft.com/graph/api/(.*?(graph-rest-1.0|graph-rest-beta))'
$AliasPattern = '\[global::System.Management.Automation.Alias(.*?)\]'
$ActionFunctionFQNPattern = "\/Microsoft.Graph.(.*)$"
$PermissionsUrl = "https://graphexplorerapi.azurewebsites.net/permissions"
$PermissionsUrl = "https://devxapi-func-prod-eastus.azurewebsites.net/permissions"

Write-Debug "Crawling cmdlets in $CmdletPathPattern."
$Stopwatch = [system.diagnostics.stopwatch]::StartNew()
Expand Down
Loading