Latest generation

This commit is contained in:
ci core model
2025-06-05 09:05:07 +00:00
parent 022e7a802c
commit 5f03587dfd
14 changed files with 1799 additions and 46 deletions

View File

@@ -144,6 +144,14 @@ class ExecutionflowInputAPIClient extends $grpc.Client {
'/api.ExecutionflowInputAPI/Deleted',
($22.ExecutionflowDeletedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $22.ExecutionflowDeletedResponse.fromBuffer(value));
static final _$linesAdded = $grpc.ClientMethod<$22.ExecutionflowLinesAddedRequest, $22.ExecutionflowLinesAddedResponse>(
'/api.ExecutionflowInputAPI/LinesAdded',
($22.ExecutionflowLinesAddedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $22.ExecutionflowLinesAddedResponse.fromBuffer(value));
static final _$linesDetected = $grpc.ClientMethod<$22.ExecutionflowLinesDetectedRequest, $22.ExecutionflowLinesDetectedResponse>(
'/api.ExecutionflowInputAPI/LinesDetected',
($22.ExecutionflowLinesDetectedRequest value) => value.writeToBuffer(),
($core.List<$core.int> value) => $22.ExecutionflowLinesDetectedResponse.fromBuffer(value));
ExecutionflowInputAPIClient(super.channel, {super.options, super.interceptors});
@@ -258,6 +266,14 @@ class ExecutionflowInputAPIClient extends $grpc.Client {
$grpc.ResponseFuture<$22.ExecutionflowDeletedResponse> deleted($22.ExecutionflowDeletedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$deleted, request, options: options);
}
$grpc.ResponseFuture<$22.ExecutionflowLinesAddedResponse> linesAdded($22.ExecutionflowLinesAddedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$linesAdded, request, options: options);
}
$grpc.ResponseFuture<$22.ExecutionflowLinesDetectedResponse> linesDetected($22.ExecutionflowLinesDetectedRequest request, {$grpc.CallOptions? options}) {
return $createUnaryCall(_$linesDetected, request, options: options);
}
}
@$pb.GrpcServiceName('api.ExecutionflowInputAPI')
@@ -461,6 +477,20 @@ abstract class ExecutionflowInputAPIServiceBase extends $grpc.Service {
false,
($core.List<$core.int> value) => $22.ExecutionflowDeletedRequest.fromBuffer(value),
($22.ExecutionflowDeletedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$22.ExecutionflowLinesAddedRequest, $22.ExecutionflowLinesAddedResponse>(
'LinesAdded',
linesAdded_Pre,
false,
false,
($core.List<$core.int> value) => $22.ExecutionflowLinesAddedRequest.fromBuffer(value),
($22.ExecutionflowLinesAddedResponse value) => value.writeToBuffer()));
$addMethod($grpc.ServiceMethod<$22.ExecutionflowLinesDetectedRequest, $22.ExecutionflowLinesDetectedResponse>(
'LinesDetected',
linesDetected_Pre,
false,
false,
($core.List<$core.int> value) => $22.ExecutionflowLinesDetectedRequest.fromBuffer(value),
($22.ExecutionflowLinesDetectedResponse value) => value.writeToBuffer()));
}
$async.Future<$22.ExecutionflowCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$22.ExecutionflowCreatedRequest> $request) async {
@@ -575,6 +605,14 @@ abstract class ExecutionflowInputAPIServiceBase extends $grpc.Service {
return deleted($call, await $request);
}
$async.Future<$22.ExecutionflowLinesAddedResponse> linesAdded_Pre($grpc.ServiceCall $call, $async.Future<$22.ExecutionflowLinesAddedRequest> $request) async {
return linesAdded($call, await $request);
}
$async.Future<$22.ExecutionflowLinesDetectedResponse> linesDetected_Pre($grpc.ServiceCall $call, $async.Future<$22.ExecutionflowLinesDetectedRequest> $request) async {
return linesDetected($call, await $request);
}
$async.Future<$22.ExecutionflowCreatedResponse> created($grpc.ServiceCall call, $22.ExecutionflowCreatedRequest request);
$async.Future<$22.ExecutionflowDetectedResponse> detected($grpc.ServiceCall call, $22.ExecutionflowDetectedRequest request);
$async.Future<$22.ExecutionflowRedetectedResponse> redetected($grpc.ServiceCall call, $22.ExecutionflowRedetectedRequest request);
@@ -603,4 +641,6 @@ abstract class ExecutionflowInputAPIServiceBase extends $grpc.Service {
$async.Future<$22.ExecutionflowAllocationErrorResponse> allocationError($grpc.ServiceCall call, $22.ExecutionflowAllocationErrorRequest request);
$async.Future<$22.ExecutionflowClaimAddedResponse> claimAdded($grpc.ServiceCall call, $22.ExecutionflowClaimAddedRequest request);
$async.Future<$22.ExecutionflowDeletedResponse> deleted($grpc.ServiceCall call, $22.ExecutionflowDeletedRequest request);
$async.Future<$22.ExecutionflowLinesAddedResponse> linesAdded($grpc.ServiceCall call, $22.ExecutionflowLinesAddedRequest request);
$async.Future<$22.ExecutionflowLinesDetectedResponse> linesDetected($grpc.ServiceCall call, $22.ExecutionflowLinesDetectedRequest request);
}