You've already forked dart-core-sdk
Release 1.10.6
This commit is contained in:
@@ -15,52 +15,52 @@ import 'dart:core' as $core;
|
||||
import 'package:grpc/service_api.dart' as $grpc;
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'idp.pb.dart' as $28;
|
||||
import 'idp.pb.dart' as $25;
|
||||
|
||||
export 'idp.pb.dart';
|
||||
|
||||
@$pb.GrpcServiceName('api.IDPService')
|
||||
class IDPServiceClient extends $grpc.Client {
|
||||
static final _$get = $grpc.ClientMethod<$28.GetIDPRequest, $28.GetIDPResult>(
|
||||
static final _$get = $grpc.ClientMethod<$25.GetIDPRequest, $25.GetIDPResult>(
|
||||
'/api.IDPService/Get',
|
||||
($28.GetIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.GetIDPResult.fromBuffer(value));
|
||||
static final _$create = $grpc.ClientMethod<$28.CreateIDPRequest, $28.CreateIDPResult>(
|
||||
($25.GetIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $25.GetIDPResult.fromBuffer(value));
|
||||
static final _$create = $grpc.ClientMethod<$25.CreateIDPRequest, $25.CreateIDPResult>(
|
||||
'/api.IDPService/Create',
|
||||
($28.CreateIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.CreateIDPResult.fromBuffer(value));
|
||||
static final _$update = $grpc.ClientMethod<$28.UpdateIDPRequest, $28.UpdateIDPResult>(
|
||||
($25.CreateIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $25.CreateIDPResult.fromBuffer(value));
|
||||
static final _$update = $grpc.ClientMethod<$25.UpdateIDPRequest, $25.UpdateIDPResult>(
|
||||
'/api.IDPService/Update',
|
||||
($28.UpdateIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.UpdateIDPResult.fromBuffer(value));
|
||||
static final _$delete = $grpc.ClientMethod<$28.DeleteIDPRequest, $28.DeleteIDPResult>(
|
||||
($25.UpdateIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $25.UpdateIDPResult.fromBuffer(value));
|
||||
static final _$delete = $grpc.ClientMethod<$25.DeleteIDPRequest, $25.DeleteIDPResult>(
|
||||
'/api.IDPService/Delete',
|
||||
($28.DeleteIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.DeleteIDPResult.fromBuffer(value));
|
||||
static final _$list = $grpc.ClientMethod<$28.ListIDPRequest, $28.ListIDPResult>(
|
||||
($25.DeleteIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $25.DeleteIDPResult.fromBuffer(value));
|
||||
static final _$list = $grpc.ClientMethod<$25.ListIDPRequest, $25.ListIDPResult>(
|
||||
'/api.IDPService/List',
|
||||
($28.ListIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $28.ListIDPResult.fromBuffer(value));
|
||||
($25.ListIDPRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $25.ListIDPResult.fromBuffer(value));
|
||||
|
||||
IDPServiceClient(super.channel, {super.options, super.interceptors});
|
||||
|
||||
$grpc.ResponseFuture<$28.GetIDPResult> get($28.GetIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
$grpc.ResponseFuture<$25.GetIDPResult> get($25.GetIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$get, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.CreateIDPResult> create($28.CreateIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
$grpc.ResponseFuture<$25.CreateIDPResult> create($25.CreateIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$create, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.UpdateIDPResult> update($28.UpdateIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
$grpc.ResponseFuture<$25.UpdateIDPResult> update($25.UpdateIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$update, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.DeleteIDPResult> delete($28.DeleteIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
$grpc.ResponseFuture<$25.DeleteIDPResult> delete($25.DeleteIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$delete, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$28.ListIDPResult> list($28.ListIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
$grpc.ResponseFuture<$25.ListIDPResult> list($25.ListIDPRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$list, request, options: options);
|
||||
}
|
||||
}
|
||||
@@ -70,66 +70,66 @@ abstract class IDPServiceBase extends $grpc.Service {
|
||||
$core.String get $name => 'api.IDPService';
|
||||
|
||||
IDPServiceBase() {
|
||||
$addMethod($grpc.ServiceMethod<$28.GetIDPRequest, $28.GetIDPResult>(
|
||||
$addMethod($grpc.ServiceMethod<$25.GetIDPRequest, $25.GetIDPResult>(
|
||||
'Get',
|
||||
get_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.GetIDPRequest.fromBuffer(value),
|
||||
($28.GetIDPResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.CreateIDPRequest, $28.CreateIDPResult>(
|
||||
($core.List<$core.int> value) => $25.GetIDPRequest.fromBuffer(value),
|
||||
($25.GetIDPResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$25.CreateIDPRequest, $25.CreateIDPResult>(
|
||||
'Create',
|
||||
create_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.CreateIDPRequest.fromBuffer(value),
|
||||
($28.CreateIDPResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.UpdateIDPRequest, $28.UpdateIDPResult>(
|
||||
($core.List<$core.int> value) => $25.CreateIDPRequest.fromBuffer(value),
|
||||
($25.CreateIDPResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$25.UpdateIDPRequest, $25.UpdateIDPResult>(
|
||||
'Update',
|
||||
update_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.UpdateIDPRequest.fromBuffer(value),
|
||||
($28.UpdateIDPResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.DeleteIDPRequest, $28.DeleteIDPResult>(
|
||||
($core.List<$core.int> value) => $25.UpdateIDPRequest.fromBuffer(value),
|
||||
($25.UpdateIDPResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$25.DeleteIDPRequest, $25.DeleteIDPResult>(
|
||||
'Delete',
|
||||
delete_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.DeleteIDPRequest.fromBuffer(value),
|
||||
($28.DeleteIDPResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$28.ListIDPRequest, $28.ListIDPResult>(
|
||||
($core.List<$core.int> value) => $25.DeleteIDPRequest.fromBuffer(value),
|
||||
($25.DeleteIDPResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$25.ListIDPRequest, $25.ListIDPResult>(
|
||||
'List',
|
||||
list_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $28.ListIDPRequest.fromBuffer(value),
|
||||
($28.ListIDPResult value) => value.writeToBuffer()));
|
||||
($core.List<$core.int> value) => $25.ListIDPRequest.fromBuffer(value),
|
||||
($25.ListIDPResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$28.GetIDPResult> get_Pre($grpc.ServiceCall $call, $async.Future<$28.GetIDPRequest> $request) async {
|
||||
$async.Future<$25.GetIDPResult> get_Pre($grpc.ServiceCall $call, $async.Future<$25.GetIDPRequest> $request) async {
|
||||
return get($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$28.CreateIDPResult> create_Pre($grpc.ServiceCall $call, $async.Future<$28.CreateIDPRequest> $request) async {
|
||||
$async.Future<$25.CreateIDPResult> create_Pre($grpc.ServiceCall $call, $async.Future<$25.CreateIDPRequest> $request) async {
|
||||
return create($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$28.UpdateIDPResult> update_Pre($grpc.ServiceCall $call, $async.Future<$28.UpdateIDPRequest> $request) async {
|
||||
$async.Future<$25.UpdateIDPResult> update_Pre($grpc.ServiceCall $call, $async.Future<$25.UpdateIDPRequest> $request) async {
|
||||
return update($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$28.DeleteIDPResult> delete_Pre($grpc.ServiceCall $call, $async.Future<$28.DeleteIDPRequest> $request) async {
|
||||
$async.Future<$25.DeleteIDPResult> delete_Pre($grpc.ServiceCall $call, $async.Future<$25.DeleteIDPRequest> $request) async {
|
||||
return delete($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$28.ListIDPResult> list_Pre($grpc.ServiceCall $call, $async.Future<$28.ListIDPRequest> $request) async {
|
||||
$async.Future<$25.ListIDPResult> list_Pre($grpc.ServiceCall $call, $async.Future<$25.ListIDPRequest> $request) async {
|
||||
return list($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$28.GetIDPResult> get($grpc.ServiceCall call, $28.GetIDPRequest request);
|
||||
$async.Future<$28.CreateIDPResult> create($grpc.ServiceCall call, $28.CreateIDPRequest request);
|
||||
$async.Future<$28.UpdateIDPResult> update($grpc.ServiceCall call, $28.UpdateIDPRequest request);
|
||||
$async.Future<$28.DeleteIDPResult> delete($grpc.ServiceCall call, $28.DeleteIDPRequest request);
|
||||
$async.Future<$28.ListIDPResult> list($grpc.ServiceCall call, $28.ListIDPRequest request);
|
||||
$async.Future<$25.GetIDPResult> get($grpc.ServiceCall call, $25.GetIDPRequest request);
|
||||
$async.Future<$25.CreateIDPResult> create($grpc.ServiceCall call, $25.CreateIDPRequest request);
|
||||
$async.Future<$25.UpdateIDPResult> update($grpc.ServiceCall call, $25.UpdateIDPRequest request);
|
||||
$async.Future<$25.DeleteIDPResult> delete($grpc.ServiceCall call, $25.DeleteIDPRequest request);
|
||||
$async.Future<$25.ListIDPResult> list($grpc.ServiceCall call, $25.ListIDPRequest request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user