You've already forked npm-core-sdk
97 lines
2.8 KiB
TypeScript
97 lines
2.8 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file movementQuery.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { MovementByFilterQuery, MovementByFilterResult, MovementByIdQuery, MovementByIdResult, MovementByMatchQuery, MovementByMatchResult, MovementByOperationReferenceQuery, MovementByOperationReferenceResult } from "./movementQuery_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
import { CountLinesQuery, CountLinesResult, ElementByMatchQuery, ElementByMatchResult, ExtractQuery, ExtractResult } from "./shared_pb.js";
|
|
import { GetKPIDataQuery, GetKPIDataResult } from "./clickhouse_pb.js";
|
|
|
|
/**
|
|
*
|
|
* Movement cannot be queried using id because the id is generated and not publicly-known.
|
|
* Movement is only queryable by expressing conditions on Goods 'key' attributes (itemID, LVBranchID, PriorityDate and SegmentationKeys) and the ActorID.
|
|
*
|
|
*
|
|
* @generated from service api.MovementQuery
|
|
*/
|
|
export const MovementQuery = {
|
|
typeName: "api.MovementQuery",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.MovementQuery.GetByIds
|
|
*/
|
|
getByIds: {
|
|
name: "GetByIds",
|
|
I: MovementByIdQuery,
|
|
O: MovementByIdResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.MovementQuery.Find
|
|
*/
|
|
find: {
|
|
name: "Find",
|
|
I: MovementByFilterQuery,
|
|
O: MovementByFilterResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.MovementQuery.FindMatchingFieldValues
|
|
*/
|
|
findMatchingFieldValues: {
|
|
name: "FindMatchingFieldValues",
|
|
I: MovementByMatchQuery,
|
|
O: MovementByMatchResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.MovementQuery.FindMatchingFieldElements
|
|
*/
|
|
findMatchingFieldElements: {
|
|
name: "FindMatchingFieldElements",
|
|
I: ElementByMatchQuery,
|
|
O: ElementByMatchResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.MovementQuery.GetByOperationReference
|
|
*/
|
|
getByOperationReference: {
|
|
name: "GetByOperationReference",
|
|
I: MovementByOperationReferenceQuery,
|
|
O: MovementByOperationReferenceResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.MovementQuery.GetKPIData
|
|
*/
|
|
getKPIData: {
|
|
name: "GetKPIData",
|
|
I: GetKPIDataQuery,
|
|
O: GetKPIDataResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.MovementQuery.Extract
|
|
*/
|
|
extract: {
|
|
name: "Extract",
|
|
I: ExtractQuery,
|
|
O: ExtractResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.MovementQuery.CountLines
|
|
*/
|
|
countLines: {
|
|
name: "CountLines",
|
|
I: CountLinesQuery,
|
|
O: CountLinesResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|