Latest generation

This commit is contained in:
ci core model
2026-03-04 15:32:16 +00:00
parent ce397bcddc
commit 353df4e458
3 changed files with 23 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG # CHANGELOG
Lib version: 1.13.0-SNAPSHOT-260304133227 Lib version: 1.13.0-SNAPSHOT-260304153126

View File

@@ -56,6 +56,10 @@ class BookingServiceClient extends $grpc.Client {
return $createUnaryCall(_$cancelAppointment, request, options: options); return $createUnaryCall(_$cancelAppointment, request, options: options);
} }
$grpc.ResponseFuture<$0.CancelBookingAppointmentResponse> forceCancelAppointment($0.CancelBookingAppointmentRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$forceCancelAppointment, request, options: options);
}
$grpc.ResponseFuture<$0.BookBookingAppointmentResponse> updateAppointment($0.UpdateBookingAppointmentRequest request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.BookBookingAppointmentResponse> updateAppointment($0.UpdateBookingAppointmentRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$updateAppointment, request, options: options); return $createUnaryCall(_$updateAppointment, request, options: options);
} }
@@ -110,6 +114,10 @@ class BookingServiceClient extends $grpc.Client {
'/api.BookingService/CancelAppointment', '/api.BookingService/CancelAppointment',
($0.CancelBookingAppointmentRequest value) => value.writeToBuffer(), ($0.CancelBookingAppointmentRequest value) => value.writeToBuffer(),
$0.CancelBookingAppointmentResponse.fromBuffer); $0.CancelBookingAppointmentResponse.fromBuffer);
static final _$forceCancelAppointment = $grpc.ClientMethod<$0.CancelBookingAppointmentRequest, $0.CancelBookingAppointmentResponse>(
'/api.BookingService/ForceCancelAppointment',
($0.CancelBookingAppointmentRequest value) => value.writeToBuffer(),
$0.CancelBookingAppointmentResponse.fromBuffer);
static final _$updateAppointment = $grpc.ClientMethod<$0.UpdateBookingAppointmentRequest, $0.BookBookingAppointmentResponse>( static final _$updateAppointment = $grpc.ClientMethod<$0.UpdateBookingAppointmentRequest, $0.BookBookingAppointmentResponse>(
'/api.BookingService/UpdateAppointment', '/api.BookingService/UpdateAppointment',
($0.UpdateBookingAppointmentRequest value) => value.writeToBuffer(), ($0.UpdateBookingAppointmentRequest value) => value.writeToBuffer(),
@@ -187,6 +195,13 @@ abstract class BookingServiceBase extends $grpc.Service {
false, false,
($core.List<$core.int> value) => $0.CancelBookingAppointmentRequest.fromBuffer(value), ($core.List<$core.int> value) => $0.CancelBookingAppointmentRequest.fromBuffer(value),
($0.CancelBookingAppointmentResponse value) => value.writeToBuffer())); ($0.CancelBookingAppointmentResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.CancelBookingAppointmentRequest, $0.CancelBookingAppointmentResponse>(
'ForceCancelAppointment',
forceCancelAppointment_Pre,
false,
false,
($core.List<$core.int> value) => $0.CancelBookingAppointmentRequest.fromBuffer(value),
($0.CancelBookingAppointmentResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.UpdateBookingAppointmentRequest, $0.BookBookingAppointmentResponse>( $addMethod($grpc.ServiceMethod<$0.UpdateBookingAppointmentRequest, $0.BookBookingAppointmentResponse>(
'UpdateAppointment', 'UpdateAppointment',
updateAppointment_Pre, updateAppointment_Pre,
@@ -274,6 +289,12 @@ abstract class BookingServiceBase extends $grpc.Service {
$async.Future<$0.CancelBookingAppointmentResponse> cancelAppointment($grpc.ServiceCall call, $0.CancelBookingAppointmentRequest request); $async.Future<$0.CancelBookingAppointmentResponse> cancelAppointment($grpc.ServiceCall call, $0.CancelBookingAppointmentRequest request);
$async.Future<$0.CancelBookingAppointmentResponse> forceCancelAppointment_Pre($grpc.ServiceCall $call, $async.Future<$0.CancelBookingAppointmentRequest> $request) async {
return forceCancelAppointment($call, await $request);
}
$async.Future<$0.CancelBookingAppointmentResponse> forceCancelAppointment($grpc.ServiceCall call, $0.CancelBookingAppointmentRequest request);
$async.Future<$0.BookBookingAppointmentResponse> updateAppointment_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateBookingAppointmentRequest> $request) async { $async.Future<$0.BookBookingAppointmentResponse> updateAppointment_Pre($grpc.ServiceCall $call, $async.Future<$0.UpdateBookingAppointmentRequest> $request) async {
return updateAppointment($call, await $request); return updateAppointment($call, await $request);
} }

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk name: dart_core_sdk
description: dart libs from core model proto files description: dart libs from core model proto files
version: 1.13.0-SNAPSHOT-260304133227 version: 1.13.0-SNAPSHOT-260304153126
homepage: '' homepage: ''
publish_to: '' publish_to: ''
repository: '' repository: ''