diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b27f5af..7be624d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.15.0-SNAPSHOT-260911144812 +Lib version: 1.15.0-SNAPSHOT-260911150225 diff --git a/lib/executionflowQuery.pbgrpc.dart b/lib/executionflowQuery.pbgrpc.dart index 733a32a6..af36c1c7 100644 --- a/lib/executionflowQuery.pbgrpc.dart +++ b/lib/executionflowQuery.pbgrpc.dart @@ -42,6 +42,10 @@ class ExecutionflowQueryClient extends $grpc.Client { return $createUnaryCall(_$getKPIData, request, options: options); } + $grpc.ResponseFuture<$1.GetKPIDataSimpleJSONResult> getKPIDataSimpleJSON($1.GetKPIDataSimpleJSONQuery request, {$grpc.CallOptions? options,}) { + return $createUnaryCall(_$getKPIDataSimpleJSON, request, options: options); + } + $grpc.ResponseFuture<$2.CountLinesResult> countLines($2.CountLinesQuery request, {$grpc.CallOptions? options,}) { return $createUnaryCall(_$countLines, request, options: options); } @@ -60,6 +64,10 @@ class ExecutionflowQueryClient extends $grpc.Client { '/api.ExecutionflowQuery/GetKPIData', ($1.GetKPIDataQuery value) => value.writeToBuffer(), $1.GetKPIDataResult.fromBuffer); + static final _$getKPIDataSimpleJSON = $grpc.ClientMethod<$1.GetKPIDataSimpleJSONQuery, $1.GetKPIDataSimpleJSONResult>( + '/api.ExecutionflowQuery/GetKPIDataSimpleJSON', + ($1.GetKPIDataSimpleJSONQuery value) => value.writeToBuffer(), + $1.GetKPIDataSimpleJSONResult.fromBuffer); static final _$countLines = $grpc.ClientMethod<$2.CountLinesQuery, $2.CountLinesResult>( '/api.ExecutionflowQuery/CountLines', ($2.CountLinesQuery value) => value.writeToBuffer(), @@ -89,6 +97,13 @@ abstract class ExecutionflowQueryServiceBase extends $grpc.Service { false, ($core.List<$core.int> value) => $1.GetKPIDataQuery.fromBuffer(value), ($1.GetKPIDataResult value) => value.writeToBuffer())); + $addMethod($grpc.ServiceMethod<$1.GetKPIDataSimpleJSONQuery, $1.GetKPIDataSimpleJSONResult>( + 'GetKPIDataSimpleJSON', + getKPIDataSimpleJSON_Pre, + false, + false, + ($core.List<$core.int> value) => $1.GetKPIDataSimpleJSONQuery.fromBuffer(value), + ($1.GetKPIDataSimpleJSONResult value) => value.writeToBuffer())); $addMethod($grpc.ServiceMethod<$2.CountLinesQuery, $2.CountLinesResult>( 'CountLines', countLines_Pre, @@ -117,6 +132,12 @@ abstract class ExecutionflowQueryServiceBase extends $grpc.Service { $async.Future<$1.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $1.GetKPIDataQuery request); + $async.Future<$1.GetKPIDataSimpleJSONResult> getKPIDataSimpleJSON_Pre($grpc.ServiceCall $call, $async.Future<$1.GetKPIDataSimpleJSONQuery> $request) async { + return getKPIDataSimpleJSON($call, await $request); + } + + $async.Future<$1.GetKPIDataSimpleJSONResult> getKPIDataSimpleJSON($grpc.ServiceCall call, $1.GetKPIDataSimpleJSONQuery request); + $async.Future<$2.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$2.CountLinesQuery> $request) async { return countLines($call, await $request); } diff --git a/lib/handlingunitQuery.pbgrpc.dart b/lib/handlingunitQuery.pbgrpc.dart index c7e54d7c..32811dd4 100644 --- a/lib/handlingunitQuery.pbgrpc.dart +++ b/lib/handlingunitQuery.pbgrpc.dart @@ -58,6 +58,10 @@ class HandlingunitQueryClient extends $grpc.Client { return $createUnaryCall(_$getKPIData, request, options: options); } + $grpc.ResponseFuture<$2.GetKPIDataSimpleJSONResult> getKPIDataSimpleJSON($2.GetKPIDataSimpleJSONQuery request, {$grpc.CallOptions? options,}) { + return $createUnaryCall(_$getKPIDataSimpleJSON, request, options: options); + } + $grpc.ResponseFuture<$1.ExtractResult> extract($1.ExtractQuery request, {$grpc.CallOptions? options,}) { return $createUnaryCall(_$extract, request, options: options); } @@ -92,6 +96,10 @@ class HandlingunitQueryClient extends $grpc.Client { '/api.HandlingunitQuery/GetKPIData', ($2.GetKPIDataQuery value) => value.writeToBuffer(), $2.GetKPIDataResult.fromBuffer); + static final _$getKPIDataSimpleJSON = $grpc.ClientMethod<$2.GetKPIDataSimpleJSONQuery, $2.GetKPIDataSimpleJSONResult>( + '/api.HandlingunitQuery/GetKPIDataSimpleJSON', + ($2.GetKPIDataSimpleJSONQuery value) => value.writeToBuffer(), + $2.GetKPIDataSimpleJSONResult.fromBuffer); static final _$extract = $grpc.ClientMethod<$1.ExtractQuery, $1.ExtractResult>( '/api.HandlingunitQuery/Extract', ($1.ExtractQuery value) => value.writeToBuffer(), @@ -149,6 +157,13 @@ abstract class HandlingunitQueryServiceBase extends $grpc.Service { false, ($core.List<$core.int> value) => $2.GetKPIDataQuery.fromBuffer(value), ($2.GetKPIDataResult value) => value.writeToBuffer())); + $addMethod($grpc.ServiceMethod<$2.GetKPIDataSimpleJSONQuery, $2.GetKPIDataSimpleJSONResult>( + 'GetKPIDataSimpleJSON', + getKPIDataSimpleJSON_Pre, + false, + false, + ($core.List<$core.int> value) => $2.GetKPIDataSimpleJSONQuery.fromBuffer(value), + ($2.GetKPIDataSimpleJSONResult value) => value.writeToBuffer())); $addMethod($grpc.ServiceMethod<$1.ExtractQuery, $1.ExtractResult>( 'Extract', extract_Pre, @@ -201,6 +216,12 @@ abstract class HandlingunitQueryServiceBase extends $grpc.Service { $async.Future<$2.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $2.GetKPIDataQuery request); + $async.Future<$2.GetKPIDataSimpleJSONResult> getKPIDataSimpleJSON_Pre($grpc.ServiceCall $call, $async.Future<$2.GetKPIDataSimpleJSONQuery> $request) async { + return getKPIDataSimpleJSON($call, await $request); + } + + $async.Future<$2.GetKPIDataSimpleJSONResult> getKPIDataSimpleJSON($grpc.ServiceCall call, $2.GetKPIDataSimpleJSONQuery request); + $async.Future<$1.ExtractResult> extract_Pre($grpc.ServiceCall $call, $async.Future<$1.ExtractQuery> $request) async { return extract($call, await $request); } diff --git a/pubspec.yaml b/pubspec.yaml index 93595569..c23d6b93 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dart_core_sdk description: dart libs from core model proto files -version: 1.15.0-SNAPSHOT-260911144812 +version: 1.15.0-SNAPSHOT-260911150225 homepage: '' publish_to: '' repository: ''