You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -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);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user