Latest generation

This commit is contained in:
ci core model
2026-03-16 10:24:27 +00:00
parent 125706b0b7
commit 10310e4996
5 changed files with 2 additions and 206 deletions

View File

@@ -62,11 +62,6 @@ class AppointmentQueryClient extends $grpc.Client {
return $createUnaryCall(_$countLines, request, options: options);
}
@$core.Deprecated('This method is deprecated')
$grpc.ResponseFuture<$0.FindMineResult> findMine($0.FindMineQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$findMine, request, options: options);
}
@$core.Deprecated('This method is deprecated')
$grpc.ResponseFuture<$0.AppointmentByMatchResult> findMineMatchingFieldValues($0.FindMineByMatchQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$findMineMatchingFieldValues, request, options: options);
@@ -119,10 +114,6 @@ class AppointmentQueryClient extends $grpc.Client {
'/api.AppointmentQuery/CountLines',
($1.CountLinesQuery value) => value.writeToBuffer(),
$1.CountLinesResult.fromBuffer);
static final _$findMine = $grpc.ClientMethod<$0.FindMineQuery, $0.FindMineResult>(
'/api.AppointmentQuery/FindMine',
($0.FindMineQuery value) => value.writeToBuffer(),
$0.FindMineResult.fromBuffer);
static final _$findMineMatchingFieldValues = $grpc.ClientMethod<$0.FindMineByMatchQuery, $0.AppointmentByMatchResult>(
'/api.AppointmentQuery/FindMineMatchingFieldValues',
($0.FindMineByMatchQuery value) => value.writeToBuffer(),
@@ -199,13 +190,6 @@ abstract class AppointmentQueryServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $1.CountLinesQuery.fromBuffer(value),
($1.CountLinesResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.FindMineQuery, $0.FindMineResult>(
'FindMine',
findMine_Pre,
false,
false,
($core.List<$core.int> value) => $0.FindMineQuery.fromBuffer(value),
($0.FindMineResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.FindMineByMatchQuery, $0.AppointmentByMatchResult>(
'FindMineMatchingFieldValues',
findMineMatchingFieldValues_Pre,
@@ -285,12 +269,6 @@ abstract class AppointmentQueryServiceBase extends $grpc.Service {
$async.Future<$1.CountLinesResult> countLines($grpc.ServiceCall call, $1.CountLinesQuery request);
$async.Future<$0.FindMineResult> findMine_Pre($grpc.ServiceCall $call, $async.Future<$0.FindMineQuery> $request) async {
return findMine($call, await $request);
}
$async.Future<$0.FindMineResult> findMine($grpc.ServiceCall call, $0.FindMineQuery request);
$async.Future<$0.AppointmentByMatchResult> findMineMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$0.FindMineByMatchQuery> $request) async {
return findMineMatchingFieldValues($call, await $request);
}