Skip to content

Commit 5c6038c

Browse files
committed
Update public surface api text file with new properties and methods
1 parent 773e2b9 commit 5c6038c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

test/Microsoft.OpenApi.Tests/PublicApi/PublicApi.approved.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -960,16 +960,18 @@ namespace Microsoft.OpenApi.Services
960960
}
961961
public class OpenApiUrlTreeNode
962962
{
963+
public System.Collections.Generic.IDictionary<string, System.Collections.Generic.List<string>> AdditionalData { get; set; }
963964
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Services.OpenApiUrlTreeNode> Children { get; }
964965
public bool IsParameter { get; }
965-
public string Label { get; }
966966
public string Path { get; }
967-
public Microsoft.OpenApi.Models.OpenApiPathItem PathItem { get; }
967+
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiPathItem> PathItems { get; }
968968
public string Segment { get; }
969+
public void AddAdditionalData(System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> additionalData) { }
969970
public void Attach(Microsoft.OpenApi.Models.OpenApiDocument doc, string label) { }
970971
public Microsoft.OpenApi.Services.OpenApiUrlTreeNode Attach(string path, Microsoft.OpenApi.Models.OpenApiPathItem pathItem, string label) { }
971-
public bool HasOperations() { }
972-
public static Microsoft.OpenApi.Services.OpenApiUrlTreeNode Create(Microsoft.OpenApi.Models.OpenApiDocument doc = null, string label = "") { }
972+
public bool HasOperations(string label) { }
973+
public static Microsoft.OpenApi.Services.OpenApiUrlTreeNode Create() { }
974+
public static Microsoft.OpenApi.Services.OpenApiUrlTreeNode Create(Microsoft.OpenApi.Models.OpenApiDocument doc, string label) { }
973975
}
974976
public abstract class OpenApiVisitorBase
975977
{

0 commit comments

Comments
 (0)