You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.14.0-SNAPSHOT-260608112943
|
Lib version: 1.14.0-SNAPSHOT-260609085649
|
||||||
|
|||||||
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user