Files
npm-core-sdk/movementQuery.ts
2025-11-18 09:20:12 +00:00

764 lines
43 KiB
TypeScript

// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name,keep_enum_prefix
// @generated from protobuf file "movementQuery.proto" (package "api", syntax proto3)
// tslint:disable
import { CountLinesResult } from "./shared";
import { CountLinesQuery } from "./shared";
import { ExtractResult } from "./shared";
import { ExtractQuery } from "./shared";
import { GetKPIDataResult } from "./clickhouse";
import { GetKPIDataQuery } from "./clickhouse";
import { ElementByMatchResult } from "./shared";
import { ElementByMatchQuery } from "./shared";
import { ServiceType } from "@protobuf-ts/runtime-rpc";
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
import type { IBinaryWriter } from "@protobuf-ts/runtime";
import { WireType } from "@protobuf-ts/runtime";
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
import type { IBinaryReader } from "@protobuf-ts/runtime";
import { UnknownFieldHandler } from "@protobuf-ts/runtime";
import type { PartialMessage } from "@protobuf-ts/runtime";
import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime";
import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared";
import { Movement } from "./movement";
import { ResultHeader } from "./shared";
import { QueryEntityID } from "./shared";
import { QueryProjectHeader } from "./shared";
//
// Query-server services
/**
* @generated from protobuf message api.MovementByIdQuery
*/
export interface MovementByIdQuery {
/**
* @generated from protobuf field: api.QueryProjectHeader Header = 1
*/
Header?: QueryProjectHeader;
/**
* @generated from protobuf field: repeated api.QueryEntityID IDs = 2
*/
IDs: QueryEntityID[];
/**
* @generated from protobuf field: api.MovementQueryOptions Options = 3
*/
Options?: MovementQueryOptions;
}
/**
* @generated from protobuf message api.MovementByIdResult
*/
export interface MovementByIdResult {
/**
* @generated from protobuf field: api.ResultHeader Header = 1
*/
Header?: ResultHeader;
/**
* @generated from protobuf field: repeated api.Movement Objects = 2
*/
Objects: Movement[];
}
/**
* @generated from protobuf message api.MovementByFilterQuery
*/
export interface MovementByFilterQuery {
/**
* @generated from protobuf field: api.QueryProjectHeader Header = 1
*/
Header?: QueryProjectHeader;
/**
* Number of maximum result
*
* @generated from protobuf field: string limitFilter = 4
*/
limitFilter: string;
/**
* @generated from protobuf field: string queryContext = 5
*/
queryContext: string;
/**
* list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
*
* @generated from protobuf field: repeated api.BlockFilter BlockFilters = 7
*/
BlockFilters: BlockFilter[];
/**
* @generated from protobuf field: api.MovementQueryOptions Options = 8
*/
Options?: MovementQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 9
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 10
*/
UsageContextPath: string;
}
/**
* @generated from protobuf message api.MovementByFilterResult
*/
export interface MovementByFilterResult {
/**
* @generated from protobuf field: api.ResultHeader Header = 1
*/
Header?: ResultHeader;
/**
* @generated from protobuf field: repeated api.Movement Objects = 2
*/
Objects: Movement[];
/**
* @generated from protobuf field: string queryContext = 3
*/
queryContext: string;
}
/**
* @generated from protobuf message api.MovementQueryOptions
*/
export interface MovementQueryOptions {
/**
* @generated from protobuf field: repeated string Only = 1
*/
Only: string[];
}
/**
* @generated from protobuf message api.MovementByMatchQuery
*/
export interface MovementByMatchQuery {
/**
* @generated from protobuf field: api.QueryProjectHeader Header = 1
*/
Header?: QueryProjectHeader;
/**
* list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
*
* @generated from protobuf field: repeated api.BlockFilter BlockFilters = 5
*/
BlockFilters: BlockFilter[];
/**
* MatchField list structure, for FindMatching query
*
* @generated from protobuf field: repeated api.MatchField MatchFields = 6
*/
MatchFields: MatchField[];
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 7
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 8
*/
UsageContextPath: string;
}
/**
* @generated from protobuf message api.MovementByMatchResult
*/
export interface MovementByMatchResult {
/**
* @generated from protobuf field: repeated api.MatchFieldResult MatchResults = 2
*/
MatchResults: MatchFieldResult[];
}
/**
* @generated from protobuf message api.MovementByOperationReferenceQuery
*/
export interface MovementByOperationReferenceQuery {
/**
* @generated from protobuf field: api.QueryProjectHeader Header = 1
*/
Header?: QueryProjectHeader;
/**
* @generated from protobuf field: repeated string OperationReferences = 2
*/
OperationReferences: string[];
/**
* @generated from protobuf field: api.MovementQueryOptions Options = 3
*/
Options?: MovementQueryOptions;
}
/**
* @generated from protobuf message api.MovementByOperationReferenceResult
*/
export interface MovementByOperationReferenceResult {
/**
* @generated from protobuf field: api.ResultHeader Header = 1
*/
Header?: ResultHeader;
/**
* @generated from protobuf field: repeated api.Movement Objects = 2
*/
Objects: Movement[];
}
// @generated message type with reflection information, may provide speed optimized methods
class MovementByIdQuery$Type extends MessageType<MovementByIdQuery> {
constructor() {
super("api.MovementByIdQuery", [
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => QueryProjectHeader, options: { "validate.rules": { message: { required: true } } } },
{ no: 2, name: "IDs", kind: "message", localName: "IDs", jsonName: "IDs", repeat: 2 /*RepeatType.UNPACKED*/, T: () => QueryEntityID, options: { "validate.rules": { repeated: { minItems: "1" } } } },
{ no: 3, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => MovementQueryOptions }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "IDs"] } }, "api.messageType": "Query" });
}
create(value?: PartialMessage<MovementByIdQuery>): MovementByIdQuery {
const message = globalThis.Object.create((this.messagePrototype!));
message.IDs = [];
if (value !== undefined)
reflectionMergePartial<MovementByIdQuery>(this, message, value);
return message;
}
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MovementByIdQuery): MovementByIdQuery {
let message = target ?? this.create(), end = reader.pos + length;
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.QueryProjectHeader Header */ 1:
message.Header = QueryProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* repeated api.QueryEntityID IDs */ 2:
message.IDs.push(QueryEntityID.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* api.MovementQueryOptions Options */ 3:
message.Options = MovementQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break;
default:
let u = options.readUnknownField;
if (u === "throw")
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
let d = reader.skip(wireType);
if (u !== false)
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
}
}
return message;
}
internalBinaryWrite(message: MovementByIdQuery, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.QueryProjectHeader Header = 1; */
if (message.Header)
QueryProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated api.QueryEntityID IDs = 2; */
for (let i = 0; i < message.IDs.length; i++)
QueryEntityID.internalBinaryWrite(message.IDs[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
/* api.MovementQueryOptions Options = 3; */
if (message.Options)
MovementQueryOptions.internalBinaryWrite(message.Options, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
return writer;
}
}
/**
* @generated MessageType for protobuf message api.MovementByIdQuery
*/
export const MovementByIdQuery = new MovementByIdQuery$Type();
// @generated message type with reflection information, may provide speed optimized methods
class MovementByIdResult$Type extends MessageType<MovementByIdResult> {
constructor() {
super("api.MovementByIdResult", [
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => ResultHeader },
{ no: 2, name: "Objects", kind: "message", localName: "Objects", jsonName: "Objects", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Movement }
], { "api.messageType": "Result" });
}
create(value?: PartialMessage<MovementByIdResult>): MovementByIdResult {
const message = globalThis.Object.create((this.messagePrototype!));
message.Objects = [];
if (value !== undefined)
reflectionMergePartial<MovementByIdResult>(this, message, value);
return message;
}
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MovementByIdResult): MovementByIdResult {
let message = target ?? this.create(), end = reader.pos + length;
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.ResultHeader Header */ 1:
message.Header = ResultHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* repeated api.Movement Objects */ 2:
message.Objects.push(Movement.internalBinaryRead(reader, reader.uint32(), options));
break;
default:
let u = options.readUnknownField;
if (u === "throw")
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
let d = reader.skip(wireType);
if (u !== false)
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
}
}
return message;
}
internalBinaryWrite(message: MovementByIdResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.ResultHeader Header = 1; */
if (message.Header)
ResultHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated api.Movement Objects = 2; */
for (let i = 0; i < message.Objects.length; i++)
Movement.internalBinaryWrite(message.Objects[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
return writer;
}
}
/**
* @generated MessageType for protobuf message api.MovementByIdResult
*/
export const MovementByIdResult = new MovementByIdResult$Type();
// @generated message type with reflection information, may provide speed optimized methods
class MovementByFilterQuery$Type extends MessageType<MovementByFilterQuery> {
constructor() {
super("api.MovementByFilterQuery", [
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => QueryProjectHeader, options: { "validate.rules": { message: { required: true } } } },
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 7, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 8, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => MovementQueryOptions },
{ no: 9, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath)", example: "\"For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom\"" } } },
{ no: 10, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
}
create(value?: PartialMessage<MovementByFilterQuery>): MovementByFilterQuery {
const message = globalThis.Object.create((this.messagePrototype!));
message.limitFilter = "";
message.queryContext = "";
message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined)
reflectionMergePartial<MovementByFilterQuery>(this, message, value);
return message;
}
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MovementByFilterQuery): MovementByFilterQuery {
let message = target ?? this.create(), end = reader.pos + length;
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.QueryProjectHeader Header */ 1:
message.Header = QueryProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* string limitFilter */ 4:
message.limitFilter = reader.string();
break;
case /* string queryContext */ 5:
message.queryContext = reader.string();
break;
case /* repeated api.BlockFilter BlockFilters */ 7:
message.BlockFilters.push(BlockFilter.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* api.MovementQueryOptions Options */ 8:
message.Options = MovementQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break;
case /* api.EntityType UsageContextEntity */ 9:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 10:
message.UsageContextPath = reader.string();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
let d = reader.skip(wireType);
if (u !== false)
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
}
}
return message;
}
internalBinaryWrite(message: MovementByFilterQuery, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.QueryProjectHeader Header = 1; */
if (message.Header)
QueryProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* string limitFilter = 4; */
if (message.limitFilter !== "")
writer.tag(4, WireType.LengthDelimited).string(message.limitFilter);
/* string queryContext = 5; */
if (message.queryContext !== "")
writer.tag(5, WireType.LengthDelimited).string(message.queryContext);
/* repeated api.BlockFilter BlockFilters = 7; */
for (let i = 0; i < message.BlockFilters.length; i++)
BlockFilter.internalBinaryWrite(message.BlockFilters[i], writer.tag(7, WireType.LengthDelimited).fork(), options).join();
/* api.MovementQueryOptions Options = 8; */
if (message.Options)
MovementQueryOptions.internalBinaryWrite(message.Options, writer.tag(8, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 9; */
if (message.UsageContextEntity !== 0)
writer.tag(9, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 10; */
if (message.UsageContextPath !== "")
writer.tag(10, WireType.LengthDelimited).string(message.UsageContextPath);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
return writer;
}
}
/**
* @generated MessageType for protobuf message api.MovementByFilterQuery
*/
export const MovementByFilterQuery = new MovementByFilterQuery$Type();
// @generated message type with reflection information, may provide speed optimized methods
class MovementByFilterResult$Type extends MessageType<MovementByFilterResult> {
constructor() {
super("api.MovementByFilterResult", [
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => ResultHeader },
{ no: 2, name: "Objects", kind: "message", localName: "Objects", jsonName: "Objects", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Movement },
{ no: 3, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }
]);
}
create(value?: PartialMessage<MovementByFilterResult>): MovementByFilterResult {
const message = globalThis.Object.create((this.messagePrototype!));
message.Objects = [];
message.queryContext = "";
if (value !== undefined)
reflectionMergePartial<MovementByFilterResult>(this, message, value);
return message;
}
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MovementByFilterResult): MovementByFilterResult {
let message = target ?? this.create(), end = reader.pos + length;
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.ResultHeader Header */ 1:
message.Header = ResultHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* repeated api.Movement Objects */ 2:
message.Objects.push(Movement.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* string queryContext */ 3:
message.queryContext = reader.string();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
let d = reader.skip(wireType);
if (u !== false)
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
}
}
return message;
}
internalBinaryWrite(message: MovementByFilterResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.ResultHeader Header = 1; */
if (message.Header)
ResultHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated api.Movement Objects = 2; */
for (let i = 0; i < message.Objects.length; i++)
Movement.internalBinaryWrite(message.Objects[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
/* string queryContext = 3; */
if (message.queryContext !== "")
writer.tag(3, WireType.LengthDelimited).string(message.queryContext);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
return writer;
}
}
/**
* @generated MessageType for protobuf message api.MovementByFilterResult
*/
export const MovementByFilterResult = new MovementByFilterResult$Type();
// @generated message type with reflection information, may provide speed optimized methods
class MovementQueryOptions$Type extends MessageType<MovementQueryOptions> {
constructor() {
super("api.MovementQueryOptions", [
{ no: 1, name: "Only", kind: "scalar", localName: "Only", jsonName: "Only", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : List of fields to include in the response for each returned Movement", example: "[\"ID.RefID\", \"Payload.ActorID\", \"Payload.Goods.ItemID\"]" } } }
]);
}
create(value?: PartialMessage<MovementQueryOptions>): MovementQueryOptions {
const message = globalThis.Object.create((this.messagePrototype!));
message.Only = [];
if (value !== undefined)
reflectionMergePartial<MovementQueryOptions>(this, message, value);
return message;
}
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MovementQueryOptions): MovementQueryOptions {
let message = target ?? this.create(), end = reader.pos + length;
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* repeated string Only */ 1:
message.Only.push(reader.string());
break;
default:
let u = options.readUnknownField;
if (u === "throw")
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
let d = reader.skip(wireType);
if (u !== false)
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
}
}
return message;
}
internalBinaryWrite(message: MovementQueryOptions, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* repeated string Only = 1; */
for (let i = 0; i < message.Only.length; i++)
writer.tag(1, WireType.LengthDelimited).string(message.Only[i]);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
return writer;
}
}
/**
* @generated MessageType for protobuf message api.MovementQueryOptions
*/
export const MovementQueryOptions = new MovementQueryOptions$Type();
// @generated message type with reflection information, may provide speed optimized methods
class MovementByMatchQuery$Type extends MessageType<MovementByMatchQuery> {
constructor() {
super("api.MovementByMatchQuery", [
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => QueryProjectHeader, options: { "validate.rules": { message: { required: true } } } },
{ no: 5, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 6, name: "MatchFields", kind: "message", localName: "MatchFields", jsonName: "MatchFields", repeat: 2 /*RepeatType.UNPACKED*/, T: () => MatchField, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "MatchField list structure, for FindMatching query" } } },
{ no: 7, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath)", example: "\"For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom\"" } } },
{ no: 8, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
}
create(value?: PartialMessage<MovementByMatchQuery>): MovementByMatchQuery {
const message = globalThis.Object.create((this.messagePrototype!));
message.BlockFilters = [];
message.MatchFields = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined)
reflectionMergePartial<MovementByMatchQuery>(this, message, value);
return message;
}
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MovementByMatchQuery): MovementByMatchQuery {
let message = target ?? this.create(), end = reader.pos + length;
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.QueryProjectHeader Header */ 1:
message.Header = QueryProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* repeated api.BlockFilter BlockFilters */ 5:
message.BlockFilters.push(BlockFilter.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* repeated api.MatchField MatchFields */ 6:
message.MatchFields.push(MatchField.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* api.EntityType UsageContextEntity */ 7:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 8:
message.UsageContextPath = reader.string();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
let d = reader.skip(wireType);
if (u !== false)
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
}
}
return message;
}
internalBinaryWrite(message: MovementByMatchQuery, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.QueryProjectHeader Header = 1; */
if (message.Header)
QueryProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated api.BlockFilter BlockFilters = 5; */
for (let i = 0; i < message.BlockFilters.length; i++)
BlockFilter.internalBinaryWrite(message.BlockFilters[i], writer.tag(5, WireType.LengthDelimited).fork(), options).join();
/* repeated api.MatchField MatchFields = 6; */
for (let i = 0; i < message.MatchFields.length; i++)
MatchField.internalBinaryWrite(message.MatchFields[i], writer.tag(6, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 7; */
if (message.UsageContextEntity !== 0)
writer.tag(7, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 8; */
if (message.UsageContextPath !== "")
writer.tag(8, WireType.LengthDelimited).string(message.UsageContextPath);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
return writer;
}
}
/**
* @generated MessageType for protobuf message api.MovementByMatchQuery
*/
export const MovementByMatchQuery = new MovementByMatchQuery$Type();
// @generated message type with reflection information, may provide speed optimized methods
class MovementByMatchResult$Type extends MessageType<MovementByMatchResult> {
constructor() {
super("api.MovementByMatchResult", [
{ no: 2, name: "MatchResults", kind: "message", localName: "MatchResults", jsonName: "MatchResults", repeat: 2 /*RepeatType.UNPACKED*/, T: () => MatchFieldResult }
]);
}
create(value?: PartialMessage<MovementByMatchResult>): MovementByMatchResult {
const message = globalThis.Object.create((this.messagePrototype!));
message.MatchResults = [];
if (value !== undefined)
reflectionMergePartial<MovementByMatchResult>(this, message, value);
return message;
}
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MovementByMatchResult): MovementByMatchResult {
let message = target ?? this.create(), end = reader.pos + length;
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* repeated api.MatchFieldResult MatchResults */ 2:
message.MatchResults.push(MatchFieldResult.internalBinaryRead(reader, reader.uint32(), options));
break;
default:
let u = options.readUnknownField;
if (u === "throw")
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
let d = reader.skip(wireType);
if (u !== false)
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
}
}
return message;
}
internalBinaryWrite(message: MovementByMatchResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* repeated api.MatchFieldResult MatchResults = 2; */
for (let i = 0; i < message.MatchResults.length; i++)
MatchFieldResult.internalBinaryWrite(message.MatchResults[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
return writer;
}
}
/**
* @generated MessageType for protobuf message api.MovementByMatchResult
*/
export const MovementByMatchResult = new MovementByMatchResult$Type();
// @generated message type with reflection information, may provide speed optimized methods
class MovementByOperationReferenceQuery$Type extends MessageType<MovementByOperationReferenceQuery> {
constructor() {
super("api.MovementByOperationReferenceQuery", [
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => QueryProjectHeader, options: { "validate.rules": { message: { required: true } } } },
{ no: 2, name: "OperationReferences", kind: "scalar", localName: "OperationReferences", jsonName: "OperationReferences", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
{ no: 3, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => MovementQueryOptions }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } }, "api.messageType": "Query" });
}
create(value?: PartialMessage<MovementByOperationReferenceQuery>): MovementByOperationReferenceQuery {
const message = globalThis.Object.create((this.messagePrototype!));
message.OperationReferences = [];
if (value !== undefined)
reflectionMergePartial<MovementByOperationReferenceQuery>(this, message, value);
return message;
}
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MovementByOperationReferenceQuery): MovementByOperationReferenceQuery {
let message = target ?? this.create(), end = reader.pos + length;
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.QueryProjectHeader Header */ 1:
message.Header = QueryProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* repeated string OperationReferences */ 2:
message.OperationReferences.push(reader.string());
break;
case /* api.MovementQueryOptions Options */ 3:
message.Options = MovementQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break;
default:
let u = options.readUnknownField;
if (u === "throw")
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
let d = reader.skip(wireType);
if (u !== false)
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
}
}
return message;
}
internalBinaryWrite(message: MovementByOperationReferenceQuery, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.QueryProjectHeader Header = 1; */
if (message.Header)
QueryProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated string OperationReferences = 2; */
for (let i = 0; i < message.OperationReferences.length; i++)
writer.tag(2, WireType.LengthDelimited).string(message.OperationReferences[i]);
/* api.MovementQueryOptions Options = 3; */
if (message.Options)
MovementQueryOptions.internalBinaryWrite(message.Options, writer.tag(3, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
return writer;
}
}
/**
* @generated MessageType for protobuf message api.MovementByOperationReferenceQuery
*/
export const MovementByOperationReferenceQuery = new MovementByOperationReferenceQuery$Type();
// @generated message type with reflection information, may provide speed optimized methods
class MovementByOperationReferenceResult$Type extends MessageType<MovementByOperationReferenceResult> {
constructor() {
super("api.MovementByOperationReferenceResult", [
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => ResultHeader },
{ no: 2, name: "Objects", kind: "message", localName: "Objects", jsonName: "Objects", repeat: 2 /*RepeatType.UNPACKED*/, T: () => Movement }
], { "api.messageType": "Result" });
}
create(value?: PartialMessage<MovementByOperationReferenceResult>): MovementByOperationReferenceResult {
const message = globalThis.Object.create((this.messagePrototype!));
message.Objects = [];
if (value !== undefined)
reflectionMergePartial<MovementByOperationReferenceResult>(this, message, value);
return message;
}
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MovementByOperationReferenceResult): MovementByOperationReferenceResult {
let message = target ?? this.create(), end = reader.pos + length;
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.ResultHeader Header */ 1:
message.Header = ResultHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* repeated api.Movement Objects */ 2:
message.Objects.push(Movement.internalBinaryRead(reader, reader.uint32(), options));
break;
default:
let u = options.readUnknownField;
if (u === "throw")
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
let d = reader.skip(wireType);
if (u !== false)
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
}
}
return message;
}
internalBinaryWrite(message: MovementByOperationReferenceResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.ResultHeader Header = 1; */
if (message.Header)
ResultHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated api.Movement Objects = 2; */
for (let i = 0; i < message.Objects.length; i++)
Movement.internalBinaryWrite(message.Objects[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
return writer;
}
}
/**
* @generated MessageType for protobuf message api.MovementByOperationReferenceResult
*/
export const MovementByOperationReferenceResult = new MovementByOperationReferenceResult$Type();
/**
* @generated ServiceType for protobuf service api.MovementQuery
*/
export const MovementQuery = new ServiceType("api.MovementQuery", [
{ name: "GetByIds", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Movement Query"], description: "Get Stock from Ids" }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "stock-inventory", "api.tableName": "movementByIdv2", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: MovementByIdQuery, O: MovementByIdResult },
{ name: "Find", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Movement Query"], description: "Find a movement from its properties." }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "stock-inventory", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: MovementByFilterQuery, O: MovementByFilterResult },
{ name: "FindMatchingFieldValues", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Movement Query"], description: "Using search criteria & a main field word, find the list of fields containing the searched word (used for auto completion purposes ...) " }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "stock-inventory", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: MovementByMatchQuery, O: MovementByMatchResult },
{ name: "FindMatchingFieldElements", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Movement Query"], description: "using search criteria & a main field word, find the list of field elements containing the searched word (used for auto completion purposes ...) " }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "stock-inventory", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ElementByMatchQuery, O: ElementByMatchResult },
{ name: "GetByOperationReference", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Movement Query"], description: "Get movement by operation Reference" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "stock-inventory", "api.tableName": "movementByOperationReferencev2", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: MovementByOperationReferenceQuery, O: MovementByOperationReferenceResult },
{ name: "GetKPIData", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Movement Query"], description: "Get movement KPI data" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "stock-inventory", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: GetKPIDataQuery, O: GetKPIDataResult },
{ name: "Extract", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Movement Query"], description: "Schedule a data extraction" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "stock-inventory", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ExtractQuery, O: ExtractResult },
{ name: "CountLines", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Movement Query"], description: "Count lines in database for project" }, "api.rscType": "Platform", "api.roles": "Platform.Project-Query", "api.moduleID": "stock-inventory", "google.api.method_visibility": { restriction: "INTERNAL" } }, I: CountLinesQuery, O: CountLinesResult }
], { "api.serviceType": "Query", "api.k8sService": "query-server" });