Latest generation

This commit is contained in:
ci core model
2025-04-22 09:11:37 +00:00
parent 79cc513255
commit e4fb016304
154 changed files with 12618 additions and 12618 deletions

View File

@@ -15,21 +15,21 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'shared.pb.dart' as $29;
import 'trackingQuery.pb.dart' as $41;
import 'shared.pb.dart' as $34;
import 'trackingQuery.pb.dart' as $47;
export 'trackingQuery.pb.dart';
@$pb.GrpcServiceName('api.TrackingQuery')
class TrackingQueryClient extends $grpc.Client {
static final _$getByIds = $grpc.ClientMethod<$41.TrackingByIdQuery, $41.TrackingByIdResult>(
static final _$getByIds = $grpc.ClientMethod<$47.TrackingByIdQuery, $47.TrackingByIdResult>(
'/api.TrackingQuery/GetByIds',
($41.TrackingByIdQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $41.TrackingByIdResult.fromBuffer(value));
static final _$countLines = $grpc.ClientMethod<$29.CountLinesQuery, $29.CountLinesResult>(
($47.TrackingByIdQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $47.TrackingByIdResult.fromBuffer(value));
static final _$countLines = $grpc.ClientMethod<$34.CountLinesQuery, $34.CountLinesResult>(
'/api.TrackingQuery/CountLines',
($29.CountLinesQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.CountLinesResult.fromBuffer(value));
($34.CountLinesQuery value) => value.writeToBuffer(),
($core.List<$core.int> value) => $34.CountLinesResult.fromBuffer(value));
TrackingQueryClient($grpc.ClientChannel channel,
{$grpc.CallOptions? options,
@@ -37,11 +37,11 @@ class TrackingQueryClient extends $grpc.Client {
: super(channel, options: options,
interceptors: interceptors);
$grpc.ResponseFuture<$41.TrackingByIdResult> getByIds($41.TrackingByIdQuery request, {$grpc.CallOptions? options}) {
$grpc.ResponseFuture<$47.TrackingByIdResult> getByIds($47.TrackingByIdQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$29.CountLinesResult> countLines($29.CountLinesQuery request, {$grpc.CallOptions? options}) {
$grpc.ResponseFuture<$34.CountLinesResult> countLines($34.CountLinesQuery request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$countLines, request, options: options);
}
}
@@ -51,30 +51,30 @@ abstract class TrackingQueryServiceBase extends $grpc.Service {
$core.String get $name => 'api.TrackingQuery';
TrackingQueryServiceBase() {
$addMethod($grpc.ServiceMethod<$41.TrackingByIdQuery, $41.TrackingByIdResult>(
$addMethod($grpc.ServiceMethod<$47.TrackingByIdQuery, $47.TrackingByIdResult>(
'GetByIds',
getByIds_Pre,
false,
false,
($core.List<$core.int> value) => $41.TrackingByIdQuery.fromBuffer(value),
($41.TrackingByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.CountLinesQuery, $29.CountLinesResult>(
($core.List<$core.int> value) => $47.TrackingByIdQuery.fromBuffer(value),
($47.TrackingByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$34.CountLinesQuery, $34.CountLinesResult>(
'CountLines',
countLines_Pre,
false,
false,
($core.List<$core.int> value) => $29.CountLinesQuery.fromBuffer(value),
($29.CountLinesResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $34.CountLinesQuery.fromBuffer(value),
($34.CountLinesResult value) => value.writeToBuffer()));
}
$async.Future<$41.TrackingByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$41.TrackingByIdQuery> $request) async {
$async.Future<$47.TrackingByIdResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$47.TrackingByIdQuery> $request) async {
return getByIds($call, await $request);
}
$async.Future<$29.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$29.CountLinesQuery> $request) async {
$async.Future<$34.CountLinesResult> countLines_Pre($grpc.ServiceCall $call, $async.Future<$34.CountLinesQuery> $request) async {
return countLines($call, await $request);
}
$async.Future<$41.TrackingByIdResult> getByIds($grpc.ServiceCall call, $41.TrackingByIdQuery request);
$async.Future<$29.CountLinesResult> countLines($grpc.ServiceCall call, $29.CountLinesQuery request);
$async.Future<$47.TrackingByIdResult> getByIds($grpc.ServiceCall call, $47.TrackingByIdQuery request);
$async.Future<$34.CountLinesResult> countLines($grpc.ServiceCall call, $34.CountLinesQuery request);
}