Latest generation

This commit is contained in:
ci core model
2025-03-19 08:45:21 +00:00
parent c74be7bd44
commit 8ab2c33a9f
145 changed files with 12084 additions and 10638 deletions

View File

@@ -15,16 +15,16 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'view.pb.dart' as $56;
import 'view.pb.dart' as $57;
export 'view.pb.dart';
@$pb.GrpcServiceName('api.ViewService')
class ViewServiceClient extends $grpc.Client {
static final _$getViewFields = $grpc.ClientMethod<$56.GetViewFieldsRequest, $56.GetViewFieldsResult>(
static final _$getViewFields = $grpc.ClientMethod<$57.GetViewFieldsRequest, $57.GetViewFieldsResult>(
'/api.ViewService/GetViewFields',
($56.GetViewFieldsRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $56.GetViewFieldsResult.fromBuffer(value));
($57.GetViewFieldsRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $57.GetViewFieldsResult.fromBuffer(value));
ViewServiceClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
@@ -32,7 +32,7 @@ class ViewServiceClient extends $grpc.Client {
: super(channel, options: options,
interceptors: interceptors);
$grpc.ResponseFuture<$56.GetViewFieldsResult> getViewFields($56.GetViewFieldsRequest request, {$grpc.CallOptions? options}) {
$grpc.ResponseFuture<$57.GetViewFieldsResult> getViewFields($57.GetViewFieldsRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getViewFields, request, options: options);
}
}
@@ -42,18 +42,18 @@ abstract class ViewServiceBase extends $grpc.Service {
$core.String get $name => 'api.ViewService';
ViewServiceBase() {
$addMethod($grpc.ServiceMethod<$56.GetViewFieldsRequest, $56.GetViewFieldsResult>(
$addMethod($grpc.ServiceMethod<$57.GetViewFieldsRequest, $57.GetViewFieldsResult>(
'GetViewFields',
getViewFields_Pre,
false,
false,
($core.List<$core.int> value) => $56.GetViewFieldsRequest.fromBuffer(value),
($56.GetViewFieldsResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $57.GetViewFieldsRequest.fromBuffer(value),
($57.GetViewFieldsResult value) => value.writeToBuffer()));
}
$async.Future<$56.GetViewFieldsResult> getViewFields_Pre($grpc.ServiceCall call, $async.Future<$56.GetViewFieldsRequest> request) async {
$async.Future<$57.GetViewFieldsResult> getViewFields_Pre($grpc.ServiceCall call, $async.Future<$57.GetViewFieldsRequest> request) async {
return getViewFields(call, await request);
}
$async.Future<$56.GetViewFieldsResult> getViewFields($grpc.ServiceCall call, $56.GetViewFieldsRequest request);
$async.Future<$57.GetViewFieldsResult> getViewFields($grpc.ServiceCall call, $57.GetViewFieldsRequest request);
}