You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user