You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "partnerQuery.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -24,27 +24,27 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IPartnerQueryClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.PartnerByIdQuery) returns (api.PartnerByIdResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: PartnerByIdQuery, options?: RpcOptions): UnaryCall<PartnerByIdQuery, PartnerByIdResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.PartnerByFilterQuery) returns (api.PartnerByFilterResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: PartnerByFilterQuery, options?: RpcOptions): UnaryCall<PartnerByFilterQuery, PartnerByFilterResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues(api.PartnerByMatchQuery) returns (api.PartnerByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues
|
||||
*/
|
||||
findMatchingFieldValues(input: PartnerByMatchQuery, options?: RpcOptions): UnaryCall<PartnerByMatchQuery, PartnerByMatchResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldElements(api.ElementByMatchQuery) returns (api.ElementByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldElements
|
||||
*/
|
||||
findMatchingFieldElements(input: ElementByMatchQuery, options?: RpcOptions): UnaryCall<ElementByMatchQuery, ElementByMatchResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Extract(api.ExtractQuery) returns (api.ExtractResult);
|
||||
* @generated from protobuf rpc: Extract
|
||||
*/
|
||||
extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CountLines(api.CountLinesQuery) returns (api.CountLinesResult);
|
||||
* @generated from protobuf rpc: CountLines
|
||||
*/
|
||||
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult>;
|
||||
}
|
||||
@@ -58,42 +58,42 @@ export class PartnerQueryClient implements IPartnerQueryClient, ServiceInfo {
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.PartnerByIdQuery) returns (api.PartnerByIdResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: PartnerByIdQuery, options?: RpcOptions): UnaryCall<PartnerByIdQuery, PartnerByIdResult> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PartnerByIdQuery, PartnerByIdResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.PartnerByFilterQuery) returns (api.PartnerByFilterResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: PartnerByFilterQuery, options?: RpcOptions): UnaryCall<PartnerByFilterQuery, PartnerByFilterResult> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PartnerByFilterQuery, PartnerByFilterResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues(api.PartnerByMatchQuery) returns (api.PartnerByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues
|
||||
*/
|
||||
findMatchingFieldValues(input: PartnerByMatchQuery, options?: RpcOptions): UnaryCall<PartnerByMatchQuery, PartnerByMatchResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PartnerByMatchQuery, PartnerByMatchResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldElements(api.ElementByMatchQuery) returns (api.ElementByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldElements
|
||||
*/
|
||||
findMatchingFieldElements(input: ElementByMatchQuery, options?: RpcOptions): UnaryCall<ElementByMatchQuery, ElementByMatchResult> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ElementByMatchQuery, ElementByMatchResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Extract(api.ExtractQuery) returns (api.ExtractResult);
|
||||
* @generated from protobuf rpc: Extract
|
||||
*/
|
||||
extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult> {
|
||||
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ExtractQuery, ExtractResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CountLines(api.CountLinesQuery) returns (api.CountLinesResult);
|
||||
* @generated from protobuf rpc: CountLines
|
||||
*/
|
||||
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user