diff --git a/README.md b/README.md index 0119446..ad95b1b 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Registers assemblies that contain the contracts (queries) used by OfX for data m Contracts define the structure and logic for retrieving data. -Parameters: +Parameters: `Assembly`: The assembly containing the contract definitions. Example: @@ -123,5 +123,6 @@ Enjoy your moment! | Package Name | Description | .NET Version | Document | |----------------------------------------------------------|-----------------------------------------------------------------------|--------------|------------------------------------------------------------------------------------------| -| [OfX](https://www.nuget.org/packages/OfX/) | OfX core | 8.0, 9.0 | [ReadMe](https://github.com/quyvu01/OfX/blob/main/README.md) | +| [OfX](https://www.nuget.org/packages/OfX/) | OfX core | 8.0, 9.0 | This Document | | [OfX-EFCore](https://www.nuget.org/packages/OfX-EFCore/) | This is the OfX extension package using EntityFramework to fetch data | 8.0, 9.0 | [ReadMe](https://github.com/quyvu01/OfX/blob/main/src/OfX.EntityFrameworkCore/README.md) | +| [OfX-gRPC](https://www.nuget.org/packages/OfX-gRPC/) | OfX.gRPC is an extension package for OfX that leverages gRPC for efficient data transportation.| 8.0, 9.0 | [ReadMe](https://github.com/quyvu01/OfX/blob/main/src/OfX.Grpc/README.md) | diff --git a/src/OfX.Grpc/ofX.proto b/src/OfX.Grpc/ofX.proto index bb5273a..b483a1d 100644 --- a/src/OfX.Grpc/ofX.proto +++ b/src/OfX.Grpc/ofX.proto @@ -12,8 +12,8 @@ service OfXTransportService{ message GetOfXGrpcQuery{ repeated string selector_ids = 1; - string expression = 2; - string query_assembly_type = 3; + google.protobuf.StringValue expression = 2; + google.protobuf.StringValue query_assembly_type = 3; } message OfXItemsGrpcResponse{ @@ -22,5 +22,5 @@ message OfXItemsGrpcResponse{ message ItemGrpc{ string id = 1; - string value = 2; + google.protobuf.StringValue value = 2; } \ No newline at end of file