Latest generation

This commit is contained in:
ci core model
2025-10-02 13:59:13 +00:00
parent 0e666ec761
commit 9598e82401
3 changed files with 115 additions and 2 deletions

View File

@@ -4,6 +4,8 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { AppointmentQuery } from "./appointmentQuery";
import type { FindMineResult } from "./appointmentQuery";
import type { FindMineQuery } from "./appointmentQuery";
import type { CountLinesResult } from "./shared";
import type { CountLinesQuery } from "./shared";
import type { GetKPIDataResult } from "./clickhouse";
@@ -53,6 +55,10 @@ export interface IAppointmentQueryClient {
* @generated from protobuf rpc: CountLines
*/
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult>;
/**
* @generated from protobuf rpc: FindMine
*/
findMine(input: FindMineQuery, options?: RpcOptions): UnaryCall<FindMineQuery, FindMineResult>;
}
/**
* @generated from protobuf service api.AppointmentQuery
@@ -112,4 +118,11 @@ export class AppointmentQueryClient implements IAppointmentQueryClient, ServiceI
const method = this.methods[6], opt = this._transport.mergeOptions(options);
return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: FindMine
*/
findMine(input: FindMineQuery, options?: RpcOptions): UnaryCall<FindMineQuery, FindMineResult> {
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<FindMineQuery, FindMineResult>("unary", this._transport, method, opt, input);
}
}