Skip to content

Commit 59d7e37

Browse files
authored
Merge pull request #2746 from microsoftgraph/metadata-entryfile
Updates endpoint to metadata file for detecting changes
2 parents f06dcb1 + 5bcd40d commit 59d7e37

File tree

1 file changed

+2
-2
lines changed
  • tools/OpenApiInfoGenerator/OpenApiInfoGenerator

1 file changed

+2
-2
lines changed

tools/OpenApiInfoGenerator/OpenApiInfoGenerator/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ internal class Program
66
{
77
public static string openApiInfoFile = "openApiInfo.json";
88
public static string openApiFileError = "openAPIErrors.csv";
9-
private const string openApiInfoMetadataUrl_v1 = "https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/metadata-changes-detection/docs/OpenApiInfo/v1.0/openApiInfo.json";
10-
private const string openApiInfoMetadataUrl_beta = "https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/metadata-changes-detection/docs/OpenApiInfo/beta/openApiInfo.json";
9+
private const string openApiInfoMetadataUrl_v1 = "https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/dev/docs/OpenApiInfo/v1.0/openApiInfo.json";
10+
private const string openApiInfoMetadataUrl_beta = "https://raw.githubusercontent.com/microsoftgraph/msgraph-sdk-powershell/dev/docs/OpenApiInfo/beta/openApiInfo.json";
1111
private static IList<Model> openApiInfo_v1 = new OriginalMetadata(openApiInfoMetadataUrl_v1).GetOpenApiInfo();
1212
private static IList<Model> openApiInfo_beta = new OriginalMetadata(openApiInfoMetadataUrl_beta).GetOpenApiInfo();
1313
private static IDictionary<string, IList<Model>> openApiVersions = new Dictionary<string, IList<Model>>();

0 commit comments

Comments
 (0)