Latest generation

This commit is contained in:
ci core model
2025-10-09 08:12:54 +00:00
parent cf3b0d100b
commit 22a062138b
5 changed files with 387 additions and 2 deletions

View File

@@ -66,6 +66,10 @@ class ActorInputAPIClient extends $grpc.Client {
return $createUnaryCall(_$metaDataUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.ActorAppointmentConfigurationUpdatedResponse> appointmentConfigurationUpdated($0.ActorAppointmentConfigurationUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$appointmentConfigurationUpdated, request, options: options);
}
// method descriptors
static final _$created = $grpc.ClientMethod<$0.ActorCreatedRequest, $0.ActorCreatedResponse>(
@@ -100,6 +104,10 @@ class ActorInputAPIClient extends $grpc.Client {
'/api.ActorInputAPI/MetaDataUpdated',
($0.ActorMetaDataUpdatedRequest value) => value.writeToBuffer(),
$0.ActorMetaDataUpdatedResponse.fromBuffer);
static final _$appointmentConfigurationUpdated = $grpc.ClientMethod<$0.ActorAppointmentConfigurationUpdatedRequest, $0.ActorAppointmentConfigurationUpdatedResponse>(
'/api.ActorInputAPI/AppointmentConfigurationUpdated',
($0.ActorAppointmentConfigurationUpdatedRequest value) => value.writeToBuffer(),
$0.ActorAppointmentConfigurationUpdatedResponse.fromBuffer);
}
@$pb.GrpcServiceName('api.ActorInputAPI')
@@ -163,6 +171,13 @@ abstract class ActorInputAPIServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.ActorMetaDataUpdatedRequest.fromBuffer(value),
($0.ActorMetaDataUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ActorAppointmentConfigurationUpdatedRequest, $0.ActorAppointmentConfigurationUpdatedResponse>(
'AppointmentConfigurationUpdated',
appointmentConfigurationUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.ActorAppointmentConfigurationUpdatedRequest.fromBuffer(value),
($0.ActorAppointmentConfigurationUpdatedResponse value) => value.writeToBuffer()));
}
$async.Future<$0.ActorCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorCreatedRequest> $request) async {
@@ -213,4 +228,10 @@ abstract class ActorInputAPIServiceBase extends $grpc.Service {
$async.Future<$0.ActorMetaDataUpdatedResponse> metaDataUpdated($grpc.ServiceCall call, $0.ActorMetaDataUpdatedRequest request);
$async.Future<$0.ActorAppointmentConfigurationUpdatedResponse> appointmentConfigurationUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.ActorAppointmentConfigurationUpdatedRequest> $request) async {
return appointmentConfigurationUpdated($call, await $request);
}
$async.Future<$0.ActorAppointmentConfigurationUpdatedResponse> appointmentConfigurationUpdated($grpc.ServiceCall call, $0.ActorAppointmentConfigurationUpdatedRequest request);
}