Latest generation

This commit is contained in:
ci core model
2025-07-23 09:15:22 +00:00
parent 090494b513
commit 078b0282a4
5 changed files with 151 additions and 9 deletions

View File

@@ -76,7 +76,7 @@ class SiteServiceClient extends $grpc.Client {
return $createUnaryCall(_$getAvailableSlots, request, options: options);
}
$grpc.ResponseFuture<$0.GetAvailableSlotsResponse> getAllSlots($0.GetAvailableSlotsRequest request, {$grpc.CallOptions? options,}) {
$grpc.ResponseFuture<$0.GetAllSlotsResponse> getAllSlots($0.GetAvailableSlotsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getAllSlots, request, options: options);
}
@@ -154,10 +154,10 @@ class SiteServiceClient extends $grpc.Client {
'/api.SiteService/GetAvailableSlots',
($0.GetAvailableSlotsRequest value) => value.writeToBuffer(),
$0.GetAvailableSlotsResponse.fromBuffer);
static final _$getAllSlots = $grpc.ClientMethod<$0.GetAvailableSlotsRequest, $0.GetAvailableSlotsResponse>(
static final _$getAllSlots = $grpc.ClientMethod<$0.GetAvailableSlotsRequest, $0.GetAllSlotsResponse>(
'/api.SiteService/GetAllSlots',
($0.GetAvailableSlotsRequest value) => value.writeToBuffer(),
$0.GetAvailableSlotsResponse.fromBuffer);
$0.GetAllSlotsResponse.fromBuffer);
static final _$listUserSites = $grpc.ClientMethod<$0.ListUserSitesRequest, $0.ListUserSitesResponse>(
'/api.SiteService/ListUserSites',
($0.ListUserSitesRequest value) => value.writeToBuffer(),
@@ -270,13 +270,13 @@ abstract class SiteServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.GetAvailableSlotsRequest.fromBuffer(value),
($0.GetAvailableSlotsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetAvailableSlotsRequest, $0.GetAvailableSlotsResponse>(
$addMethod($grpc.ServiceMethod<$0.GetAvailableSlotsRequest, $0.GetAllSlotsResponse>(
'GetAllSlots',
getAllSlots_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetAvailableSlotsRequest.fromBuffer(value),
($0.GetAvailableSlotsResponse value) => value.writeToBuffer()));
($0.GetAllSlotsResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ListUserSitesRequest, $0.ListUserSitesResponse>(
'ListUserSites',
listUserSites_Pre,
@@ -394,11 +394,11 @@ abstract class SiteServiceBase extends $grpc.Service {
$async.Future<$0.GetAvailableSlotsResponse> getAvailableSlots($grpc.ServiceCall call, $0.GetAvailableSlotsRequest request);
$async.Future<$0.GetAvailableSlotsResponse> getAllSlots_Pre($grpc.ServiceCall $call, $async.Future<$0.GetAvailableSlotsRequest> $request) async {
$async.Future<$0.GetAllSlotsResponse> getAllSlots_Pre($grpc.ServiceCall $call, $async.Future<$0.GetAvailableSlotsRequest> $request) async {
return getAllSlots($call, await $request);
}
$async.Future<$0.GetAvailableSlotsResponse> getAllSlots($grpc.ServiceCall call, $0.GetAvailableSlotsRequest request);
$async.Future<$0.GetAllSlotsResponse> getAllSlots($grpc.ServiceCall call, $0.GetAvailableSlotsRequest request);
$async.Future<$0.ListUserSitesResponse> listUserSites_Pre($grpc.ServiceCall $call, $async.Future<$0.ListUserSitesRequest> $request) async {
return listUserSites($call, await $request);