Latest generation

This commit is contained in:
ci core model
2025-10-30 14:50:35 +00:00
parent c446cd832f
commit bda8d73b7e
4 changed files with 246 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { AppointmentQuery } from "./appointmentQuery";
import type { FindMineByMatchQuery } from "./appointmentQuery";
import type { FindMineResult } from "./appointmentQuery";
import type { FindMineQuery } from "./appointmentQuery";
import type { CountLinesResult } from "./shared";
@@ -59,6 +60,10 @@ export interface IAppointmentQueryClient {
* @generated from protobuf rpc: FindMine
*/
findMine(input: FindMineQuery, options?: RpcOptions): UnaryCall<FindMineQuery, FindMineResult>;
/**
* @generated from protobuf rpc: FindMineMatchingFieldValues
*/
findMineMatchingFieldValues(input: FindMineByMatchQuery, options?: RpcOptions): UnaryCall<FindMineByMatchQuery, AppointmentByMatchResult>;
}
/**
* @generated from protobuf service api.AppointmentQuery
@@ -125,4 +130,11 @@ export class AppointmentQueryClient implements IAppointmentQueryClient, ServiceI
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<FindMineQuery, FindMineResult>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: FindMineMatchingFieldValues
*/
findMineMatchingFieldValues(input: FindMineByMatchQuery, options?: RpcOptions): UnaryCall<FindMineByMatchQuery, AppointmentByMatchResult> {
const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<FindMineByMatchQuery, AppointmentByMatchResult>("unary", this._transport, method, opt, input);
}
}