Latest generation

This commit is contained in:
ci core model
2026-06-09 08:57:36 +00:00
parent ea407d6fd4
commit 76886be045
3 changed files with 23 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG # CHANGELOG
Lib version: 1.14.0-SNAPSHOT-260608112943 Lib version: 1.14.0-SNAPSHOT-260609085649

View File

@@ -38,6 +38,10 @@ class AppointmentQueryClient extends $grpc.Client {
return $createUnaryCall(_$getByIds, request, options: options); return $createUnaryCall(_$getByIds, request, options: options);
} }
$grpc.ResponseFuture<$0.AppointmentByIdResult> getByIdsMine($0.AppointmentByIdQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$getByIdsMine, request, options: options);
}
$grpc.ResponseFuture<$0.AppointmentByFilterResult> find($0.AppointmentByFilterQuery request, {$grpc.CallOptions? options,}) { $grpc.ResponseFuture<$0.AppointmentByFilterResult> find($0.AppointmentByFilterQuery request, {$grpc.CallOptions? options,}) {
return $createUnaryCall(_$find, request, options: options); return $createUnaryCall(_$find, request, options: options);
} }
@@ -84,6 +88,10 @@ class AppointmentQueryClient extends $grpc.Client {
'/api.AppointmentQuery/GetByIds', '/api.AppointmentQuery/GetByIds',
($0.AppointmentByIdQuery value) => value.writeToBuffer(), ($0.AppointmentByIdQuery value) => value.writeToBuffer(),
$0.AppointmentByIdResult.fromBuffer); $0.AppointmentByIdResult.fromBuffer);
static final _$getByIdsMine = $grpc.ClientMethod<$0.AppointmentByIdQuery, $0.AppointmentByIdResult>(
'/api.AppointmentQuery/GetByIdsMine',
($0.AppointmentByIdQuery value) => value.writeToBuffer(),
$0.AppointmentByIdResult.fromBuffer);
static final _$find = $grpc.ClientMethod<$0.AppointmentByFilterQuery, $0.AppointmentByFilterResult>( static final _$find = $grpc.ClientMethod<$0.AppointmentByFilterQuery, $0.AppointmentByFilterResult>(
'/api.AppointmentQuery/Find', '/api.AppointmentQuery/Find',
($0.AppointmentByFilterQuery value) => value.writeToBuffer(), ($0.AppointmentByFilterQuery value) => value.writeToBuffer(),
@@ -138,6 +146,13 @@ abstract class AppointmentQueryServiceBase extends $grpc.Service {
false, false,
($core.List<$core.int> value) => $0.AppointmentByIdQuery.fromBuffer(value), ($core.List<$core.int> value) => $0.AppointmentByIdQuery.fromBuffer(value),
($0.AppointmentByIdResult value) => value.writeToBuffer())); ($0.AppointmentByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentByIdQuery, $0.AppointmentByIdResult>(
'GetByIdsMine',
getByIdsMine_Pre,
false,
false,
($core.List<$core.int> value) => $0.AppointmentByIdQuery.fromBuffer(value),
($0.AppointmentByIdResult value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$0.AppointmentByFilterQuery, $0.AppointmentByFilterResult>( $addMethod($grpc.ServiceMethod<$0.AppointmentByFilterQuery, $0.AppointmentByFilterResult>(
'Find', 'Find',
find_Pre, find_Pre,
@@ -216,6 +231,12 @@ abstract class AppointmentQueryServiceBase extends $grpc.Service {
$async.Future<$0.AppointmentByIdResult> getByIds($grpc.ServiceCall call, $0.AppointmentByIdQuery request); $async.Future<$0.AppointmentByIdResult> getByIds($grpc.ServiceCall call, $0.AppointmentByIdQuery request);
$async.Future<$0.AppointmentByIdResult> getByIdsMine_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentByIdQuery> $request) async {
return getByIdsMine($call, await $request);
}
$async.Future<$0.AppointmentByIdResult> getByIdsMine($grpc.ServiceCall call, $0.AppointmentByIdQuery request);
$async.Future<$0.AppointmentByFilterResult> find_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentByFilterQuery> $request) async { $async.Future<$0.AppointmentByFilterResult> find_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentByFilterQuery> $request) async {
return find($call, await $request); return find($call, await $request);
} }

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk name: dart_core_sdk
description: dart libs from core model proto files description: dart libs from core model proto files
version: 1.14.0-SNAPSHOT-260608112943 version: 1.14.0-SNAPSHOT-260609085649
homepage: '' homepage: ''
publish_to: '' publish_to: ''
repository: '' repository: ''