Latest generation

This commit is contained in:
ci core model
2025-11-18 13:54:43 +00:00
parent e9009d6971
commit c016cb6cde
14 changed files with 36 additions and 1823 deletions

View File

@@ -32,25 +32,16 @@ class ViewServiceClient extends $grpc.Client {
ViewServiceClient(super.channel, {super.options, super.interceptors});
@$core.Deprecated('This method is deprecated')
$grpc.ResponseFuture<$0.GetViewFieldsResult> getViewFields($0.GetViewFieldsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getViewFields, request, options: options);
}
$grpc.ResponseFuture<$0.GetProjectViewFieldsResult> getProjectViewFields($0.GetProjectViewFieldsRequest request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getProjectViewFields, request, options: options);
}
// method descriptors
static final _$getViewFields = $grpc.ClientMethod<$0.GetViewFieldsRequest, $0.GetViewFieldsResult>(
'/api.ViewService/GetViewFields',
($0.GetViewFieldsRequest value) => value.writeToBuffer(),
$0.GetViewFieldsResult.fromBuffer);
static final _$getProjectViewFields = $grpc.ClientMethod<$0.GetProjectViewFieldsRequest, $0.GetProjectViewFieldsResult>(
'/api.ViewService/GetProjectViewFields',
($0.GetProjectViewFieldsRequest value) => value.writeToBuffer(),
$0.GetProjectViewFieldsResult.fromBuffer);
}
@$pb.GrpcServiceName('api.ViewService')
@@ -65,13 +56,6 @@ abstract class ViewServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $0.GetViewFieldsRequest.fromBuffer(value),
($0.GetViewFieldsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.GetProjectViewFieldsRequest, $0.GetProjectViewFieldsResult>(
'GetProjectViewFields',
getProjectViewFields_Pre,
false,
false,
($core.List<$core.int> value) => $0.GetProjectViewFieldsRequest.fromBuffer(value),
($0.GetProjectViewFieldsResult value) => value.writeToBuffer()));
}
$async.Future<$0.GetViewFieldsResult> getViewFields_Pre($grpc.ServiceCall $call, $async.Future<$0.GetViewFieldsRequest> $request) async {
@@ -80,10 +64,4 @@ abstract class ViewServiceBase extends $grpc.Service {
$async.Future<$0.GetViewFieldsResult> getViewFields($grpc.ServiceCall call, $0.GetViewFieldsRequest request);
$async.Future<$0.GetProjectViewFieldsResult> getProjectViewFields_Pre($grpc.ServiceCall $call, $async.Future<$0.GetProjectViewFieldsRequest> $request) async {
return getProjectViewFields($call, await $request);
}
$async.Future<$0.GetProjectViewFieldsResult> getProjectViewFields($grpc.ServiceCall call, $0.GetProjectViewFieldsRequest request);
}