You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -4,6 +4,11 @@
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
||||
import { AppointmentQuery } from "./appointmentQuery";
|
||||
import type { CrossFindElementByMatchQuery } from "./shared";
|
||||
import type { CrossFindByMatchResult } from "./shared";
|
||||
import type { CrossFindByMatchQuery } from "./shared";
|
||||
import type { CrossFindResult } from "./appointmentQuery";
|
||||
import type { CrossFineQuery } from "./shared";
|
||||
import type { FindByCommissionResult } from "./appointmentQuery";
|
||||
import type { FindByCommissionQuery } from "./appointmentQuery";
|
||||
import type { FindMineByMatchQuery } from "./appointmentQuery";
|
||||
@@ -70,6 +75,18 @@ export interface IAppointmentQueryClient {
|
||||
* @generated from protobuf rpc: FindByCommission
|
||||
*/
|
||||
findByCommission(input: FindByCommissionQuery, options?: RpcOptions): UnaryCall<FindByCommissionQuery, FindByCommissionResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CrossFind
|
||||
*/
|
||||
crossFind(input: CrossFineQuery, options?: RpcOptions): UnaryCall<CrossFineQuery, CrossFindResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CrossFindMatchingFieldValues
|
||||
*/
|
||||
crossFindMatchingFieldValues(input: CrossFindByMatchQuery, options?: RpcOptions): UnaryCall<CrossFindByMatchQuery, CrossFindByMatchResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CrossFindMatchingFieldElements
|
||||
*/
|
||||
crossFindMatchingFieldElements(input: CrossFindElementByMatchQuery, options?: RpcOptions): UnaryCall<CrossFindElementByMatchQuery, ElementByMatchResult>;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf service api.AppointmentQuery
|
||||
@@ -150,4 +167,25 @@ export class AppointmentQueryClient implements IAppointmentQueryClient, ServiceI
|
||||
const method = this.methods[9], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<FindByCommissionQuery, FindByCommissionResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CrossFind
|
||||
*/
|
||||
crossFind(input: CrossFineQuery, options?: RpcOptions): UnaryCall<CrossFineQuery, CrossFindResult> {
|
||||
const method = this.methods[10], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CrossFineQuery, CrossFindResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CrossFindMatchingFieldValues
|
||||
*/
|
||||
crossFindMatchingFieldValues(input: CrossFindByMatchQuery, options?: RpcOptions): UnaryCall<CrossFindByMatchQuery, CrossFindByMatchResult> {
|
||||
const method = this.methods[11], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CrossFindByMatchQuery, CrossFindByMatchResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CrossFindMatchingFieldElements
|
||||
*/
|
||||
crossFindMatchingFieldElements(input: CrossFindElementByMatchQuery, options?: RpcOptions): UnaryCall<CrossFindElementByMatchQuery, ElementByMatchResult> {
|
||||
const method = this.methods[12], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CrossFindElementByMatchQuery, ElementByMatchResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user