@@ -571,7 +571,7 @@ namespace Microsoft.OpenApi.Models
571
571
public System.Collections.Generic.IList<Microsoft.OpenApi.Models.OpenApiTag>? Tags { get; set; }
572
572
public System.Collections.Generic.IDictionary<string, Microsoft.OpenApi.Models.OpenApiPathItem>? Webhooks { get; set; }
573
573
public Microsoft.OpenApi.Services.OpenApiWorkspace? Workspace { get; set; }
574
- public bool AddComponentSchema (string id, Microsoft.OpenApi.Models.OpenApiSchema openApiSchema ) { }
574
+ public bool AddComponent<T> (string id, T componentToRegister ) { }
575
575
public void SerializeAsV2(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
576
576
public void SerializeAsV3(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
577
577
public void SerializeAsV31(Microsoft.OpenApi.Writers.IOpenApiWriter writer) { }
@@ -1533,9 +1533,8 @@ namespace Microsoft.OpenApi.Services
1533
1533
public int ComponentsCount() { }
1534
1534
public bool Contains(string location) { }
1535
1535
public System.Uri GetDocumentId(string key) { }
1536
- public bool RegisterComponent <T>(string location , T component ) { }
1536
+ public bool RegisterComponentForDocument <T>(Microsoft.OpenApi.Models.OpenApiDocument openApiDocument , T componentToRegister, string id ) { }
1537
1537
public void RegisterComponents(Microsoft.OpenApi.Models.OpenApiDocument document) { }
1538
- public bool RegisterSchemaForDocument(Microsoft.OpenApi.Models.OpenApiDocument openApiDocument, Microsoft.OpenApi.Models.OpenApiSchema openApiSchema, string id) { }
1539
1538
public T? ResolveReference<T>(string location) { }
1540
1539
}
1541
1540
public class OperationSearch : Microsoft.OpenApi.Services.OpenApiVisitorBase
0 commit comments