@@ -960,16 +960,18 @@ namespace Microsoft.OpenApi.Services
960
960
}
961
961
public class OpenApiUrlTreeNode
962
962
{
963
+ public System.Collections.Generic.IDictionary<string, System.Collections.Generic.List<string>> AdditionalData { get; set; }
963
964
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Services.OpenApiUrlTreeNode> Children { get; }
964
965
public bool IsParameter { get; }
965
- public string Label { get; }
966
966
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; }
968
968
public string Segment { get; }
969
+ public void AddAdditionalData(System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> additionalData) { }
969
970
public void Attach(Microsoft.OpenApi.Models.OpenApiDocument doc, string label) { }
970
971
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) { }
973
975
}
974
976
public abstract class OpenApiVisitorBase
975
977
{
0 commit comments