Latest generation

This commit is contained in:
ci core model
2025-07-29 08:27:29 +00:00
parent e11252146c
commit e045f48cfa
5 changed files with 116 additions and 117 deletions

View File

@@ -42,8 +42,8 @@ class AppointmentInputAPIClient extends $grpc.Client {
return $createUnaryCall(_$canceled, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentDateModificationResponse> dateModification($0.AppointmentDateModificationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$dateModification, request, options: options);
$grpc.ResponseFuture<$0.AppointmentDateUpdatedResponse> dateUpdated($0.AppointmentDateUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$dateUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated($0.AppointmentCarrierInformationUpdatedRequest request, {$grpc.CallOptions? options,}) {
@@ -100,10 +100,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
'/api.AppointmentInputAPI/Canceled',
($0.AppointmentCanceledRequest value) => value.writeToBuffer(),
$0.AppointmentCanceledResponse.fromBuffer);
static final _$dateModification = $grpc.ClientMethod<$0.AppointmentDateModificationRequest, $0.AppointmentDateModificationResponse>(
'/api.AppointmentInputAPI/DateModification',
($0.AppointmentDateModificationRequest value) => value.writeToBuffer(),
$0.AppointmentDateModificationResponse.fromBuffer);
static final _$dateUpdated = $grpc.ClientMethod<$0.AppointmentDateUpdatedRequest, $0.AppointmentDateUpdatedResponse>(
'/api.AppointmentInputAPI/DateUpdated',
($0.AppointmentDateUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentDateUpdatedResponse.fromBuffer);
static final _$carrierInformationUpdated = $grpc.ClientMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
'/api.AppointmentInputAPI/CarrierInformationUpdated',
($0.AppointmentCarrierInformationUpdatedRequest value) => value.writeToBuffer(),
@@ -169,13 +169,13 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.AppointmentCanceledRequest.fromBuffer(value),
($0.AppointmentCanceledResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentDateModificationRequest, $0.AppointmentDateModificationResponse>(
'DateModification',
dateModification_Pre,
$addMethod($grpc.ServiceMethod<$0.AppointmentDateUpdatedRequest, $0.AppointmentDateUpdatedResponse>(
'DateUpdated',
dateUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentDateModificationRequest.fromBuffer(value),
($0.AppointmentDateModificationResponse value) => value.writeToBuffer()));
($core.List<$core.int> value) => $0.AppointmentDateUpdatedRequest.fromBuffer(value),
($0.AppointmentDateUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
'CarrierInformationUpdated',
carrierInformationUpdated_Pre,
@@ -267,11 +267,11 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
$async.Future<$0.AppointmentCanceledResponse> canceled($grpc.ServiceCall call, $0.AppointmentCanceledRequest request);
$async.Future<$0.AppointmentDateModificationResponse> dateModification_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentDateModificationRequest> $request) async {
return dateModification($call, await $request);
$async.Future<$0.AppointmentDateUpdatedResponse> dateUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentDateUpdatedRequest> $request) async {
return dateUpdated($call, await $request);
}
$async.Future<$0.AppointmentDateModificationResponse> dateModification($grpc.ServiceCall call, $0.AppointmentDateModificationRequest request);
$async.Future<$0.AppointmentDateUpdatedResponse> dateUpdated($grpc.ServiceCall call, $0.AppointmentDateUpdatedRequest request);
$async.Future<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierInformationUpdatedRequest> $request) async {
return carrierInformationUpdated($call, await $request);