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 "itemQuery.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -26,27 +26,27 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IItemQueryClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.ItemByIdQuery) returns (api.ItemByIdResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: ItemByIdQuery, options?: RpcOptions): UnaryCall<ItemByIdQuery, ItemByIdResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.ItemByFilterQuery) returns (api.ItemByFilterResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: ItemByFilterQuery, options?: RpcOptions): UnaryCall<ItemByFilterQuery, ItemByFilterResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues(api.ItemByMatchQuery) returns (api.ItemByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues
|
||||
*/
|
||||
findMatchingFieldValues(input: ItemByMatchQuery, options?: RpcOptions): UnaryCall<ItemByMatchQuery, ItemByMatchResult>;
|
||||
/**
|
||||
* @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>;
|
||||
//
|
||||
@@ -62,7 +62,7 @@ export interface IItemQueryClient {
|
||||
// };
|
||||
|
||||
/**
|
||||
* @generated from protobuf rpc: GetLVDetailedQuantity(api.GetLVDetailedQuantityQuery) returns (api.GetLVDetailedQuantityResult);
|
||||
* @generated from protobuf rpc: GetLVDetailedQuantity
|
||||
*/
|
||||
getLVDetailedQuantity(input: GetLVDetailedQuantityQuery, options?: RpcOptions): UnaryCall<GetLVDetailedQuantityQuery, GetLVDetailedQuantityResult>;
|
||||
}
|
||||
@@ -76,42 +76,42 @@ export class ItemQueryClient implements IItemQueryClient, ServiceInfo {
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.ItemByIdQuery) returns (api.ItemByIdResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: ItemByIdQuery, options?: RpcOptions): UnaryCall<ItemByIdQuery, ItemByIdResult> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemByIdQuery, ItemByIdResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.ItemByFilterQuery) returns (api.ItemByFilterResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: ItemByFilterQuery, options?: RpcOptions): UnaryCall<ItemByFilterQuery, ItemByFilterResult> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemByFilterQuery, ItemByFilterResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues(api.ItemByMatchQuery) returns (api.ItemByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues
|
||||
*/
|
||||
findMatchingFieldValues(input: ItemByMatchQuery, options?: RpcOptions): UnaryCall<ItemByMatchQuery, ItemByMatchResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ItemByMatchQuery, ItemByMatchResult>("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);
|
||||
@@ -130,7 +130,7 @@ export class ItemQueryClient implements IItemQueryClient, ServiceInfo {
|
||||
// };
|
||||
|
||||
/**
|
||||
* @generated from protobuf rpc: GetLVDetailedQuantity(api.GetLVDetailedQuantityQuery) returns (api.GetLVDetailedQuantityResult);
|
||||
* @generated from protobuf rpc: GetLVDetailedQuantity
|
||||
*/
|
||||
getLVDetailedQuantity(input: GetLVDetailedQuantityQuery, options?: RpcOptions): UnaryCall<GetLVDetailedQuantityQuery, GetLVDetailedQuantityResult> {
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user