Latest generation

This commit is contained in:
ci core model
2025-10-03 14:29:17 +00:00
parent 333f963c6b
commit c2f11b3f63
59 changed files with 1414 additions and 8450 deletions

View File

@@ -52,6 +52,14 @@ class CalendarServiceClient extends $grpc.Client {
return $createUnaryCall(_$deleteOnOrganisation, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllForOrganisationResponse> deleteAllForOrganisation($0.DeleteAllForOrganisationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAllForOrganisation, request, options: options);
}
$grpc.ResponseFuture<$0.DeleteAllForProjectResponse> deleteAllForProject($0.DeleteAllForProjectRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$deleteAllForProject, request, options: options);
}
$grpc.ResponseFuture<$0.ComputeSLAPeriodResponse> computeSLAPeriodOnOrganisation($0.ComputeSLAPeriodOnOrganisationRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$computeSLAPeriodOnOrganisation, request, options: options);
}
@@ -106,6 +114,14 @@ class CalendarServiceClient extends $grpc.Client {
'/api.CalendarService/DeleteOnOrganisation',
($0.DeleteOnOrganisationRequest value) => value.writeToBuffer(),
$0.DeleteOnOrganisationResponse.fromBuffer);
static final _$deleteAllForOrganisation = $grpc.ClientMethod<$0.DeleteAllForOrganisationRequest, $0.DeleteAllForOrganisationResponse>(
'/api.CalendarService/DeleteAllForOrganisation',
($0.DeleteAllForOrganisationRequest value) => value.writeToBuffer(),
$0.DeleteAllForOrganisationResponse.fromBuffer);
static final _$deleteAllForProject = $grpc.ClientMethod<$0.DeleteAllForProjectRequest, $0.DeleteAllForProjectResponse>(
'/api.CalendarService/DeleteAllForProject',
($0.DeleteAllForProjectRequest value) => value.writeToBuffer(),
$0.DeleteAllForProjectResponse.fromBuffer);
static final _$computeSLAPeriodOnOrganisation = $grpc.ClientMethod<$0.ComputeSLAPeriodOnOrganisationRequest, $0.ComputeSLAPeriodResponse>(
'/api.CalendarService/ComputeSLAPeriodOnOrganisation',
($0.ComputeSLAPeriodOnOrganisationRequest value) => value.writeToBuffer(),
@@ -180,6 +196,20 @@ abstract class CalendarServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.DeleteOnOrganisationRequest.fromBuffer(value),
($0.DeleteOnOrganisationResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllForOrganisationRequest, $0.DeleteAllForOrganisationResponse>(
'DeleteAllForOrganisation',
deleteAllForOrganisation_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllForOrganisationRequest.fromBuffer(value),
($0.DeleteAllForOrganisationResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.DeleteAllForProjectRequest, $0.DeleteAllForProjectResponse>(
'DeleteAllForProject',
deleteAllForProject_Pre,
false,
false,
($core.List<$core.int> value) => $0.DeleteAllForProjectRequest.fromBuffer(value),
($0.DeleteAllForProjectResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.ComputeSLAPeriodOnOrganisationRequest, $0.ComputeSLAPeriodResponse>(
'ComputeSLAPeriodOnOrganisation',
computeSLAPeriodOnOrganisation_Pre,
@@ -268,6 +298,18 @@ abstract class CalendarServiceBase extends $grpc.Service {
$async.Future<$0.DeleteOnOrganisationResponse> deleteOnOrganisation($grpc.ServiceCall call, $0.DeleteOnOrganisationRequest request);
$async.Future<$0.DeleteAllForOrganisationResponse> deleteAllForOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllForOrganisationRequest> $request) async {
return deleteAllForOrganisation($call, await $request);
}
$async.Future<$0.DeleteAllForOrganisationResponse> deleteAllForOrganisation($grpc.ServiceCall call, $0.DeleteAllForOrganisationRequest request);
$async.Future<$0.DeleteAllForProjectResponse> deleteAllForProject_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteAllForProjectRequest> $request) async {
return deleteAllForProject($call, await $request);
}
$async.Future<$0.DeleteAllForProjectResponse> deleteAllForProject($grpc.ServiceCall call, $0.DeleteAllForProjectRequest request);
$async.Future<$0.ComputeSLAPeriodResponse> computeSLAPeriodOnOrganisation_Pre($grpc.ServiceCall $call, $async.Future<$0.ComputeSLAPeriodOnOrganisationRequest> $request) async {
return computeSLAPeriodOnOrganisation($call, await $request);
}