You've already forked npm-core-sdk
127 lines
7.3 KiB
TypeScript
127 lines
7.3 KiB
TypeScript
// @generated by protobuf-ts 2.9.6
|
|
// @generated from protobuf file "handlingunitQuery.proto" (package "api", syntax proto3)
|
|
// tslint:disable
|
|
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
|
import { HandlingunitQuery } from "./handlingunitQuery";
|
|
import type { CountLinesResult } from "./shared";
|
|
import type { CountLinesQuery } from "./shared";
|
|
import type { ExtractResult } from "./shared";
|
|
import type { ExtractQuery } from "./shared";
|
|
import type { GetKPIDataResult } from "./clickhouse";
|
|
import type { GetKPIDataQuery } from "./clickhouse";
|
|
import type { ElementByMatchResult } from "./shared";
|
|
import type { ElementByMatchQuery } from "./shared";
|
|
import type { HandlingunitByMatchResult } from "./handlingunitQuery";
|
|
import type { HandlingunitByMatchQuery } from "./handlingunitQuery";
|
|
import type { HandlingunitByFilterResult } from "./handlingunitQuery";
|
|
import type { HandlingunitByFilterQuery } from "./handlingunitQuery";
|
|
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
|
import type { HandlingunitByIdResult } from "./handlingunitQuery";
|
|
import type { HandlingunitByIdQuery } from "./handlingunitQuery";
|
|
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
|
|
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
|
/**
|
|
* @generated from protobuf service api.HandlingunitQuery
|
|
*/
|
|
export interface IHandlingunitQueryClient {
|
|
/**
|
|
* @generated from protobuf rpc: GetByIds(api.HandlingunitByIdQuery) returns (api.HandlingunitByIdResult);
|
|
*/
|
|
getByIds(input: HandlingunitByIdQuery, options?: RpcOptions): UnaryCall<HandlingunitByIdQuery, HandlingunitByIdResult>;
|
|
/**
|
|
* @generated from protobuf rpc: Find(api.HandlingunitByFilterQuery) returns (api.HandlingunitByFilterResult);
|
|
*/
|
|
find(input: HandlingunitByFilterQuery, options?: RpcOptions): UnaryCall<HandlingunitByFilterQuery, HandlingunitByFilterResult>;
|
|
/**
|
|
* @generated from protobuf rpc: FindTracked(api.HandlingunitByFilterQuery) returns (api.HandlingunitByFilterResult);
|
|
*/
|
|
findTracked(input: HandlingunitByFilterQuery, options?: RpcOptions): UnaryCall<HandlingunitByFilterQuery, HandlingunitByFilterResult>;
|
|
/**
|
|
* @generated from protobuf rpc: FindMatchingFieldValues(api.HandlingunitByMatchQuery) returns (api.HandlingunitByMatchResult);
|
|
*/
|
|
findMatchingFieldValues(input: HandlingunitByMatchQuery, options?: RpcOptions): UnaryCall<HandlingunitByMatchQuery, HandlingunitByMatchResult>;
|
|
/**
|
|
* @generated from protobuf rpc: FindMatchingFieldElements(api.ElementByMatchQuery) returns (api.ElementByMatchResult);
|
|
*/
|
|
findMatchingFieldElements(input: ElementByMatchQuery, options?: RpcOptions): UnaryCall<ElementByMatchQuery, ElementByMatchResult>;
|
|
/**
|
|
* @generated from protobuf rpc: GetKPIData(api.GetKPIDataQuery) returns (api.GetKPIDataResult);
|
|
*/
|
|
getKPIData(input: GetKPIDataQuery, options?: RpcOptions): UnaryCall<GetKPIDataQuery, GetKPIDataResult>;
|
|
/**
|
|
* @generated from protobuf rpc: Extract(api.ExtractQuery) returns (api.ExtractResult);
|
|
*/
|
|
extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult>;
|
|
/**
|
|
* @generated from protobuf rpc: CountLines(api.CountLinesQuery) returns (api.CountLinesResult);
|
|
*/
|
|
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult>;
|
|
}
|
|
/**
|
|
* @generated from protobuf service api.HandlingunitQuery
|
|
*/
|
|
export class HandlingunitQueryClient implements IHandlingunitQueryClient, ServiceInfo {
|
|
typeName = HandlingunitQuery.typeName;
|
|
methods = HandlingunitQuery.methods;
|
|
options = HandlingunitQuery.options;
|
|
constructor(private readonly _transport: RpcTransport) {
|
|
}
|
|
/**
|
|
* @generated from protobuf rpc: GetByIds(api.HandlingunitByIdQuery) returns (api.HandlingunitByIdResult);
|
|
*/
|
|
getByIds(input: HandlingunitByIdQuery, options?: RpcOptions): UnaryCall<HandlingunitByIdQuery, HandlingunitByIdResult> {
|
|
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
return stackIntercept<HandlingunitByIdQuery, HandlingunitByIdResult>("unary", this._transport, method, opt, input);
|
|
}
|
|
/**
|
|
* @generated from protobuf rpc: Find(api.HandlingunitByFilterQuery) returns (api.HandlingunitByFilterResult);
|
|
*/
|
|
find(input: HandlingunitByFilterQuery, options?: RpcOptions): UnaryCall<HandlingunitByFilterQuery, HandlingunitByFilterResult> {
|
|
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
|
return stackIntercept<HandlingunitByFilterQuery, HandlingunitByFilterResult>("unary", this._transport, method, opt, input);
|
|
}
|
|
/**
|
|
* @generated from protobuf rpc: FindTracked(api.HandlingunitByFilterQuery) returns (api.HandlingunitByFilterResult);
|
|
*/
|
|
findTracked(input: HandlingunitByFilterQuery, options?: RpcOptions): UnaryCall<HandlingunitByFilterQuery, HandlingunitByFilterResult> {
|
|
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
|
return stackIntercept<HandlingunitByFilterQuery, HandlingunitByFilterResult>("unary", this._transport, method, opt, input);
|
|
}
|
|
/**
|
|
* @generated from protobuf rpc: FindMatchingFieldValues(api.HandlingunitByMatchQuery) returns (api.HandlingunitByMatchResult);
|
|
*/
|
|
findMatchingFieldValues(input: HandlingunitByMatchQuery, options?: RpcOptions): UnaryCall<HandlingunitByMatchQuery, HandlingunitByMatchResult> {
|
|
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
|
return stackIntercept<HandlingunitByMatchQuery, HandlingunitByMatchResult>("unary", this._transport, method, opt, input);
|
|
}
|
|
/**
|
|
* @generated from protobuf rpc: FindMatchingFieldElements(api.ElementByMatchQuery) returns (api.ElementByMatchResult);
|
|
*/
|
|
findMatchingFieldElements(input: ElementByMatchQuery, options?: RpcOptions): UnaryCall<ElementByMatchQuery, ElementByMatchResult> {
|
|
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
|
return stackIntercept<ElementByMatchQuery, ElementByMatchResult>("unary", this._transport, method, opt, input);
|
|
}
|
|
/**
|
|
* @generated from protobuf rpc: GetKPIData(api.GetKPIDataQuery) returns (api.GetKPIDataResult);
|
|
*/
|
|
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: Extract(api.ExtractQuery) returns (api.ExtractResult);
|
|
*/
|
|
extract(input: ExtractQuery, options?: RpcOptions): UnaryCall<ExtractQuery, ExtractResult> {
|
|
const method = this.methods[6], 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);
|
|
*/
|
|
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);
|
|
}
|
|
}
|