Latest generation

This commit is contained in:
ci core model
2026-08-21 07:36:33 +00:00
parent 92713c8b8d
commit f86e794530
3 changed files with 27 additions and 3 deletions

View File

@@ -774,6 +774,10 @@ export interface StockMovement {
* @generated from protobuf field: string ExternalInfo = 16
*/
ExternalInfo: string;
/**
* @generated from protobuf field: string HandlingunitReference = 18
*/
HandlingunitReference: string;
}
/**
*
@@ -2708,7 +2712,8 @@ class StockMovement$Type extends MessageType<StockMovement> {
{ no: 13, name: "LVDetailledQuantity", kind: "scalar", localName: "LVDetailledQuantity", jsonName: "LVDetailledQuantity", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { readOnly: true } } },
{ no: 14, name: "Author", kind: "scalar", localName: "Author", jsonName: "Author", T: 9 /*ScalarType.STRING*/, options: { "api.kpiItems": { Items: [{ Context: "Movement", Group: "movement", Queryable: true }] } } },
{ no: 15, name: "ExternalMoveRef", kind: "scalar", localName: "ExternalMoveRef", jsonName: "ExternalMoveRef", T: 9 /*ScalarType.STRING*/, options: { "api.kpiItems": { Items: [{ Context: "Movement", Group: "movement", Queryable: true }] } } },
{ no: 16, name: "ExternalInfo", kind: "scalar", localName: "ExternalInfo", jsonName: "ExternalInfo", T: 9 /*ScalarType.STRING*/ }
{ no: 16, name: "ExternalInfo", kind: "scalar", localName: "ExternalInfo", jsonName: "ExternalInfo", T: 9 /*ScalarType.STRING*/ },
{ no: 18, name: "HandlingunitReference", kind: "scalar", localName: "HandlingunitReference", jsonName: "HandlingunitReference", T: 9 /*ScalarType.STRING*/, options: { "api.indexationType": { Types: [{ Context: "*", Type: "generatedText,keyword" }] }, "api.kpiItems": { Items: [{ Context: "Movement", Group: "movement", Queryable: true }] }, "api.viewType": { Types: [{ Context: "*", Type: "shortKeyword" }] } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["DateTime", "Quantity"] } } });
}
create(value?: PartialMessage<StockMovement>): StockMovement {
@@ -2727,6 +2732,7 @@ class StockMovement$Type extends MessageType<StockMovement> {
message.Author = "";
message.ExternalMoveRef = "";
message.ExternalInfo = "";
message.HandlingunitReference = "";
if (value !== undefined)
reflectionMergePartial<StockMovement>(this, message, value);
return message;
@@ -2787,6 +2793,9 @@ class StockMovement$Type extends MessageType<StockMovement> {
case /* string ExternalInfo */ 16:
message.ExternalInfo = reader.string();
break;
case /* string HandlingunitReference */ 18:
message.HandlingunitReference = reader.string();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -2850,6 +2859,9 @@ class StockMovement$Type extends MessageType<StockMovement> {
/* string OrderID = 17; */
if (message.OrderID !== "")
writer.tag(17, WireType.LengthDelimited).string(message.OrderID);
/* string HandlingunitReference = 18; */
if (message.HandlingunitReference !== "")
writer.tag(18, WireType.LengthDelimited).string(message.HandlingunitReference);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);