Latest generation

This commit is contained in:
ci core model
2025-06-05 09:05:07 +00:00
parent 3836807c31
commit f1c50b833e
9 changed files with 1508 additions and 5 deletions

View File

@@ -4,6 +4,10 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { ExecutionflowInputAPI } from "./executionflowInput";
import type { ExecutionflowLinesDetectedResponse } from "./executionflowInput";
import type { ExecutionflowLinesDetectedRequest } from "./executionflowInput";
import type { ExecutionflowLinesAddedResponse } from "./executionflowInput";
import type { ExecutionflowLinesAddedRequest } from "./executionflowInput";
import type { ExecutionflowDeletedResponse } from "./executionflowInput";
import type { ExecutionflowDeletedRequest } from "./executionflowInput";
import type { ExecutionflowClaimAddedResponse } from "./executionflowInput";
@@ -182,6 +186,14 @@ export interface IExecutionflowInputAPIClient {
* @generated from protobuf rpc: Deleted
*/
deleted(input: ExecutionflowDeletedRequest, options?: RpcOptions): UnaryCall<ExecutionflowDeletedRequest, ExecutionflowDeletedResponse>;
/**
* @generated from protobuf rpc: LinesAdded
*/
linesAdded(input: ExecutionflowLinesAddedRequest, options?: RpcOptions): UnaryCall<ExecutionflowLinesAddedRequest, ExecutionflowLinesAddedResponse>;
/**
* @generated from protobuf rpc: LinesDetected
*/
linesDetected(input: ExecutionflowLinesDetectedRequest, options?: RpcOptions): UnaryCall<ExecutionflowLinesDetectedRequest, ExecutionflowLinesDetectedResponse>;
}
/**
*
@@ -391,4 +403,18 @@ export class ExecutionflowInputAPIClient implements IExecutionflowInputAPIClient
const method = this.methods[27], opt = this._transport.mergeOptions(options);
return stackIntercept<ExecutionflowDeletedRequest, ExecutionflowDeletedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: LinesAdded
*/
linesAdded(input: ExecutionflowLinesAddedRequest, options?: RpcOptions): UnaryCall<ExecutionflowLinesAddedRequest, ExecutionflowLinesAddedResponse> {
const method = this.methods[28], opt = this._transport.mergeOptions(options);
return stackIntercept<ExecutionflowLinesAddedRequest, ExecutionflowLinesAddedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: LinesDetected
*/
linesDetected(input: ExecutionflowLinesDetectedRequest, options?: RpcOptions): UnaryCall<ExecutionflowLinesDetectedRequest, ExecutionflowLinesDetectedResponse> {
const method = this.methods[29], opt = this._transport.mergeOptions(options);
return stackIntercept<ExecutionflowLinesDetectedRequest, ExecutionflowLinesDetectedResponse>("unary", this._transport, method, opt, input);
}
}