Latest generation

This commit is contained in:
ci core model
2026-06-12 09:29:46 +00:00
parent 4e774a0dbc
commit 14a541c2fa
10 changed files with 605 additions and 5 deletions

View File

@@ -140,6 +140,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
return $createUnaryCall(_$redetected, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentClaimAddedResponse> claimAdded($0.AppointmentClaimAddedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$claimAdded, request, options: options);
}
// method descriptors
static final _$created = $grpc.ClientMethod<$0.AppointmentCreatedRequest, $0.AppointmentCreatedResponse>(
@@ -246,6 +250,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
'/api.AppointmentInputAPI/Redetected',
($0.AppointmentRedetectedRequest value) => value.writeToBuffer(),
$0.AppointmentRedetectedResponse.fromBuffer);
static final _$claimAdded = $grpc.ClientMethod<$0.AppointmentClaimAddedRequest, $0.AppointmentClaimAddedResponse>(
'/api.AppointmentInputAPI/ClaimAdded',
($0.AppointmentClaimAddedRequest value) => value.writeToBuffer(),
$0.AppointmentClaimAddedResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.AppointmentInputAPI')
@@ -435,6 +443,13 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.AppointmentRedetectedRequest.fromBuffer(value),
($0.AppointmentRedetectedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentClaimAddedRequest, $0.AppointmentClaimAddedResponse>(
'ClaimAdded',
claimAdded_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentClaimAddedRequest.fromBuffer(value),
($0.AppointmentClaimAddedResponse value) => value.writeToBuffer()));
}
$async.Future<$0.AppointmentCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCreatedRequest> $request) async {
@@ -593,4 +608,10 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
$async.Future<$0.AppointmentRedetectedResponse> redetected($grpc.ServiceCall call, $0.AppointmentRedetectedRequest request);
$async.Future<$0.AppointmentClaimAddedResponse> claimAdded_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentClaimAddedRequest> $request) async {
return claimAdded($call, await $request);
}
$async.Future<$0.AppointmentClaimAddedResponse> claimAdded($grpc.ServiceCall call, $0.AppointmentClaimAddedRequest request);
}