You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -53,6 +53,10 @@ class TrackingInputAPIClient extends $grpc.Client {
|
||||
'/api.TrackingInputAPI/Deleted',
|
||||
($27.TrackingDeletedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $27.TrackingDeletedResponse.fromBuffer(value));
|
||||
static final _$uRLUpdated = $grpc.ClientMethod<$27.TrackingURLUpdatedRequest, $27.TrackingURLUpdatedResponse>(
|
||||
'/api.TrackingInputAPI/URLUpdated',
|
||||
($27.TrackingURLUpdatedRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $27.TrackingURLUpdatedResponse.fromBuffer(value));
|
||||
|
||||
TrackingInputAPIClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
@@ -92,6 +96,10 @@ class TrackingInputAPIClient extends $grpc.Client {
|
||||
$grpc.ResponseFuture<$27.TrackingDeletedResponse> deleted($27.TrackingDeletedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$deleted, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$27.TrackingURLUpdatedResponse> uRLUpdated($27.TrackingURLUpdatedRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$uRLUpdated, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.TrackingInputAPI')
|
||||
@@ -155,6 +163,13 @@ abstract class TrackingInputAPIServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $27.TrackingDeletedRequest.fromBuffer(value),
|
||||
($27.TrackingDeletedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$27.TrackingURLUpdatedRequest, $27.TrackingURLUpdatedResponse>(
|
||||
'URLUpdated',
|
||||
uRLUpdated_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $27.TrackingURLUpdatedRequest.fromBuffer(value),
|
||||
($27.TrackingURLUpdatedResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$27.TrackingNotifiedResponse> notified_Pre($grpc.ServiceCall $call, $async.Future<$27.TrackingNotifiedRequest> $request) async {
|
||||
@@ -189,6 +204,10 @@ abstract class TrackingInputAPIServiceBase extends $grpc.Service {
|
||||
return deleted($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$27.TrackingURLUpdatedResponse> uRLUpdated_Pre($grpc.ServiceCall $call, $async.Future<$27.TrackingURLUpdatedRequest> $request) async {
|
||||
return uRLUpdated($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$27.TrackingNotifiedResponse> notified($grpc.ServiceCall call, $27.TrackingNotifiedRequest request);
|
||||
$async.Future<$27.TrackingETAUpdatedResponse> eTAUpdated($grpc.ServiceCall call, $27.TrackingETAUpdatedRequest request);
|
||||
$async.Future<$27.TrackingDispatchedResponse> dispatched($grpc.ServiceCall call, $27.TrackingDispatchedRequest request);
|
||||
@@ -197,4 +216,5 @@ abstract class TrackingInputAPIServiceBase extends $grpc.Service {
|
||||
$async.Future<$27.TrackingAttachmentAddedResponse> attachmentAdded($grpc.ServiceCall call, $27.TrackingAttachmentAddedRequest request);
|
||||
$async.Future<$27.TrackingAttachmentRemovedResponse> attachmentRemoved($grpc.ServiceCall call, $27.TrackingAttachmentRemovedRequest request);
|
||||
$async.Future<$27.TrackingDeletedResponse> deleted($grpc.ServiceCall call, $27.TrackingDeletedRequest request);
|
||||
$async.Future<$27.TrackingURLUpdatedResponse> uRLUpdated($grpc.ServiceCall call, $27.TrackingURLUpdatedRequest request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user