Latest generation

This commit is contained in:
ci core model
2025-11-04 08:22:35 +00:00
parent 2e0a79561d
commit fa0123c4d4
11 changed files with 444 additions and 53 deletions

View File

@@ -50,6 +50,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
return $createUnaryCall(_$commissionsUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated($0.AppointmentCarrierInformationUpdatedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$carrierInformationUpdated, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentCarrierExpectedResponse> carrierExpected($0.AppointmentCarrierExpectedRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$carrierExpected, request, options: options);
}
@@ -116,6 +120,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
'/api.AppointmentInputAPI/CommissionsUpdated',
($0.AppointmentCommissionsUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentCommissionsUpdatedResponse.fromBuffer);
static final _$carrierInformationUpdated = $grpc.ClientMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
'/api.AppointmentInputAPI/CarrierInformationUpdated',
($0.AppointmentCarrierInformationUpdatedRequest value) => value.writeToBuffer(),
$0.AppointmentCarrierInformationUpdatedResponse.fromBuffer);
static final _$carrierExpected = $grpc.ClientMethod<$0.AppointmentCarrierExpectedRequest, $0.AppointmentCarrierExpectedResponse>(
'/api.AppointmentInputAPI/CarrierExpected',
($0.AppointmentCarrierExpectedRequest value) => value.writeToBuffer(),
@@ -199,6 +207,13 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.AppointmentCommissionsUpdatedRequest.fromBuffer(value),
($0.AppointmentCommissionsUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>(
'CarrierInformationUpdated',
carrierInformationUpdated_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentCarrierInformationUpdatedRequest.fromBuffer(value),
($0.AppointmentCarrierInformationUpdatedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierExpectedRequest, $0.AppointmentCarrierExpectedResponse>(
'CarrierExpected',
carrierExpected_Pre,
@@ -309,6 +324,12 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
$async.Future<$0.AppointmentCommissionsUpdatedResponse> commissionsUpdated($grpc.ServiceCall call, $0.AppointmentCommissionsUpdatedRequest request);
$async.Future<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierInformationUpdatedRequest> $request) async {
return carrierInformationUpdated($call, await $request);
}
$async.Future<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated($grpc.ServiceCall call, $0.AppointmentCarrierInformationUpdatedRequest request);
$async.Future<$0.AppointmentCarrierExpectedResponse> carrierExpected_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierExpectedRequest> $request) async {
return carrierExpected($call, await $request);
}