Latest generation

This commit is contained in:
ci core model
2026-06-09 08:57:36 +00:00
parent ea407d6fd4
commit 76886be045
3 changed files with 23 additions and 2 deletions

View File

@@ -38,6 +38,10 @@ class AppointmentQueryClient extends $grpc.Client {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentByIdResult> getByIdsMine($0.AppointmentByIdQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getByIdsMine, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentByFilterResult> find($0.AppointmentByFilterQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$find, request, options: options);
}
@@ -84,6 +88,10 @@ class AppointmentQueryClient extends $grpc.Client {
'/api.AppointmentQuery/GetByIds',
($0.AppointmentByIdQuery value) => value.writeToBuffer(),
$0.AppointmentByIdResult.fromBuffer);
static final _$getByIdsMine = $grpc.ClientMethod<$0.AppointmentByIdQuery, $0.AppointmentByIdResult>(
'/api.AppointmentQuery/GetByIdsMine',
($0.AppointmentByIdQuery value) => value.writeToBuffer(),
$0.AppointmentByIdResult.fromBuffer);
static final _$find = $grpc.ClientMethod<$0.AppointmentByFilterQuery, $0.AppointmentByFilterResult>(
'/api.AppointmentQuery/Find',
($0.AppointmentByFilterQuery value) => value.writeToBuffer(),
@@ -138,6 +146,13 @@ abstract class AppointmentQueryServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.AppointmentByIdQuery.fromBuffer(value),
($0.AppointmentByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentByIdQuery, $0.AppointmentByIdResult>(
'GetByIdsMine',
getByIdsMine_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentByIdQuery.fromBuffer(value),
($0.AppointmentByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentByFilterQuery, $0.AppointmentByFilterResult>(
'Find',
find_Pre,
@@ -216,6 +231,12 @@ abstract class AppointmentQueryServiceBase extends $grpc.Service {
$async.Future<$0.AppointmentByIdResult> getByIds($grpc.ServiceCall call, $0.AppointmentByIdQuery request);
$async.Future<$0.AppointmentByIdResult> getByIdsMine_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentByIdQuery> $request) async {
return getByIdsMine($call, await $request);
}
$async.Future<$0.AppointmentByIdResult> getByIdsMine($grpc.ServiceCall call, $0.AppointmentByIdQuery request);
$async.Future<$0.AppointmentByFilterResult> find_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentByFilterQuery> $request) async {
return find($call, await $request);
}