Release 1.10.6

This commit is contained in:
ci core model
2025-05-19 13:38:48 +00:00
parent 2fe38abe9f
commit 1c1f8cc138
167 changed files with 5858 additions and 19865 deletions

View File

@@ -15,44 +15,44 @@ import 'dart:core' as $core;
import 'package:grpc/service_api.dart' as $grpc;
import 'package:protobuf/protobuf.dart' as $pb;
import 'logger.pb.dart' as $32;
import 'logger.pb.dart' as $29;
export 'logger.pb.dart';
@$pb.GrpcServiceName('api.LoggerService')
class LoggerServiceClient extends $grpc.Client {
static final _$create = $grpc.ClientMethod<$32.PlatformLogCreateRequest, $32.PlatformLogCreateResponse>(
static final _$create = $grpc.ClientMethod<$29.PlatformLogCreateRequest, $29.PlatformLogCreateResponse>(
'/api.LoggerService/Create',
($32.PlatformLogCreateRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $32.PlatformLogCreateResponse.fromBuffer(value));
static final _$getByIds = $grpc.ClientMethod<$32.PlatformLogGetByIdsRequest, $32.PlatformLogGetByIdsResult>(
($29.PlatformLogCreateRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.PlatformLogCreateResponse.fromBuffer(value));
static final _$getByIds = $grpc.ClientMethod<$29.PlatformLogGetByIdsRequest, $29.PlatformLogGetByIdsResult>(
'/api.LoggerService/GetByIds',
($32.PlatformLogGetByIdsRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $32.PlatformLogGetByIdsResult.fromBuffer(value));
static final _$find = $grpc.ClientMethod<$32.PlatformLogFindRequest, $32.PlatformLogFindResult>(
($29.PlatformLogGetByIdsRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.PlatformLogGetByIdsResult.fromBuffer(value));
static final _$find = $grpc.ClientMethod<$29.PlatformLogFindRequest, $29.PlatformLogFindResult>(
'/api.LoggerService/Find',
($32.PlatformLogFindRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $32.PlatformLogFindResult.fromBuffer(value));
static final _$findMatchingFieldValues = $grpc.ClientMethod<$32.PlatformLogByMatchRequest, $32.PlatformLogByMatchResult>(
($29.PlatformLogFindRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.PlatformLogFindResult.fromBuffer(value));
static final _$findMatchingFieldValues = $grpc.ClientMethod<$29.PlatformLogByMatchRequest, $29.PlatformLogByMatchResult>(
'/api.LoggerService/FindMatchingFieldValues',
($32.PlatformLogByMatchRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $32.PlatformLogByMatchResult.fromBuffer(value));
($29.PlatformLogByMatchRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $29.PlatformLogByMatchResult.fromBuffer(value));
LoggerServiceClient(super.channel, {super.options, super.interceptors});
$grpc.ResponseFuture<$32.PlatformLogCreateResponse> create($32.PlatformLogCreateRequest request, {$grpc.CallOptions? options}) {
$grpc.ResponseFuture<$29.PlatformLogCreateResponse> create($29.PlatformLogCreateRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$create, request, options: options);
}
$grpc.ResponseFuture<$32.PlatformLogGetByIdsResult> getByIds($32.PlatformLogGetByIdsRequest request, {$grpc.CallOptions? options}) {
$grpc.ResponseFuture<$29.PlatformLogGetByIdsResult> getByIds($29.PlatformLogGetByIdsRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$getByIds, request, options: options);
}
$grpc.ResponseFuture<$32.PlatformLogFindResult> find($32.PlatformLogFindRequest request, {$grpc.CallOptions? options}) {
$grpc.ResponseFuture<$29.PlatformLogFindResult> find($29.PlatformLogFindRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$find, request, options: options);
}
$grpc.ResponseFuture<$32.PlatformLogByMatchResult> findMatchingFieldValues($32.PlatformLogByMatchRequest request, {$grpc.CallOptions? options}) {
$grpc.ResponseFuture<$29.PlatformLogByMatchResult> findMatchingFieldValues($29.PlatformLogByMatchRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$findMatchingFieldValues, request, options: options);
}
}
@@ -62,54 +62,54 @@ abstract class LoggerServiceBase extends $grpc.Service {
$core.String get $name => 'api.LoggerService';
LoggerServiceBase() {
$addMethod($grpc.ServiceMethod<$32.PlatformLogCreateRequest, $32.PlatformLogCreateResponse>(
$addMethod($grpc.ServiceMethod<$29.PlatformLogCreateRequest, $29.PlatformLogCreateResponse>(
'Create',
create_Pre,
false,
false,
($core.List<$core.int> value) => $32.PlatformLogCreateRequest.fromBuffer(value),
($32.PlatformLogCreateResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$32.PlatformLogGetByIdsRequest, $32.PlatformLogGetByIdsResult>(
($core.List<$core.int> value) => $29.PlatformLogCreateRequest.fromBuffer(value),
($29.PlatformLogCreateResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.PlatformLogGetByIdsRequest, $29.PlatformLogGetByIdsResult>(
'GetByIds',
getByIds_Pre,
false,
false,
($core.List<$core.int> value) => $32.PlatformLogGetByIdsRequest.fromBuffer(value),
($32.PlatformLogGetByIdsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$32.PlatformLogFindRequest, $32.PlatformLogFindResult>(
($core.List<$core.int> value) => $29.PlatformLogGetByIdsRequest.fromBuffer(value),
($29.PlatformLogGetByIdsResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.PlatformLogFindRequest, $29.PlatformLogFindResult>(
'Find',
find_Pre,
false,
false,
($core.List<$core.int> value) => $32.PlatformLogFindRequest.fromBuffer(value),
($32.PlatformLogFindResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$32.PlatformLogByMatchRequest, $32.PlatformLogByMatchResult>(
($core.List<$core.int> value) => $29.PlatformLogFindRequest.fromBuffer(value),
($29.PlatformLogFindResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$29.PlatformLogByMatchRequest, $29.PlatformLogByMatchResult>(
'FindMatchingFieldValues',
findMatchingFieldValues_Pre,
false,
false,
($core.List<$core.int> value) => $32.PlatformLogByMatchRequest.fromBuffer(value),
($32.PlatformLogByMatchResult value) => value.writeToBuffer()));
($core.List<$core.int> value) => $29.PlatformLogByMatchRequest.fromBuffer(value),
($29.PlatformLogByMatchResult value) => value.writeToBuffer()));
}
$async.Future<$32.PlatformLogCreateResponse> create_Pre($grpc.ServiceCall $call, $async.Future<$32.PlatformLogCreateRequest> $request) async {
$async.Future<$29.PlatformLogCreateResponse> create_Pre($grpc.ServiceCall $call, $async.Future<$29.PlatformLogCreateRequest> $request) async {
return create($call, await $request);
}
$async.Future<$32.PlatformLogGetByIdsResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$32.PlatformLogGetByIdsRequest> $request) async {
$async.Future<$29.PlatformLogGetByIdsResult> getByIds_Pre($grpc.ServiceCall $call, $async.Future<$29.PlatformLogGetByIdsRequest> $request) async {
return getByIds($call, await $request);
}
$async.Future<$32.PlatformLogFindResult> find_Pre($grpc.ServiceCall $call, $async.Future<$32.PlatformLogFindRequest> $request) async {
$async.Future<$29.PlatformLogFindResult> find_Pre($grpc.ServiceCall $call, $async.Future<$29.PlatformLogFindRequest> $request) async {
return find($call, await $request);
}
$async.Future<$32.PlatformLogByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$32.PlatformLogByMatchRequest> $request) async {
$async.Future<$29.PlatformLogByMatchResult> findMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$29.PlatformLogByMatchRequest> $request) async {
return findMatchingFieldValues($call, await $request);
}
$async.Future<$32.PlatformLogCreateResponse> create($grpc.ServiceCall call, $32.PlatformLogCreateRequest request);
$async.Future<$32.PlatformLogGetByIdsResult> getByIds($grpc.ServiceCall call, $32.PlatformLogGetByIdsRequest request);
$async.Future<$32.PlatformLogFindResult> find($grpc.ServiceCall call, $32.PlatformLogFindRequest request);
$async.Future<$32.PlatformLogByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $32.PlatformLogByMatchRequest request);
$async.Future<$29.PlatformLogCreateResponse> create($grpc.ServiceCall call, $29.PlatformLogCreateRequest request);
$async.Future<$29.PlatformLogGetByIdsResult> getByIds($grpc.ServiceCall call, $29.PlatformLogGetByIdsRequest request);
$async.Future<$29.PlatformLogFindResult> find($grpc.ServiceCall call, $29.PlatformLogFindRequest request);
$async.Future<$29.PlatformLogByMatchResult> findMatchingFieldValues($grpc.ServiceCall call, $29.PlatformLogByMatchRequest request);
}