You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.15.0-SNAPSHOT-260821131047",
|
||||
"version": "1.15.0-SNAPSHOT-260821143112",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
@@ -459,6 +459,10 @@ export interface QuantifiedGoodsByHU {
|
||||
* @generated from protobuf field: string TrackingURL = 11
|
||||
*/
|
||||
TrackingURL: string;
|
||||
/**
|
||||
* @generated from protobuf field: string HandlingunitReference = 12
|
||||
*/
|
||||
HandlingunitReference: string;
|
||||
}
|
||||
//
|
||||
// Structure to quantity a goods into an executionflow line.
|
||||
@@ -1986,7 +1990,8 @@ class QuantifiedGoodsByHU$Type extends MessageType<QuantifiedGoodsByHU> {
|
||||
{ no: 8, name: "PreparedQuantityInBaseLV", kind: "message", localName: "PreparedQuantityInBaseLV", jsonName: "PreparedQuantityInBaseLV", T: () => QuantityInLV, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { readOnly: true }, "n1validate.rules": { message: { unauthorized: true } } } },
|
||||
{ no: 9, name: "ReceivedQuantity", kind: "message", localName: "ReceivedQuantity", jsonName: "ReceivedQuantity", T: () => QuantityInLV, options: { "n1validate.rules": { message: { required: true } } } },
|
||||
{ no: 10, name: "ReceivedQuantityInBaseLV", kind: "message", localName: "ReceivedQuantityInBaseLV", jsonName: "ReceivedQuantityInBaseLV", T: () => QuantityInLV, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { readOnly: true }, "n1validate.rules": { message: { unauthorized: true } } } },
|
||||
{ no: 11, name: "TrackingURL", kind: "scalar", localName: "TrackingURL", jsonName: "TrackingURL", T: 9 /*ScalarType.STRING*/ }
|
||||
{ no: 11, name: "TrackingURL", kind: "scalar", localName: "TrackingURL", jsonName: "TrackingURL", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 12, name: "HandlingunitReference", kind: "scalar", localName: "HandlingunitReference", jsonName: "HandlingunitReference", T: 9 /*ScalarType.STRING*/, options: { "n1validate.rules": { string: { minLen: "1" } }, "api.indexationType": { Types: [{ Context: "*", Type: "generatedText,keyword" }] }, "api.viewType": { Types: [{ Context: "*", Type: "shortKeyword" }] } } }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Goods", "HandlingunitID"] } } });
|
||||
}
|
||||
create(value?: PartialMessage<QuantifiedGoodsByHU>): QuantifiedGoodsByHU {
|
||||
@@ -1994,6 +1999,7 @@ class QuantifiedGoodsByHU$Type extends MessageType<QuantifiedGoodsByHU> {
|
||||
message.HandlingunitID = "";
|
||||
message.TrackingID = "";
|
||||
message.TrackingURL = "";
|
||||
message.HandlingunitReference = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<QuantifiedGoodsByHU>(this, message, value);
|
||||
return message;
|
||||
@@ -2036,6 +2042,9 @@ class QuantifiedGoodsByHU$Type extends MessageType<QuantifiedGoodsByHU> {
|
||||
case /* string TrackingURL */ 11:
|
||||
message.TrackingURL = reader.string();
|
||||
break;
|
||||
case /* string HandlingunitReference */ 12:
|
||||
message.HandlingunitReference = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -2081,6 +2090,9 @@ class QuantifiedGoodsByHU$Type extends MessageType<QuantifiedGoodsByHU> {
|
||||
/* string TrackingURL = 11; */
|
||||
if (message.TrackingURL !== "")
|
||||
writer.tag(11, WireType.LengthDelimited).string(message.TrackingURL);
|
||||
/* string HandlingunitReference = 12; */
|
||||
if (message.HandlingunitReference !== "")
|
||||
writer.tag(12, WireType.LengthDelimited).string(message.HandlingunitReference);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user