Latest generation

This commit is contained in:
ci core model
2025-06-23 09:59:08 +00:00
parent e309d663f1
commit 36b42cfaef
15 changed files with 557 additions and 567 deletions

View File

@@ -16,7 +16,7 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'clickhouse.pb.dart' as $9;
import 'clickhouse.pb.dart' as $16;
import 'executionflowQuery.pb.dart' as $23;
import 'shared.pb.dart' as $3;
@@ -36,10 +36,10 @@ class ExecutionflowQueryClient extends $grpc.Client {
'/api.ExecutionflowQuery/GetByIds',
($23.ExecutionflowByIdQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $23.ExecutionflowByIdResult.fromBuffer(value));
static final _$getKPIData = $grpc.ClientMethod<$9.GetKPIDataQuery, $9.GetKPIDataResult>(
static final _$getKPIData = $grpc.ClientMethod<$16.GetKPIDataQuery, $16.GetKPIDataResult>(
'/api.ExecutionflowQuery/GetKPIData',
($9.GetKPIDataQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $9.GetKPIDataResult.fromBuffer(value));
($16.GetKPIDataQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $16.GetKPIDataResult.fromBuffer(value));
static final _$countLines = $grpc.ClientMethod<$3.CountLinesQuery, $3.CountLinesResult>(
'/api.ExecutionflowQuery/CountLines',
($3.CountLinesQuery value) => value.writeToBuffer(),
@@ -55,7 +55,7 @@ class ExecutionflowQueryClient extends $grpc.Client {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$9.GetKPIDataResult> getKPIData($9.GetKPIDataQuery request, {$grpc.CallOptions? options}) {
$grpc.ResponseFuture<$16.GetKPIDataResult> getKPIData($16.GetKPIDataQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getKPIData, request, options: options);
}
@@ -80,13 +80,13 @@ abstract class ExecutionflowQueryServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $23.ExecutionflowByIdQuery.fromBuffer(value),
($23.ExecutionflowByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$9.GetKPIDataQuery, $9.GetKPIDataResult>(
$addMethod($grpc.ServiceMethod<$16.GetKPIDataQuery, $16.GetKPIDataResult>(
'GetKPIData',
getKPIData_Pre,
false,
false,
($core.List<$core.int> value) => $9.GetKPIDataQuery.fromBuffer(value),
($9.GetKPIDataResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $16.GetKPIDataQuery.fromBuffer(value),
($16.GetKPIDataResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$3.CountLinesQuery, $3.CountLinesResult>(
'CountLines',
countLines_Pre,
@@ -107,7 +107,7 @@ abstract class ExecutionflowQueryServiceBase extends $grpc.Service {
return getByIds($call, await $request);
}
$async.Future<$9.GetKPIDataResult> getKPIData_Pre($grpc.ServiceCall $call, $async.Future<$9.GetKPIDataQuery> $request) async {
$async.Future<$16.GetKPIDataResult> getKPIData_Pre($grpc.ServiceCall $call, $async.Future<$16.GetKPIDataQuery> $request) async {
return getKPIData($call, await $request);
}
@@ -120,7 +120,7 @@ abstract class ExecutionflowQueryServiceBase extends $grpc.Service {
}
$async.Future<$23.ExecutionflowByIdResult> getByIds($grpc.ServiceCall call, $23.ExecutionflowByIdQuery request);
$async.Future<$9.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $9.GetKPIDataQuery request);
$async.Future<$16.GetKPIDataResult> getKPIData($grpc.ServiceCall call, $16.GetKPIDataQuery request);
$async.Future<$3.CountLinesResult> countLines($grpc.ServiceCall call, $3.CountLinesQuery request);
$async.Future<$23.ExecutionflowByFilterResult> find($grpc.ServiceCall call, $23.ExecutionflowByFilterQuery request);
}