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 "claimQuery.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -30,39 +30,39 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IClaimQueryClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.ClaimByIdQuery) returns (api.ClaimByIdResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: ClaimByIdQuery, options?: RpcOptions): UnaryCall<ClaimByIdQuery, ClaimByIdResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.ClaimByFilterQuery) returns (api.ClaimByFilterResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: ClaimByFilterQuery, options?: RpcOptions): UnaryCall<ClaimByFilterQuery, ClaimByFilterResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues(api.ClaimByMatchQuery) returns (api.ClaimByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues
|
||||
*/
|
||||
findMatchingFieldValues(input: ClaimByMatchQuery, options?: RpcOptions): UnaryCall<ClaimByMatchQuery, ClaimByMatchResult>;
|
||||
/**
|
||||
* @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: GetKPIData(api.GetKPIDataQuery) returns (api.GetKPIDataResult);
|
||||
* @generated from protobuf rpc: GetKPIData
|
||||
*/
|
||||
getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: GetRoom(api.ClaimGetRoomQuery) returns (api.ClaimGetRoomResult);
|
||||
* @generated from protobuf rpc: GetRoom
|
||||
*/
|
||||
getRoom(input: ClaimGetRoomQuery, options?: RpcOptions): UnaryCall<ClaimGetRoomQuery, ClaimGetRoomResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CountLines(api.CountLinesQuery) returns (api.CountLinesResult);
|
||||
* @generated from protobuf rpc: CountLines
|
||||
*/
|
||||
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: GetAvailableContacts(api.ClaimGetAvailableContactsQuery) returns (api.ClaimGetAvailableContactsResult);
|
||||
* @generated from protobuf rpc: GetAvailableContacts
|
||||
*/
|
||||
getAvailableContacts(input: ClaimGetAvailableContactsQuery, options?: RpcOptions): UnaryCall<ClaimGetAvailableContactsQuery, ClaimGetAvailableContactsResult>;
|
||||
}
|
||||
@@ -76,63 +76,63 @@ export class ClaimQueryClient implements IClaimQueryClient, ServiceInfo {
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.ClaimByIdQuery) returns (api.ClaimByIdResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: ClaimByIdQuery, options?: RpcOptions): UnaryCall<ClaimByIdQuery, ClaimByIdResult> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ClaimByIdQuery, ClaimByIdResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.ClaimByFilterQuery) returns (api.ClaimByFilterResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: ClaimByFilterQuery, options?: RpcOptions): UnaryCall<ClaimByFilterQuery, ClaimByFilterResult> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ClaimByFilterQuery, ClaimByFilterResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues(api.ClaimByMatchQuery) returns (api.ClaimByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues
|
||||
*/
|
||||
findMatchingFieldValues(input: ClaimByMatchQuery, options?: RpcOptions): UnaryCall<ClaimByMatchQuery, ClaimByMatchResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ClaimByMatchQuery, ClaimByMatchResult>("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: GetKPIData(api.GetKPIDataQuery) returns (api.GetKPIDataResult);
|
||||
* @generated from protobuf rpc: GetKPIData
|
||||
*/
|
||||
getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetKPIDataQuery, GetKPIDataResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetRoom(api.ClaimGetRoomQuery) returns (api.ClaimGetRoomResult);
|
||||
* @generated from protobuf rpc: GetRoom
|
||||
*/
|
||||
getRoom(input: ClaimGetRoomQuery, options?: RpcOptions): UnaryCall<ClaimGetRoomQuery, ClaimGetRoomResult> {
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ClaimGetRoomQuery, ClaimGetRoomResult>("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[7], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetAvailableContacts(api.ClaimGetAvailableContactsQuery) returns (api.ClaimGetAvailableContactsResult);
|
||||
* @generated from protobuf rpc: GetAvailableContacts
|
||||
*/
|
||||
getAvailableContacts(input: ClaimGetAvailableContactsQuery, options?: RpcOptions): UnaryCall<ClaimGetAvailableContactsQuery, ClaimGetAvailableContactsResult> {
|
||||
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user