You've already forked npm-core-sdk
Latest generation
This commit is contained in:
15
itemQuery.ts
15
itemQuery.ts
@@ -18,7 +18,6 @@ import type { PartialMessage } from "@protobuf-ts/runtime";
|
||||
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
||||
import { MessageType } from "@protobuf-ts/runtime";
|
||||
import { LVDetailedQuantity } from "./repositoryShared";
|
||||
import { EntityID } from "./shared";
|
||||
import { MatchFieldResult } from "./shared";
|
||||
import { MatchField } from "./shared";
|
||||
import { EntityType } from "./shared";
|
||||
@@ -176,9 +175,9 @@ export interface GetLVDetailedQuantityQuery {
|
||||
*/
|
||||
Header?: QueryProjectHeader;
|
||||
/**
|
||||
* @generated from protobuf field: api.EntityID ID = 2
|
||||
* @generated from protobuf field: api.QueryEntityID ID = 2
|
||||
*/
|
||||
ID?: EntityID;
|
||||
ID?: QueryEntityID;
|
||||
/**
|
||||
* @generated from protobuf field: string LVBranchID = 3
|
||||
*/
|
||||
@@ -656,7 +655,7 @@ class GetLVDetailedQuantityQuery$Type extends MessageType<GetLVDetailedQuantityQ
|
||||
constructor() {
|
||||
super("api.GetLVDetailedQuantityQuery", [
|
||||
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => QueryProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => EntityID, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 2, name: "ID", kind: "message", localName: "ID", jsonName: "ID", T: () => QueryEntityID, options: { "validate.rules": { message: { required: true } } } },
|
||||
{ no: 3, name: "LVBranchID", kind: "scalar", localName: "LVBranchID", jsonName: "LVBranchID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 4, name: "quantityInbaseLv", kind: "scalar", T: 2 /*ScalarType.FLOAT*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Quantity in base LV to detail" } } },
|
||||
{ no: 5, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => ItemQueryOptions }
|
||||
@@ -678,8 +677,8 @@ class GetLVDetailedQuantityQuery$Type extends MessageType<GetLVDetailedQuantityQ
|
||||
case /* api.QueryProjectHeader Header */ 1:
|
||||
message.Header = QueryProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
||||
break;
|
||||
case /* api.EntityID ID */ 2:
|
||||
message.ID = EntityID.internalBinaryRead(reader, reader.uint32(), options, message.ID);
|
||||
case /* api.QueryEntityID ID */ 2:
|
||||
message.ID = QueryEntityID.internalBinaryRead(reader, reader.uint32(), options, message.ID);
|
||||
break;
|
||||
case /* string LVBranchID */ 3:
|
||||
message.LVBranchID = reader.string();
|
||||
@@ -705,9 +704,9 @@ class GetLVDetailedQuantityQuery$Type extends MessageType<GetLVDetailedQuantityQ
|
||||
/* api.QueryProjectHeader Header = 1; */
|
||||
if (message.Header)
|
||||
QueryProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
||||
/* api.EntityID ID = 2; */
|
||||
/* api.QueryEntityID ID = 2; */
|
||||
if (message.ID)
|
||||
EntityID.internalBinaryWrite(message.ID, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||
QueryEntityID.internalBinaryWrite(message.ID, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||
/* string LVBranchID = 3; */
|
||||
if (message.LVBranchID !== "")
|
||||
writer.tag(3, WireType.LengthDelimited).string(message.LVBranchID);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.12.0-SNAPSHOT-251118084524",
|
||||
"version": "1.12.0-SNAPSHOT-251118085125",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
Reference in New Issue
Block a user